Skip to content

Commit

Permalink
Deployed on mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
alcueca committed Oct 18, 2023
1 parent 11a11f6 commit 8965a1f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ Contracts are deployed at the same address for all supported networks.

| Contract | Lender | Address | Networks |
| ---- | ---- | ---- | ---- |
|[AaveWrapper](src/aave/AaveWrapper.sol)|Aave v3|0x61dD1523916471dc01c947d91EF91dfb8E9f7C08|Arbitrum One, Optimism, Polygon|
|[BalancerWrapper](src/balancer/BalancerWrapper.sol)|Balancer v2|0x8630CE1b6AC9a99C6A0fC776b559582C8f1b9E93|Arbitrum One, Optimism, Polygon|
|[UniswapV3Wrapper](src/uniswapV3/UniswapV3Wrapper.sol)|Uniswap v3|0x24030f0B35b602778a4CD4D7b8Da3088c4bAC461|Arbitrum One, Optimism, Polygon|
|[AaveWrapper](src/aave/AaveWrapper.sol)|Aave v3|0x61dD1523916471dc01c947d91EF91dfb8E9f7C08|Mainnet, Arbitrum One, Optimism, Polygon|
|[BalancerWrapper](src/balancer/BalancerWrapper.sol)|Balancer v2|0x8630CE1b6AC9a99C6A0fC776b559582C8f1b9E93|Mainnet, Arbitrum One, Optimism, Polygon|
|[UniswapV3Wrapper](src/uniswapV3/UniswapV3Wrapper.sol)|Uniswap v3|0x24030f0B35b602778a4CD4D7b8Da3088c4bAC461|Mainnet, Arbitrum One, Optimism, Polygon|

When a contract requires constructor parameters which vary per network, these are supplied by the [Registry](https://github.com/alcueca/registry) deployed at 0x1BFf8Eee6ECF1c8155E81dba8894CE9cF49a220c in each supported network.

Expand Down
2 changes: 1 addition & 1 deletion script/AaveDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract AaveDeploy is Script {
OPTIMISM
}
bytes32 public constant SALT = keccak256("alcueca-1");
Network public constant NETWORK = Network.POLYGON;
Network public constant NETWORK = Network.MAINNET;

mapping(Network network => IPoolAddressesProvider) public providers;

Expand Down
2 changes: 1 addition & 1 deletion script/UniswapV3Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract UniswapV3Deploy is Script {
OPTIMISM
}
bytes32 public constant SALT = keccak256("alcueca-1");
Network public constant NETWORK = Network.OPTIMISM;
Network public constant NETWORK = Network.MAINNET;

mapping(Network network => mapping(bytes32 token => address)) public tokens;

Expand Down

0 comments on commit 8965a1f

Please sign in to comment.