Skip to content

Commit 0272dd5

Browse files
committed
fix: update README and Mermaid graph
Signed-off-by: William Hankins <[email protected]>
1 parent 832c677 commit 0272dd5

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ structure is highly subject to change:
6060
- [Stake Delta Filter](modules/stake_delta_filter) - filters out stake address changes and handles stake pointer references
6161
- [Epochs State](modules/epochs_state) - track fees blocks minted and epochs history
6262
- [Accounts State](modules/accounts_state) - stake and reward accounts tracker
63+
- [Assets State](modules/assets_state) - tracks native asset supply, metadata, transactions, and addresses
6364

6465
```mermaid
6566
graph LR
@@ -74,19 +75,24 @@ graph LR
7475
DRepState(DRep State)
7576
GovernanceState(Governance State)
7677
StakeDeltaFilter(Stake Delta Filter)
77-
EpochsState(EpochsState)
78+
EpochsState(Epochs State)
7879
AccountsState(Accounts State)
80+
AssetsState(Assets State)
81+
ParametersState(Parameters State)
7982
8083
UpstreamChainFetcher --> BlockUnpacker
8184
MithrilSnapshotFetcher --> BlockUnpacker
8285
BlockUnpacker --> TxUnpacker
8386
GenesisBootstrapper --> UTXOState
8487
TxUnpacker --> UTXOState
88+
TxUnpacker --> AssetsState
8589
TxUnpacker --> EpochsState
8690
TxUnpacker --> AccountsState
87-
TxUnpacker --> SPOState
8891
TxUnpacker --> DRepState
92+
TxUnpacker --> SPOState
8993
TxUnpacker --> GovernanceState
94+
GovernanceState --> ParametersState
95+
TxUnpacker --> ParametersState
9096
UTXOState --> StakeDeltaFilter
9197
StakeDeltaFilter --> AccountsState
9298
UpstreamChainFetcher --> EpochsState
@@ -95,6 +101,7 @@ graph LR
95101
SPOState --> AccountsState
96102
DRepState --> GovernanceState
97103
GovernanceState --> AccountsState
104+
ParametersState --> AccountsState
98105
```
99106

100107
## Messages

0 commit comments

Comments
 (0)