Skip to content

Commit

Permalink
HOTFIX: AvailableRoutesParams partial
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteenkamp89 committed Sep 4, 2024
1 parent e1478da commit 1fdc3dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk/src/actions/getAvailableRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { Address } from "viem";
import { buildSearchParams, fetchAcross } from "../utils";
import { getClient } from "../client";

export type AvailableRoutesParams = {
export type AvailableRoutesParams = Partial<{
originToken: Address;
destinationToken: Address;
destinationChainId: number;
originChainId: number;
};
}>;

export type AvailableRoutesResponse = {
originChainId: number;
Expand Down

0 comments on commit 1fdc3dc

Please sign in to comment.