web3.unity
web3.unity copied to clipboard
[V2] Runtime Contract object
Create a class Contract
that take a provider and/or a signer as parameter to interact with, the contract address and the contract ABI.
The contract ABI will be parsed to generate list of method and member callable.
The Contract
class will provide method like
Call(string method, object parameters);
Send(string method, object parameters, BigNumber value);
and will return the result as an array of object to be cast by the game developer.
This will not be type-safe.