Commit 1dbd3240 authored by Eric Zhong's avatar Eric Zhong Committed by GitHub

feat: Add protcol.MIXED to protocols (#4334)

Add protcol.MIXED to protocols
parent 47e6c089
...@@ -24,7 +24,7 @@ function getRouterProvider(chainId: ChainId): BaseProvider { ...@@ -24,7 +24,7 @@ function getRouterProvider(chainId: ChainId): BaseProvider {
throw new Error(`Router does not support this chain (chainId: ${chainId}).`) throw new Error(`Router does not support this chain (chainId: ${chainId}).`)
} }
const protocols: Protocol[] = [Protocol.V2, Protocol.V3] const protocols: Protocol[] = [Protocol.V2, Protocol.V3, Protocol.MIXED]
const DEFAULT_QUERY_PARAMS = { const DEFAULT_QUERY_PARAMS = {
protocols: protocols.map((p) => p.toLowerCase()).join(','), protocols: protocols.map((p) => p.toLowerCase()).join(','),
......
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