Exemplo n.º 1
0
 public string SignTransaction(TransactionInput transaction)
 {
     if (transaction == null)
     {
         throw new ArgumentNullException(nameof(transaction));
     }
     SetDefaultGasPriceAndCostIfNotSet(transaction);
     return(_transactionSigner.SignTransaction((Account)Account, transaction, ChainId));
 }