Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support "input" param for verifiable tx
Using contract calls in web3js, the transaction data can either be filled in the "data" parameter or "input" parameter, default is "input" The current verified execution provider supports only "data" parameter, so code like this const contract = new web3.eth.Contract(balanceOfABI, tokenContract) let result = await contract.methods.balanceOf(tokenHolder).call(); doesn't work
- Loading branch information