Skip to content

Commit

Permalink
Feat/remove ethers axelar sdk (#83)
Browse files Browse the repository at this point in the history
* Removed ethers an axelar sdk from types:

* Removed ethers an axelar sdk from types:

* Removed yarn.lock

* Added long library
  • Loading branch information
rrigoni authored Jul 9, 2024
1 parent 7b1427e commit 5902b30
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2,802 deletions.
5 changes: 2 additions & 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.84.1",
"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,7 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@axelar-network/axelarjs-sdk": "^0.16.1",
"@ethersproject/providers": "^5.7.2",
"long": "^5.2.3",
"typescript": "*"
},
"devDependencies": {
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
Loading

0 comments on commit 5902b30

Please sign in to comment.