Skip to content

Commit

Permalink
merge main to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kwongpan committed Jul 9, 2024
2 parents c307229 + 5902b30 commit aab92bd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"typescript": "^5.3.3"
},
"dependencies": {
"long": "^5.2.3",
"@axelar-network/axelarjs-sdk": "^0.16.1",
"@ethersproject/providers": "^5.7.2",
"typescript": "*",
Expand Down
1 change: 1 addition & 0 deletions src/squid/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ChainType } from "../chains";
import Long from "long";

export enum SquidRouteType {
CALL_BRIDGE_CALL = "CALL_BRIDGE_CALL",
Expand Down
10 changes: 7 additions & 3 deletions src/status/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import { BlockTag } from "@ethersproject/providers";
import { GMPError } from "@axelar-network/axelarjs-sdk";

import { ChainData } from "../chains";

export declare type BlockTag = string | number;
export interface GMPError {
txHash: string;
chain: string;
message: string;
}

export type StatusRequest = {
transactionId: string;
routeType: string;
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2083,7 +2083,7 @@ long@^4.0.0:
resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==

long@^5.0.0, long@^5.2.0:
long@^5.0.0, long@^5.2.0, long@^5.2.3:
version "5.2.3"
resolved "https://registry.yarnpkg.com/long/-/long-5.2.3.tgz#a3ba97f3877cf1d778eccbcb048525ebb77499e1"
integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==
Expand Down

0 comments on commit aab92bd

Please sign in to comment.