Skip to content

Commit

Permalink
Added long library
Browse files Browse the repository at this point in the history
  • Loading branch information
rrigoni committed Jul 9, 2024
1 parent f6ad70c commit 32faf3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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",
"typescript": "*"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion 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 Expand Up @@ -110,7 +111,7 @@ export interface CosmosIbcTransferCall {
};
sender: string;
receiver: string;
timeoutTimestamp: number;
timeoutTimestamp: Long;
memo: string;
};
}
Expand Down

0 comments on commit 32faf3c

Please sign in to comment.