Skip to content

Commit

Permalink
update schema file (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Nov 28, 2023
1 parent 04c1e0f commit 2a9c800
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/eth/schema_transformed.cql
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,18 @@ CREATE TABLE address (
address blob,
no_incoming_txs int,
no_outgoing_txs int,
no_incoming_txs_code int,
no_outgoing_txs_code int,
first_tx_id int,
last_tx_id int,
total_received FROZEN <currency>,
total_spent FROZEN <currency>,
total_tokens_received map<text,FROZEN <currency>>,
total_tokens_spent map<text,FROZEN <currency>>,
total_tokens_received map<text, frozen <currency>>,
total_tokens_spent map<text, frozen <currency>>,
in_degree int,
out_degree int,
in_degree_code int,
out_degree_code int,
is_contract boolean,
PRIMARY KEY (address_id_group, address_id)
);
Expand Down

0 comments on commit 2a9c800

Please sign in to comment.