prettier and lint everything
This commit is contained in:
parent
cf740b74f5
commit
6774d2f588
@ -1,5 +1,4 @@
|
||||
[
|
||||
|
||||
{
|
||||
"version": "16.60.0",
|
||||
"changes": [
|
||||
|
@ -526,7 +526,7 @@ export const BRIDGE_ENCODERS: {
|
||||
[ERC20BridgeSource.SpookySwap]: routerAddressPathEncoder,
|
||||
[ERC20BridgeSource.MorpheusSwap]: routerAddressPathEncoder,
|
||||
[ERC20BridgeSource.BiSwap]: routerAddressPathEncoder,
|
||||
// Avalanche
|
||||
// Avalanche
|
||||
[ERC20BridgeSource.GMX]: gmxAddressPathEncoder,
|
||||
[ERC20BridgeSource.Platypus]: platypusAddressPathEncoder,
|
||||
// Celo
|
||||
|
@ -1719,10 +1719,7 @@ export class SamplerOperations {
|
||||
}
|
||||
case ERC20BridgeSource.GMX: {
|
||||
// low liquidity mim pool dont quote
|
||||
if (
|
||||
takerToken === AVALANCHE_TOKENS.MIM ||
|
||||
makerToken === 'AVALANCHE_TOKENS.MIM'
|
||||
) {
|
||||
if (takerToken === AVALANCHE_TOKENS.MIM || makerToken === 'AVALANCHE_TOKENS.MIM') {
|
||||
return [];
|
||||
}
|
||||
return this.getGMXSellQuotes(
|
||||
@ -2047,10 +2044,7 @@ export class SamplerOperations {
|
||||
}
|
||||
case ERC20BridgeSource.GMX: {
|
||||
// bad mim pool dont quote
|
||||
if (
|
||||
takerToken === 'AVALANCHE_TOKENS.MIM' ||
|
||||
makerToken === 'AVALANCHE_TOKENS.MIM'
|
||||
) {
|
||||
if (takerToken === 'AVALANCHE_TOKENS.MIM' || makerToken === 'AVALANCHE_TOKENS.MIM') {
|
||||
return [];
|
||||
}
|
||||
return this.getGMXBuyQuotes(
|
||||
|
Loading…
x
Reference in New Issue
Block a user