Skip to content

Commit

Permalink
feat: improve path finder request type (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdev3 authored Aug 1, 2024
1 parent 88dcf78 commit 46477df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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.93",
"version": "0.1.94",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
6 changes: 2 additions & 4 deletions src/path/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ export interface PathAction {
export interface PathParams {
fromChainId: string;
toChainId: string;
fromToken: Pick<Token, "type" | "chainId" | "name" | "symbol" | "decimals" | "address">;
toToken: Pick<Token, "type" | "chainId" | "name" | "symbol" | "decimals" | "address">;
maxResults?: number;
subgraphIds?: string[];
fromToken: string;
toToken: string;
}

0 comments on commit 46477df

Please sign in to comment.