Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/arc-mainnet/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const USDC = '0x3600000000000000000000000000000000000000'.toLowerCase()
const EURC = '0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a'.toLowerCase()
const USYC = '0xe9185F0c5F296Ed1797AaE4238D26CCaBEadb86C'.toLowerCase()
const CIRBTC = '0x171A4217b86A807A64eB94757Db6849fb4bDbAA0'.toLowerCase() // cirBTC (BTC-pegged) — whitelist only, not a USD stable
const WETH = '0x128cC466B61f542da60c70e3aA11c10e19B84EDB'.toLowerCase() // bridged ETH — whitelist only (not the native/reference; Arc's native is USDC)

export const FACTORY_ADDRESS = '0xf0db7b58379503491d857db50ac9ece64c653918'

Expand All @@ -27,7 +28,7 @@ export const ROLL_DELETE_HOUR_LIMITER = BigInt.fromI32(500)
export const ROLL_DELETE_MINUTE_LIMITER = BigInt.fromI32(1000)

// tokens whose amounts contribute to tracked volume and liquidity (common pairing tokens)
export const WHITELIST_TOKENS: string[] = [USDC, EURC, USYC, CIRBTC]
export const WHITELIST_TOKENS: string[] = [USDC, EURC, USYC, CIRBTC, WETH]

// USD-pegged stablecoins only: EURC is EUR-pegged (~$1.08) and USYC is yield-bearing, so both
// are whitelisted for pricing but excluded from STABLE_COINS (which are treated as exactly $1).
Expand Down
Loading