Skip to content

Commit

Permalink
chore(SWA-134): run linter fixes after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
ElRodrigote committed Jan 15, 2024
1 parent 497a787 commit 9faead6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/entities/trades/swapr-v3/SwaprV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ import { UnsignedTransaction } from '@ethersproject/transactions'
import { parseUnits } from '@ethersproject/units'
import { Fraction, validateAndParseAddress } from '@uniswap/sdk-core'
import dayjs from 'dayjs'
import JSBI from 'jsbi'
import invariant from 'tiny-invariant'

import { ChainId, ONE, TradeType } from '../../../constants'
import { Currency } from '../../currency'
import { CurrencyAmount, Percent, Price, TokenAmount } from '../../fractions'
import { Token, WXDAI } from '../../token'
import { maximumSlippage as defaultMaximumSlippage } from '../constants'
import { TradeWithSwapTransaction } from '../interfaces/trade'
import { TradeOptions } from '../interfaces/trade-options'
import { RoutablePlatform } from '../routable-platform'
import { getProvider, tryGetChainId } from '../utils'
import { SWAPR_ALGEBRA_CONTRACTS } from './constants'
import { getQuoterContract, getRouterContract } from './contracts'
import { getRoutes } from './routes'
import { maximumSlippage as defaultMaximumSlippage } from '../constants'
import { Token, WXDAI } from '../../token'
import JSBI from 'jsbi'

interface SwaprV3ConstructorParams {
maximumSlippage: Percent
Expand Down
2 changes: 1 addition & 1 deletion src/entities/trades/swapr-v3/swapr-v3.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ describe('SwaprV3', () => {
expect(trade?.inputAmount.currency.address).toBe(tokenUSDC.address)

const swapOptions = {
recipient: recipient,
recipient,
account: recipient,
}

Expand Down

0 comments on commit 9faead6

Please sign in to comment.