mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
8c85a62e10
Expose MintTo smart contract function. Expose ContractOwner address. Introduce token owners cache. Issue #9783
8 lines
206 B
SQL
8 lines
206 B
SQL
CREATE TABLE IF NOT EXISTS community_token_owners (
|
|
chain_id INT NOT NULL,
|
|
address TEXT NOT NULL,
|
|
owner TEXT NOT NULL COLLATE NOCASE,
|
|
amount INT NOT NULL,
|
|
PRIMARY KEY(chain_id, address, owner)
|
|
);
|