forked from pintail-xyz/medalla_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemas
48 lines (45 loc) · 2.68 KB
/
schemas
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
Table "public.t_attestations"
Column | Type | Collation | Nullable | Default
------------------------+--------+-----------+----------+---------
f_inclusion_slot | bigint | | not null |
f_inclusion_block_root | bytea | | not null |
f_inclusion_index | bigint | | not null |
f_slot | bigint | | not null |
f_committee_index | bigint | | not null |
f_aggregation_bits | bytea | | not null |
f_beacon_block_root | bytea | | not null |
f_source_epoch | bigint | | not null |
f_source_root | bytea | | not null |
f_target_epoch | bigint | | not null |
f_target_root | bytea | | not null |
Table "public.t_validators"
Column | Type | Collation | Nullable | Default
--------------------------------+---------+-----------+----------+---------
f_public_key | bytea | | not null |
f_index | bigint | | not null |
f_slashed | boolean | | not null |
f_activation_eligibility_epoch | bigint | | not null |
f_activation_epoch | bigint | | not null |
f_exit_epoch | bigint | | not null |
f_withdrawable_epoch | bigint | | not null |
f_effective_balance | bigint | | not null |
Table "public.t_beacon_committees"
Column | Type | Collation | Nullable | Default
-------------+----------+-----------+----------+---------
f_slot | bigint | | not null |
f_index | bigint | | not null |
f_committee | bigint[] | | not null |
Table "public.t_blocks"
Column | Type | Collation | Nullable | Default
----------------------+--------+-----------+----------+---------
f_slot | bigint | | not null |
f_proposer_index | bigint | | not null |
f_root | bytea | | not null |
f_graffiti | bytea | | not null |
f_randao_reveal | bytea | | not null |
f_body_root | bytea | | not null |
f_parent_root | bytea | | not null |
f_state_root | bytea | | not null |
f_eth1_block_hash | bytea | | not null |
f_eth1_deposit_count | bigint | | not null |
f_eth1_deposit_root | bytea | | not null |