authorisations method

Future<bool> authorisations(
  1. Uint8List $param5,
  2. EthereumAddress $param6,
  3. EthereumAddress $param7, {
  4. BlockNum? atBlock,
})

The optional atBlock parameter can be used to view historical data. When set, the function will be evaluated in the specified block. By default, the latest on-chain block will be used.

Implementation

Future<bool> authorisations(_i2.Uint8List $param5,
    _i1.EthereumAddress $param6, _i1.EthereumAddress $param7,
    {_i1.BlockNum? atBlock}) async {
  final function = self.abi.functions[4];
  assert(checkSignature(function, 'f86bc879'));
  final params = [$param5, $param6, $param7];
  final response = await read(function, params, atBlock);
  return (response[0] as bool);
}