-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
package fireblocks | ||
|
||
type Status string | ||
type TxStatus string | ||
|
||
// statuses for transactions | ||
// ref: https://developers.fireblocks.com/reference/primary-transaction-statuses | ||
const ( | ||
Submitted Status = "SUBMITTED" | ||
PendingScreening Status = "PENDING_AML_SCREENING" | ||
PendingAuthorization Status = "PENDING_AUTHORIZATION" | ||
Queued Status = "QUEUED" | ||
PendingSignature Status = "PENDING_SIGNATURE" | ||
PendingEmailApproval Status = "PENDING_3RD_PARTY_MANUAL_APPROVAL" | ||
Pending3rdParty Status = "PENDING_3RD_PARTY" | ||
Broadcasting Status = "BROADCASTING" | ||
Confirming Status = "CONFIRMING" | ||
Completed Status = "COMPLETED" | ||
Cancelling Status = "CANCELLING" | ||
Cancelled Status = "CANCELLED" | ||
Blocked Status = "BLOCKED" | ||
Rejected Status = "REJECTED" | ||
Failed Status = "FAILED" | ||
Submitted TxStatus = "SUBMITTED" | ||
PendingScreening TxStatus = "PENDING_AML_SCREENING" | ||
PendingAuthorization TxStatus = "PENDING_AUTHORIZATION" | ||
Queued TxStatus = "QUEUED" | ||
PendingSignature TxStatus = "PENDING_SIGNATURE" | ||
PendingEmailApproval TxStatus = "PENDING_3RD_PARTY_MANUAL_APPROVAL" | ||
Pending3rdParty TxStatus = "PENDING_3RD_PARTY" | ||
Broadcasting TxStatus = "BROADCASTING" | ||
Confirming TxStatus = "CONFIRMING" | ||
Completed TxStatus = "COMPLETED" | ||
Cancelling TxStatus = "CANCELLING" | ||
Cancelled TxStatus = "CANCELLED" | ||
Blocked TxStatus = "BLOCKED" | ||
Rejected TxStatus = "REJECTED" | ||
Failed TxStatus = "FAILED" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters