sendTransaction method

Future<TransactionResponse> sendTransaction(
  1. String data
)

Submits transaction to the network to be mined.

The transaction must be signed, and be valid (i.e. the nonce is correct and the account has sufficient balance to pay for the transaction).

await provider.sendTransaction("0xf86e808502540be400825208948ba1f109551bd432803012645ac136ddd64dba72880de0b6b3a764000080820a96a0f0c5bcb11e5a16ab116c60a0e5837ae98ec36e7f217740076572e8183002edd2a01ed1b4411c2840b9793e8be5415a554507f1ea320069be6dcecabd7b9097dbd4");

Implementation

Future<TransactionResponse> sendTransaction(String data) =>
    call<TransactionResponse>('sendTransaction', [data]);