Commit 0ea029db authored by Justin Domingue's avatar Justin Domingue Committed by GitHub

add protocols param to quote endpoint (#2774)

* add protocols param to quote endpoint

* Fix code style issues with ESLint
Co-authored-by: default avatarLint Action <lint-action@samuelmeuli.com>
parent cb41df4c
......@@ -21,7 +21,7 @@ export const routingApi = createApi({
type: 'exactIn' | 'exactOut'
}
>({
query: (args) => `quote?${qs.stringify(args)}`,
query: (args) => `quote?${qs.stringify({ ...args, protocols: 'v3' })}`,
}),
}),
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment