updated initial pool to use $100
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
CHAIN_ID=${1:-31337}
|
CHAIN_ID=${1:-1}
|
||||||
|
|
||||||
case "$CHAIN_ID" in
|
case "$CHAIN_ID" in
|
||||||
"sepolia")
|
"sepolia")
|
||||||
|
|||||||
@@ -145,11 +145,11 @@ const DEFAULT_POOL_PARAMS = {
|
|||||||
swapFeesPpm: Object.values(TEST_TOKENS).map(t => t.feePpm),
|
swapFeesPpm: Object.values(TEST_TOKENS).map(t => t.feePpm),
|
||||||
flashFeePpm: 5, // 0.0005%
|
flashFeePpm: 5, // 0.0005%
|
||||||
stable: false,
|
stable: false,
|
||||||
initialLpAmount: ethers.utils.parseUnits('1', 18) // 100 USD in 18 decimals
|
initialLpAmount: ethers.utils.parseUnits('100', 18)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Input amount in USD
|
// Input amount in USD
|
||||||
const INPUT_USD_AMOUNT = 1;
|
const INPUT_USD_AMOUNT = 100;
|
||||||
|
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user