forked from cerc-io/stack-orchestrator
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
|
||
|
}
|
||
|
}
|