diff --git a/Makefile b/Makefile index 555c250b..5e0c6dd4 100644 --- a/Makefile +++ b/Makefile @@ -20,8 +20,12 @@ lint: @golangci-lint run @go mod verify +containerProtoVer=v0.2 +containerProtoImage=tendermintdev/sdk-proto-gen:$(containerProtoVer) +containerProtoGen=cosmos-sdk-proto-gen-$(containerProtoVer) + proto-gen: - docker run --rm -v $(CURDIR):/workspace --workdir /workspace tendermintdev/sdk-proto-gen sh ./scripts/protocgen.sh + docker run --rm --name $(containerProtoGen) -v $(CURDIR):/workspace --workdir /workspace $(containerProtoImage) sh ./scripts/protocgen.sh proto-gen-local: ./scripts/protogen-local.sh diff --git a/RELEASE.md b/RELEASE.md index b55340f5..53aeaf5d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,5 +2,6 @@ **Features:** -- Added signature files generation to releases -- Include `env.sh` in releases & rename to `sekai-env.sh` \ No newline at end of file +- updated identity registrar messages for record_ids, verify_request_id +- added metadata endpoint for MsgDeleteIdentityRegistrar +- removed metadata endpoint for MsgEditIdentityRegistrar diff --git a/proto/kira/gov/identity_registrar.proto b/proto/kira/gov/identity_registrar.proto index a3b2bb35..7c580418 100644 --- a/proto/kira/gov/identity_registrar.proto +++ b/proto/kira/gov/identity_registrar.proto @@ -57,7 +57,7 @@ message MsgRequestIdentityRecordsVerify { (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", (gogoproto.moretags) = "yaml:\"verifier\"" ]; - repeated uint64 recordIds = 3; + repeated uint64 record_ids = 3; string tip = 4 [ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin", (gogoproto.nullable) = false @@ -69,7 +69,7 @@ message MsgHandleIdentityRecordsVerifyRequest { (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", (gogoproto.moretags) = "yaml:\"verifier\"" ]; - uint64 verifyRequestId = 2; + uint64 verify_request_id = 2; bool yes = 3; } message MsgCancelIdentityRecordsVerifyRequest { @@ -77,5 +77,5 @@ message MsgCancelIdentityRecordsVerifyRequest { (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", (gogoproto.moretags) = "yaml:\"executor\"" ]; - uint64 verifyRequestId = 2; + uint64 verify_request_id = 2; } \ No newline at end of file diff --git a/scripts/sekai-env.sh b/scripts/sekai-env.sh index 47da496e..0514ce8b 100644 --- a/scripts/sekai-env.sh +++ b/scripts/sekai-env.sh @@ -188,7 +188,7 @@ FuncIDMultiSend=2 FuncIDMsgSubmitProposal=10 FuncIDMsgVoteProposal=11 FuncIDMsgRegisterIdentityRecords=12 -FuncIDMsgEditIdentityRecord=13 +FuncIDMsgDeleteIdentityRecords=13 FuncIDMsgRequestIdentityRecordsVerify=14 FuncIDMsgHandleIdentityRecordsVerifyRequest=15 FuncIDMsgCancelIdentityRecordsVerifyRequest=16 diff --git a/types/constants.go b/types/constants.go index e2046ee2..4ffa7363 100644 --- a/types/constants.go +++ b/types/constants.go @@ -3,6 +3,6 @@ package types const ( // we set page iteration limit for safety PageIterationLimit = 512 - SekaiVersion = "v0.1.26-rc.11" + SekaiVersion = "v0.1.27-rc.12" CosmosVersion = "v0.45.1" ) diff --git a/x/gov/types/codec.go b/x/gov/types/codec.go index bcd9f20d..7f117502 100644 --- a/x/gov/types/codec.go +++ b/x/gov/types/codec.go @@ -150,21 +150,17 @@ func registerIdRecordsCodec(cdc *codec.LegacyAmino) { } }`) - cdc.RegisterConcrete(&MsgDeleteIdentityRecords{}, "kiraHub/MsgEditIdentityRecord", nil) + cdc.RegisterConcrete(&MsgDeleteIdentityRecords{}, "kiraHub/MsgDeleteIdentityRecords", nil) functionmeta.AddNewFunction((&MsgDeleteIdentityRecords{}).Type(), `{ - "description": "MsgEditIdentityRecord defines a proposal message to edit an identity record.", + "description": "MsgDeleteIdentityRecords defines a method to delete identity records owned by an address.", "parameters": { - "record_id": { - "type": "uint64", - "description": "the id of identity record to edit." - }, "address": { "type": "string", - "description": "the address for the identity record." + "description": "the address of requester." }, - "infos": { + "keys": { "type": "array", - "description": "key/value array for the mappings of the identity record." + "description": "the array string that defines identity record key values to be deleted." } } }`) @@ -203,6 +199,11 @@ func registerIdRecordsCodec(cdc *codec.LegacyAmino) { "verify_request_id": { "type": "uint64", "description": "the id of verification request." + }, + "yes": { + "type": "bool", + "optional": true, + "description": "defines approval or rejecting an identity request (default false)" } } }`) diff --git a/x/gov/types/identity_registrar.pb.go b/x/gov/types/identity_registrar.pb.go index 77c23552..22732448 100644 --- a/x/gov/types/identity_registrar.pb.go +++ b/x/gov/types/identity_registrar.pb.go @@ -348,7 +348,7 @@ func (m *IdentityRecordsVerify) GetLastRecordEditDate() time.Time { type MsgRequestIdentityRecordsVerify struct { Address github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=address,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"address,omitempty" yaml:"address"` Verifier github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=verifier,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"verifier,omitempty" yaml:"verifier"` - RecordIds []uint64 `protobuf:"varint,3,rep,packed,name=recordIds,proto3" json:"recordIds,omitempty"` + RecordIds []uint64 `protobuf:"varint,3,rep,packed,name=record_ids,json=recordIds,proto3" json:"record_ids,omitempty"` Tip github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,4,opt,name=tip,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"tip"` } @@ -408,7 +408,7 @@ func (m *MsgRequestIdentityRecordsVerify) GetRecordIds() []uint64 { type MsgHandleIdentityRecordsVerifyRequest struct { Verifier github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=verifier,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"verifier,omitempty" yaml:"verifier"` - VerifyRequestId uint64 `protobuf:"varint,2,opt,name=verifyRequestId,proto3" json:"verifyRequestId,omitempty"` + VerifyRequestId uint64 `protobuf:"varint,2,opt,name=verify_request_id,json=verifyRequestId,proto3" json:"verify_request_id,omitempty"` Yes bool `protobuf:"varint,3,opt,name=yes,proto3" json:"yes,omitempty"` } @@ -468,7 +468,7 @@ func (m *MsgHandleIdentityRecordsVerifyRequest) GetYes() bool { type MsgCancelIdentityRecordsVerifyRequest struct { Executor github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=executor,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"executor,omitempty" yaml:"executor"` - VerifyRequestId uint64 `protobuf:"varint,2,opt,name=verifyRequestId,proto3" json:"verifyRequestId,omitempty"` + VerifyRequestId uint64 `protobuf:"varint,2,opt,name=verify_request_id,json=verifyRequestId,proto3" json:"verify_request_id,omitempty"` } func (m *MsgCancelIdentityRecordsVerifyRequest) Reset() { *m = MsgCancelIdentityRecordsVerifyRequest{} } @@ -532,49 +532,49 @@ func init() { func init() { proto.RegisterFile("kira/gov/identity_registrar.proto", fileDescriptor_cf2821c6a2456955) } var fileDescriptor_cf2821c6a2456955 = []byte{ - // 657 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xcf, 0x6b, 0x13, 0x4f, - 0x14, 0xcf, 0x24, 0xdb, 0x7e, 0x93, 0xe9, 0x97, 0x56, 0x87, 0x0a, 0x4b, 0x94, 0x6c, 0x5c, 0x28, - 0xee, 0xa5, 0xbb, 0x50, 0x0f, 0xfe, 0xb8, 0x48, 0x93, 0x16, 0x0c, 0xd2, 0xcb, 0x52, 0x3c, 0x08, - 0xa2, 0xdb, 0xdd, 0x97, 0x75, 0xc8, 0x66, 0x27, 0xce, 0x4c, 0x42, 0xf7, 0x8f, 0x10, 0x7a, 0xf0, - 0x3f, 0xd1, 0x93, 0x57, 0x11, 0x7a, 0xec, 0x51, 0x3c, 0x44, 0x69, 0xff, 0x83, 0x1e, 0x3d, 0xc9, - 0xcc, 0x66, 0x4d, 0x5b, 0x53, 0x6c, 0x0b, 0xf5, 0x94, 0x37, 0x6f, 0xe6, 0xbd, 0xf7, 0xf9, 0xf1, - 0x92, 0xe0, 0xbb, 0x3d, 0xca, 0x03, 0x2f, 0x66, 0x23, 0x8f, 0x46, 0x90, 0x4a, 0x2a, 0xb3, 0x57, - 0x1c, 0x62, 0x2a, 0x24, 0x0f, 0xb8, 0x3b, 0xe0, 0x4c, 0x32, 0x52, 0x55, 0x4f, 0xdc, 0x98, 0x8d, - 0xea, 0xcb, 0x31, 0x8b, 0x99, 0x4e, 0x7a, 0x2a, 0xca, 0xef, 0xeb, 0x56, 0xcc, 0x58, 0x9c, 0x80, - 0xa7, 0x4f, 0x3b, 0xc3, 0xae, 0x27, 0x69, 0x1f, 0x84, 0x0c, 0xfa, 0x83, 0xfc, 0x81, 0xfd, 0x09, - 0xe1, 0xc5, 0xce, 0xa4, 0xbb, 0x0f, 0x21, 0xe3, 0x11, 0x59, 0xc4, 0x65, 0x1a, 0x99, 0xa8, 0x89, - 0x1c, 0xc3, 0x2f, 0xd3, 0x88, 0x98, 0xf8, 0xbf, 0x20, 0x8a, 0x38, 0x08, 0x61, 0x96, 0x9b, 0xc8, - 0xa9, 0xf9, 0xc5, 0x91, 0xdc, 0xc0, 0x95, 0x1e, 0x64, 0x66, 0x45, 0x67, 0x55, 0x48, 0x96, 0xf1, - 0xdc, 0x28, 0x48, 0x86, 0x60, 0x1a, 0x3a, 0x97, 0x1f, 0xc8, 0x43, 0x6c, 0x44, 0x81, 0x04, 0x73, - 0xae, 0x89, 0x9c, 0x85, 0xb5, 0xba, 0x9b, 0x83, 0x72, 0x0b, 0x50, 0xee, 0x76, 0x01, 0xaa, 0x55, - 0xdd, 0x1f, 0x5b, 0xa5, 0xbd, 0xef, 0x16, 0xf2, 0x75, 0x05, 0xb9, 0x83, 0x6b, 0x23, 0xe0, 0xb4, - 0x4b, 0x81, 0x0b, 0x73, 0xbe, 0x59, 0x71, 0x6a, 0xfe, 0x34, 0x61, 0x3f, 0xc2, 0x37, 0x0b, 0xec, - 0x9d, 0xb4, 0xcb, 0x36, 0x53, 0xc9, 0xb3, 0x02, 0x14, 0x9a, 0x82, 0x22, 0xd8, 0xa0, 0x69, 0x97, - 0x4d, 0xd0, 0xeb, 0xd8, 0xfe, 0x88, 0x70, 0x7d, 0x4b, 0xc4, 0xbe, 0xd6, 0x13, 0xf8, 0x69, 0x09, - 0x04, 0x79, 0x39, 0xe5, 0xac, 0x1a, 0xfd, 0xdf, 0x6a, 0x1f, 0x8f, 0xad, 0xc5, 0x2c, 0xe8, 0x27, - 0x8f, 0xed, 0xc9, 0x85, 0xfd, 0x73, 0x6c, 0xad, 0xc6, 0x54, 0xbe, 0x19, 0xee, 0xb8, 0x21, 0xeb, - 0x7b, 0x21, 0x13, 0x7d, 0x26, 0x26, 0x1f, 0xab, 0x22, 0xea, 0x79, 0x32, 0x1b, 0x80, 0x70, 0xd7, - 0xc3, 0x70, 0x3d, 0xaf, 0x98, 0x0a, 0xf7, 0x00, 0xcf, 0x29, 0x14, 0x4a, 0xd0, 0x8a, 0xb3, 0xb0, - 0x76, 0xdb, 0x2d, 0x6c, 0x74, 0xff, 0xe0, 0xd3, 0x32, 0x94, 0x24, 0x7e, 0xfe, 0xde, 0x7e, 0x87, - 0xb0, 0xb9, 0x25, 0xe2, 0x0d, 0x48, 0x40, 0xc2, 0x3f, 0x06, 0x4d, 0xb0, 0xd1, 0x83, 0x2c, 0xc7, - 0x5c, 0xf3, 0x75, 0x6c, 0xbf, 0x2f, 0xe3, 0x5b, 0x67, 0x60, 0x3c, 0x57, 0xf6, 0x64, 0x97, 0xd8, - 0xa2, 0x3a, 0xae, 0x16, 0x96, 0x4e, 0x56, 0xe9, 0xf7, 0x59, 0xf9, 0xcf, 0x75, 0xdb, 0x4e, 0x24, - 0x4c, 0xa3, 0x59, 0x71, 0x0c, 0x7f, 0x9a, 0x20, 0xeb, 0xb8, 0x22, 0xe9, 0x40, 0xaf, 0x55, 0xad, - 0xe5, 0x29, 0x9d, 0xbe, 0x8d, 0xad, 0x7b, 0x17, 0xa0, 0xd7, 0x66, 0x34, 0xf5, 0x55, 0x2d, 0xd9, - 0xc6, 0x24, 0x09, 0x84, 0xcc, 0xb1, 0x6f, 0x46, 0x54, 0x6e, 0xa8, 0x45, 0x9d, 0xbf, 0xc4, 0xa2, - 0xce, 0xa8, 0xb7, 0x3f, 0x97, 0xb1, 0xa5, 0xb7, 0xeb, 0xed, 0x10, 0x84, 0x9c, 0x2d, 0xd0, 0x35, - 0xbb, 0xf5, 0xfa, 0x84, 0xaa, 0x65, 0xdd, 0x7f, 0xe3, 0x78, 0x6c, 0x2d, 0xe5, 0xfd, 0x8b, 0x9b, - 0x2b, 0x0c, 0x38, 0xc7, 0x9b, 0xca, 0x39, 0xde, 0x18, 0x57, 0xf7, 0xc6, 0xfe, 0x82, 0xf0, 0xca, - 0x96, 0x88, 0x9f, 0x06, 0x69, 0x94, 0xc0, 0x4c, 0x11, 0x27, 0x02, 0x9f, 0x22, 0x8b, 0xae, 0x85, - 0xac, 0x83, 0x97, 0x46, 0x27, 0x47, 0x76, 0x22, 0xad, 0xaa, 0xe1, 0x9f, 0x4d, 0xab, 0xdf, 0x9f, - 0x0c, 0x84, 0xde, 0xe4, 0xaa, 0xaf, 0x42, 0xfb, 0x43, 0xce, 0xa3, 0x1d, 0xa4, 0x21, 0x24, 0x7f, - 0xe3, 0x01, 0xbb, 0x10, 0x0e, 0x25, 0x9b, 0xc1, 0xa3, 0xb8, 0xb9, 0x0a, 0x8f, 0xa2, 0xf6, 0xe2, - 0x3c, 0x5a, 0x4f, 0xf6, 0x0f, 0x1b, 0xe8, 0xe0, 0xb0, 0x81, 0x7e, 0x1c, 0x36, 0xd0, 0xde, 0x51, - 0xa3, 0x74, 0x70, 0xd4, 0x28, 0x7d, 0x3d, 0x6a, 0x94, 0x5e, 0xac, 0x9c, 0x18, 0xfe, 0x8c, 0xf2, - 0xa0, 0xcd, 0x38, 0x78, 0x02, 0x7a, 0x01, 0xf5, 0x76, 0xf5, 0xdf, 0x95, 0x9e, 0xbf, 0x33, 0xaf, - 0xbf, 0x36, 0xf7, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x12, 0xa9, 0xf0, 0x75, 0xc7, 0x06, 0x00, - 0x00, + // 670 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0x4f, 0x6b, 0x13, 0x41, + 0x14, 0xcf, 0x64, 0xb7, 0x35, 0x99, 0x4a, 0x6b, 0x87, 0x0a, 0x4b, 0xd4, 0x6c, 0x5c, 0x28, 0x06, + 0xa1, 0xbb, 0x50, 0x0f, 0xfe, 0xb9, 0x48, 0x93, 0x16, 0x0c, 0xd2, 0xcb, 0x52, 0x3c, 0x08, 0x52, + 0xb7, 0x3b, 0x93, 0x75, 0xc8, 0x66, 0x27, 0xce, 0x4c, 0x42, 0xf7, 0x43, 0x08, 0x3d, 0xf8, 0x51, + 0xf4, 0xe2, 0x59, 0xb0, 0xc7, 0x1e, 0xc5, 0x43, 0x94, 0xf6, 0x1b, 0xf4, 0xe8, 0x49, 0x66, 0x36, + 0xeb, 0xb6, 0x1a, 0xd1, 0x06, 0xea, 0x29, 0x6f, 0xde, 0xcc, 0x7b, 0xf3, 0xfb, 0xf3, 0x32, 0x0b, + 0x6f, 0xf7, 0x28, 0x0f, 0xbc, 0x88, 0x8d, 0x3c, 0x8a, 0x49, 0x22, 0xa9, 0x4c, 0x77, 0x39, 0x89, + 0xa8, 0x90, 0x3c, 0xe0, 0xee, 0x80, 0x33, 0xc9, 0x50, 0x45, 0x1d, 0x71, 0x23, 0x36, 0xaa, 0xad, + 0x44, 0x2c, 0x62, 0x3a, 0xe9, 0xa9, 0x28, 0xdb, 0xaf, 0xd9, 0x11, 0x63, 0x51, 0x4c, 0x3c, 0xbd, + 0xda, 0x1b, 0x76, 0x3d, 0x49, 0xfb, 0x44, 0xc8, 0xa0, 0x3f, 0xc8, 0x0e, 0x38, 0x1f, 0x00, 0x5c, + 0xec, 0x4c, 0xba, 0xfb, 0x24, 0x64, 0x1c, 0xa3, 0x45, 0x58, 0xa6, 0xd8, 0x02, 0x0d, 0xd0, 0x34, + 0xfd, 0x32, 0xc5, 0xc8, 0x82, 0x57, 0x02, 0x8c, 0x39, 0x11, 0xc2, 0x2a, 0x37, 0x40, 0xb3, 0xea, + 0xe7, 0x4b, 0x74, 0x0d, 0x1a, 0x3d, 0x92, 0x5a, 0x86, 0xce, 0xaa, 0x10, 0xad, 0xc0, 0xb9, 0x51, + 0x10, 0x0f, 0x89, 0x65, 0xea, 0x5c, 0xb6, 0x40, 0x0f, 0xa0, 0x89, 0x03, 0x49, 0xac, 0xb9, 0x06, + 0x68, 0x2e, 0xac, 0xd7, 0xdc, 0x0c, 0x94, 0x9b, 0x83, 0x72, 0x77, 0x72, 0x50, 0xad, 0xca, 0xe1, + 0xd8, 0x2e, 0x1d, 0x7c, 0xb5, 0x81, 0xaf, 0x2b, 0xd0, 0x4d, 0x58, 0x1d, 0x11, 0x4e, 0xbb, 0x94, + 0x70, 0x61, 0xcd, 0x37, 0x8c, 0x66, 0xd5, 0x2f, 0x12, 0xce, 0x43, 0xb8, 0x9c, 0x63, 0xef, 0x24, + 0x5d, 0xb6, 0x95, 0x48, 0x9e, 0xe6, 0xa0, 0x40, 0x01, 0x0a, 0x41, 0x93, 0x26, 0x5d, 0x36, 0x41, + 0xaf, 0x63, 0xe7, 0x1d, 0x80, 0xb5, 0x6d, 0x11, 0xf9, 0x5a, 0x4f, 0xc2, 0xcf, 0x4b, 0x20, 0xd0, + 0x8b, 0x82, 0xb3, 0x6a, 0x74, 0xb5, 0xd5, 0x3e, 0x1d, 0xdb, 0x8b, 0x69, 0xd0, 0x8f, 0x1f, 0x39, + 0x93, 0x0d, 0xe7, 0xfb, 0xd8, 0x5e, 0x8b, 0xa8, 0x7c, 0x35, 0xdc, 0x73, 0x43, 0xd6, 0xf7, 0x42, + 0x26, 0xfa, 0x4c, 0x4c, 0x7e, 0xd6, 0x04, 0xee, 0x79, 0x32, 0x1d, 0x10, 0xe1, 0x6e, 0x84, 0xe1, + 0x46, 0x56, 0x51, 0x08, 0x77, 0x1f, 0xce, 0x29, 0x14, 0x4a, 0x50, 0xa3, 0xb9, 0xb0, 0x7e, 0xc3, + 0xcd, 0x6d, 0x74, 0x7f, 0xe3, 0xd3, 0x32, 0x95, 0x24, 0x7e, 0x76, 0xde, 0x79, 0x03, 0xa0, 0xb5, + 0x2d, 0xa2, 0x4d, 0x12, 0x13, 0x49, 0xfe, 0x33, 0x68, 0x04, 0xcd, 0x1e, 0x49, 0x33, 0xcc, 0x55, + 0x5f, 0xc7, 0xce, 0xdb, 0x32, 0xbc, 0xfe, 0x0b, 0x8c, 0x67, 0xca, 0x9e, 0xf4, 0x02, 0x53, 0x54, + 0x83, 0x95, 0xdc, 0xd2, 0xc9, 0x28, 0xfd, 0x5c, 0x2b, 0xff, 0xb9, 0x6e, 0xdb, 0xc1, 0xc2, 0x32, + 0x1b, 0x46, 0xd3, 0xf4, 0x8b, 0x04, 0xda, 0x80, 0x86, 0xa4, 0x03, 0x3d, 0x56, 0xd5, 0x96, 0xa7, + 0x74, 0xfa, 0x32, 0xb6, 0xef, 0xfc, 0x03, 0xbd, 0x36, 0xa3, 0x89, 0xaf, 0x6a, 0xd1, 0x0e, 0x44, + 0x71, 0x20, 0x64, 0x86, 0x7d, 0x0b, 0x53, 0xb9, 0xa9, 0x06, 0x75, 0xfe, 0x02, 0x83, 0x3a, 0xa5, + 0xde, 0xf9, 0x58, 0x86, 0xb6, 0x9e, 0xae, 0xd7, 0x43, 0x22, 0xe4, 0x74, 0x81, 0x2e, 0xd9, 0xad, + 0x97, 0x67, 0x54, 0x2d, 0xeb, 0xfe, 0x9b, 0xa7, 0x63, 0x7b, 0x29, 0xeb, 0x9f, 0xef, 0xcc, 0x70, + 0x41, 0xe1, 0xcd, 0x2d, 0x08, 0x33, 0x2b, 0x76, 0x29, 0x16, 0x96, 0xf1, 0x07, 0x73, 0xcc, 0xd9, + 0xcd, 0x71, 0x3e, 0x01, 0xb8, 0xba, 0x2d, 0xa2, 0x27, 0x41, 0x82, 0x63, 0x32, 0x55, 0xc5, 0x89, + 0xc2, 0xe7, 0xd8, 0x82, 0x4b, 0x61, 0x7b, 0x17, 0x2e, 0xeb, 0x58, 0xbd, 0xc1, 0xfa, 0xce, 0x5d, + 0x8a, 0xb5, 0xb0, 0xa6, 0xbf, 0x34, 0x3a, 0x8b, 0xa5, 0x83, 0xd5, 0x13, 0x94, 0x12, 0xa1, 0x87, + 0xb9, 0xe2, 0xab, 0xd0, 0x79, 0x9f, 0x31, 0x69, 0x07, 0x49, 0x48, 0xe2, 0xbf, 0x31, 0x21, 0xfb, + 0x24, 0x1c, 0x4a, 0x36, 0x85, 0x49, 0xbe, 0x33, 0x0b, 0x93, 0xbc, 0xf6, 0x22, 0x4c, 0x5a, 0x8f, + 0x0f, 0x8f, 0xeb, 0xe0, 0xe8, 0xb8, 0x0e, 0xbe, 0x1d, 0xd7, 0xc1, 0xc1, 0x49, 0xbd, 0x74, 0x74, + 0x52, 0x2f, 0x7d, 0x3e, 0xa9, 0x97, 0x9e, 0xaf, 0x9e, 0xb9, 0xfe, 0x29, 0xe5, 0x41, 0x9b, 0x71, + 0xe2, 0x09, 0xd2, 0x0b, 0xa8, 0xb7, 0xaf, 0xbf, 0x59, 0x1a, 0xc1, 0xde, 0xbc, 0xfe, 0xef, 0xdc, + 0xfb, 0x11, 0x00, 0x00, 0xff, 0xff, 0x58, 0x06, 0x21, 0xcb, 0xcc, 0x06, 0x00, 0x00, } func (m *IdentityRecord) Marshal() (dAtA []byte, err error) {