dnsRecord method

Future<Uint8List> dnsRecord(
  1. Uint8List node,
  2. Uint8List name,
  3. BigInt resource, {
  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<_i2.Uint8List> dnsRecord(
    _i2.Uint8List node, _i2.Uint8List name, BigInt resource,
    {_i1.BlockNum? atBlock}) async {
  final function = self.abi.functions[7];
  assert(checkSignature(function, 'a8fa5682'));
  final params = [node, name, resource];
  final response = await read(function, params, atBlock);
  return (response[0] as _i2.Uint8List);
}