ipld-eth-db/schema.sql

928 lines
22 KiB
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
--
-- PostgreSQL database dump
--
2022-04-13 02:56:43 +00:00
-- Dumped from database version 14.2
-- Dumped by pg_dump version 14.2
2021-08-29 18:55:44 +00:00
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: eth; Type: SCHEMA; Schema: -; Owner: -
--
CREATE SCHEMA eth;
--
-- Name: eth_meta; Type: SCHEMA; Schema: -; Owner: -
--
CREATE SCHEMA eth_meta;
--
-- Name: graphql_subscription(); Type: FUNCTION; Schema: eth; Owner: -
--
CREATE FUNCTION eth.graphql_subscription() RETURNS trigger
LANGUAGE plpgsql
AS $$
DECLARE
obj jsonb;
BEGIN
IF (TG_TABLE_NAME = 'state_cids') OR (TG_TABLE_NAME = 'state_accounts') THEN
obj := json_build_array(
TG_TABLE_NAME,
NEW.header_id,
NEW.state_path
);
ELSIF (TG_TABLE_NAME = 'storage_cids') THEN
obj := json_build_array(
TG_TABLE_NAME,
NEW.header_id,
NEW.state_path,
NEW.storage_path
);
ELSIF (TG_TABLE_NAME = 'log_cids') THEN
obj := json_build_array(
TG_TABLE_NAME,
2022-08-08 16:08:09 +00:00
NEW.header_id,
NEW.rct_id,
NEW.index
);
ELSIF (TG_TABLE_NAME = 'receipt_cids') THEN
obj := json_build_array(
TG_TABLE_NAME,
2022-08-08 16:08:09 +00:00
NEW.header_id,
NEW.tx_id
);
ELSIF (TG_TABLE_NAME = 'transaction_cids') THEN
obj := json_build_array(
TG_TABLE_NAME,
2022-08-08 16:08:09 +00:00
NEW.header_id,
NEW.tx_hash
);
ELSIF (TG_TABLE_NAME = 'access_list_elements') THEN
obj := json_build_array(
TG_TABLE_NAME,
NEW.tx_id,
NEW.index
);
ELSIF (TG_TABLE_NAME = 'uncle_cids') OR (TG_TABLE_NAME = 'header_cids') THEN
obj := json_build_array(
TG_TABLE_NAME,
NEW.block_hash
);
END IF;
perform pg_notify('postgraphile:' || TG_RELNAME , json_build_object(
'__node__', obj
)::text
);
RETURN NEW;
END;
$$;
2022-08-08 16:08:09 +00:00
SET default_tablespace = '';
2021-08-29 18:55:44 +00:00
2022-08-08 16:08:09 +00:00
SET default_table_access_method = heap;
2021-08-29 18:55:44 +00:00
2022-03-28 23:23:05 +00:00
--
2022-08-08 16:08:09 +00:00
-- Name: access_list_elements; Type: TABLE; Schema: eth; Owner: -
2022-03-28 23:23:05 +00:00
--
2022-08-08 16:08:09 +00:00
CREATE TABLE eth.access_list_elements (
block_number bigint NOT NULL,
tx_id character varying(66) NOT NULL,
index integer NOT NULL,
address character varying(66),
storage_keys character varying(66)[]
);
2022-03-28 23:23:05 +00:00
--
2022-08-08 16:08:09 +00:00
-- Name: header_cids; Type: TABLE; Schema: eth; Owner: -
2022-03-28 23:23:05 +00:00
--
2022-08-08 16:08:09 +00:00
CREATE TABLE eth.header_cids (
block_number bigint NOT NULL,
block_hash character varying(66) NOT NULL,
parent_hash character varying(66) NOT NULL,
cid text NOT NULL,
td numeric NOT NULL,
node_id character varying(128) NOT NULL,
reward numeric NOT NULL,
state_root character varying(66) NOT NULL,
tx_root character varying(66) NOT NULL,
receipt_root character varying(66) NOT NULL,
uncles_hash character varying(66) NOT NULL,
bloom bytea NOT NULL,
"timestamp" bigint NOT NULL,
mh_key text NOT NULL,
times_validated integer DEFAULT 1 NOT NULL,
coinbase character varying(66) NOT NULL
);
2022-03-28 23:23:05 +00:00
2021-08-29 18:55:44 +00:00
--
2022-08-08 16:08:09 +00:00
-- Name: TABLE header_cids; Type: COMMENT; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-08-08 16:08:09 +00:00
COMMENT ON TABLE eth.header_cids IS '@name EthHeaderCids';
2021-08-29 18:55:44 +00:00
--
2022-08-08 16:08:09 +00:00
-- Name: COLUMN header_cids.node_id; Type: COMMENT; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-08-08 16:08:09 +00:00
COMMENT ON COLUMN eth.header_cids.node_id IS '@name EthNodeID';
2021-08-29 18:55:44 +00:00
2021-09-10 18:51:47 +00:00
--
-- Name: log_cids; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.log_cids (
block_number bigint NOT NULL,
2022-08-08 16:08:09 +00:00
header_id character varying(66) NOT NULL,
2021-09-10 18:51:47 +00:00
leaf_cid text NOT NULL,
leaf_mh_key text NOT NULL,
rct_id character varying(66) NOT NULL,
address character varying(66) NOT NULL,
2021-09-10 18:51:47 +00:00
index integer NOT NULL,
topic0 character varying(66),
topic1 character varying(66),
topic2 character varying(66),
topic3 character varying(66),
log_data bytea
2021-09-10 18:51:47 +00:00
);
2021-08-29 18:55:44 +00:00
--
-- Name: receipt_cids; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.receipt_cids (
block_number bigint NOT NULL,
2022-08-08 16:08:09 +00:00
header_id character varying(66) NOT NULL,
2021-11-15 00:06:02 +00:00
tx_id character varying(66) NOT NULL,
leaf_cid text NOT NULL,
2021-08-29 18:55:44 +00:00
contract character varying(66),
contract_hash character varying(66),
leaf_mh_key text NOT NULL,
2021-08-29 18:55:44 +00:00
post_state character varying(66),
2022-08-08 16:08:09 +00:00
post_status smallint,
2021-09-10 18:51:47 +00:00
log_root character varying(66)
2021-08-29 18:55:44 +00:00
);
--
-- Name: state_accounts; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.state_accounts (
block_number bigint NOT NULL,
2021-11-15 00:06:02 +00:00
header_id character varying(66) NOT NULL,
state_path bytea NOT NULL,
2021-11-24 23:49:55 +00:00
balance numeric NOT NULL,
nonce bigint NOT NULL,
2022-08-08 16:08:09 +00:00
code_hash character varying(66) NOT NULL,
2021-08-29 18:55:44 +00:00
storage_root character varying(66) NOT NULL
);
--
-- Name: state_cids; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.state_cids (
block_number bigint NOT NULL,
2021-11-15 00:06:02 +00:00
header_id character varying(66) NOT NULL,
2021-08-29 18:55:44 +00:00
state_leaf_key character varying(66),
cid text NOT NULL,
2021-11-15 00:06:02 +00:00
state_path bytea NOT NULL,
2021-08-29 18:55:44 +00:00
node_type integer NOT NULL,
diff boolean DEFAULT false NOT NULL,
mh_key text NOT NULL
2021-08-29 18:55:44 +00:00
);
--
-- Name: storage_cids; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.storage_cids (
block_number bigint NOT NULL,
2021-11-15 00:06:02 +00:00
header_id character varying(66) NOT NULL,
state_path bytea NOT NULL,
2021-08-29 18:55:44 +00:00
storage_leaf_key character varying(66),
cid text NOT NULL,
2021-11-15 00:06:02 +00:00
storage_path bytea NOT NULL,
2021-08-29 18:55:44 +00:00
node_type integer NOT NULL,
diff boolean DEFAULT false NOT NULL,
mh_key text NOT NULL
2021-08-29 18:55:44 +00:00
);
--
-- Name: transaction_cids; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.transaction_cids (
block_number bigint NOT NULL,
2021-11-15 00:06:02 +00:00
header_id character varying(66) NOT NULL,
tx_hash character varying(66) NOT NULL,
2021-08-29 18:55:44 +00:00
cid text NOT NULL,
2022-08-08 16:08:09 +00:00
dst character varying(66),
2021-08-29 18:55:44 +00:00
src character varying(66) NOT NULL,
index integer NOT NULL,
mh_key text NOT NULL,
2021-08-29 18:55:44 +00:00
tx_data bytea,
tx_type integer,
value numeric
2021-08-29 18:55:44 +00:00
);
--
-- Name: TABLE transaction_cids; Type: COMMENT; Schema: eth; Owner: -
--
COMMENT ON TABLE eth.transaction_cids IS '@name EthTransactionCids';
--
-- Name: uncle_cids; Type: TABLE; Schema: eth; Owner: -
--
CREATE TABLE eth.uncle_cids (
block_number bigint NOT NULL,
2021-08-29 18:55:44 +00:00
block_hash character varying(66) NOT NULL,
2021-11-15 00:06:02 +00:00
header_id character varying(66) NOT NULL,
2021-08-29 18:55:44 +00:00
parent_hash character varying(66) NOT NULL,
cid text NOT NULL,
reward numeric NOT NULL,
mh_key text NOT NULL
2021-08-29 18:55:44 +00:00
);
--
-- Name: known_gaps; Type: TABLE; Schema: eth_meta; Owner: -
--
CREATE TABLE eth_meta.known_gaps (
starting_block_number bigint NOT NULL,
ending_block_number bigint,
checked_out boolean,
processing_key bigint
);
--
-- Name: watched_addresses; Type: TABLE; Schema: eth_meta; Owner: -
--
CREATE TABLE eth_meta.watched_addresses (
address character varying(66) NOT NULL,
created_at bigint NOT NULL,
watched_at bigint NOT NULL,
last_filled_at bigint DEFAULT 0 NOT NULL
);
2021-08-29 18:55:44 +00:00
--
-- Name: blocks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.blocks (
block_number bigint NOT NULL,
2021-08-29 18:55:44 +00:00
key text NOT NULL,
data bytea NOT NULL
);
--
-- Name: db_version; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.db_version (
singleton boolean DEFAULT true NOT NULL,
version text NOT NULL,
tstamp timestamp without time zone DEFAULT now(),
CONSTRAINT db_version_singleton_check CHECK (singleton)
);
2021-08-29 18:55:44 +00:00
--
-- Name: goose_db_version; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.goose_db_version (
id integer NOT NULL,
version_id bigint NOT NULL,
is_applied boolean NOT NULL,
tstamp timestamp without time zone DEFAULT now()
);
--
-- Name: goose_db_version_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.goose_db_version_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: goose_db_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.goose_db_version_id_seq OWNED BY public.goose_db_version.id;
--
-- Name: nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.nodes (
genesis_block character varying(66),
network_id character varying,
2021-11-18 13:33:22 +00:00
node_id character varying(128) NOT NULL,
client_name character varying,
2021-08-29 18:55:44 +00:00
chain_id integer DEFAULT 1
);
--
-- Name: TABLE nodes; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON TABLE public.nodes IS '@name NodeInfo';
--
-- Name: COLUMN nodes.node_id; Type: COMMENT; Schema: public; Owner: -
--
COMMENT ON COLUMN public.nodes.node_id IS '@name ChainNodeID';
--
-- Name: goose_db_version id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.goose_db_version ALTER COLUMN id SET DEFAULT nextval('public.goose_db_version_id_seq'::regclass);
--
-- Name: access_list_elements access_list_elements_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
ALTER TABLE ONLY eth.access_list_elements
2022-04-13 02:56:43 +00:00
ADD CONSTRAINT access_list_elements_pkey PRIMARY KEY (tx_id, index, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: header_cids header_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.header_cids
2022-04-13 02:56:43 +00:00
ADD CONSTRAINT header_cids_pkey PRIMARY KEY (block_hash, block_number);
2021-08-29 18:55:44 +00:00
2021-09-10 18:51:47 +00:00
--
-- Name: log_cids log_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.log_cids
2022-08-08 16:08:09 +00:00
ADD CONSTRAINT log_cids_pkey PRIMARY KEY (rct_id, index, header_id, block_number);
2021-09-10 18:51:47 +00:00
2021-08-29 18:55:44 +00:00
--
-- Name: receipt_cids receipt_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.receipt_cids
2022-08-08 16:08:09 +00:00
ADD CONSTRAINT receipt_cids_pkey PRIMARY KEY (tx_id, header_id, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: state_accounts state_accounts_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.state_accounts
2022-04-13 02:56:43 +00:00
ADD CONSTRAINT state_accounts_pkey PRIMARY KEY (state_path, header_id, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: state_cids state_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.state_cids
2022-04-13 02:56:43 +00:00
ADD CONSTRAINT state_cids_pkey PRIMARY KEY (state_path, header_id, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: storage_cids storage_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.storage_cids
2022-04-13 02:56:43 +00:00
ADD CONSTRAINT storage_cids_pkey PRIMARY KEY (storage_path, state_path, header_id, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: transaction_cids transaction_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.transaction_cids
2022-08-08 16:08:09 +00:00
ADD CONSTRAINT transaction_cids_pkey PRIMARY KEY (tx_hash, header_id, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: uncle_cids uncle_cids_pkey; Type: CONSTRAINT; Schema: eth; Owner: -
--
ALTER TABLE ONLY eth.uncle_cids
2022-04-13 02:56:43 +00:00
ADD CONSTRAINT uncle_cids_pkey PRIMARY KEY (block_hash, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: known_gaps known_gaps_pkey; Type: CONSTRAINT; Schema: eth_meta; Owner: -
--
ALTER TABLE ONLY eth_meta.known_gaps
ADD CONSTRAINT known_gaps_pkey PRIMARY KEY (starting_block_number);
--
-- Name: watched_addresses watched_addresses_pkey; Type: CONSTRAINT; Schema: eth_meta; Owner: -
--
ALTER TABLE ONLY eth_meta.watched_addresses
ADD CONSTRAINT watched_addresses_pkey PRIMARY KEY (address);
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
-- Name: blocks blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2021-08-29 18:55:44 +00:00
--
ALTER TABLE ONLY public.blocks
ADD CONSTRAINT blocks_pkey PRIMARY KEY (key, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: db_version db_version_singleton_key; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.db_version
ADD CONSTRAINT db_version_singleton_key UNIQUE (singleton);
2021-08-29 18:55:44 +00:00
--
-- Name: goose_db_version goose_db_version_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.goose_db_version
ADD CONSTRAINT goose_db_version_pkey PRIMARY KEY (id);
--
-- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.nodes
2021-11-18 13:33:22 +00:00
ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id);
2021-08-29 18:55:44 +00:00
--
-- Name: access_list_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX access_list_block_number_index ON eth.access_list_elements USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
-- Name: access_list_element_address_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
CREATE INDEX access_list_element_address_index ON eth.access_list_elements USING btree (address);
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
-- Name: access_list_storage_keys_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
CREATE INDEX access_list_storage_keys_index ON eth.access_list_elements USING gin (storage_keys);
2021-08-29 18:55:44 +00:00
--
-- Name: account_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX account_block_number_index ON eth.state_accounts USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: account_header_id_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX account_header_id_index ON eth.state_accounts USING btree (header_id);
--
-- Name: account_storage_root_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX account_storage_root_index ON eth.state_accounts USING btree (storage_root);
2021-08-29 18:55:44 +00:00
--
-- Name: header_block_number_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
CREATE INDEX header_block_number_index ON eth.header_cids USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: header_cid_index; Type: INDEX; Schema: eth; Owner: -
--
2022-04-13 02:56:43 +00:00
CREATE UNIQUE INDEX header_cid_index ON eth.header_cids USING btree (cid, block_number);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: header_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE UNIQUE INDEX header_mh_block_number_index ON eth.header_cids USING btree (mh_key, block_number);
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
-- Name: log_address_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
CREATE INDEX log_address_index ON eth.log_cids USING btree (address);
2021-08-29 18:55:44 +00:00
--
-- Name: log_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX log_block_number_index ON eth.log_cids USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
-- Name: log_cid_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
CREATE INDEX log_cid_index ON eth.log_cids USING btree (leaf_cid);
2021-08-29 18:55:44 +00:00
2022-08-08 16:08:09 +00:00
--
-- Name: log_data_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX log_data_index ON eth.log_cids USING hash (log_data);
--
-- Name: log_header_id_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX log_header_id_index ON eth.log_cids USING btree (header_id);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: log_leaf_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX log_leaf_mh_block_number_index ON eth.log_cids USING btree (leaf_mh_key, block_number);
2021-08-29 18:55:44 +00:00
--
2021-09-10 18:51:47 +00:00
-- Name: log_topic0_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2021-09-10 18:51:47 +00:00
CREATE INDEX log_topic0_index ON eth.log_cids USING btree (topic0);
2021-08-29 18:55:44 +00:00
--
2021-09-10 18:51:47 +00:00
-- Name: log_topic1_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2021-09-10 18:51:47 +00:00
CREATE INDEX log_topic1_index ON eth.log_cids USING btree (topic1);
--
-- Name: log_topic2_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX log_topic2_index ON eth.log_cids USING btree (topic2);
--
-- Name: log_topic3_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX log_topic3_index ON eth.log_cids USING btree (topic3);
2021-08-29 18:55:44 +00:00
--
-- Name: rct_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX rct_block_number_index ON eth.receipt_cids USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: rct_contract_hash_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
CREATE INDEX rct_contract_hash_index ON eth.receipt_cids USING btree (contract_hash);
2021-08-29 18:55:44 +00:00
--
-- Name: rct_contract_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
CREATE INDEX rct_contract_index ON eth.receipt_cids USING btree (contract);
2021-08-29 18:55:44 +00:00
2022-08-08 16:08:09 +00:00
--
-- Name: rct_header_id_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX rct_header_id_index ON eth.receipt_cids USING btree (header_id);
2021-08-29 18:55:44 +00:00
--
-- Name: rct_leaf_cid_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
CREATE INDEX rct_leaf_cid_index ON eth.receipt_cids USING btree (leaf_cid);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: rct_leaf_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX rct_leaf_mh_block_number_index ON eth.receipt_cids USING btree (leaf_mh_key, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: state_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX state_block_number_index ON eth.state_cids USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: state_cid_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX state_cid_index ON eth.state_cids USING btree (cid);
--
2022-03-28 23:23:05 +00:00
-- Name: state_header_id_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX state_header_id_index ON eth.state_cids USING btree (header_id);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: state_leaf_key_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX state_leaf_key_index ON eth.state_cids USING btree (state_leaf_key);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: state_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
2022-03-28 23:23:05 +00:00
CREATE INDEX state_mh_block_number_index ON eth.state_cids USING btree (mh_key, block_number);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: state_node_type_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX state_node_type_index ON eth.state_cids USING btree (node_type);
2021-08-29 18:55:44 +00:00
--
-- Name: state_root_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX state_root_index ON eth.header_cids USING btree (state_root);
--
-- Name: storage_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX storage_block_number_index ON eth.storage_cids USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: storage_cid_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX storage_cid_index ON eth.storage_cids USING btree (cid);
--
2022-03-28 23:23:05 +00:00
-- Name: storage_header_id_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX storage_header_id_index ON eth.storage_cids USING btree (header_id);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: storage_leaf_key_index; Type: INDEX; Schema: eth; Owner: -
--
2022-03-28 23:23:05 +00:00
CREATE INDEX storage_leaf_key_index ON eth.storage_cids USING btree (storage_leaf_key);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: storage_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX storage_mh_block_number_index ON eth.storage_cids USING btree (mh_key, block_number);
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
-- Name: storage_node_type_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-03-28 23:23:05 +00:00
CREATE INDEX storage_node_type_index ON eth.storage_cids USING btree (node_type);
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
-- Name: storage_state_path_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2021-11-15 00:06:02 +00:00
CREATE INDEX storage_state_path_index ON eth.storage_cids USING btree (state_path);
2021-08-29 18:55:44 +00:00
--
-- Name: timestamp_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX timestamp_index ON eth.header_cids USING brin ("timestamp");
--
-- Name: tx_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX tx_block_number_index ON eth.transaction_cids USING brin (block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: tx_cid_index; Type: INDEX; Schema: eth; Owner: -
--
2022-08-08 16:08:09 +00:00
CREATE INDEX tx_cid_index ON eth.transaction_cids USING btree (cid, block_number);
--
-- Name: tx_data_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX tx_data_index ON eth.transaction_cids USING hash (tx_data);
2021-08-29 18:55:44 +00:00
--
-- Name: tx_dst_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX tx_dst_index ON eth.transaction_cids USING btree (dst);
--
-- Name: tx_header_id_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX tx_header_id_index ON eth.transaction_cids USING btree (header_id);
--
2022-03-28 23:23:05 +00:00
-- Name: tx_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
2021-08-29 18:55:44 +00:00
--
2022-08-08 16:08:09 +00:00
CREATE INDEX tx_mh_block_number_index ON eth.transaction_cids USING btree (mh_key, block_number);
2021-08-29 18:55:44 +00:00
--
-- Name: tx_src_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX tx_src_index ON eth.transaction_cids USING btree (src);
--
-- Name: uncle_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX uncle_block_number_index ON eth.uncle_cids USING brin (block_number);
2021-11-15 00:06:02 +00:00
--
-- Name: uncle_header_id_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE INDEX uncle_header_id_index ON eth.uncle_cids USING btree (header_id);
2022-03-28 23:23:05 +00:00
--
-- Name: uncle_mh_block_number_index; Type: INDEX; Schema: eth; Owner: -
--
CREATE UNIQUE INDEX uncle_mh_block_number_index ON eth.uncle_cids USING btree (mh_key, block_number);
--
-- Name: access_list_elements trg_eth_access_list_elements; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_access_list_elements AFTER INSERT ON eth.access_list_elements FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: header_cids trg_eth_header_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_header_cids AFTER INSERT ON eth.header_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: log_cids trg_eth_log_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_log_cids AFTER INSERT ON eth.log_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: receipt_cids trg_eth_receipt_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_receipt_cids AFTER INSERT ON eth.receipt_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: state_accounts trg_eth_state_accounts; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_state_accounts AFTER INSERT ON eth.state_accounts FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: state_cids trg_eth_state_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_state_cids AFTER INSERT ON eth.state_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: storage_cids trg_eth_storage_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_storage_cids AFTER INSERT ON eth.storage_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
-- Name: transaction_cids trg_eth_transaction_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_transaction_cids AFTER INSERT ON eth.transaction_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
--
2021-12-20 15:48:17 +00:00
-- Name: uncle_cids trg_eth_uncle_cids; Type: TRIGGER; Schema: eth; Owner: -
--
CREATE TRIGGER trg_eth_uncle_cids AFTER INSERT ON eth.uncle_cids FOR EACH ROW EXECUTE FUNCTION eth.graphql_subscription();
2021-12-08 08:00:59 +00:00
--
-- PostgreSQL database dump complete
--