-
Notifications
You must be signed in to change notification settings - Fork 125
/
appsettings.json
60 lines (60 loc) · 1.84 KB
/
appsettings.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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"Serilog": {
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File" ],
"MinimumLevel": "Debug",
"WriteTo": [
{ "Name": "Console" },
{
"Name": "File",
"Args": { "path": "Sniper.log" }
}
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
"Properties": {
"Application": "BscTokenSniper"
}
},
"SniperConfiguration": {
"WalletAddress": "xxx",
"WalletPrivateKey": "xxx",
"PancakeswapFactoryAddress": "0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73",
"LiquidityPairAddress": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
"PancakeswapRouterAddress": "0x10ED43C718714eb63d5aA57B78B54704E256024E",
"V1PancakeswapRouterAddress": "0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F",
"CheckRouterAddressInContract": true,
"ChainId": "56",
"AmountToSnipe": 0.01,
"BuyDelaySeconds": 0,
"ProfitPercentageMargin": 20,
"TransactionRevertTimeSeconds": 10000,
"GasAmount": 300000,
"BscHttpApi": "https://speedy-nodes-nyc.moralis.io/xxx/bsc/mainnet",
"BscNode": "wss://speedy-nodes-nyc.moralis.io/xxx/bsc/mainnet/ws",
"BscScanApiKey": "xxx",
"MinLiquidityAmount": 0.5,
"MinimumPercentageOfTokenInLiquidityPool": 50,
"RugCheckEnabled": true,
"RenounceOwnershipCheck": true,
"RugdocCheckEnabled": true,
"DeadWallets": [
"0x000000000000000000000000000000000000dEaD",
"0x0000000000000000000000000000000000000000"
],
"OnlyBuyWhitelist": false,
"WhitelistedTokens": [
"0x0000000000000000000000000000000000000000"
],
"ContractRugCheckStrings": [
"transfer(owner()"
],
"HoneypotCheck": false,
"HoneypotCheckAmount": 0.0000001
}
}