innerHandleOp method
- Uint8List callData,
- dynamic opInfo,
- Uint8List context,
- {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> innerHandleOp(
_i2.Uint8List callData,
dynamic opInfo,
_i2.Uint8List context, {
required _i1.Credentials credentials,
_i1.Transaction? transaction,
}) async {
final function = self.abi.functions[13];
assert(checkSignature(function, '1d732756'));
final params = [
callData,
opInfo,
context,
];
return write(
credentials,
transaction,
function,
params,
);
}