estimateGasDeploy method

Future<BigInt> estimateGasDeploy(
  1. String from
)

Implementation

Future<BigInt> estimateGasDeploy(String from) async {
  return web3Client.estimateGas(
      data: hexToBytes(_bytecode), sender: EthereumAddress.fromHex(from));
}