sendTransactionOperation static method

dynamic sendTransactionOperation(
  1. String server,
  2. SoftSigner signer,
  3. KeyStoreModel keyStore,
  4. String to,
  5. int amount, {
  6. int offset = 54,
  7. bool isKeyRevealed = false,
})

send a transaction operation fee, gasLimit and storageLimit are estimated by the fee estimation service

Implementation

static sendTransactionOperation(String server, SoftSigner signer,
    KeyStoreModel keyStore, String to, int amount,
    {int offset = 54, bool isKeyRevealed = false}) async {
  assert(keyStore.publicKey != null);
  assert(keyStore.secretKey != null);

  return await TezosNodeWriter.sendTransactionOperation(
    server,
    signer,
    keyStore,
    to,
    amount,
    isKeyRevealed: isKeyRevealed,
  );
}