NectarTransferResult
The NectarTransferResult type represents the result of the token transference between funding wallet and trading wallet.
interface NectarTransferResult {
approveTxhash?: string;
transferTxhash?: string;
transferStatus?: TransactionStatus;
error?: Error;
}Properties
approveTxhash?: stringA transaction hash for the approval transaction.
It is populated only when transferring ERC20 tokens, as these require an approval step before the actual transfer can occur.
transferTxhash?: stringA transaction hash of the transfer operation.
transferStatus?: TransactionStatusA transfer status.
error?: ErrorAn error information associated with the transfer.
It is populated only when the transfer of ERC20 tokens fails.
Last updated