Replies: 1 comment 1 reply
-
Hello @SJ50 what a good question, well I would say that is just the remote compiler version is not compatible with the brownie accepted compilers, however this question got me out of the blue @PatrickAlphaC any thoughts on this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
in get_weth function, we use
weth = interface.IWeth(config["networks"][network.show_active()]["weth_token"])
what would be the drawback for using
weth = Contract.from_explorer(config["networks"][network.show_active()]["weth_token"])
?when I use
Contract.from_explorer
, I get following warning is that a concern and how can eliminate it?If I want to use
weth = Contract.from_abi(name, weth_ecr20_address, abi)
, what would be best method to load abi.json?I am using following for
Contract.from_abi
in
helpful_scripts.py
in
get_weth.py
Beta Was this translation helpful? Give feedback.
All reactions