Skip to content

Commit

Permalink
fix: logoURI for hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdev3 committed May 21, 2024
1 parent 3dcb9d5 commit 3be29a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.70",
"version": "0.1.71",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export interface RouteActionResponse extends Omit<RouteAction, "fromChain" | "to
export interface RouteAction extends QuoteAction {
provider?: string;
description?: string;
iconURI?: string;
logoURI?: string;
data: SwapDetails | WrapDetails | BridgeDetails | CustomCallDetails;
}

Expand Down Expand Up @@ -154,7 +154,7 @@ export interface Hook {
fundToken: string;
calls: ChainCall[];
description: string;
iconURI: string;
logoURI: string;
provider: string;
}

Expand Down

0 comments on commit 3be29a2

Please sign in to comment.