ENUM

TransactionStatus

The status that a blockchain transaction or exchange transfer can take. DRAFT - The transaction has not been signed by any users of the account and is not ready to be submitted to the blockchain yet SIGNED - The transaction has been signed by all necessary users and re-signed by TrustVault / not yet been processed by the Exchange Service PREPROCESSING - A transfer that has been currently being preprocessed but yet not completed. (ie moved from KRAKEN_FUTURES to KRAKEN_SPOT but not yet confirmed that it has been deposited.). PREPROCESSED - A transfer has been preprocessed ie; moved from KRAKEN-FUTURES to KRAKEN-SPOT, but not been submitted to the sending exchange/network. SUBMITTED - The transfer has been submitted to the sending exchange / submitted to the network for processing ON_CHAIN - The transaction has been sent to the network and included in atleast 1 block / The sending exchange has submitted the transfer to the blockchain and has been included in one block. RECEIVED - The receiving exchange has identified the on-chain transaction but has not yet credited it to the client's account. CREDITED The funds are cleared in the client's account. CONFIRMED - The transaction has been included in enough blocks to deem it irreversible / USER_CANCELLED - The transaction was cancelled by a user POSTPROCESSING - A transfer that has been credited but has not finished being preprocessed (eg moved from Kraken-Spot to Kraken-Futures). COMPLETED - All the postprocessing activities have successfully finished. ie; moved from KRAKEN-SPOT to KRAKEN-FUTURES. ERROR - The transaction is in an error state NOT_AVAILABLE - The transaction status cannot be obtained at this point. Try again later BLOCKED - The transaction cannot be sent as it is BLOCKED by client defined rules

link GraphQL Schema definition

  • enum TransactionStatus {
  • DRAFT
  • SIGNED
  • PREPROCESSING
  • PREPROCESSED
  • SUBMITTED
  • ON_CHAIN
  • RECEIVED
  • CREDITED
  • CONFIRMED
  • USER_CANCELLED
  • POSTPROCESSING
  • COMPLETED
  • ERROR
  • BLOCKED
  • NOT_AVAILABLE
  • }