getByteCode method

Future<Uint8List> getByteCode(
  1. String address
)

Implementation

Future<Uint8List> getByteCode(String address) async {
  return this.contract.call(
    'getBytecode',
    [EthereumAddress.fromHex(address), EthereumAddress.fromHex(entryPoint)],
  ).then((value) => value as Uint8List);
}