Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gaepsuni committed Dec 18, 2022
1 parent 63146ef commit e360bba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const INIT_CODE_HASH: { [chainId in ChainId]: string } = {
[ChainId.FUJI]: '0x6c67ac67d0dad54be7b066edd9b4154fb5a0ab7d01232259b9ff26ebc1739ba2',
[ChainId.AVALANCHE]: '0x0bbca9af0511ad1a1da383135cf3a8d2ac620e549ef9f6ae3a4c33c2fed0af91',
[ChainId.ARBITRUM_ONE]: '0x0000000000000000000000000000000000000000',
[ChainId.ARB_GOERLI]: 'Oxb6ca21329f2e28f35a5fc6848619516b62c84c068b584d1497decf19662bb190'
[ChainId.ARB_GOERLI]: '0xb6ca21329f2e28f35a5fc6848619516b62c84c068b584d1497decf19662bb190'
}

export const MINIMUM_LIQUIDITY = JSBI.BigInt(1000)
Expand Down
2 changes: 1 addition & 1 deletion test/pair.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Pair', () => {
expect(Pair.getAddress(USDT, JOE, ChainId.FUJI)).toEqual('0xd520cF33C013909AFc9Cf158D73F5460753B5ec4')
})
it('returns the correct address - arb goerlli', () => {
expect(Pair.getAddress(gUSDT, gUSDC, ChainId.ARB_GOERLI)).toEqual('0x682d5a31c8bdf110657d92f78467d196007749e3')
expect(Pair.getAddress(gUSDT, gUSDC, ChainId.ARB_GOERLI)).toEqual('0x682d5A31C8BDf110657d92F78467D196007749e3')
})
})

Expand Down

0 comments on commit e360bba

Please sign in to comment.