Package money.zumo.zumokit
Class TransactionStatus
- java.lang.Object
-
- money.zumo.zumokit.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.
-
Constructor Summary
Constructors Constructor Description TransactionStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
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
-
-