EthTxOption constructor

EthTxOption({
  1. required bool isSupportEip1559,
  2. required String to,
  3. double? nonce,
  4. String? value,
  5. double? gas,
  6. String? gasPrice,
  7. dynamic hint,
})

Implementation

factory EthTxOption(
        {required bool isSupportEip1559,
        required String to,
        double? nonce,
        String? value,
        double? gas,
        String? gasPrice,
        dynamic hint}) =>
    RustLib.instance.api.ethTxOptionNew(
        isSupportEip1559: isSupportEip1559,
        to: to,
        nonce: nonce,
        value: value,
        gas: gas,
        gasPrice: gasPrice,
        hint: hint);