feat: remove global integrity proof from genesis state

This commit is contained in:
Prad Nukala
2024-09-25 19:55:51 -04:00
parent d21d109128
commit b025f35220
4 changed files with 240 additions and 1401 deletions
-11
View File
@@ -10,17 +10,6 @@ option go_package = "github.com/onsonr/sonr/x/did/types";
message GenesisState {
// Params defines all the parameters of the module.
Params params = 1 [(gogoproto.nullable) = false];
// GlobalIntegrity defines a zkp integrity proof for the entire DID namespace
GlobalIntegrity global_integrity = 2;
}
// GlobalIntegrity defines a zkp integrity proof for the entire DID namespace
message GlobalIntegrity {
string controller = 1;
string seed = 2;
bytes accumulator = 3;
uint64 count = 4;
}
// Params defines the set of module parameters.