Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Feb 23, 2024
1 parent 10d0ad0 commit 581a0c8
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/addresses.test.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
import {SWAP_ROUTER_02_ADDRESSES} from "./addresses";
import {ChainId} from "./chains";
import { SWAP_ROUTER_02_ADDRESSES } from './addresses'
import { ChainId } from './chains'

describe('addresses', () => {
describe('swap router 02 addresses', () => {
it('should return the correct address for base', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.BASE)
expect(address).toEqual('0x2626664c2603336E57B271c5C0b26F421741e481')
});
describe('swap router 02 addresses', () => {
it('should return the correct address for base', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.BASE)
expect(address).toEqual('0x2626664c2603336E57B271c5C0b26F421741e481')
})

it('should return the correct address for base goerli', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.BASE_GOERLI)
expect(address).toEqual('0x8357227D4eDc78991Db6FDB9bD6ADE250536dE1d')
});
it('should return the correct address for base goerli', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.BASE_GOERLI)
expect(address).toEqual('0x8357227D4eDc78991Db6FDB9bD6ADE250536dE1d')
})

it('should return the correct address for avalanche', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.AVALANCHE)
expect(address).toEqual('0xbb00FF08d01D300023C629E8fFfFcb65A5a578cE')
});
it('should return the correct address for avalanche', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.AVALANCHE)
expect(address).toEqual('0xbb00FF08d01D300023C629E8fFfFcb65A5a578cE')
})

it('should return the correct address for BNB', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.BNB)
expect(address).toEqual('0xB971eF87ede563556b2ED4b1C0b0019111Dd85d2')
});
});
});
it('should return the correct address for BNB', () => {
const address = SWAP_ROUTER_02_ADDRESSES(ChainId.BNB)
expect(address).toEqual('0xB971eF87ede563556b2ED4b1C0b0019111Dd85d2')
})
})
})

0 comments on commit 581a0c8

Please sign in to comment.