|
| 1 | +import { Address, BigDecimal, BigInt } from '@graphprotocol/graph-ts' |
| 2 | + |
| 3 | +export const FACTORY_ADDRESS = '0x204faca1764b154221e35c0d20abb3c525710498' |
| 4 | + |
| 5 | +export const REFERENCE_TOKEN = '0x3bd359c1119da7da1d913d1c4d2b7c461115433a' // WMON |
| 6 | +export const STABLE_TOKEN_POOL = '0x659bd0bc4167ba25c62e05656f78043e7ed4a9da' |
| 7 | + |
| 8 | +export const TVL_MULTIPLIER_THRESHOLD = '2' |
| 9 | +export const MATURE_MARKET = '1000000' |
| 10 | +export const MINIMUM_NATIVE_LOCKED = BigDecimal.fromString('100000') |
| 11 | + |
| 12 | +export const ROLL_DELETE_HOUR = 768 |
| 13 | +export const ROLL_DELETE_MINUTE = 1680 |
| 14 | + |
| 15 | +export const ROLL_DELETE_HOUR_LIMITER = BigInt.fromI32(500) |
| 16 | +export const ROLL_DELETE_MINUTE_LIMITER = BigInt.fromI32(1000) |
| 17 | + |
| 18 | +// token where amounts should contribute to tracked volume and liquidity |
| 19 | +// usually tokens that many tokens are paired with s |
| 20 | +export const WHITELIST_TOKENS: string[] = [ |
| 21 | + '0x3bd359c1119da7da1d913d1c4d2b7c461115433a', // WMON |
| 22 | + '0x754704bc059f8c67012fed69bc8a327a5aafb603', // USDC |
| 23 | + '0x00000000efe302beaa2b3e6e1b18d08d69a9012a', // AUSD |
| 24 | + '0xe7cd86e13ac4309349f30b3435a9d337750fc82d', // USDT |
| 25 | + '0xee8c0e9f1bffb4eb878d8f15f368a02a35481242', // WETH |
| 26 | + '0xea17e5a9efebf1477db45082d67010e2245217f1', // WSOL |
| 27 | +] |
| 28 | + |
| 29 | +export const STABLE_COINS: string[] = [ |
| 30 | + '0x754704bc059f8c67012fed69bc8a327a5aafb603', // USDC |
| 31 | + '0x00000000efe302beaa2b3e6e1b18d08d69a9012a', // AUSD |
| 32 | + '0xe7cd86e13ac4309349f30b3435a9d337750fc82d', // USDT |
| 33 | +] |
| 34 | + |
| 35 | +export const SKIP_POOLS: string[] = [] |
| 36 | + |
| 37 | +export const POOL_MAPINGS: Array<Address[]> = [] |
| 38 | + |
| 39 | +export class TokenDefinition { |
| 40 | + address: Address |
| 41 | + symbol: string |
| 42 | + name: string |
| 43 | + decimals: BigInt |
| 44 | +} |
| 45 | + |
| 46 | +export const STATIC_TOKEN_DEFINITIONS: TokenDefinition[] = [] |
0 commit comments