Skip to content

Commit

Permalink
add whales address for other L2 usdc native
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 committed Feb 15, 2024
1 parent fb39b2e commit 97d5dcc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const GAS_ESTIMATE_DEVIATION_PERCENT: { [chainId in ChainId]: number } = {
[ChainId.MAINNET]: 35,
[ChainId.GOERLI]: 62,
[ChainId.SEPOLIA]: 50,
[ChainId.OPTIMISM]: 26,
[ChainId.OPTIMISM]: 35,
[ChainId.OPTIMISM_GOERLI]: 30,
[ChainId.OPTIMISM_SEPOLIA]: 30,
[ChainId.ARBITRUM_ONE]: 53,
Expand All @@ -130,7 +130,7 @@ const GAS_ESTIMATE_DEVIATION_PERCENT: { [chainId in ChainId]: number } = {
[ChainId.CELO_ALFAJORES]: 30,
[ChainId.GNOSIS]: 30,
[ChainId.MOONBEAM]: 30,
[ChainId.BNB]: 35,
[ChainId.BNB]: 44,
[ChainId.AVALANCHE]: 36,
[ChainId.BASE]: 34,
[ChainId.BASE_GOERLI]: 30,
Expand Down
14 changes: 13 additions & 1 deletion test/test-util/whales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ import {
UNI_MAINNET,
USDC_MAINNET,
USDC_NATIVE_ARBITRUM,
USDC_NATIVE_AVAX,
USDC_NATIVE_BASE,
USDC_NATIVE_OPTIMISM,
USDC_NATIVE_POLYGON,
USDC_ON,
USDT_MAINNET,
WETH9,
WNATIVE_ON,
WNATIVE_ON
} from '../../src';
import { BULLET, BULLET_WITHOUT_TAX } from './mock-data';

Expand Down Expand Up @@ -66,6 +70,8 @@ export const WHALES = (token: Currency): string => {
return '0x41653c7d61609d856f29355e404f310ec4142cfb';
case USDC_ON(ChainId.OPTIMISM):
return '0xad7b4c162707e0b2b5f6fddbd3f8538a5fba0d60';
case USDC_NATIVE_OPTIMISM:
return '0xf491d040110384dbcf7f241ffe2a546513fd873d';
case USDC_ON(ChainId.OPTIMISM_GOERLI):
return '0x4cb0645e92a3b5872ae54e5704e03c09ca0ea220';
case USDC_ON(ChainId.ARBITRUM_ONE):
Expand All @@ -78,14 +84,20 @@ export const WHALES = (token: Currency): string => {
return '0xe2a3422f3168149AD2d11b4dE2B97b05f1ebF76e';
case USDC_ON(ChainId.POLYGON):
return '0xe7804c37c13166ff0b37f5ae0bb07a3aebb6e245';
case USDC_NATIVE_POLYGON:
return '0x2C2301FDB0bfA06EAABaA0122CbCEb2265337C25';
case USDC_ON(ChainId.POLYGON_MUMBAI):
return '0x48520ff9b32d8b5bf87abf789ea7b3c394c95ebe';
case USDC_ON(ChainId.AVALANCHE):
return '0x9f8c163cBA728e99993ABe7495F06c0A3c8Ac8b9';
case USDC_NATIVE_AVAX:
return '0x3A2434c698f8D79af1f5A9e43013157ca8B11a66';
case USDC_ON(ChainId.BNB):
return '0x8894E0a0c962CB723c1976a4421c95949bE2D4E3';
case USDC_ON(ChainId.BASE):
return '0x4a3636608d7bc5776cb19eb72caa36ebb9ea683b';
case USDC_NATIVE_BASE:
return '0x20fe51a9229eef2cf8ad9e89d91cab9312cf3b7a';
case DAI_ON(ChainId.GOERLI):
return '0x20918f71e99c09ae2ac3e33dbde33457d3be01f4';
case DAI_ON(ChainId.SEPOLIA):
Expand Down

0 comments on commit 97d5dcc

Please sign in to comment.