forked from dluxio/dlux_open_token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
state.js
80 lines (80 loc) · 2.08 KB
/
state.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const config = require('./config');
module.exports = {
"balances": {
[config.leader]: 100000000000,
"spk-cc": 0, //additional distributions
"ra": 0,
"rb": 0,
"rc": 0,
"rd": 0,
"re": 0,
"ri": 0, //in ICO account for fixed price
"rm": 0,
"rn": 0,
"rr": 0
},
"delegations": {}, //these need to be preloaded if already on account before starting block
"dex": {
"hbd": {
"tick": "0.012500", //ICO price
"buyBook": ""
},
"hive": {
"tick": "0.100000", //ICO Price
"buyBook": ""
}
},
"gov": {
[config.leader]: 1,
"t": 1 //total in other accounts
},
"markets": {
"node": {
[config.leader]: {
"attempts": 0,
"bidRate": 2000,
"contracts": 0,
"domain": config.mainAPI,
"escrow": true,
"escrows": 0,
"lastGood": 49994100, //genesisblock
"marketingRate": 0,
"self": [config.leader],
"wins": 0,
"yays": 0
}
}
},
"pow": {
[config.leader]: 0,
"t": 0 //total in other accounts
},
"queue": {
"0": [config.leader]
},
"runners": {
[config.leader]: { //config.leader
"g": 1, //config.mainAPI
}
},
"stats": {
"IPFSRate": 2000,
"budgetRate": 2000,
"currationRate": 2000,
"delegationRate": 2000,
"hashLastIBlock": "Genesis",
"icoPrice": 0, //in millihive
"interestRate": 999999999999, //mints 1 millitoken per this many millitokens in your DAO period
"lastBlock": "",
"marketingRate": 2500,
"maxBudget": 1000000000,
"MSHeld":{
"HIVE": 0,
"HBD": 0
},
"nodeRate": 2000,
"outOnBlock": 0, //amm ICO pricing
"savingsRate": 1000,
"tokenSupply": 100000000000 //your starting token supply
}
}