-
Notifications
You must be signed in to change notification settings - Fork 0
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
Deploy wstETH market on Mainnet #59
base: main
Are you sure you want to change the base?
Conversation
… need to update them to new ones
…w to pass all the scenarios to not waiting till ezETH PR merging into main branch
…are/update-pricefeeds-for-rseth-and-weeth-on-mainnet-weth
constructor( | ||
address admin_, | ||
address payable weth_, | ||
address wsteth_ | ||
) BaseBulker(admin_, weth_) { | ||
wsteth = wsteth_; | ||
steth = IWstETH(wsteth_).stETH(); | ||
} |
Check warning
Code scanning / Semgrep OSS
There're no sanity checks for the constructor argument admin_. Warning
constructor( | ||
address admin_, | ||
address payable weth_, | ||
address wsteth_ | ||
) BaseBulker(admin_, weth_) { | ||
wsteth = wsteth_; | ||
steth = IWstETH(wsteth_).stETH(); | ||
} |
Check warning
Code scanning / Semgrep OSS
There're no sanity checks for the constructor argument weth_. Warning
constructor( | ||
address admin_, | ||
address payable weth_, | ||
address wsteth_ | ||
) BaseBulker(admin_, weth_) { | ||
wsteth = wsteth_; | ||
steth = IWstETH(wsteth_).stETH(); | ||
} |
Check warning
Code scanning / Semgrep OSS
There're no sanity checks for the constructor argument wsteth_. Warning
constructor( | ||
address admin_, | ||
address payable weth_, | ||
address wsteth_ | ||
) BaseBulker(admin_, weth_) { | ||
wsteth = wsteth_; | ||
steth = IWstETH(wsteth_).stETH(); | ||
} |
Check warning
Code scanning / Semgrep OSS
Consider making costructor payable to save gas. Warning
…are/add-mainnet-wsteth
No description provided.