Transaction

The Transaction type represents the transaction of an ERC20 token from a user's Web3 (funding) wallet, such as MetaMask, to the trading wallet.

interface Transaction {
  deposit_status: TransactionStatus;
  deposit_tx_hash: string;
}

Properties

  • deposit_status: TransactionStatus

    • A transaction status.

  • deposit_tx_hash: string

    • A transaction hash.

    • It is a temporary value until the transaction is executed.

Last updated