-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfo.config.js
51 lines (43 loc) · 1.33 KB
/
info.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
const config = {
// mint with bnb contract
LeaderSupply:25 ,
LegendarySupply:150,
EpicSupply:250, // change values here
RareSupply:350,
UncommonSupply:400,
CommonSupply:500,
leader_items_cost: 5,
legendary_items_cost: 1,
epic_items_cost: 0.7,
rare_items_cost: 0.4,
uncommon_items_cost: 0.2,
common_items_cost: 0.1
}
const social ={
googlePlayStore:'https://play.google.com/store/', // will update after game launch to play store and app store
appleAppStore:'https://www.apple.com/app-store/',
windows :'https://www.mediafire.com',
twitter:'https://twitter.com/DexBattleCrypto',
discord:'https://discord.gg/9ZMPeDgD7a',
telegram:'https://t.me/+I9YpjZPWNbFmYTA0',
facebook:'https://www.facebook.com/profile.php?id=100088108030091',
opensea: 'https://opensea.io', // will update after we create opeansea collection
email : '[email protected]',
instagram : 'https://www.instagram.com/dex.battle/'
}
const dex ={
//mint with dex coin contract
LeaderSupply:25 ,
LegendarySupply:150,
EpicSupply:250, // change values here
RareSupply:350,
UncommonSupply:400,
CommonSupply:500,
leader_items_cost: 5000,
legendary_items_cost: 3500, //replace cost here
epic_items_cost: 2800,
rare_items_cost: 2300,
uncommon_items_cost: 1800,
common_items_cost: 1250
}
export {config , social, dex}