consolidate
This commit is contained in:
parent
402d2790e0
commit
245e6d07b2
2
Makefile
2
Makefile
@ -77,7 +77,7 @@ migrate: $(GOOSE) checkdbvars
|
||||
## Apply all the migrations used to generate a UML diagram (containing FKs)
|
||||
.PHONY: migrate_for_uml
|
||||
migrate_for_uml: $(GOOSE) checkdbvars
|
||||
$(GOOSE) -dir db/migrations/uml_support postgres "$(CONNECT_STRING)" up
|
||||
$(GOOSE) -dir db/migrations postgres "$(CONNECT_STRING)" up-to 00018
|
||||
|
||||
## Apply migrations to be ran before a batch processing
|
||||
.PHONY: migrate_pre_batch_set
|
||||
|
105
db/migrations/00018_create_foreign_keys.sql
Normal file
105
db/migrations/00018_create_foreign_keys.sql
Normal file
@ -0,0 +1,105 @@
|
||||
-- +goose Up
|
||||
ALTER TABLE eth.header_cids
|
||||
ADD CONSTRAINT header_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
ADD CONSTRAINT uncle_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
ADD CONSTRAINT uncle_cids_header_cids_fkey
|
||||
FOREIGN KEY (header_id, block_number)
|
||||
REFERENCES eth.header_cids (block_hash, block_number);
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
ADD CONSTRAINT transaction_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
ADD CONSTRAINT transaction_cids_header_cids_fkey
|
||||
FOREIGN KEY (header_id, block_number)
|
||||
REFERENCES eth.header_cids (block_hash, block_number);
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
ADD CONSTRAINT receipt_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
ADD CONSTRAINT receipt_cids_transaction_cids_fkey
|
||||
FOREIGN KEY (tx_id, header_id, block_number)
|
||||
REFERENCES eth.transaction_cids (tx_hash, header_id, block_number);
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
ADD CONSTRAINT state_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
ADD CONSTRAINT state_cids_header_cids_fkey
|
||||
FOREIGN KEY (header_id, block_number)
|
||||
REFERENCES eth.header_cids (block_hash, block_number);
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
ADD CONSTRAINT storage_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
ADD CONSTRAINT storage_cids_state_cids_fkey
|
||||
FOREIGN KEY (state_leaf_key, header_id, block_number)
|
||||
REFERENCES eth.state_cids (state_leaf_key, header_id, block_number);
|
||||
|
||||
ALTER TABLE eth.log_cids
|
||||
ADD CONSTRAINT log_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.log_cids
|
||||
ADD CONSTRAINT log_cids_receipt_cids_fkey
|
||||
FOREIGN KEY (rct_id, header_id, block_number)
|
||||
REFERENCES eth.receipt_cids (tx_id, header_id, block_number);
|
||||
|
||||
-- +goose Down
|
||||
ALTER TABLE eth.log_cids
|
||||
DROP CONSTRAINT log_cids_receipt_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.log_cids
|
||||
DROP CONSTRAINT log_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
DROP CONSTRAINT storage_cids_state_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
DROP CONSTRAINT storage_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
DROP CONSTRAINT state_cids_header_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
DROP CONSTRAINT state_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
DROP CONSTRAINT receipt_cids_transaction_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
DROP CONSTRAINT receipt_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
DROP CONSTRAINT transaction_cids_header_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
DROP CONSTRAINT transaction_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
DROP CONSTRAINT uncle_cids_header_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
DROP CONSTRAINT uncle_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.header_cids
|
||||
DROP CONSTRAINT header_cids_ipld_blocks_fkey;
|
105
db/migrations/00019_drop_foreign_keys.sql
Normal file
105
db/migrations/00019_drop_foreign_keys.sql
Normal file
@ -0,0 +1,105 @@
|
||||
-- +goose Up
|
||||
ALTER TABLE eth.log_cids
|
||||
DROP CONSTRAINT log_cids_receipt_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.log_cids
|
||||
DROP CONSTRAINT log_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
DROP CONSTRAINT storage_cids_state_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
DROP CONSTRAINT storage_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
DROP CONSTRAINT state_cids_header_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
DROP CONSTRAINT state_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
DROP CONSTRAINT receipt_cids_transaction_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
DROP CONSTRAINT receipt_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
DROP CONSTRAINT transaction_cids_header_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
DROP CONSTRAINT transaction_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
DROP CONSTRAINT uncle_cids_header_cids_fkey;
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
DROP CONSTRAINT uncle_cids_ipld_blocks_fkey;
|
||||
|
||||
ALTER TABLE eth.header_cids
|
||||
DROP CONSTRAINT header_cids_ipld_blocks_fkey;
|
||||
|
||||
-- +goose Down
|
||||
ALTER TABLE eth.header_cids
|
||||
ADD CONSTRAINT header_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
ADD CONSTRAINT uncle_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.uncle_cids
|
||||
ADD CONSTRAINT uncle_cids_header_cids_fkey
|
||||
FOREIGN KEY (header_id, block_number)
|
||||
REFERENCES eth.header_cids (block_hash, block_number);
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
ADD CONSTRAINT transaction_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.transaction_cids
|
||||
ADD CONSTRAINT transaction_cids_header_cids_fkey
|
||||
FOREIGN KEY (header_id, block_number)
|
||||
REFERENCES eth.header_cids (block_hash, block_number);
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
ADD CONSTRAINT receipt_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.receipt_cids
|
||||
ADD CONSTRAINT receipt_cids_transaction_cids_fkey
|
||||
FOREIGN KEY (tx_id, header_id, block_number)
|
||||
REFERENCES eth.transaction_cids (tx_hash, header_id, block_number);
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
ADD CONSTRAINT state_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.state_cids
|
||||
ADD CONSTRAINT state_cids_header_cids_fkey
|
||||
FOREIGN KEY (header_id, block_number)
|
||||
REFERENCES eth.header_cids (block_hash, block_number);
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
ADD CONSTRAINT storage_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.storage_cids
|
||||
ADD CONSTRAINT storage_cids_state_cids_fkey
|
||||
FOREIGN KEY (state_leaf_key, header_id, block_number)
|
||||
REFERENCES eth.state_cids (state_leaf_key, header_id, block_number);
|
||||
|
||||
ALTER TABLE eth.log_cids
|
||||
ADD CONSTRAINT log_cids_ipld_blocks_fkey
|
||||
FOREIGN KEY (cid, block_number)
|
||||
REFERENCES ipld.blocks (key, block_number);
|
||||
|
||||
ALTER TABLE eth.log_cids
|
||||
ADD CONSTRAINT log_cids_receipt_cids_fkey
|
||||
FOREIGN KEY (rct_id, header_id, block_number)
|
||||
REFERENCES eth.receipt_cids (tx_id, header_id, block_number);
|
@ -1,13 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE SCHEMA ipld;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS ipld.blocks (
|
||||
block_number BIGINT NOT NULL,
|
||||
key TEXT NOT NULL,
|
||||
data BYTEA NOT NULL,
|
||||
PRIMARY KEY (key, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE ipld.blocks;
|
||||
DROP SCHEMA ipld;
|
@ -1,11 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS nodes (
|
||||
genesis_block VARCHAR(66),
|
||||
network_id VARCHAR,
|
||||
node_id VARCHAR(128) PRIMARY KEY,
|
||||
client_name VARCHAR,
|
||||
chain_id INTEGER DEFAULT 1
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE nodes;
|
@ -1,5 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE SCHEMA eth;
|
||||
|
||||
-- +goose Down
|
||||
DROP SCHEMA eth;
|
@ -1,23 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.header_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
block_hash VARCHAR(66) NOT NULL,
|
||||
parent_hash VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
td NUMERIC NOT NULL,
|
||||
node_ids VARCHAR(128)[] NOT NULL,
|
||||
reward NUMERIC NOT NULL,
|
||||
state_root VARCHAR(66) NOT NULL,
|
||||
tx_root VARCHAR(66) NOT NULL,
|
||||
receipt_root VARCHAR(66) NOT NULL,
|
||||
uncles_hash VARCHAR(66) NOT NULL,
|
||||
bloom BYTEA NOT NULL,
|
||||
timestamp BIGINT NOT NULL,
|
||||
coinbase VARCHAR(66) NOT NULL,
|
||||
canonical BOOLEAN NOT NULL DEFAULT TRUE,
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
PRIMARY KEY (block_hash, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth.header_cids;
|
@ -1,16 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.uncle_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
block_hash VARCHAR(66) NOT NULL,
|
||||
header_id VARCHAR(66) NOT NULL,
|
||||
parent_hash VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
reward NUMERIC NOT NULL,
|
||||
index INT NOT NULL,
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
FOREIGN KEY (header_id, block_number) REFERENCES eth.header_cids (block_hash, block_number),
|
||||
PRIMARY KEY (block_hash, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth.uncle_cids;
|
@ -1,18 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.transaction_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
header_id VARCHAR(66) NOT NULL,
|
||||
tx_hash VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
dst VARCHAR(66),
|
||||
src VARCHAR(66) NOT NULL,
|
||||
index INTEGER NOT NULL,
|
||||
tx_type INTEGER,
|
||||
value NUMERIC,
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
FOREIGN KEY (header_id, block_number) REFERENCES eth.header_cids (block_hash, block_number),
|
||||
PRIMARY KEY (tx_hash, header_id, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth.transaction_cids;
|
@ -1,16 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.receipt_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
header_id VARCHAR(66) NOT NULL,
|
||||
tx_id VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
contract VARCHAR(66),
|
||||
post_state VARCHAR(66),
|
||||
post_status SMALLINT,
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
FOREIGN KEY (header_id, block_number) REFERENCES eth.header_cids (block_hash, block_number),
|
||||
PRIMARY KEY (tx_id, header_id, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth.receipt_cids;
|
@ -1,19 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.state_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
header_id VARCHAR(66) NOT NULL,
|
||||
state_leaf_key VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
diff BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
balance NUMERIC, -- NULL if "removed"
|
||||
nonce BIGINT, -- NULL if "removed"
|
||||
code_hash VARCHAR(66), -- NULL if "removed"
|
||||
storage_root VARCHAR(66), -- NULL if "removed"
|
||||
removed BOOLEAN NOT NULL,
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
FOREIGN KEY (header_id, block_number) REFERENCES eth.header_cids (block_hash, block_number),
|
||||
PRIMARY KEY (state_leaf_key, header_id, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth.state_cids;
|
@ -1,17 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.storage_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
header_id VARCHAR(66) NOT NULL,
|
||||
state_leaf_key VARCHAR(66) NOT NULL,
|
||||
storage_leaf_key VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
diff BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
val BYTEA, -- NULL if "removed"
|
||||
removed BOOLEAN NOT NULL,
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
FOREIGN KEY (state_leaf_key, header_id, block_number) REFERENCES eth.state_cids (state_leaf_key, header_id, block_number),
|
||||
PRIMARY KEY (storage_leaf_key, state_leaf_key, header_id, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth.storage_cids;
|
@ -1,20 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS eth.log_cids (
|
||||
block_number BIGINT NOT NULL,
|
||||
header_id VARCHAR(66) NOT NULL,
|
||||
cid TEXT NOT NULL,
|
||||
rct_id VARCHAR(66) NOT NULL,
|
||||
address VARCHAR(66) NOT NULL,
|
||||
index INTEGER NOT NULL,
|
||||
topic0 VARCHAR(66),
|
||||
topic1 VARCHAR(66),
|
||||
topic2 VARCHAR(66),
|
||||
topic3 VARCHAR(66),
|
||||
FOREIGN KEY (cid, block_number) REFERENCES ipld.blocks (key, block_number),
|
||||
FOREIGN KEY (rct_id, header_id, block_number) REFERENCES eth.receipt_cids (tx_id, header_id, block_number),
|
||||
PRIMARY KEY (rct_id, index, header_id, block_number)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
-- log indexes
|
||||
DROP TABLE eth.log_cids;
|
@ -1,14 +0,0 @@
|
||||
-- +goose Up
|
||||
COMMENT ON TABLE public.nodes IS E'@name NodeInfo';
|
||||
COMMENT ON TABLE eth.transaction_cids IS E'@name EthTransactionCids';
|
||||
COMMENT ON TABLE eth.header_cids IS E'@name EthHeaderCids';
|
||||
COMMENT ON COLUMN public.nodes.node_id IS E'@name ChainNodeID';
|
||||
COMMENT ON COLUMN eth.header_cids.node_ids IS E'@name EthNodeIDs';
|
||||
|
||||
-- +goose Down
|
||||
|
||||
COMMENT ON TABLE public.nodes IS NULL;
|
||||
COMMENT ON TABLE eth.transaction_cids IS NULL;
|
||||
COMMENT ON TABLE eth.header_cids IS NULL;
|
||||
COMMENT ON COLUMN public.nodes.node_id IS NULL;
|
||||
COMMENT ON COLUMN eth.header_cids.node_ids IS NULL;
|
@ -1,101 +0,0 @@
|
||||
-- +goose Up
|
||||
-- header indexes
|
||||
CREATE INDEX header_block_number_index ON eth.header_cids USING btree (block_number);
|
||||
CREATE UNIQUE INDEX header_cid_block_number_index ON eth.header_cids USING btree (cid, block_number);
|
||||
CREATE INDEX state_root_index ON eth.header_cids USING btree (state_root);
|
||||
CREATE INDEX timestamp_index ON eth.header_cids USING btree (timestamp);
|
||||
|
||||
-- uncle indexes
|
||||
CREATE INDEX uncle_block_number_index ON eth.uncle_cids USING btree (block_number);
|
||||
CREATE UNIQUE INDEX uncle_cid_block_number_index ON eth.uncle_cids USING btree (cid, block_number, index);
|
||||
CREATE INDEX uncle_header_id_index ON eth.uncle_cids USING btree (header_id);
|
||||
|
||||
-- transaction indexes
|
||||
CREATE INDEX tx_block_number_index ON eth.transaction_cids USING btree (block_number);
|
||||
CREATE INDEX tx_header_id_index ON eth.transaction_cids USING btree (header_id);
|
||||
CREATE INDEX tx_cid_block_number_index ON eth.transaction_cids USING btree (cid, block_number);
|
||||
CREATE INDEX tx_dst_index ON eth.transaction_cids USING btree (dst);
|
||||
CREATE INDEX tx_src_index ON eth.transaction_cids USING btree (src);
|
||||
|
||||
-- receipt indexes
|
||||
CREATE INDEX rct_block_number_index ON eth.receipt_cids USING btree (block_number);
|
||||
CREATE INDEX rct_header_id_index ON eth.receipt_cids USING btree (header_id);
|
||||
CREATE INDEX rct_cid_block_number_index ON eth.receipt_cids USING btree (cid, block_number);
|
||||
CREATE INDEX rct_contract_index ON eth.receipt_cids USING btree (contract);
|
||||
|
||||
-- state node indexes
|
||||
CREATE INDEX state_block_number_index ON eth.state_cids USING btree (block_number);
|
||||
CREATE INDEX state_cid_block_number_index ON eth.state_cids USING btree (cid, block_number);
|
||||
CREATE INDEX state_header_id_index ON eth.state_cids USING btree (header_id);
|
||||
CREATE INDEX state_removed_index ON eth.state_cids USING btree (removed);
|
||||
CREATE INDEX state_code_hash_index ON eth.state_cids USING btree (code_hash); -- could be useful for e.g. selecting all the state accounts with the same contract bytecode deployed
|
||||
CREATE INDEX state_leaf_key_block_number_index ON eth.state_cids(state_leaf_key, block_number DESC);
|
||||
|
||||
-- storage node indexes
|
||||
CREATE INDEX storage_block_number_index ON eth.storage_cids USING btree (block_number);
|
||||
CREATE INDEX storage_state_leaf_key_index ON eth.storage_cids USING btree (state_leaf_key);
|
||||
CREATE INDEX storage_cid_block_number_index ON eth.storage_cids USING btree (cid, block_number);
|
||||
CREATE INDEX storage_header_id_index ON eth.storage_cids USING btree (header_id);
|
||||
CREATE INDEX storage_removed_index ON eth.storage_cids USING btree (removed);
|
||||
CREATE INDEX storage_leaf_key_block_number_index ON eth.storage_cids(storage_leaf_key, block_number DESC);
|
||||
|
||||
-- log indexes
|
||||
CREATE INDEX log_block_number_index ON eth.log_cids USING btree (block_number);
|
||||
CREATE INDEX log_header_id_index ON eth.log_cids USING btree (header_id);
|
||||
CREATE INDEX log_cid_block_number_index ON eth.log_cids USING btree (cid, block_number);
|
||||
CREATE INDEX log_address_index ON eth.log_cids USING btree (address);
|
||||
CREATE INDEX log_topic0_index ON eth.log_cids USING btree (topic0);
|
||||
CREATE INDEX log_topic1_index ON eth.log_cids USING btree (topic1);
|
||||
CREATE INDEX log_topic2_index ON eth.log_cids USING btree (topic2);
|
||||
CREATE INDEX log_topic3_index ON eth.log_cids USING btree (topic3);
|
||||
|
||||
-- +goose Down
|
||||
-- log indexes
|
||||
DROP INDEX eth.log_topic3_index;
|
||||
DROP INDEX eth.log_topic2_index;
|
||||
DROP INDEX eth.log_topic1_index;
|
||||
DROP INDEX eth.log_topic0_index;
|
||||
DROP INDEX eth.log_address_index;
|
||||
DROP INDEX eth.log_cid_block_number_index;
|
||||
DROP INDEX eth.log_header_id_index;
|
||||
DROP INDEX eth.log_block_number_index;
|
||||
|
||||
-- storage node indexes
|
||||
DROP INDEX eth.storage_removed_index;
|
||||
DROP INDEX eth.storage_header_id_index;
|
||||
DROP INDEX eth.storage_cid_block_number_index;
|
||||
DROP INDEX eth.storage_state_leaf_key_index;
|
||||
DROP INDEX eth.storage_block_number_index;
|
||||
DROP INDEX eth.storage_leaf_key_block_number_index;
|
||||
|
||||
-- state node indexes
|
||||
DROP INDEX eth.state_code_hash_index;
|
||||
DROP INDEX eth.state_removed_index;
|
||||
DROP INDEX eth.state_header_id_index;
|
||||
DROP INDEX eth.state_cid_block_number_index;
|
||||
DROP INDEX eth.state_block_number_index;
|
||||
DROP INDEX eth.state_leaf_key_block_number_index;
|
||||
|
||||
-- receipt indexes
|
||||
DROP INDEX eth.rct_contract_index;
|
||||
DROP INDEX eth.rct_cid_block_number_index;
|
||||
DROP INDEX eth.rct_header_id_index;
|
||||
DROP INDEX eth.rct_block_number_index;
|
||||
|
||||
-- transaction indexes
|
||||
DROP INDEX eth.tx_src_index;
|
||||
DROP INDEX eth.tx_dst_index;
|
||||
DROP INDEX eth.tx_cid_block_number_index;
|
||||
DROP INDEX eth.tx_header_id_index;
|
||||
DROP INDEX eth.tx_block_number_index;
|
||||
|
||||
-- uncle indexes
|
||||
DROP INDEX eth.uncle_block_number_index;
|
||||
DROP INDEX eth.uncle_cid_block_number_index;
|
||||
DROP INDEX eth.uncle_header_id_index;
|
||||
|
||||
-- header indexes
|
||||
DROP INDEX eth.timestamp_index;
|
||||
DROP INDEX eth.state_root_index;
|
||||
DROP INDEX eth.header_cid_block_number_index;
|
||||
DROP INDEX eth.header_block_number_index;
|
@ -1,12 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE IF NOT EXISTS public.db_version (
|
||||
singleton BOOLEAN NOT NULL DEFAULT TRUE UNIQUE CHECK (singleton),
|
||||
version TEXT NOT NULL,
|
||||
tstamp TIMESTAMP WITHOUT TIME ZONE DEFAULT NOW()
|
||||
);
|
||||
|
||||
INSERT INTO public.db_version (singleton, version) VALUES (true, 'v5.0.0')
|
||||
ON CONFLICT (singleton) DO UPDATE SET (version, tstamp) = ('v5.0.0', NOW());
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE public.db_version;
|
@ -1,5 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE SCHEMA eth_meta;
|
||||
|
||||
-- +goose Down
|
||||
DROP SCHEMA eth_meta;
|
@ -1,10 +0,0 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE eth_meta.watched_addresses (
|
||||
address VARCHAR(66) PRIMARY KEY,
|
||||
created_at BIGINT NOT NULL,
|
||||
watched_at BIGINT NOT NULL,
|
||||
last_filled_at BIGINT NOT NULL DEFAULT 0
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
DROP TABLE eth_meta.watched_addresses;
|
@ -1,43 +0,0 @@
|
||||
-- +goose Up
|
||||
-- +goose StatementBegin
|
||||
-- returns whether the state leaf key is vacated (previously existed but now is empty) at the provided block hash
|
||||
CREATE OR REPLACE FUNCTION was_state_leaf_removed(v_key VARCHAR(66), v_hash VARCHAR)
|
||||
RETURNS boolean AS $$
|
||||
SELECT state_cids.removed = true
|
||||
FROM eth.state_cids
|
||||
INNER JOIN eth.header_cids ON (state_cids.header_id = header_cids.block_hash)
|
||||
WHERE state_leaf_key = v_key
|
||||
AND state_cids.block_number <= (SELECT block_number
|
||||
FROM eth.header_cids
|
||||
WHERE block_hash = v_hash)
|
||||
ORDER BY state_cids.block_number DESC LIMIT 1;
|
||||
$$
|
||||
language sql;
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose StatementBegin
|
||||
-- returns whether the state leaf key is vacated (previously existed but now is empty) at the provided block height
|
||||
CREATE OR REPLACE FUNCTION public.was_state_leaf_removed_by_number(v_key VARCHAR(66), v_block_no BIGINT)
|
||||
RETURNS BOOLEAN AS $$
|
||||
SELECT state_cids.removed = true
|
||||
FROM eth.state_cids
|
||||
INNER JOIN eth.header_cids ON (state_cids.header_id = header_cids.block_hash)
|
||||
WHERE state_leaf_key = v_key
|
||||
AND state_cids.block_number <= v_block_no
|
||||
ORDER BY state_cids.block_number DESC LIMIT 1;
|
||||
$$
|
||||
language sql;
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose StatementBegin
|
||||
CREATE OR REPLACE FUNCTION canonical_header_hash(height BIGINT) RETURNS character varying AS
|
||||
$BODY$
|
||||
SELECT block_hash from eth.header_cids WHERE block_number = height AND canonical = true LIMIT 1;
|
||||
$BODY$
|
||||
LANGUAGE sql;
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose Down
|
||||
DROP FUNCTION was_state_leaf_removed;
|
||||
DROP FUNCTION was_state_leaf_removed_by_number;
|
||||
DROP FUNCTION canonical_header_hash;
|
@ -1,110 +0,0 @@
|
||||
-- +goose Up
|
||||
-- +goose StatementBegin
|
||||
CREATE OR REPLACE FUNCTION public.get_storage_at_by_number(v_state_leaf_key text, v_storage_leaf_key text, v_block_no bigint)
|
||||
RETURNS TABLE
|
||||
(
|
||||
cid TEXT,
|
||||
val BYTEA,
|
||||
block_number BIGINT,
|
||||
removed BOOL,
|
||||
state_leaf_removed BOOL
|
||||
)
|
||||
AS
|
||||
$BODY$
|
||||
DECLARE
|
||||
v_state_path BYTEA;
|
||||
v_header TEXT;
|
||||
v_canonical_header TEXT;
|
||||
BEGIN
|
||||
CREATE TEMP TABLE tmp_tt_stg2
|
||||
(
|
||||
header_id TEXT,
|
||||
cid TEXT,
|
||||
val BYTEA,
|
||||
block_number BIGINT,
|
||||
removed BOOL,
|
||||
state_leaf_removed BOOL
|
||||
) ON COMMIT DROP;
|
||||
|
||||
-- in best case scenario, the latest record we find for the provided keys is for a canonical block
|
||||
INSERT INTO tmp_tt_stg2
|
||||
SELECT storage_cids.header_id,
|
||||
storage_cids.cid,
|
||||
storage_cids.val,
|
||||
storage_cids.block_number,
|
||||
storage_cids.removed,
|
||||
was_state_leaf_removed_by_number(v_state_leaf_key, v_block_no) AS state_leaf_removed
|
||||
FROM eth.storage_cids
|
||||
WHERE storage_leaf_key = v_storage_leaf_key
|
||||
AND storage_cids.state_leaf_key = v_state_leaf_key -- can lookup directly on the leaf key in v5
|
||||
AND storage_cids.block_number <= v_block_no
|
||||
ORDER BY storage_cids.block_number DESC LIMIT 1;
|
||||
|
||||
-- check if result is from canonical state
|
||||
SELECT header_id, canonical_header_hash(tmp_tt_stg2.block_number)
|
||||
INTO v_header, v_canonical_header
|
||||
FROM tmp_tt_stg2 LIMIT 1;
|
||||
|
||||
IF v_header IS NULL OR v_header != v_canonical_header THEN
|
||||
RAISE NOTICE 'get_storage_at_by_number: chosen header NULL OR % != canonical header % for block number %, trying again.', v_header, v_canonical_header, v_block_no;
|
||||
TRUNCATE tmp_tt_stg2;
|
||||
-- If we hit on a non-canonical block, we need to go back and do a comprehensive check.
|
||||
-- We try to avoid this to avoid joining between storage_cids and header_cids
|
||||
INSERT INTO tmp_tt_stg2
|
||||
SELECT storage_cids.header_id,
|
||||
storage_cids.cid,
|
||||
storage_cids.val,
|
||||
storage_cids.block_number,
|
||||
storage_cids.removed,
|
||||
was_state_leaf_removed_by_number(
|
||||
v_state_leaf_key,
|
||||
v_block_no
|
||||
) AS state_leaf_removed
|
||||
FROM eth.storage_cids
|
||||
INNER JOIN eth.header_cids ON (
|
||||
storage_cids.header_id = header_cids.block_hash
|
||||
AND storage_cids.block_number = header_cids.block_number
|
||||
)
|
||||
WHERE state_leaf_key = v_state_leaf_key
|
||||
AND storage_leaf_key = v_storage_leaf_key
|
||||
AND storage_cids.block_number <= v_block_no
|
||||
AND header_cids.block_number <= v_block_no
|
||||
AND header_cids.block_hash = (SELECT canonical_header_hash(header_cids.block_number))
|
||||
ORDER BY header_cids.block_number DESC LIMIT 1;
|
||||
END IF;
|
||||
|
||||
RETURN QUERY SELECT t.cid, t.val, t.block_number, t.removed, t.state_leaf_removed
|
||||
FROM tmp_tt_stg2 AS t LIMIT 1;
|
||||
END
|
||||
$BODY$
|
||||
language 'plpgsql';
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose StatementBegin
|
||||
CREATE OR REPLACE FUNCTION public.get_storage_at_by_hash(v_state_leaf_key TEXT, v_storage_leaf_key text, v_block_hash text)
|
||||
RETURNS TABLE
|
||||
(
|
||||
cid TEXT,
|
||||
val BYTEA,
|
||||
block_number BIGINT,
|
||||
removed BOOL,
|
||||
state_leaf_removed BOOL
|
||||
)
|
||||
AS
|
||||
$BODY$
|
||||
DECLARE
|
||||
v_block_no BIGINT;
|
||||
BEGIN
|
||||
SELECT h.block_number INTO v_block_no FROM eth.header_cids AS h WHERE block_hash = v_block_hash LIMIT 1;
|
||||
IF v_block_no IS NULL THEN
|
||||
RETURN;
|
||||
END IF;
|
||||
RETURN QUERY SELECT * FROM get_storage_at_by_number(v_state_leaf_key, v_storage_leaf_key, v_block_no);
|
||||
END
|
||||
$BODY$
|
||||
LANGUAGE 'plpgsql';
|
||||
-- +goose StatementEnd
|
||||
|
||||
-- +goose Down
|
||||
DROP FUNCTION get_storage_at_by_hash;
|
||||
DROP FUNCTION get_storage_at_by_number;
|
BIN
vulcanize_db.png
BIN
vulcanize_db.png
Binary file not shown.
Before Width: | Height: | Size: 449 KiB After Width: | Height: | Size: 508 KiB |
118
vulcanize_db.uml
118
vulcanize_db.uml
@ -3,107 +3,111 @@
|
||||
<ID>DATABASE</ID>
|
||||
<OriginalElement>86a0461b-ec84-4911-9aa2-e562b5d7b24c</OriginalElement>
|
||||
<nodes>
|
||||
<node x="555.4049647830311" y="152.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids</node>
|
||||
<node x="498.0" y="1175.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.public.goose_db_version</node>
|
||||
<node x="0.0" y="1175.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.public.nodes</node>
|
||||
<node x="821.7748627422149" y="876.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.log_cids</node>
|
||||
<node x="862.5299647830311" y="603.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.uncle_cids</node>
|
||||
<node x="568.4049647830313" y="0.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks</node>
|
||||
<node x="234.52996478303112" y="570.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.state_cids</node>
|
||||
<node x="251.0" y="1175.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth_meta.watched_addresses</node>
|
||||
<node x="168.52996478303112" y="898.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.storage_cids</node>
|
||||
<node x="463.5299647830311" y="581.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.transaction_cids</node>
|
||||
<node x="731.0" y="1175.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.public.db_version</node>
|
||||
<node x="660.5299647830311" y="603.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.receipt_cids</node>
|
||||
<node x="561.75" y="152.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids</node>
|
||||
<node x="0.0" y="1439.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.public.goose_db_version</node>
|
||||
<node x="1133.0" y="0.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.public.nodes</node>
|
||||
<node x="203.25" y="1140.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.log_cids</node>
|
||||
<node x="729.5" y="603.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.uncle_cids</node>
|
||||
<node x="467.25" y="0.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks</node>
|
||||
<node x="500.5" y="570.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.state_cids</node>
|
||||
<node x="1384.0" y="0.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth_meta.watched_addresses</node>
|
||||
<node x="660.6941964285713" y="878.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.storage_cids</node>
|
||||
<node x="303.5" y="581.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.transaction_cids</node>
|
||||
<node x="233.0" y="1439.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.public.db_version</node>
|
||||
<node x="251.5" y="889.0">86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.receipt_cids</node>
|
||||
</nodes>
|
||||
<notes />
|
||||
<edges>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.state_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="-52.25" y="-127.0" />
|
||||
<point x="286.7799647830311" y="548.0" />
|
||||
<point x="335.02486274221485" y="548.0" />
|
||||
<point x="335.02486274221485" y="126.0" />
|
||||
<point x="652.4049647830313" y="126.0" />
|
||||
<point x="552.75" y="538.0" />
|
||||
<point x="551.25" y="538.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.receipt_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="45.5" y="-94.0" />
|
||||
<point x="797.0299647830311" y="538.0" />
|
||||
<point x="778.3207811095617" y="538.0" />
|
||||
<point x="778.3207811095617" y="126.0" />
|
||||
<point x="652.4049647830313" y="126.0" />
|
||||
<point x="-45.5" y="-94.0" />
|
||||
<point x="297.0" y="851.0" />
|
||||
<point x="293.0" y="851.0" />
|
||||
<point x="293.0" y="126.0" />
|
||||
<point x="551.25" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.transaction_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids" relationship="REFERENCES">
|
||||
<point x="44.25" y="-116.0" />
|
||||
<point x="596.2799647830311" y="548.0" />
|
||||
<point x="652.4049647830311" y="548.0" />
|
||||
<point x="436.25" y="548.0" />
|
||||
<point x="658.75" y="548.0" />
|
||||
<point x="0.0" y="182.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.log_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.receipt_cids" relationship="REFERENCES">
|
||||
<point x="-44.25" y="-127.0" />
|
||||
<point x="866.0248627422149" y="850.0" />
|
||||
<point x="751.5299647830311" y="850.0" />
|
||||
<point x="44.25" y="-127.0" />
|
||||
<point x="336.0" y="1114.0" />
|
||||
<point x="342.5" y="1114.0" />
|
||||
<point x="0.0" y="94.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.uncle_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids" relationship="REFERENCES">
|
||||
<point x="-48.5" y="-94.0" />
|
||||
<point x="911.0299647830311" y="548.0" />
|
||||
<point x="652.4049647830311" y="548.0" />
|
||||
<point x="778.0" y="548.0" />
|
||||
<point x="658.75" y="548.0" />
|
||||
<point x="0.0" y="182.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.log_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="44.25" y="-127.0" />
|
||||
<point x="954.5248627422149" y="850.0" />
|
||||
<point x="1067.0299647830311" y="850.0" />
|
||||
<point x="1067.0299647830311" y="126.0" />
|
||||
<point x="652.4049647830313" y="126.0" />
|
||||
<point x="-44.25" y="-127.0" />
|
||||
<point x="247.5" y="1114.0" />
|
||||
<point x="241.0" y="1114.0" />
|
||||
<point x="241.0" y="126.0" />
|
||||
<point x="551.25" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.receipt_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids" relationship="REFERENCES">
|
||||
<point x="-45.5" y="-94.0" />
|
||||
<point x="706.0299647830311" y="548.0" />
|
||||
<point x="652.4049647830311" y="548.0" />
|
||||
<point x="0.0" y="182.0" />
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.receipt_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.transaction_cids" relationship="REFERENCES">
|
||||
<point x="45.5" y="-94.0" />
|
||||
<point x="388.0" y="851.0" />
|
||||
<point x="392.0" y="851.0" />
|
||||
<point x="0.0" y="116.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.state_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids" relationship="REFERENCES">
|
||||
<point x="52.25" y="-127.0" />
|
||||
<point x="391.2799647830311" y="548.0" />
|
||||
<point x="652.4049647830311" y="548.0" />
|
||||
<point x="657.25" y="548.0" />
|
||||
<point x="658.75" y="548.0" />
|
||||
<point x="0.0" y="182.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.storage_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.state_cids" relationship="REFERENCES">
|
||||
<point x="56.5" y="-105.0" />
|
||||
<point x="-56.5" y="-105.0" />
|
||||
<point x="717.1941964285713" y="851.0" />
|
||||
<point x="605.0" y="851.0" />
|
||||
<point x="0.0" y="127.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.transaction_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="-44.25" y="-116.0" />
|
||||
<point x="507.7799647830311" y="538.0" />
|
||||
<point x="526.2340464156841" y="538.0" />
|
||||
<point x="526.2340464156841" y="126.0" />
|
||||
<point x="652.4049647830313" y="126.0" />
|
||||
<point x="347.75" y="548.0" />
|
||||
<point x="391.1941964285714" y="548.0" />
|
||||
<point x="391.1941964285714" y="126.0" />
|
||||
<point x="551.25" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.storage_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="-56.5" y="-105.0" />
|
||||
<point x="224.02996478303112" y="126.0" />
|
||||
<point x="652.4049647830313" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="2.2737367544323206E-13" y="-182.0" />
|
||||
<point x="56.5" y="-105.0" />
|
||||
<point x="830.1941964285713" y="851.0" />
|
||||
<point x="934.0" y="851.0" />
|
||||
<point x="934.0" y="126.0" />
|
||||
<point x="551.25" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.uncle_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="48.5" y="-94.0" />
|
||||
<point x="1008.0299647830311" y="548.0" />
|
||||
<point x="965.5248627422149" y="548.0" />
|
||||
<point x="965.5248627422149" y="126.0" />
|
||||
<point x="652.4049647830313" y="126.0" />
|
||||
<point x="875.0" y="548.0" />
|
||||
<point x="835.6941964285714" y="548.0" />
|
||||
<point x="835.6941964285714" y="126.0" />
|
||||
<point x="551.25" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
<edge source="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.eth.header_cids" target="86a0461b-ec84-4911-9aa2-e562b5d7b24c.TABLE:uml_diagram.ipld.blocks" relationship="REFERENCES">
|
||||
<point x="0.0" y="-182.0" />
|
||||
<point x="658.75" y="126.0" />
|
||||
<point x="551.25" y="126.0" />
|
||||
<point x="0.0" y="50.0" />
|
||||
</edge>
|
||||
</edges>
|
||||
<settings layout="Hierarchic" zoom="0.47572815533980584" showDependencies="false" x="611.0" y="659.5" />
|
||||
<settings layout="Hierarchic" zoom="0.40290955091714103" showDependencies="false" x="793.0" y="780.5" />
|
||||
<SelectedNodes />
|
||||
<Categories>
|
||||
<Category>Columns</Category>
|
||||
|
Loading…
Reference in New Issue
Block a user