Skip to content

Commit

Permalink
add zora support
Browse files Browse the repository at this point in the history
  • Loading branch information
matteenm committed Jul 3, 2024
1 parent c43107d commit ca9d680
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
6 changes: 6 additions & 0 deletions networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,11 @@
"address": "0x8FdA5a7a8dCA67BBcDd10F02Fa0649A937215422",
"startBlock": 12637075
}
},
"zora": {
"Factory": {
"address": "0x7145F8aeef1f6510E92164038E1B6F8cB2c42Cbb",
"startBlock": 10320368
}
}
}
20 changes: 20 additions & 0 deletions src/utils/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export enum ChainId {
MATIC = 137,
OPTIMISM = 10,
ZKSYNC_ERA = 324,
ZORA = 7777777
}

// subgraph does not support string enums, hence these constants
Expand All @@ -27,6 +28,7 @@ const MAINNET_NETWORK_NAME = 'mainnet'
const MATIC_NETWORK_NAME = 'matic'
const OPTIMISM_NETWORK_NAME = 'optimism'
const ZKSYNC_ERA_NETWORK_NAME = 'zksync-era'
const ZORA_NETWORK_NAME = 'zora'

// Note: All token and pool addresses should be lowercased!
export class SubgraphConfig {
Expand Down Expand Up @@ -383,6 +385,24 @@ export function getSubgraphConfig(): SubgraphConfig {
poolsToSkip: [],
poolMappings: [],
}
} else if (selectedNetwork == ZORA_NETWORK_NAME) {
return {
factoryAddress: '0x7145f8aeef1f6510e92164038e1b6f8cb2c42cbb',
stablecoinWrappedNativePoolAddress: '0xbc59f8f3b275aa56a90d13bae7cce5e6e11a3b17', // WETH/USDC 3% pool
stablecoinIsToken0: false,
wrappedNativeAddress: '0x4200000000000000000000000000000000000006', // WETH
minimumNativeLocked: BigDecimal.fromString('1'),
stablecoinAddresses: [
'0xcccccccc7021b32ebb4e8c08314bd62f7c653ec4' // USDC
],
whitelistTokens: [
'0x4200000000000000000000000000000000000006', // WETH
'0xcccccccc7021b32ebb4e8c08314bd62f7c653ec4', // USDC
],
tokenOverrides: [],
poolsToSkip: [],
poolMappings: [],
}
} else {
throw new Error('Unsupported Network')
}
Expand Down

0 comments on commit ca9d680

Please sign in to comment.