Skip to content

Commit

Permalink
update status type (#109)
Browse files Browse the repository at this point in the history
* update status type

* remove import
  • Loading branch information
nnoln authored Sep 5, 2024
1 parent dabdb19 commit 1a83a2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsquid/squid-types",
"version": "0.1.103",
"version": "0.1.104",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 1 addition & 3 deletions src/status/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { ChainData } from "../chains";

export declare type BlockTag = string | number;
export interface GMPError {
txHash: string;
Expand All @@ -21,7 +19,7 @@ type TransactionStatus = {
blockNumber: string;
callEventStatus: string;
callEventLog: Array<any>;
chainData?: ChainData;
chainData?: any;
transactionUrl?: string;
destinationAddress?: string;
};
Expand Down

0 comments on commit 1a83a2e

Please sign in to comment.