Skip to content

Commit

Permalink
Removed ethers an axelar sdk from types:
Browse files Browse the repository at this point in the history
  • Loading branch information
rrigoni committed Jul 5, 2024
1 parent 7b1427e commit bdcf18b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 977 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsquid/squid-types",
"version": "0.1.84",
"version": "0.1.85",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -40,8 +40,6 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@axelar-network/axelarjs-sdk": "^0.16.1",
"@ethersproject/providers": "^5.7.2",
"typescript": "*"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/squid/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export interface CosmosIbcTransferCall {
};
sender: string;
receiver: string;
timeoutTimestamp: Long;
timeoutTimestamp: number;
memo: string;
};
}
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
Loading

0 comments on commit bdcf18b

Please sign in to comment.