Skip to content

Commit

Permalink
Merge branch 'develop' into feat/migrate-cosmos-v1
Browse files Browse the repository at this point in the history
  • Loading branch information
nnoln committed Jul 10, 2024
2 parents d65ecff + aab92bd commit d795318
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@
"typescript": "^5.3.3"
},
"dependencies": {
"long": "^5.2.3",
"@axelar-network/axelarjs-sdk": "^0.16.1",
"@ethersproject/providers": "^5.7.2",
"typescript": "*"
"typescript": "*",
"ws": "^8.18.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
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
7 changes: 6 additions & 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 Expand Up @@ -2767,6 +2767,11 @@ ws@^8.13.0:
resolved "https://registry.yarnpkg.com/ws/-/ws-8.15.1.tgz#271ba33a45ca0cc477940f7f200cd7fba7ee1997"
integrity sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==

ws@^8.18.0:
version "8.18.0"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==

ws@~8.11.0:
version "8.11.0"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
Expand Down

0 comments on commit d795318

Please sign in to comment.