Skip to content

Commit

Permalink
fix: update for #3372
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Nov 19, 2024
1 parent 192fb72 commit e1a1a77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk-router/src/rfq/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export type PutRFQRequestAPI = {
dest_chain_id: number
origin_token_addr: string
dest_token_addr: string
origin_amount: string
origin_amount_exact: string
expiration_window: number
}
}
Expand Down Expand Up @@ -118,7 +118,7 @@ export const getBestRelayerQuote = async (
dest_chain_id: ticker.destToken.chainId,
origin_token_addr: ticker.originToken.token,
dest_token_addr: ticker.destToken.token,
origin_amount: originAmount.toString(),
origin_amount_exact: originAmount.toString(),
expiration_window: EXPIRATION_WINDOW,
},
}
Expand Down

0 comments on commit e1a1a77

Please sign in to comment.