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: TransactionStatusA transaction status.
deposit_tx_hash: stringA transaction hash.
It is a temporary value until the transaction is executed.
Last updated