depositTo method
- EthereumAddress account,
- {required Credentials credentials,
- Transaction? transaction}
The optional transaction
parameter can be used to override parameters
like the gas price, nonce and max gas. The data
and to
fields will be
set by the contract.
Implementation
Future<String> depositTo(
_i1.EthereumAddress account, {
required _i1.Credentials credentials,
_i1.Transaction? transaction,
}) async {
final function = self.abi.functions[4];
assert(checkSignature(function, 'b760faf9'));
final params = [account];
return write(
credentials,
transaction,
function,
params,
);
}