Skip to content

Commit

Permalink
add refund status types (#125)
Browse files Browse the repository at this point in the history
* add refund status types

* bump version 0.1.121
  • Loading branch information
corysquid authored Nov 27, 2024
1 parent 80987b3 commit d6049d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsquid/squid-types",
"version": "0.1.120",
"version": "0.1.121",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/status/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export enum SquidTransactionStatus {
PARTIAL_SUCCESS = "partial_success",
NOT_FOUND = "not_found",
FAILED_DESTINATION = "failed_on_destination",
REFUNDED = "refunded",
}

export type StatusResponse = ApiBasicResponse & {
Expand Down Expand Up @@ -80,6 +81,7 @@ export enum RouteActionStatus {
NOT_FOUND = "not_found",
UNKNOWN = "unknown",
AWAITING = "awaiting",
REFUNDED = "refunded",
}

export enum CCTPStatus {
Expand Down

0 comments on commit d6049d9

Please sign in to comment.