We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Docs for simple things like balance and contracts seem wrong: e.g. docs for contracts
var MyContract = web3.eth.contract(abiArray); // instantiate by address var contractInstance = MyContract.at(address);
when in fact this doesnt work and should be
var MyContract = new web3.eth.Contract(abiArray, address);
There are plenty more examples. even something like
web3.fromWei
is supposed to be
web3.utils.fromWei
The text was updated successfully, but these errors were encountered:
If you are using master those docs are correct, if you are using 1.0 they are outdated and you should refer to these
Sorry, something went wrong.
I added a note on top of the old docs. Thanks @MrTibbles for advising him.
No branches or pull requests
Docs for simple things like balance and contracts seem wrong:
e.g. docs for contracts
when in fact this doesnt work and should be
var MyContract = new web3.eth.Contract(abiArray, address);
There are plenty more examples. even something like
web3.fromWei
is supposed to be
web3.utils.fromWei
The text was updated successfully, but these errors were encountered: