github.com/Finschia/finschia-sdk@v0.48.1/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 ```protobuf 11 // GenesisState defines the evidence module's genesis state. 12 message GenesisState { 13 // evidence defines all the evidence at genesis. 14 repeated google.protobuf.Any evidence = 1; 15 } 16 17 ``` 18 19 All `Evidence` is retrieved and stored via a prefix `KVStore` using prefix `0x00` (`KeyPrefixEvidence`).