forked from cerc-io/stack-orchestrator
ddaddd2a8c
* Add a sushiswap-graph stack * Fix shared volume name in fixturenet-lotus * Export Lotus miner node multiaddr after initialization * Add deployment scripts for sushiswap contracts * Skip contracts deployment if already exists * Rename stack to sushiswap-subgraph * Fix postgres and use Lotus fixturenet in graph-node stack * Add sushiswap v3 subgraph stack * Fixes to deploy sushiswap subgraph to graph-node * Add graph-node container in sushiswap subgraph stack --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
21 lines
410 B
Plaintext
21 lines
410 B
Plaintext
module.exports = {
|
|
network: 'lotus-fixturenet',
|
|
v3: {
|
|
factory: {
|
|
address: 'FACTORY_ADDRESS',
|
|
startBlock: FACTORY_BLOCK
|
|
},
|
|
positionManager: {
|
|
address: 'NFPM_ADDRESS',
|
|
startBlock: NFPM_BLOCK
|
|
},
|
|
native: { address: 'NATIVE_ADDRESS' },
|
|
whitelistedTokenAddresses: [
|
|
'NATIVE_ADDRESS',
|
|
],
|
|
stableTokenAddresses: [
|
|
],
|
|
minimumEthLocked: 1.5
|
|
}
|
|
}
|