Table for token transactions

This table is already live as we built it in ETHOnline hackathon, so we will improve this in the 6 weeks ahead of us

Code:

CREATE TABLE token_transact_table (ID SERIAL PRIMARY KEY, protocol text, wallet_address text, token text, 
deposit_withdraw text, notify_by text, posted_by text);

How it is stored in Polygon Mumbai:

screencapture-dash-tableland-xyz-2022-10-11-19_33_04.png

Work we will do in this Program:

Table for tracking floor price for an NFT collection

Code :

CREATE TABLE nft_floor_table (ID SERIAL PRIMARY KEY, collection_address text, notify_by text, posted_by text);

Table for tracking token prices

Code: