RetrieveEthStatus
RetrieveEthStatus = {
NotFound:null; } | {TxFinalized:TxFinalizedStatus; } | {TxSent:EthTransaction; } | {TxCreated:null; } | {Pending:null; }
Defined in: packages/cketh/src/candid/minter.d.ts:502
Retrieve the status of a withdrawal request.
Type Declaration
Section titled “Type Declaration”{ NotFound: null; }
NotFound
Section titled “NotFound”NotFound:
null
Withdrawal request is not found.
{ TxFinalized: TxFinalizedStatus; }
TxFinalized
Section titled “TxFinalized”TxFinalized:
TxFinalizedStatus
Ethereum transaction is finalized.
{ TxSent: EthTransaction; }
TxSent
Section titled “TxSent”TxSent:
EthTransaction
Ethereum transaction was signed and is sent to the network.
{ TxCreated: null; }
TxCreated
Section titled “TxCreated”TxCreated:
null
Transaction fees were estimated and an Ethereum transaction was created. Transaction is not signed yet.
{ Pending: null; }
Pending
Section titled “Pending”Pending:
null
Withdrawal request is waiting to be processed.