makoto / blockparty

NO BLOCK NO PARTY
MIT License
164 stars 41 forks source link

Added possible gas estimation for participant registration #180

Open Flash-Git opened 6 years ago

Flash-Git commented 6 years ago

I haven't built the project so this addition is untested.

Code based on my own experience with web3 v1.0 and the docs.

If you are not using 1.0 then it looks to be slightly different.

v0.2 contract.myMethod.estimateGas() https://github.com/ethereum/wiki/wiki/JavaScript-API#web3ethdefaultblock v1.0 myContract.methods.myMethod([param1[, param2[, ...]]]).estimateGas(options[, callback]) https://web3js.readthedocs.io/en/1.0/web3-eth-contract.html?#contract-estimategas

Hopefully this is helpful.

EDIT: To be clear, this probably isn't functional as is.