-
Notifications
You must be signed in to change notification settings - Fork 79
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
Removes hardcoded contract ABIs #837
Conversation
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.
Nice work! 💯Just one or two small comments.
@@ -45,6 +45,7 @@ | |||
"@aragon/apps-shared-minime": "^1.0.1", | |||
"@aragon/aragen": "^5.0.0", | |||
"@aragon/cli-utils": "^0.0.8", | |||
"@aragon/id": "^2.1.0", | |||
"@aragon/truffle-config-v4": "^1.0.0", |
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.
We should probably add the @aragon/os
dependency here
"@aragon/truffle-config-v4": "^1.0.0", | |
"@aragon/os": "^4.3.0", | |
"@aragon/truffle-config-v4": "^1.0.0", |
@ajsantander this PR have a lot of duplications from #833 I think we should merge them or decide which one to include. Note: I like the name standardization that @dapplion included. Probably we want to keep that part. |
We can close this PR as it will be replaced by #833 |
Fix #818
While doing this, I saw that there are a lot of manual
new web3.ethContract(abi, address)
usages. I suggest that we open a new issue to add a "getContract" helper, similar to what already exists in utils.js but capable of retrieving a full Web3 Contract instance.