forked from cerc-io/ipld-eth-server
Add ERC20 token watcher example
- starting with the totalSupply function - sets contract config on transformer by passing it into the transformer initializer - handles block records with the same number for different nodes for both creating token_supply records, and finding missing blocks
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE token_supply;
|
||||
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE token_supply (
|
||||
id SERIAL,
|
||||
block_id INTEGER NOT NULL,
|
||||
supply DECIMAL NOT NULL,
|
||||
token_address CHARACTER VARYING(66) NOT NULL,
|
||||
CONSTRAINT blocks_fk FOREIGN KEY (block_id)
|
||||
REFERENCES blocks (id)
|
||||
ON DELETE CASCADE
|
||||
)
|
||||
Reference in New Issue
Block a user