simulateTransaction method

Future<SimulateTransactionResponse> simulateTransaction(
  1. Uint8List transactionBcs, {
  2. List<String>? readMask,
  3. bool doGasSelection = true,
  4. bool checksEnabled = true,
})

Implementation

Future<SimulateTransactionResponse> simulateTransaction(
        Uint8List transactionBcs,
        {List<String>? readMask,
        bool doGasSelection = true,
        bool checksEnabled = true}) =>
    core.simulateTransaction(transactionBcs,
        readMask: readMask,
        doGasSelection: doGasSelection,
        checksEnabled: checksEnabled);