Skip to content

Commit 2a105af

Browse files
committed
Update submodule link
1 parent 38a9307 commit 2a105af

4 files changed

Lines changed: 22 additions & 59 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22

33
## Unreleased changes
44

5-
Database schema version: 2
5+
Database schema version: 1
66

77
### Added
88

9-
- Add indexer logic to fill the plt token tables with data.
9+
- Affected accounts now include accounts that have their plt balance changed as part of block item summary outcomes.
1010
- Added database migration logic.
11-
- Added database schema version 2 with tables for tracking PLT tokens.
1211

1312
## 0.10.0
1413

Cargo.lock

Lines changed: 17 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/m0001-initial.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- Table of all tranasction/protocol event summaries that affect an account, contract, or PLT (protocol-level-token).
1+
-- Table of all tranasction/protocol event summaries that affect an account, or contract.
22
CREATE TABLE IF NOT EXISTS summaries(
33
id SERIAL8 PRIMARY KEY UNIQUE,
44
block BYTEA NOT NULL,
@@ -40,5 +40,5 @@ CREATE TABLE IF NOT EXISTS cis2_tokens(
4040
UNIQUE (index, subindex, token_id));
4141

4242
-- Index by contract address containing the token. This is needed to efficiently
43-
-- execute the query (give me all tokens in the given contract).
43+
-- execute the query "Give me all tokens in the given contract".
4444
CREATE INDEX IF NOT EXISTS cis2_tokens_address ON cis2_tokens (index, subindex);

0 commit comments

Comments
 (0)