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
I think web3.js is providing this feature, instead of
mycontract.call(arg1, arg2, arg3, txObject);
allow to pass values using an object:
mycontract.call({ arg1: 'value1', arg2: 'value2', arg3: 'value3' }, txObject);
Input arg names are known from the ABI, so it would be super convenient to support that...
Thanks for your input on this!
The text was updated successfully, but these errors were encountered:
So apparently I totally made up the fact that web3.js has implemented this, as nothing mentioned on their doc (https://web3js.readthedocs.io/en/1.0/web3-eth-contract.html#id12) :-)
But still, I'd be glad to have your opinion on this feature proposal! Many Thanks
Sorry, something went wrong.
No branches or pull requests
I think web3.js is providing this feature, instead of
allow to pass values using an object:
Input arg names are known from the ABI, so it would be super convenient to support that...
Thanks for your input on this!
The text was updated successfully, but these errors were encountered: