forked from tsarbuig/LimitSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tokens.json
65 lines (57 loc) · 4.1 KB
/
tokens.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[
{
"ENABLED": "true",
"SELECT_MODE": "limitswap", // available values : limitswap / buy_the_dip / trailing_stop / limitswap+trailing_stop / ping_pong / limitswap+ping_pong / snipe_on_pinksale / pinksale
"SYMBOL": "CAKE",
"ADDRESS": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82",
// ----------- BUY / SELL PARAMETERS ---------------------------------------------------------------------------------
"KIND_OF_SWAP": "base", // enter "base" to use BUYAMOUNTINBASE , and "tokens" to use BUYAMOUNTINTOKENS
"BUYAMOUNTINBASE": "0.005",
"BUYAMOUNTINTOKEN": "5",
"MAX_BASE_AMOUNT_PER_EXACT_TOKENS_TRANSACTION": "0.5", // used with KIND_OF_SWAP = tokens
"BUYPRICEINBASE": "0",
"SELLPRICEINBASE": "200%", // You can now put amount in % in this field
"SELLAMOUNTINTOKENS": "ALL",
"STOPLOSSPRICEINBASE": "60%", // You can now put amount in % in this field
"SLIPPAGE": "15",
// ----------- BUY_THE_DIP / TRAILING_STOP_LOSS PARAMETERS -----------------------------------------------------------
"BUY_THE_DIP_PARAMETERS": "50%---20%", // % of the dip under ATH, then % of the rise above ATL
"TRAILING_STOP_LOSS_PARAMETER": "80%", // put amount in % in this field. Enter '0' if you don't want to use it
"PING_PONG_MODE": "false", // put 'true' if you want the bot to switch between BUY_THE_DIP mode and TRAILING_STOP_LOSS mode endlessly
// ----------- LIQUIDITY PARAMETERS -----------------------------------------------------------------------------------
"WATCH_STABLES_PAIRS": "true", // use this if you want bot to check all Stable Liquidity pairs
"LIQUIDITYINNATIVETOKEN": "true",
"USECUSTOMBASEPAIR": "false",
"BASESYMBOL": "BUSD",
"BASEADDRESS": "0xe9e7cea3dedca5984780bafc599bd69add087d56",
"MINIMUM_LIQUIDITY_IN_DOLLARS": "10000",
// ----------- COUNTER ANTI BOT PARAMETERS ---------------------------------------------------------------------------
"WAIT_FOR_OPEN_TRADE": "true_after_buy_tx_failed", // check Wiki, this is very useful
"CHECK_IF_TRADING_IS_ENABLED": "false", // EXPERIMENTAL - BSC/AVAX/FTM only - put 'true' if you want the bot to check if openTrading is enabled after detecting liquidity
"BUY_AND_SELL_TAXES_CHECK": "false", // BSC/AVAX/FTM only - put 'true' if you want the bot to check BUY/SELL tax fees
"MAX_BUY_TAX_IN_%": "20", // bot will buy as soon as BUY tax is lower that this value
"MAX_SELL_TAX_IN_%": "20", // bot will buy as soon as SELL tax is lower that this value
"BUYAFTER_XXX_SECONDS": "0",
"MULTIPLEBUYS": "false", // you can use 2 options : 'several_wallets' or 'same_wallet'. Check wiki
"BUYCOUNT": "2",
// ----------- GAS PARAMETERS -----------------------------------------------------------------------------------------
"GAS": "BOOST", // Team recommend you to use BOOST here
"GAS_FOR_APPROVE": "BOOST", // Gas for Approval Tx. Team recommend you to use BOOST here
"MAX_GAS": "9999", // Put here the maximum of GAS you want to pay if you use BOOST. If GAS > MAX_GAS Tx won't be made
"BOOSTPERCENT": "30",
"BOOSTPERCENT_FOR_APPROVE": "30",
"GASLIMIT": "1000000",
"GASPRIORITY_FOR_ETH_ONLY": "1.5",
// ----------- OTHER PARAMETERS ---------------------------------------------------------------------------------------
"MOONBAG": "0", // Bot will keep this amount in your wallet after SELL order
"MAXTOKENS": "1", // Bot will stop if your balance > MAXTOKENS
"HASFEES": "false",
"MAX_SUCCESS_TRANSACTIONS_IN_A_ROW": "2",
"MAX_FAILED_TRANSACTIONS_IN_A_ROW": "2",
"RUGDOC_CHECK": "true",
"ALWAYS_CHECK_BALANCE": "false", // use this if you want bot to check your token balance between each price check
// ----------- PINKSALE SNIPING ----------------------------------------------------------------------------------------
"PINKSALE_PRESALE_ADDRESS": "enter here the presale address if you're sniping a Pinksale listing",
"PINKSALE_PRESALE_START_TIMESTAMP": "1647477029"
}
]