config testnet
This commit is contained in:
parent
9dd802726a
commit
032b30cd9c
|
@ -45,20 +45,19 @@ const configs: Record<typeof process.env.ENV, Config> = {
|
|||
votesLimit: 2,
|
||||
},
|
||||
/**
|
||||
* Preview/Stage.
|
||||
* Preview.
|
||||
*
|
||||
* All preview deployments (from pull requests) will share voting history with production.
|
||||
* Contracts haven't been deployed to testnet.
|
||||
* All preview deployments (from pull requests) will share voting history.
|
||||
*/
|
||||
preview: {
|
||||
wakuConfig: {
|
||||
environment: 'production',
|
||||
wakuTopic: `/communitiesCuration/${version}/directory/proto/`,
|
||||
wakuFeatureTopic: `/communitiesCuration/${version}/featured/proto/`,
|
||||
environment: 'test',
|
||||
wakuTopic: `/communitiesCuration/preview/${version}/directory/proto/`,
|
||||
wakuFeatureTopic: `/communitiesCuration/preview/${version}/featured/proto/`,
|
||||
},
|
||||
daapConfig: {
|
||||
readOnlyChainId: ChainId.Optimism,
|
||||
networks: [Optimism],
|
||||
readOnlyChainId: ChainId.OptimismGoerli,
|
||||
networks: [OptimismGoerli],
|
||||
notifications: {
|
||||
checkInterval: 500,
|
||||
expirationPeriod: 50000,
|
||||
|
|
|
@ -8,6 +8,13 @@ export const contracts = {
|
|||
directoryContract: '0xA8d270048a086F5807A8dc0a9ae0e96280C41e3A',
|
||||
tokenContract: '0x650AF3C15AF43dcB218406d30784416D64Cfb6B2',
|
||||
},
|
||||
[ChainId.OptimismGoerli]: {
|
||||
votingContract: '0x744Fd6e98dad09Fb8CCF530B5aBd32B56D64943b',
|
||||
featuredVotingContract: '0x744Fd6e98dad09Fb8CCF530B5aBd32B56D64943b',
|
||||
directoryContract: '0xB3Ef5B0825D5f665bE14394eea41E684CE96A4c5',
|
||||
tokenContract: '0xcAD273fA2bb77875333439FDf4417D995159c3E1',
|
||||
multicallContract: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
||||
},
|
||||
[ChainId.Hardhat]: {
|
||||
votingContract: process.env.VOTING_CONTRACT ?? '0x0000000000000000000000000000000000000000',
|
||||
directoryContract: process.env.DIRECTORY_CONTRACT ?? '0x0000000000000000000000000000000000000000',
|
||||
|
|
Loading…
Reference in New Issue