d496dad33c
- limit missing headers results set to 100 so that extraction doesn't excessively block delegation - wrap checked headers functions in repository struct - move storage repository to factory, to correspond with event repository path - remove unused files - reformat sql - remove line breaks in imports
24 lines
544 B
SQL
24 lines
544 B
SQL
-- +goose Up
|
|
CREATE TABLE public.blocks
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
difficulty BIGINT,
|
|
extra_data VARCHAR,
|
|
gas_limit BIGINT,
|
|
gas_used BIGINT,
|
|
hash VARCHAR(66),
|
|
miner VARCHAR(42),
|
|
nonce VARCHAR(20),
|
|
"number" BIGINT,
|
|
parent_hash VARCHAR(66),
|
|
reward NUMERIC,
|
|
uncles_reward NUMERIC,
|
|
"size" VARCHAR,
|
|
"time" BIGINT,
|
|
is_final BOOLEAN,
|
|
uncle_hash VARCHAR(66)
|
|
);
|
|
|
|
|
|
-- +goose Down
|
|
DROP TABLE public.blocks; |