-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arbitrum Deploy scripts #15
base: main
Are you sure you want to change the base?
Conversation
5f1ed6d
to
54a4b97
Compare
Coverage after merging feature/add-arbitrum-deploy into main will be
Coverage Report
|
| Name | Chain | Address | | ||
|----------|:-------:|:-------------:| | ||
| 1inch Router Factory | Optimism | 0xDfb453656A14c8e9ad3F4095483CE3328977eb47 | | ||
| 1inch Router Factory | Aribitrum | 0x8a33e6288d155aDB1d368838CB91E01d30C66eC1| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have any already-deployed child contracts (i.e. contracts deployed from the factory) from the benchmarks that we should also document here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not on either chain yet, we do have a bunch for perpetual on Optimism which I can add to that repo. I can also deploy the child contracts for 1inch for a few tokens to fill out the table.
IV5AggregationRouter v5AggregationRouter = | ||
IV5AggregationRouter(0x1111111254EEB25477B68fb85Ed929f73A960582); | ||
IV5AggregationExecutor v5AggregationExecutor = | ||
IV5AggregationExecutor(0x454C8b4DC6a2AFfe669A3Db1633133F7d305e305); | ||
IV4AggregationRouter v4AggregationRouter = | ||
IV4AggregationRouter(0x1111111254fb6c44bAC0beD2854e76F90643097d); | ||
IV4AggregationExecutor v4AggregationExecutor = | ||
IV4AggregationExecutor(0x454C8b4DC6a2AFfe669A3Db1633133F7d305e305); | ||
|
||
address WETH = 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit, but let's move these constants outside of the run
function to make it more clear they're constants that you shouldn't have to modify
Description