handleOps method

Future handleOps({
  1. required List ops,
  2. required String beneficiary,
  3. required Credentials credentials,
  4. BigInt? gasPrice,
  5. BigInt? gasLimit,
})

Implementation

Future<dynamic> handleOps({
  required List<dynamic> ops,
  required String beneficiary,
  required Credentials credentials,
  BigInt? gasPrice,
  BigInt? gasLimit,
}) async {
  return write(
    functionName: 'handleOps',
    args: [
      [ops],
      EthereumAddress.fromHex(beneficiary)
    ],
    credentials: credentials,
    // value: value,
  );
}