-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.sql
374 lines (336 loc) · 9.43 KB
/
schema.sql
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
-------------------------------------------------
-- Meta tables to store Substreams information --
-------------------------------------------------
CREATE TABLE IF NOT EXISTS cursors
(
id String,
cursor String,
block_num Int64,
block_id String
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (id)
ORDER BY (id);
-----------------------------------------------------------
-- Tables to store the raw events without any processing --
-----------------------------------------------------------
-- The table to store all transfers. This uses the trx_id as first primary key so we can use this table to do
-- transfer lookups based on a transaction id.
CREATE TABLE IF NOT EXISTS transfer_events
(
trx_id String,
action_index UInt32,
-- contract & scope --
contract String,
symcode String,
-- data payload --
from String,
to String,
quantity String,
memo String,
-- extras --
precision UInt32,
amount Int64,
value Float64,
-- meta --
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (trx_id, action_index)
ORDER BY (trx_id, action_index);
-- The table to store all account balance changes from the database operations. This uses the account and block_num as
-- first primary keys so we can use this table to lookup the account balance from a certain block number.
CREATE TABLE IF NOT EXISTS balance_change_events
(
trx_id String,
action_index UInt32,
-- contract & scope --
contract String,
symcode String,
-- data payload --
account String,
balance String,
balance_delta Int64,
-- extras --
precision UInt32,
amount Int64,
value Float64,
-- meta --
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (account, block_num, trx_id, action_index)
ORDER BY (account, block_num, trx_id, action_index);
-- The table to store all token supply changes from the database operations. This uses the account and block_num as
-- first primary keys so we can use this table to lookup token supplies from a certain block number.
CREATE TABLE IF NOT EXISTS supply_change_events
(
trx_id String,
action_index UInt32,
-- contract & scope --
contract String,
symcode String,
-- data payload --
issuer String,
max_supply String,
supply String,
supply_delta Int64,
-- extras --
precision UInt32,
amount Int64,
value Float64,
-- meta --
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (contract, block_num, trx_id, action_index)
ORDER BY (contract, block_num, trx_id, action_index);
-- Table to contain all 'eosio.token:issue' transactions
CREATE TABLE IF NOT EXISTS issue_events
(
trx_id String,
action_index UInt32,
-- contract & scope --
contract String,
symcode String,
-- data payload --
issuer String,
to String,
quantity String,
memo String,
-- extras --
precision UInt32,
amount Int64,
value Float64,
-- meta --
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (contract, symcode, to, amount, trx_id, action_index)
ORDER BY (contract, symcode, to, amount, trx_id, action_index);
-- Table to contain all 'eosio.token:retire' transactions --
CREATE TABLE IF NOT EXISTS retire_events
(
trx_id String,
action_index UInt32,
-- contract & scope --
contract String,
symcode String,
-- data payload --
from String,
quantity String,
memo String,
-- extras --
precision UInt32,
amount Int64,
value Float64,
-- meta --
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (contract, symcode, amount, trx_id, action_index)
ORDER BY (contract, symcode, amount, trx_id, action_index);
-- Table to contain all 'eosio.token:create' transactions
CREATE TABLE IF NOT EXISTS create_events
(
trx_id String,
action_index UInt32,
-- contract & scope --
contract String,
symcode String,
-- data payload --
issuer String,
maximum_supply String,
-- extras --
precision UInt32,
amount Int64,
value Float64,
-- meta --
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (contract, symcode, trx_id, action_index)
ORDER BY (contract, symcode, trx_id, action_index);
-----------------------------------------------
-- Tables to store the extracted information --
-----------------------------------------------
-- Table to store up to date balances per account and token
CREATE TABLE IF NOT EXISTS account_balances
(
account String,
contract String,
symcode String,
balance String,
precision UInt32,
amount Int64,
value Float64,
updated_at_block_num UInt64,
updated_at_timestamp DateTime
)
ENGINE = ReplacingMergeTree(updated_at_block_num)
PRIMARY KEY (account, contract, symcode)
ORDER BY (account, contract, symcode);
-- Table to store up to date token supplies
CREATE TABLE IF NOT EXISTS token_supplies
(
contract String,
symcode String,
issuer String,
max_supply String,
supply String,
precision UInt32,
amount Int64,
value Float64,
updated_at_block_num UInt64,
updated_at_timestamp DateTime
)
ENGINE = ReplacingMergeTree(updated_at_block_num)
PRIMARY KEY (contract, symcode, issuer)
ORDER BY (contract, symcode, issuer);
-- Table to store token transfers primarily indexed by the 'from' field --
CREATE TABLE IF NOT EXISTS transfers_from
(
trx_id String,
action_index UInt32,
contract String,
symcode String,
from String,
to String,
quantity String,
memo String,
precision UInt32,
amount Int64,
value Float64,
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (from, to, trx_id, action_index)
ORDER BY (from, to, trx_id, action_index);
-- Table to store token transfers primarily indexed by the 'to' field
CREATE TABLE IF NOT EXISTS transfers_to
(
trx_id String,
action_index UInt32,
contract String,
symcode String,
from String,
to String,
quantity String,
memo String,
precision UInt32,
amount Int64,
value Float64,
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (to, from, trx_id, action_index)
ORDER BY (to, from, trx_id, action_index);
-- Table to store token transfers primarily indexed by the 'block_num' field
CREATE TABLE IF NOT EXISTS transfers_block_num
(
trx_id String,
action_index UInt32,
contract String,
symcode String,
from String,
to String,
quantity String,
memo String,
precision UInt32,
amount Int64,
value Float64,
block_num UInt64,
timestamp DateTime
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (block_num, trx_id, action_index)
ORDER BY (block_num, trx_id, action_index);
---------------------------------------------------------
-- Materialized views to populate the extracted tables --
---------------------------------------------------------
CREATE MATERIALIZED VIEW account_balances_mv
TO account_balances
AS
SELECT account,
contract,
symcode,
balance,
precision,
amount,
value,
block_num AS updated_at_block_num,
timestamp AS updated_at_timestamp
FROM balance_change_events;
CREATE MATERIALIZED VIEW token_supplies_mv
TO token_supplies
AS
SELECT contract,
symcode,
issuer,
max_supply,
supply,
precision,
amount,
value,
block_num AS updated_at_block_num,
timestamp AS updated_at_timestamp
FROM supply_change_events;
CREATE MATERIALIZED VIEW transfers_from_mv
TO transfers_from
AS
SELECT trx_id,
action_index,
contract,
symcode,
from,
to,
quantity,
memo,
precision,
amount,
value,
block_num,
timestamp
FROM transfer_events;
CREATE MATERIALIZED VIEW transfers_to_mv
TO transfers_to
AS
SELECT trx_id,
action_index,
contract,
symcode,
from,
to,
quantity,
memo,
precision,
amount,
value,
block_num,
timestamp
FROM transfer_events;
CREATE MATERIALIZED VIEW transfers_block_num_mv
TO transfers_block_num
AS
SELECT trx_id,
action_index,
contract,
symcode,
from,
to,
quantity,
memo,
precision,
amount,
value,
block_num,
timestamp
FROM transfer_events;