github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/x/evidence/spec/02_state.md (about) 1 <!-- 2 order: 2 3 --> 4 5 # State 6 7 Currently the `x/evidence` module only stores valid submitted `Evidence` in state. 8 The evidence state is also stored and exported in the `x/evidence` module's `GenesisState`. 9 10 ```go 11 type GenesisState struct { 12 Evidence []Evidence `json:"evidence" yaml:"evidence"` 13 } 14 ``` 15 16 All `Evidence` is retrieved and stored via a prefix `KVStore` using prefix `0x00` (`KeyPrefixEvidence`).