Class TransactionStatus


  • public final class TransactionStatus
    extends java.lang.Object
    Transaction status, for example 'PENDING'.

    Once transaction is submitted it has to be confirmed. This might take variable amount of time depending on the selected fee rate. Once a transaction is confirmed its status will change from pending to confirmed.

    See Send Transactions guide for details.

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String AUTHORISED
      Card transaction was authorised.
      static java.lang.String CANCELLED
      Ethereum transaction was overriden by a different transaction with higher gas price than the previously submitted transaction and with with the same nonce as that previously submitted transaction.
      static java.lang.String CONFIRMED
      Transacion was confirmed and added to blockchain.
      static java.lang.String FAILED
      Transaction failed.
      static java.lang.String PAUSED
      Transaction has been paused by Transaction Service before being submitted to blockchain.
      static java.lang.String PENDING
      Transaction has been submitted to blockchain.
      static java.lang.String REFUNDED
      Transaction was refunded.
      static java.lang.String REJECTED
      Transaction has been rejected by Transaction Service before being submitted to blockchain.
      static java.lang.String RESUBMITTED
      Ethereum transaction was overriden by sending the same transaction with higher gas price.
      static java.lang.String REVERSED
      Card transaction was reversed.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • PAUSED

        public static final java.lang.String PAUSED
        Transaction has been paused by Transaction Service before being submitted to blockchain.
        See Also:
        Constant Field Values
      • REJECTED

        public static final java.lang.String REJECTED
        Transaction has been rejected by Transaction Service before being submitted to blockchain.
        See Also:
        Constant Field Values
      • PENDING

        public static final java.lang.String PENDING
        Transaction has been submitted to blockchain.
        See Also:
        Constant Field Values
      • CONFIRMED

        public static final java.lang.String CONFIRMED
        Transacion was confirmed and added to blockchain.
        See Also:
        Constant Field Values
      • FAILED

        public static final java.lang.String FAILED
        Transaction failed.
        See Also:
        Constant Field Values
      • RESUBMITTED

        public static final java.lang.String RESUBMITTED
        Ethereum transaction was overriden by sending the same transaction with higher gas price.
        See Also:
        Constant Field Values
      • CANCELLED

        public static final java.lang.String CANCELLED
        Ethereum transaction was overriden by a different transaction with higher gas price than the previously submitted transaction and with with the same nonce as that previously submitted transaction.
        See Also:
        Constant Field Values
      • AUTHORISED

        public static final java.lang.String AUTHORISED
        Card transaction was authorised.
        See Also:
        Constant Field Values
      • REVERSED

        public static final java.lang.String REVERSED
        Card transaction was reversed.
        See Also:
        Constant Field Values
      • REFUNDED

        public static final java.lang.String REFUNDED
        Transaction was refunded.
        See Also:
        Constant Field Values
    • Constructor Detail

      • TransactionStatus

        public TransactionStatus()
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object