Interface ITransactionOpType

Represents an operation which transfers of coins from one account to another.

See

  • Transaction.amount - represent an Amount in coins (string)
  • Transaction.recipient_address - the address of the recipient
interface ITransactionOpType {
    Transaction: {
        amount: string;
        recipient_address: string;
    };
}

Properties

Properties

Transaction: {
    amount: string;
    recipient_address: string;
}

Type declaration

  • amount: string
  • recipient_address: string

Generated using TypeDoc