-
Notifications
You must be signed in to change notification settings - Fork 252
/
db.js
156 lines (144 loc) · 4.4 KB
/
db.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
const mongoose = require('mongoose');
const { Schema } = mongoose;
const Block = new Schema(
{
'number': { type: Number, index: { unique: true } },
'hash': String,
'parentHash': String,
'nonce': String,
'sha3Uncles': String,
'logsBloom': String,
'transactionsRoot': String,
'stateRoot': String,
'receiptRoot': String,
'miner': { type: String, lowercase: true },
'difficulty': String,
'totalDifficulty': String,
'size': Number,
'extraData': String,
'gasLimit': Number,
'gasUsed': Number,
'timestamp': Number,
'blockTime': Number,
'uncles': [String],
}, { collection: 'Block' },
);
const Account = new Schema(
{
'address': { type: String, index: { unique: true } },
'balance': Number,
'blockNumber': Number,
'type': { type: Number, default: 0 }, // address: 0x0, contract: 0x1
}, { collection: 'Account' },
);
const Contract = new Schema(
{
'address': { type: String, index: { unique: true } },
'blockNumber': Number,
'ERC': { type: Number, index: true }, //0:normal contract, 2:ERC20, 3:ERC223
'creationTransaction': String,
'contractName': String,
'tokenName': String,
'symbol': String,
'owner': String,
'decimals': Number,
'totalSupply': Number,
'compilerVersion': String,
'optimization': Boolean,
'sourceCode': String,
'abi': String,
'byteCode': String,
}, { collection: 'Contract' },
);
const Transaction = new Schema(
{
'hash': { type: String, index: { unique: true }, lowercase: true },
'nonce': Number,
'blockHash': String,
'blockNumber': Number,
'transactionIndex': Number,
'status': Number,
'from': { type: String, lowercase: true },
'to': { type: String, lowercase: true },
'creates': { type: String, lowercase: true },
'value': String,
'gas': Number,
'gasUsed': Number,
'gasPrice': String,
'timestamp': Number,
'input': String,
}, { collection: 'Transaction' },
);
const TokenTransfer = new Schema(
{
'hash': { type: String, index: { unique: true }, lowercase: true },
'blockNumber': Number,
'method': String,
'from': { type: String, lowercase: true },
'to': { type: String, lowercase: true },
'contract': { type: String, lowercase: true },
'value': String,
'timestamp': Number,
}, { collection: 'TokenTransfer' },
);
const BlockStat = new Schema(
{
'number': { type: Number, index: { unique: true } },
'timestamp': Number,
'difficulty': String,
'hashrate': String,
'txCount': Number,
'gasUsed': Number,
'gasLimit': Number,
'miner': String,
'blockTime': Number,
'uncleCount': Number,
}, { collection: 'BlockStat' },
);
const Market = new Schema(
{
'symbol': String,
'timestamp': Number,
'quoteBTC': Number,
'quoteUSD': Number,
}, { collection: 'Market' },
);
// create indices
Transaction.index({ blockNumber: -1 });
Transaction.index({ from: 1, blockNumber: -1 });
Transaction.index({ to: 1, blockNumber: -1 });
Transaction.index({ creates: 1, blockNumber: -1 });
Account.index({ balance: -1 });
Account.index({ balance: -1, blockNumber: -1 });
Account.index({ type: -1, balance: -1 });
Block.index({ miner: 1 });
Block.index({ miner: 1, blockNumber: -1 });
Block.index({ hash: 1, number: -1 });
Market.index({ timestamp: -1 });
TokenTransfer.index({ blockNumber: -1 });
TokenTransfer.index({ from: 1, blockNumber: -1 });
TokenTransfer.index({ to: 1, blockNumber: -1 });
TokenTransfer.index({ contract: 1, blockNumber: -1 });
mongoose.model('BlockStat', BlockStat);
mongoose.model('Block', Block);
mongoose.model('Account', Account);
mongoose.model('Contract', Contract);
mongoose.model('Transaction', Transaction);
mongoose.model('Market', Market);
mongoose.model('TokenTransfer', TokenTransfer);
module.exports.BlockStat = mongoose.model('BlockStat');
module.exports.Block = mongoose.model('Block');
module.exports.Contract = mongoose.model('Contract');
module.exports.Transaction = mongoose.model('Transaction');
module.exports.Account = mongoose.model('Account');
module.exports.Market = mongoose.model('Market');
module.exports.TokenTransfer = mongoose.model('TokenTransfer');
mongoose.Promise = global.Promise;
mongoose.connect(process.env.MONGO_URI || 'mongodb://localhost/explorerDB', {
useMongoClient: true
// poolSize: 5,
// rs_name: 'myReplicaSetName',
// user: 'explorer',
// pass: 'yourdbpasscode'
});
// mongoose.set('debug', true);