From 3809a066555e6c26a8fc4857931485655e0e1386 Mon Sep 17 00:00:00 2001 From: foxytanuki Date: Wed, 7 Feb 2024 14:18:06 +0900 Subject: [PATCH 1/5] Fix `FIELD_LOWER_SNAKE_CASE` errors --- proto/mycel/epochs/v1beta1/epoch_info.proto | 10 +- proto/mycel/epochs/v1beta1/query.proto | 4 +- proto/mycel/furnace/v1beta1/burn_amount.proto | 11 +- .../furnace/v1beta1/epoch_burn_config.proto | 8 +- proto/mycel/furnace/v1beta1/genesis.proto | 4 +- proto/mycel/furnace/v1beta1/query.proto | 6 +- proto/mycel/registry/v1beta1/genesis.proto | 7 +- proto/mycel/registry/v1beta1/params.proto | 4 +- proto/mycel/registry/v1beta1/query.proto | 29 ++-- .../v1beta1/second_level_domain.proto | 14 +- .../registry/v1beta1/subdomain_config.proto | 22 +-- .../registry/v1beta1/top_level_domain.proto | 18 +-- proto/mycel/registry/v1beta1/tx.proto | 18 +-- proto/mycel/resolver/v1beta1/query.proto | 34 ++--- x/epochs/types/epoch_info.pb.go | 10 +- x/epochs/types/query.pb.go | 4 +- x/epochs/types/query.pb.gw.go | 6 +- x/furnace/types/burn_amount.pb.go | 10 +- x/furnace/types/epoch_burn_config.pb.go | 8 +- x/furnace/types/genesis.pb.go | 4 +- x/furnace/types/query.pb.go | 6 +- x/furnace/types/query.pb.gw.go | 8 +- x/registry/types/genesis.pb.go | 6 +- x/registry/types/params.pb.go | 4 +- x/registry/types/query.pb.go | 26 ++-- x/registry/types/query.pb.gw.go | 30 ++-- x/registry/types/second_level_domain.pb.go | 10 +- x/registry/types/subdomain_config.pb.go | 10 +- x/registry/types/top_level_domain.pb.go | 18 +-- x/registry/types/tx.pb.go | 18 +-- x/resolver/types/query.pb.go | 20 +-- x/resolver/types/query.pb.gw.go | 130 +++++++++--------- 32 files changed, 260 insertions(+), 257 deletions(-) diff --git a/proto/mycel/epochs/v1beta1/epoch_info.proto b/proto/mycel/epochs/v1beta1/epoch_info.proto index 1bb7f3cc..4576d6cd 100644 --- a/proto/mycel/epochs/v1beta1/epoch_info.proto +++ b/proto/mycel/epochs/v1beta1/epoch_info.proto @@ -9,7 +9,7 @@ option go_package = "github.com/mycel-domain/mycel/x/epochs/types"; message EpochInfo { string identifier = 1; - google.protobuf.Timestamp startTime = 2 [ + google.protobuf.Timestamp start_time = 2 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"start_time\"" @@ -20,12 +20,12 @@ message EpochInfo { (gogoproto.jsontag) = "duration,omitempty", (gogoproto.moretags) = "yaml:\"duration\"" ]; - int64 currentEpoch = 4; - google.protobuf.Timestamp currentEpochStartTime = 5 [ + int64 current_epoch = 4; + google.protobuf.Timestamp current_epoch_start_time = 5 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"current_epoch_start_time\"" ]; - bool epochCountingStarted = 6; - int64 currentEpochStartHeight = 7; + bool epoch_counting_started = 6; + int64 current_epoch_start_height = 7; } diff --git a/proto/mycel/epochs/v1beta1/query.proto b/proto/mycel/epochs/v1beta1/query.proto index 7796f803..53c240a5 100644 --- a/proto/mycel/epochs/v1beta1/query.proto +++ b/proto/mycel/epochs/v1beta1/query.proto @@ -39,7 +39,7 @@ message QueryParamsResponse { message QueryGetEpochInfoRequest { string identifier = 1; } message QueryGetEpochInfoResponse { - EpochInfo epochInfo = 1 [ (gogoproto.nullable) = false ]; + EpochInfo epoch_info = 1 [ (gogoproto.nullable) = false ]; } message QueryAllEpochInfoRequest { @@ -47,6 +47,6 @@ message QueryAllEpochInfoRequest { } message QueryAllEpochInfoResponse { - repeated EpochInfo epochInfo = 1 [ (gogoproto.nullable) = false ]; + repeated EpochInfo epoch_info = 1 [ (gogoproto.nullable) = false ]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/mycel/furnace/v1beta1/burn_amount.proto b/proto/mycel/furnace/v1beta1/burn_amount.proto index 6d77461d..ef20aaad 100644 --- a/proto/mycel/furnace/v1beta1/burn_amount.proto +++ b/proto/mycel/furnace/v1beta1/burn_amount.proto @@ -8,10 +8,11 @@ option go_package = "github.com/mycel-domain/mycel/x/furnace/types"; message BurnAmount { uint64 index = 1; - bool burnStarted = 2; - uint64 totalEpochs = 3; - uint64 currentEpoch = 4; - cosmos.base.v1beta1.Coin totalBurnAmount = 5 [ (gogoproto.nullable) = false ]; - cosmos.base.v1beta1.Coin cumulativeBurntAmount = 6 + bool burn_started = 2; + uint64 total_epochs = 3; + uint64 current_epoch = 4; + cosmos.base.v1beta1.Coin total_burn_amount = 5 + [ (gogoproto.nullable) = false ]; + cosmos.base.v1beta1.Coin cumulative_burnt_amount = 6 [ (gogoproto.nullable) = false ]; } diff --git a/proto/mycel/furnace/v1beta1/epoch_burn_config.proto b/proto/mycel/furnace/v1beta1/epoch_burn_config.proto index 0db42de3..6273e98f 100644 --- a/proto/mycel/furnace/v1beta1/epoch_burn_config.proto +++ b/proto/mycel/furnace/v1beta1/epoch_burn_config.proto @@ -8,10 +8,10 @@ import "google/protobuf/timestamp.proto"; option go_package = "github.com/mycel-domain/mycel/x/furnace/types"; message EpochBurnConfig { - string epochIdentifier = 1; - uint64 currentBurnAmountIndex = 2; - uint64 defaultTotalEpochs = 3; - google.protobuf.Timestamp startTime = 4 [ + string epoch_identifier = 1; + uint64 current_burn_amount_index = 2; + uint64 default_total_epochs = 3; + google.protobuf.Timestamp start_time = 4 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"start_time\"" diff --git a/proto/mycel/furnace/v1beta1/genesis.proto b/proto/mycel/furnace/v1beta1/genesis.proto index 1935f6ac..5a484ab3 100644 --- a/proto/mycel/furnace/v1beta1/genesis.proto +++ b/proto/mycel/furnace/v1beta1/genesis.proto @@ -11,6 +11,6 @@ option go_package = "github.com/mycel-domain/mycel/x/furnace/types"; // GenesisState defines the furnace module's genesis state. message GenesisState { Params params = 1 [ (gogoproto.nullable) = false ]; - EpochBurnConfig epochBurnConfig = 2 [ (gogoproto.nullable) = false ]; - repeated BurnAmount burnAmounts = 3 [ (gogoproto.nullable) = false ]; + EpochBurnConfig epoch_burn_config = 2 [ (gogoproto.nullable) = false ]; + repeated BurnAmount burn_amounts = 3 [ (gogoproto.nullable) = false ]; } diff --git a/proto/mycel/furnace/v1beta1/query.proto b/proto/mycel/furnace/v1beta1/query.proto index 8a9a0a8a..8a2f4e21 100644 --- a/proto/mycel/furnace/v1beta1/query.proto +++ b/proto/mycel/furnace/v1beta1/query.proto @@ -50,13 +50,13 @@ message QueryParamsResponse { message QueryGetEpochBurnConfigRequest {} message QueryGetEpochBurnConfigResponse { - EpochBurnConfig EpochBurnConfig = 1 [ (gogoproto.nullable) = false ]; + EpochBurnConfig epoch_burn_config = 1 [ (gogoproto.nullable) = false ]; } message QueryGetBurnAmountRequest { uint64 index = 1; } message QueryGetBurnAmountResponse { - BurnAmount burnAmount = 1 [ (gogoproto.nullable) = false ]; + BurnAmount burn_amount = 1 [ (gogoproto.nullable) = false ]; } message QueryAllBurnAmountRequest { @@ -64,6 +64,6 @@ message QueryAllBurnAmountRequest { } message QueryAllBurnAmountResponse { - repeated BurnAmount burnAmount = 1 [ (gogoproto.nullable) = false ]; + repeated BurnAmount burn_amount = 1 [ (gogoproto.nullable) = false ]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/mycel/registry/v1beta1/genesis.proto b/proto/mycel/registry/v1beta1/genesis.proto index 0e20ccff..6e2cc895 100644 --- a/proto/mycel/registry/v1beta1/genesis.proto +++ b/proto/mycel/registry/v1beta1/genesis.proto @@ -12,9 +12,10 @@ option go_package = "github.com/mycel-domain/mycel/x/registry/types"; // GenesisState defines the registry module's genesis state. message GenesisState { Params params = 1 [ (gogoproto.nullable) = false ]; - repeated TopLevelDomain topLevelDomains = 2 [ (gogoproto.nullable) = false ]; - repeated SecondLevelDomain secondLevelDomains = 3 + repeated TopLevelDomain top_level_domains = 2 [ (gogoproto.nullable) = false ]; - repeated DomainOwnership domainOwnerships = 4 + repeated SecondLevelDomain second_level_domains = 3 + [ (gogoproto.nullable) = false ]; + repeated DomainOwnership domain_ownerships = 4 [ (gogoproto.nullable) = false ]; } diff --git a/proto/mycel/registry/v1beta1/params.proto b/proto/mycel/registry/v1beta1/params.proto index 6ab21c30..736be6ec 100644 --- a/proto/mycel/registry/v1beta1/params.proto +++ b/proto/mycel/registry/v1beta1/params.proto @@ -8,6 +8,6 @@ option go_package = "github.com/mycel-domain/mycel/x/registry/types"; // Params defines the parameters for the module. message Params { option (gogoproto.goproto_stringer) = false; - float stakingInflationRatio = 1; - int64 topLevelDomainBaseFeeInUsd = 2; + float staking_inflation_ratio = 1; + int64 top_level_domain_base_fee_in_usd = 2; } diff --git a/proto/mycel/registry/v1beta1/query.proto b/proto/mycel/registry/v1beta1/query.proto index 3a37ae62..d7defa71 100644 --- a/proto/mycel/registry/v1beta1/query.proto +++ b/proto/mycel/registry/v1beta1/query.proto @@ -69,7 +69,7 @@ service Query { // Queries a list of Role items. rpc Role(QueryRoleRequest) returns (QueryRoleResponse) { option (google.api.http).get = - "/mycel-domain/mycel/registry/v1beta1/role/{domainName}/{address}"; + "/mycel-domain/mycel/registry/v1beta1/role/{domain_name}/{address}"; } } // QueryParamsRequest is request type for the Query/Params RPC method. @@ -85,7 +85,7 @@ message QueryParamsResponse { message QueryGetTopLevelDomainRequest { string name = 1; } message QueryGetTopLevelDomainResponse { - TopLevelDomain topLevelDomain = 1 [ (gogoproto.nullable) = false ]; + TopLevelDomain top_level_domain = 1 [ (gogoproto.nullable) = false ]; } message QueryAllTopLevelDomainRequest { @@ -93,7 +93,7 @@ message QueryAllTopLevelDomainRequest { } message QueryAllTopLevelDomainResponse { - repeated TopLevelDomain topLevelDomain = 1 [ (gogoproto.nullable) = false ]; + repeated TopLevelDomain top_level_domain = 1 [ (gogoproto.nullable) = false ]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } @@ -105,12 +105,12 @@ message QueryGetSecondLevelDomainRequest { message SecondLevelDomainResponse { string name = 1; string parent = 2; - google.protobuf.Timestamp expirationDate = 3 + google.protobuf.Timestamp expiration_date = 3 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false ]; } message QueryGetSecondLevelDomainResponse { - SecondLevelDomainResponse secondLevelDomain = 1 + SecondLevelDomainResponse second_level_domain = 1 [ (gogoproto.nullable) = false ]; } @@ -119,7 +119,7 @@ message QueryAllSecondLevelDomainRequest { } message QueryAllSecondLevelDomainResponse { - repeated SecondLevelDomainResponse secondLevelDomain = 1 + repeated SecondLevelDomainResponse second_level_domain = 1 [ (gogoproto.nullable) = false ]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } @@ -127,7 +127,7 @@ message QueryAllSecondLevelDomainResponse { message QueryGetDomainOwnershipRequest { string owner = 1; } message QueryGetDomainOwnershipResponse { - DomainOwnership domainOwnership = 1 [ (gogoproto.nullable) = false ]; + DomainOwnership domain_ownership = 1 [ (gogoproto.nullable) = false ]; } message QueryAllDomainOwnershipRequest { @@ -135,30 +135,31 @@ message QueryAllDomainOwnershipRequest { } message QueryAllDomainOwnershipResponse { - repeated DomainOwnership domainOwnership = 1 [ (gogoproto.nullable) = false ]; + repeated DomainOwnership domain_ownership = 1 + [ (gogoproto.nullable) = false ]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } message QueryDomainRegistrationFeeRequest { string name = 1; string parent = 2; - uint64 registrationPeriodInYear = 3; + uint64 registration_period_in_year = 3; string registerer = 4; } message QueryDomainRegistrationFeeResponse { - bool isRegistrable = 1; + bool is_registrable = 1; repeated cosmos.base.v1beta1.Coin fee = 2 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; - uint64 registrationPeriodInYear = 3; - uint64 maxSubDomainRegistrations = 4; - string errorMessage = 5; + uint64 registration_period_in_year = 3; + uint64 max_sub_domain_registrations = 4; + string error_message = 5; } message QueryRoleRequest { - string domainName = 1; + string domain_name = 1; string address = 2; } diff --git a/proto/mycel/registry/v1beta1/second_level_domain.proto b/proto/mycel/registry/v1beta1/second_level_domain.proto index a4634a35..7c10c0d8 100644 --- a/proto/mycel/registry/v1beta1/second_level_domain.proto +++ b/proto/mycel/registry/v1beta1/second_level_domain.proto @@ -10,12 +10,12 @@ import "mycel/registry/v1beta1/access_control.proto"; option go_package = "github.com/mycel-domain/mycel/x/registry/types"; message DnsRecord { - DnsRecordType dnsRecordType = 1; + DnsRecordType dns_record_type = 1; string value = 2; } message WalletRecord { - NetworkName walletRecordType = 1; + NetworkName wallet_record_type = 1; string value = 2; } @@ -26,9 +26,9 @@ message TextRecord { message Record { oneof record { - DnsRecord dnsRecord = 1; - WalletRecord walletRecord = 2; - TextRecord textRecord = 3; + DnsRecord dns_record = 1; + WalletRecord wallet_record = 2; + TextRecord text_record = 3; } } @@ -36,8 +36,8 @@ message SecondLevelDomain { string name = 1; string parent = 2; string owner = 3; - google.protobuf.Timestamp expirationDate = 4 + google.protobuf.Timestamp expiration_date = 4 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false ]; repeated Record records = 5; - repeated AccessControl accessControl = 6; + repeated AccessControl access_control = 6; } diff --git a/proto/mycel/registry/v1beta1/subdomain_config.proto b/proto/mycel/registry/v1beta1/subdomain_config.proto index 4ea060da..0e68fc85 100644 --- a/proto/mycel/registry/v1beta1/subdomain_config.proto +++ b/proto/mycel/registry/v1beta1/subdomain_config.proto @@ -12,28 +12,28 @@ enum RegistrationPolicyType { } message SubdomainRegistrationFees { - repeated FeeByLength feeByLength = 1; - repeated FeeByName feeByName = 2; - cosmos.base.v1beta1.Coin defaultFee = 3; + repeated FeeByLength fee_by_length = 1; + repeated FeeByName fee_by_name = 2; + cosmos.base.v1beta1.Coin default_fee = 3; } message FeeByLength { uint32 length = 1; - bool isRegistrable = 2; + bool is_registrable = 2; cosmos.base.v1beta1.Coin fee = 3; } message FeeByName { string name = 1; - bool isRegistrable = 2; + bool is_registrable = 2; cosmos.base.v1beta1.Coin fee = 3; } message SubdomainConfig { - uint64 maxSubdomainRegistrations = 1; - SubdomainRegistrationFees subdomainRegistrationFees = 2; - bool isRegistrable = 3; - DomainRole registrableRole = 4; - bool customExpirationDate = 5; - RegistrationPolicyType registrationPolicy = 6; + uint64 max_subdomain_registrations = 1; + SubdomainRegistrationFees subdomain_registration_fees = 2; + bool is_registrable = 3; + DomainRole registrable_role = 4; + bool custom_expiration_date = 5; + RegistrationPolicyType registration_policy = 6; } diff --git a/proto/mycel/registry/v1beta1/top_level_domain.proto b/proto/mycel/registry/v1beta1/top_level_domain.proto index 7fc6f090..27f7b34f 100644 --- a/proto/mycel/registry/v1beta1/top_level_domain.proto +++ b/proto/mycel/registry/v1beta1/top_level_domain.proto @@ -11,28 +11,28 @@ option go_package = "github.com/mycel-domain/mycel/x/registry/types"; message TopLevelDomain { string name = 1; - google.protobuf.Timestamp expirationDate = 2 + google.protobuf.Timestamp expiration_date = 2 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false ]; - SubdomainConfig subdomainConfig = 3; - uint64 subdomainCount = 4; - repeated AccessControl accessControl = 5; - repeated cosmos.base.v1beta1.Coin totalWithdrawalAmount = 6 [ + SubdomainConfig subdomain_config = 3; + uint64 subdomain_count = 4; + repeated AccessControl access_control = 5; + repeated cosmos.base.v1beta1.Coin total_withdrawal_amount = 6 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; } message TopLevelDomainFee { - repeated cosmos.base.v1beta1.Coin totalFee = 1 [ + repeated cosmos.base.v1beta1.Coin total_fee = 1 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; - string burnWeight = 2; - cosmos.base.v1beta1.Coin feeToBurn = 3 [ + string burn_weight = 2; + cosmos.base.v1beta1.Coin fee_to_burn = 3 [ (gogoproto.nullable) = false, (gogoproto.castvalue) = "github.com/cosmos/cosmos-sdk/types.Coin" ]; - cosmos.base.v1beta1.Coin feeToTreasury = 4 [ + cosmos.base.v1beta1.Coin fee_to_treasury = 4 [ (gogoproto.nullable) = false, (gogoproto.castvalue) = "github.com/cosmos/cosmos-sdk/types.Coin" ]; diff --git a/proto/mycel/registry/v1beta1/tx.proto b/proto/mycel/registry/v1beta1/tx.proto index 9745ed68..e248fdcd 100644 --- a/proto/mycel/registry/v1beta1/tx.proto +++ b/proto/mycel/registry/v1beta1/tx.proto @@ -31,7 +31,7 @@ message MsgUpdateWalletRecord { string creator = 1; string name = 2; string parent = 3; - string walletRecordType = 4; + string wallet_record_type = 4; string value = 5; } @@ -41,7 +41,7 @@ message MsgUpdateDnsRecord { string creator = 1; string name = 2; string parent = 3; - string dnsRecordType = 4; + string dns_record_type = 4; string value = 5; } @@ -51,7 +51,7 @@ message MsgRegisterSecondLevelDomain { string creator = 1; string name = 2; string parent = 3; - uint64 registrationPeriodInYear = 4; + uint64 registration_period_in_year = 4; } message MsgRegisterSecondLevelDomainResponse {} @@ -59,11 +59,11 @@ message MsgRegisterSecondLevelDomainResponse {} message MsgRegisterTopLevelDomain { string creator = 1; string name = 2; - uint64 registrationPeriodInYear = 3; + uint64 registration_period_in_year = 3; } message MsgRegisterTopLevelDomainResponse { - TopLevelDomain topLevelDomain = 1; + TopLevelDomain top_level_domain = 1; TopLevelDomainFee fee = 2; } @@ -73,7 +73,7 @@ message MsgWithdrawRegistrationFee { } message MsgWithdrawRegistrationFeeResponse { - repeated cosmos.base.v1beta1.Coin registrationFee = 7 [ + repeated cosmos.base.v1beta1.Coin registration_fee = 7 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; @@ -82,11 +82,11 @@ message MsgWithdrawRegistrationFeeResponse { message MsgExtendTopLevelDomainExpirationDate { string creator = 1; string name = 2; - uint64 extensionPeriodInYear = 3; + uint64 extension_period_in_year = 3; } message MsgExtendTopLevelDomainExpirationDateResponse { - TopLevelDomain topLevelDomain = 1; + TopLevelDomain top_level_domain = 1; TopLevelDomainFee fee = 2; } @@ -103,7 +103,7 @@ message MsgUpdateTextRecordResponse {} message MsgUpdateTopLevelDomainRegistrationPolicy { string creator = 1; string name = 2; - string registrationPolicy = 3; + string registration_policy = 3; } message MsgUpdateTopLevelDomainRegistrationPolicyResponse {} diff --git a/proto/mycel/resolver/v1beta1/query.proto b/proto/mycel/resolver/v1beta1/query.proto index ebdf9b13..04ee7a5f 100644 --- a/proto/mycel/resolver/v1beta1/query.proto +++ b/proto/mycel/resolver/v1beta1/query.proto @@ -23,28 +23,28 @@ service Query { rpc WalletRecord(QueryWalletRecordRequest) returns (QueryWalletRecordResponse) { option (google.api.http).get = - "/mycel-domain/mycel/resolver/v1beta1/wallet_record/{domainName}/" - "{domainParent}/{walletRecordType}"; + "/mycel-domain/mycel/resolver/v1beta1/wallet_record/{domain_name}/" + "{domain_parent}/{wallet_record_type}"; } // Queries a list of DnsRecord items. rpc DnsRecord(QueryDnsRecordRequest) returns (QueryDnsRecordResponse) { option (google.api.http).get = - "/mycel-domain/mycel/resolver/v1beta1/dns_record/{domainName}/" - "{domainParent}/{dnsRecordType}"; + "/mycel-domain/mycel/resolver/v1beta1/dns_record/{domain_name}/" + "{domain_parent}/{dns_record_type}"; } // Queries a list of AllRecord items. rpc AllRecords(QueryAllRecordsRequest) returns (QueryAllRecordsResponse) { option (google.api.http).get = "/mycel-domain/mycel/resolver/v1beta1/" - "all_records/{domainName}/{domainParent}"; + "all_records/{domain_name}/{domain_parent}"; } // Queries a list of TextRecord items. rpc TextRecord(QueryTextRecordRequest) returns (QueryTextRecordResponse) { option (google.api.http).get = - "/mycel-domain/mycel/resolver/v1beta1/text_record/{domainName}/" - "{domainParent}/{key}"; + "/mycel-domain/mycel/resolver/v1beta1/text_record/{domain_name}/" + "{domain_parent}/{key}"; } } // QueryParamsRequest is request type for the Query/Params RPC method. @@ -58,24 +58,24 @@ message QueryParamsResponse { } message QueryWalletRecordRequest { - string domainName = 1; - string domainParent = 2; - string walletRecordType = 3; + string domain_name = 1; + string domain_parent = 2; + string wallet_record_type = 3; } message QueryWalletRecordResponse { mycel.registry.v1beta1.WalletRecord value = 1; } message QueryDnsRecordRequest { - string domainName = 1; - string domainParent = 2; - string dnsRecordType = 3; + string domain_name = 1; + string domain_parent = 2; + string dns_record_type = 3; } message QueryDnsRecordResponse { mycel.registry.v1beta1.DnsRecord value = 1; } message QueryAllRecordsRequest { - string domainName = 1; - string domainParent = 2; + string domain_name = 1; + string domain_parent = 2; } message QueryAllRecordsResponse { @@ -83,8 +83,8 @@ message QueryAllRecordsResponse { } message QueryTextRecordRequest { - string domainName = 1; - string domainParent = 2; + string domain_name = 1; + string domain_parent = 2; string key = 3; } diff --git a/x/epochs/types/epoch_info.pb.go b/x/epochs/types/epoch_info.pb.go index b9282df2..303ba159 100644 --- a/x/epochs/types/epoch_info.pb.go +++ b/x/epochs/types/epoch_info.pb.go @@ -30,12 +30,12 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type EpochInfo struct { Identifier string `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"` - StartTime time.Time `protobuf:"bytes,2,opt,name=startTime,proto3,stdtime" json:"startTime" yaml:"start_time"` + StartTime time.Time `protobuf:"bytes,2,opt,name=start_time,json=startTime,proto3,stdtime" json:"start_time" yaml:"start_time"` Duration time.Duration `protobuf:"bytes,3,opt,name=duration,proto3,stdduration" json:"duration,omitempty" yaml:"duration"` - CurrentEpoch int64 `protobuf:"varint,4,opt,name=currentEpoch,proto3" json:"currentEpoch,omitempty"` - CurrentEpochStartTime time.Time `protobuf:"bytes,5,opt,name=currentEpochStartTime,proto3,stdtime" json:"currentEpochStartTime" yaml:"current_epoch_start_time"` - EpochCountingStarted bool `protobuf:"varint,6,opt,name=epochCountingStarted,proto3" json:"epochCountingStarted,omitempty"` - CurrentEpochStartHeight int64 `protobuf:"varint,7,opt,name=currentEpochStartHeight,proto3" json:"currentEpochStartHeight,omitempty"` + CurrentEpoch int64 `protobuf:"varint,4,opt,name=current_epoch,json=currentEpoch,proto3" json:"current_epoch,omitempty"` + CurrentEpochStartTime time.Time `protobuf:"bytes,5,opt,name=current_epoch_start_time,json=currentEpochStartTime,proto3,stdtime" json:"current_epoch_start_time" yaml:"current_epoch_start_time"` + EpochCountingStarted bool `protobuf:"varint,6,opt,name=epoch_counting_started,json=epochCountingStarted,proto3" json:"epoch_counting_started,omitempty"` + CurrentEpochStartHeight int64 `protobuf:"varint,7,opt,name=current_epoch_start_height,json=currentEpochStartHeight,proto3" json:"current_epoch_start_height,omitempty"` } func (m *EpochInfo) Reset() { *m = EpochInfo{} } diff --git a/x/epochs/types/query.pb.go b/x/epochs/types/query.pb.go index 1bf0ef3b..4344cbc9 100644 --- a/x/epochs/types/query.pb.go +++ b/x/epochs/types/query.pb.go @@ -158,7 +158,7 @@ func (m *QueryGetEpochInfoRequest) GetIdentifier() string { } type QueryGetEpochInfoResponse struct { - EpochInfo EpochInfo `protobuf:"bytes,1,opt,name=epochInfo,proto3" json:"epochInfo"` + EpochInfo EpochInfo `protobuf:"bytes,1,opt,name=epoch_info,json=epochInfo,proto3" json:"epoch_info"` } func (m *QueryGetEpochInfoResponse) Reset() { *m = QueryGetEpochInfoResponse{} } @@ -246,7 +246,7 @@ func (m *QueryAllEpochInfoRequest) GetPagination() *query.PageRequest { } type QueryAllEpochInfoResponse struct { - EpochInfo []EpochInfo `protobuf:"bytes,1,rep,name=epochInfo,proto3" json:"epochInfo"` + EpochInfo []EpochInfo `protobuf:"bytes,1,rep,name=epoch_info,json=epochInfo,proto3" json:"epoch_info"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } diff --git a/x/epochs/types/query.pb.gw.go b/x/epochs/types/query.pb.gw.go index 54f31978..584986b1 100644 --- a/x/epochs/types/query.pb.gw.go +++ b/x/epochs/types/query.pb.gw.go @@ -321,11 +321,11 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_EpochInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"mycel", "epochs", "v1beta1", "epoch_info", "identifier"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_EpochInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"mycel", "epochs", "v1beta1", "epoch_info", "identifier"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_EpochInfoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "epoch_info"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_EpochInfoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "epoch_info"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/furnace/types/burn_amount.pb.go b/x/furnace/types/burn_amount.pb.go index 341505bf..226badac 100644 --- a/x/furnace/types/burn_amount.pb.go +++ b/x/furnace/types/burn_amount.pb.go @@ -26,11 +26,11 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type BurnAmount struct { Index uint64 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"` - BurnStarted bool `protobuf:"varint,2,opt,name=burnStarted,proto3" json:"burnStarted,omitempty"` - TotalEpochs uint64 `protobuf:"varint,3,opt,name=totalEpochs,proto3" json:"totalEpochs,omitempty"` - CurrentEpoch uint64 `protobuf:"varint,4,opt,name=currentEpoch,proto3" json:"currentEpoch,omitempty"` - TotalBurnAmount types.Coin `protobuf:"bytes,5,opt,name=totalBurnAmount,proto3" json:"totalBurnAmount"` - CumulativeBurntAmount types.Coin `protobuf:"bytes,6,opt,name=cumulativeBurntAmount,proto3" json:"cumulativeBurntAmount"` + BurnStarted bool `protobuf:"varint,2,opt,name=burn_started,json=burnStarted,proto3" json:"burn_started,omitempty"` + TotalEpochs uint64 `protobuf:"varint,3,opt,name=total_epochs,json=totalEpochs,proto3" json:"total_epochs,omitempty"` + CurrentEpoch uint64 `protobuf:"varint,4,opt,name=current_epoch,json=currentEpoch,proto3" json:"current_epoch,omitempty"` + TotalBurnAmount types.Coin `protobuf:"bytes,5,opt,name=total_burn_amount,json=totalBurnAmount,proto3" json:"total_burn_amount"` + CumulativeBurntAmount types.Coin `protobuf:"bytes,6,opt,name=cumulative_burnt_amount,json=cumulativeBurntAmount,proto3" json:"cumulative_burnt_amount"` } func (m *BurnAmount) Reset() { *m = BurnAmount{} } diff --git a/x/furnace/types/epoch_burn_config.pb.go b/x/furnace/types/epoch_burn_config.pb.go index 86ef3869..ef503dbd 100644 --- a/x/furnace/types/epoch_burn_config.pb.go +++ b/x/furnace/types/epoch_burn_config.pb.go @@ -29,10 +29,10 @@ var _ = time.Kitchen const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type EpochBurnConfig struct { - EpochIdentifier string `protobuf:"bytes,1,opt,name=epochIdentifier,proto3" json:"epochIdentifier,omitempty"` - CurrentBurnAmountIndex uint64 `protobuf:"varint,2,opt,name=currentBurnAmountIndex,proto3" json:"currentBurnAmountIndex,omitempty"` - DefaultTotalEpochs uint64 `protobuf:"varint,3,opt,name=defaultTotalEpochs,proto3" json:"defaultTotalEpochs,omitempty"` - StartTime time.Time `protobuf:"bytes,4,opt,name=startTime,proto3,stdtime" json:"startTime" yaml:"start_time"` + EpochIdentifier string `protobuf:"bytes,1,opt,name=epoch_identifier,json=epochIdentifier,proto3" json:"epoch_identifier,omitempty"` + CurrentBurnAmountIndex uint64 `protobuf:"varint,2,opt,name=current_burn_amount_index,json=currentBurnAmountIndex,proto3" json:"current_burn_amount_index,omitempty"` + DefaultTotalEpochs uint64 `protobuf:"varint,3,opt,name=default_total_epochs,json=defaultTotalEpochs,proto3" json:"default_total_epochs,omitempty"` + StartTime time.Time `protobuf:"bytes,4,opt,name=start_time,json=startTime,proto3,stdtime" json:"start_time" yaml:"start_time"` } func (m *EpochBurnConfig) Reset() { *m = EpochBurnConfig{} } diff --git a/x/furnace/types/genesis.pb.go b/x/furnace/types/genesis.pb.go index 5e52e0dd..c60e03a1 100644 --- a/x/furnace/types/genesis.pb.go +++ b/x/furnace/types/genesis.pb.go @@ -26,8 +26,8 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the furnace module's genesis state. type GenesisState struct { Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` - EpochBurnConfig EpochBurnConfig `protobuf:"bytes,2,opt,name=epochBurnConfig,proto3" json:"epochBurnConfig"` - BurnAmounts []BurnAmount `protobuf:"bytes,3,rep,name=burnAmounts,proto3" json:"burnAmounts"` + EpochBurnConfig EpochBurnConfig `protobuf:"bytes,2,opt,name=epoch_burn_config,json=epochBurnConfig,proto3" json:"epoch_burn_config"` + BurnAmounts []BurnAmount `protobuf:"bytes,3,rep,name=burn_amounts,json=burnAmounts,proto3" json:"burn_amounts"` } func (m *GenesisState) Reset() { *m = GenesisState{} } diff --git a/x/furnace/types/query.pb.go b/x/furnace/types/query.pb.go index 8c9156b4..53506c2e 100644 --- a/x/furnace/types/query.pb.go +++ b/x/furnace/types/query.pb.go @@ -151,7 +151,7 @@ func (m *QueryGetEpochBurnConfigRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryGetEpochBurnConfigRequest proto.InternalMessageInfo type QueryGetEpochBurnConfigResponse struct { - EpochBurnConfig EpochBurnConfig `protobuf:"bytes,1,opt,name=EpochBurnConfig,proto3" json:"EpochBurnConfig"` + EpochBurnConfig EpochBurnConfig `protobuf:"bytes,1,opt,name=epoch_burn_config,json=epochBurnConfig,proto3" json:"epoch_burn_config"` } func (m *QueryGetEpochBurnConfigResponse) Reset() { *m = QueryGetEpochBurnConfigResponse{} } @@ -239,7 +239,7 @@ func (m *QueryGetBurnAmountRequest) GetIndex() uint64 { } type QueryGetBurnAmountResponse struct { - BurnAmount BurnAmount `protobuf:"bytes,1,opt,name=burnAmount,proto3" json:"burnAmount"` + BurnAmount BurnAmount `protobuf:"bytes,1,opt,name=burn_amount,json=burnAmount,proto3" json:"burn_amount"` } func (m *QueryGetBurnAmountResponse) Reset() { *m = QueryGetBurnAmountResponse{} } @@ -327,7 +327,7 @@ func (m *QueryAllBurnAmountRequest) GetPagination() *query.PageRequest { } type QueryAllBurnAmountResponse struct { - BurnAmount []BurnAmount `protobuf:"bytes,1,rep,name=burnAmount,proto3" json:"burnAmount"` + BurnAmount []BurnAmount `protobuf:"bytes,1,rep,name=burn_amount,json=burnAmount,proto3" json:"burn_amount"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } diff --git a/x/furnace/types/query.pb.gw.go b/x/furnace/types/query.pb.gw.go index f6d85734..29f2cd29 100644 --- a/x/furnace/types/query.pb.gw.go +++ b/x/furnace/types/query.pb.gw.go @@ -382,13 +382,13 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_EpochBurnConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "epoch_burn_config"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_EpochBurnConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "epoch_burn_config"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_BurnAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount", "index"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_BurnAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount", "index"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_BurnAmountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_BurnAmountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/registry/types/genesis.pb.go b/x/registry/types/genesis.pb.go index 8c669df7..5ea374bf 100644 --- a/x/registry/types/genesis.pb.go +++ b/x/registry/types/genesis.pb.go @@ -26,9 +26,9 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the registry module's genesis state. type GenesisState struct { Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` - TopLevelDomains []TopLevelDomain `protobuf:"bytes,2,rep,name=topLevelDomains,proto3" json:"topLevelDomains"` - SecondLevelDomains []SecondLevelDomain `protobuf:"bytes,3,rep,name=secondLevelDomains,proto3" json:"secondLevelDomains"` - DomainOwnerships []DomainOwnership `protobuf:"bytes,4,rep,name=domainOwnerships,proto3" json:"domainOwnerships"` + TopLevelDomains []TopLevelDomain `protobuf:"bytes,2,rep,name=top_level_domains,json=topLevelDomains,proto3" json:"top_level_domains"` + SecondLevelDomains []SecondLevelDomain `protobuf:"bytes,3,rep,name=second_level_domains,json=secondLevelDomains,proto3" json:"second_level_domains"` + DomainOwnerships []DomainOwnership `protobuf:"bytes,4,rep,name=domain_ownerships,json=domainOwnerships,proto3" json:"domain_ownerships"` } func (m *GenesisState) Reset() { *m = GenesisState{} } diff --git a/x/registry/types/params.pb.go b/x/registry/types/params.pb.go index 64a41c8a..048264e3 100644 --- a/x/registry/types/params.pb.go +++ b/x/registry/types/params.pb.go @@ -26,8 +26,8 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // Params defines the parameters for the module. type Params struct { - StakingInflationRatio float32 `protobuf:"fixed32,1,opt,name=stakingInflationRatio,proto3" json:"stakingInflationRatio,omitempty"` - TopLevelDomainBaseFeeInUsd int64 `protobuf:"varint,2,opt,name=topLevelDomainBaseFeeInUsd,proto3" json:"topLevelDomainBaseFeeInUsd,omitempty"` + StakingInflationRatio float32 `protobuf:"fixed32,1,opt,name=staking_inflation_ratio,json=stakingInflationRatio,proto3" json:"staking_inflation_ratio,omitempty"` + TopLevelDomainBaseFeeInUsd int64 `protobuf:"varint,2,opt,name=top_level_domain_base_fee_in_usd,json=topLevelDomainBaseFeeInUsd,proto3" json:"top_level_domain_base_fee_in_usd,omitempty"` } func (m *Params) Reset() { *m = Params{} } diff --git a/x/registry/types/query.pb.go b/x/registry/types/query.pb.go index aba391f9..c896b9a0 100644 --- a/x/registry/types/query.pb.go +++ b/x/registry/types/query.pb.go @@ -164,7 +164,7 @@ func (m *QueryGetTopLevelDomainRequest) GetName() string { } type QueryGetTopLevelDomainResponse struct { - TopLevelDomain TopLevelDomain `protobuf:"bytes,1,opt,name=topLevelDomain,proto3" json:"topLevelDomain"` + TopLevelDomain TopLevelDomain `protobuf:"bytes,1,opt,name=top_level_domain,json=topLevelDomain,proto3" json:"top_level_domain"` } func (m *QueryGetTopLevelDomainResponse) Reset() { *m = QueryGetTopLevelDomainResponse{} } @@ -252,7 +252,7 @@ func (m *QueryAllTopLevelDomainRequest) GetPagination() *query.PageRequest { } type QueryAllTopLevelDomainResponse struct { - TopLevelDomain []TopLevelDomain `protobuf:"bytes,1,rep,name=topLevelDomain,proto3" json:"topLevelDomain"` + TopLevelDomain []TopLevelDomain `protobuf:"bytes,1,rep,name=top_level_domain,json=topLevelDomain,proto3" json:"top_level_domain"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -358,7 +358,7 @@ func (m *QueryGetSecondLevelDomainRequest) GetParent() string { type SecondLevelDomainResponse struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Parent string `protobuf:"bytes,2,opt,name=parent,proto3" json:"parent,omitempty"` - ExpirationDate time.Time `protobuf:"bytes,3,opt,name=expirationDate,proto3,stdtime" json:"expirationDate"` + ExpirationDate time.Time `protobuf:"bytes,3,opt,name=expiration_date,json=expirationDate,proto3,stdtime" json:"expiration_date"` } func (m *SecondLevelDomainResponse) Reset() { *m = SecondLevelDomainResponse{} } @@ -416,7 +416,7 @@ func (m *SecondLevelDomainResponse) GetExpirationDate() time.Time { } type QueryGetSecondLevelDomainResponse struct { - SecondLevelDomain SecondLevelDomainResponse `protobuf:"bytes,1,opt,name=secondLevelDomain,proto3" json:"secondLevelDomain"` + SecondLevelDomain SecondLevelDomainResponse `protobuf:"bytes,1,opt,name=second_level_domain,json=secondLevelDomain,proto3" json:"second_level_domain"` } func (m *QueryGetSecondLevelDomainResponse) Reset() { *m = QueryGetSecondLevelDomainResponse{} } @@ -504,7 +504,7 @@ func (m *QueryAllSecondLevelDomainRequest) GetPagination() *query.PageRequest { } type QueryAllSecondLevelDomainResponse struct { - SecondLevelDomain []SecondLevelDomainResponse `protobuf:"bytes,1,rep,name=secondLevelDomain,proto3" json:"secondLevelDomain"` + SecondLevelDomain []SecondLevelDomainResponse `protobuf:"bytes,1,rep,name=second_level_domain,json=secondLevelDomain,proto3" json:"second_level_domain"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -600,7 +600,7 @@ func (m *QueryGetDomainOwnershipRequest) GetOwner() string { } type QueryGetDomainOwnershipResponse struct { - DomainOwnership DomainOwnership `protobuf:"bytes,1,opt,name=domainOwnership,proto3" json:"domainOwnership"` + DomainOwnership DomainOwnership `protobuf:"bytes,1,opt,name=domain_ownership,json=domainOwnership,proto3" json:"domain_ownership"` } func (m *QueryGetDomainOwnershipResponse) Reset() { *m = QueryGetDomainOwnershipResponse{} } @@ -688,7 +688,7 @@ func (m *QueryAllDomainOwnershipRequest) GetPagination() *query.PageRequest { } type QueryAllDomainOwnershipResponse struct { - DomainOwnership []DomainOwnership `protobuf:"bytes,1,rep,name=domainOwnership,proto3" json:"domainOwnership"` + DomainOwnership []DomainOwnership `protobuf:"bytes,1,rep,name=domain_ownership,json=domainOwnership,proto3" json:"domain_ownership"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -742,7 +742,7 @@ func (m *QueryAllDomainOwnershipResponse) GetPagination() *query.PageResponse { type QueryDomainRegistrationFeeRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Parent string `protobuf:"bytes,2,opt,name=parent,proto3" json:"parent,omitempty"` - RegistrationPeriodInYear uint64 `protobuf:"varint,3,opt,name=registrationPeriodInYear,proto3" json:"registrationPeriodInYear,omitempty"` + RegistrationPeriodInYear uint64 `protobuf:"varint,3,opt,name=registration_period_in_year,json=registrationPeriodInYear,proto3" json:"registration_period_in_year,omitempty"` Registerer string `protobuf:"bytes,4,opt,name=registerer,proto3" json:"registerer,omitempty"` } @@ -808,11 +808,11 @@ func (m *QueryDomainRegistrationFeeRequest) GetRegisterer() string { } type QueryDomainRegistrationFeeResponse struct { - IsRegistrable bool `protobuf:"varint,1,opt,name=isRegistrable,proto3" json:"isRegistrable,omitempty"` + IsRegistrable bool `protobuf:"varint,1,opt,name=is_registrable,json=isRegistrable,proto3" json:"is_registrable,omitempty"` Fee github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=fee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"fee"` - RegistrationPeriodInYear uint64 `protobuf:"varint,3,opt,name=registrationPeriodInYear,proto3" json:"registrationPeriodInYear,omitempty"` - MaxSubDomainRegistrations uint64 `protobuf:"varint,4,opt,name=maxSubDomainRegistrations,proto3" json:"maxSubDomainRegistrations,omitempty"` - ErrorMessage string `protobuf:"bytes,5,opt,name=errorMessage,proto3" json:"errorMessage,omitempty"` + RegistrationPeriodInYear uint64 `protobuf:"varint,3,opt,name=registration_period_in_year,json=registrationPeriodInYear,proto3" json:"registration_period_in_year,omitempty"` + MaxSubDomainRegistrations uint64 `protobuf:"varint,4,opt,name=max_sub_domain_registrations,json=maxSubDomainRegistrations,proto3" json:"max_sub_domain_registrations,omitempty"` + ErrorMessage string `protobuf:"bytes,5,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"` } func (m *QueryDomainRegistrationFeeResponse) Reset() { *m = QueryDomainRegistrationFeeResponse{} } @@ -884,7 +884,7 @@ func (m *QueryDomainRegistrationFeeResponse) GetErrorMessage() string { } type QueryRoleRequest struct { - DomainName string `protobuf:"bytes,1,opt,name=domainName,proto3" json:"domainName,omitempty"` + DomainName string `protobuf:"bytes,1,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"` Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"` } diff --git a/x/registry/types/query.pb.gw.go b/x/registry/types/query.pb.gw.go index bd67fa3c..adbee369 100644 --- a/x/registry/types/query.pb.gw.go +++ b/x/registry/types/query.pb.gw.go @@ -470,15 +470,15 @@ func request_Query_Role_0(ctx context.Context, marshaler runtime.Marshaler, clie _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } val, ok = pathParams["address"] @@ -508,15 +508,15 @@ func local_request_Query_Role_0(ctx context.Context, marshaler runtime.Marshaler _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } val, ok = pathParams["address"] @@ -973,23 +973,23 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TopLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain", "name"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TopLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain", "name"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TopLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TopLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_SecondLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel", "registry", "v1beta1", "second_level_domain", "name", "parent"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_SecondLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel", "registry", "v1beta1", "second_level_domain", "name", "parent"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_SecondLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "second_level_domain"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_SecondLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "second_level_domain"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DomainOwnership_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership", "owner"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DomainOwnership_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership", "owner"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DomainOwnershipAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DomainOwnershipAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DomainRegistrationFee_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_registration_fee", "name", "parent", "registerer"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DomainRegistrationFee_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_registration_fee", "name", "parent", "registerer"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Role_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "role", "domainName", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Role_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "role", "domain_name", "address"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/registry/types/second_level_domain.pb.go b/x/registry/types/second_level_domain.pb.go index 766ef61b..272abdc7 100644 --- a/x/registry/types/second_level_domain.pb.go +++ b/x/registry/types/second_level_domain.pb.go @@ -232,13 +232,13 @@ type isRecord_Record interface { } type Record_DnsRecord struct { - DnsRecord *DnsRecord `protobuf:"bytes,1,opt,name=dnsRecord,proto3,oneof" json:"dnsRecord,omitempty"` + DnsRecord *DnsRecord `protobuf:"bytes,1,opt,name=dns_record,json=dnsRecord,proto3,oneof" json:"dns_record,omitempty"` } type Record_WalletRecord struct { - WalletRecord *WalletRecord `protobuf:"bytes,2,opt,name=walletRecord,proto3,oneof" json:"walletRecord,omitempty"` + WalletRecord *WalletRecord `protobuf:"bytes,2,opt,name=wallet_record,json=walletRecord,proto3,oneof" json:"wallet_record,omitempty"` } type Record_TextRecord struct { - TextRecord *TextRecord `protobuf:"bytes,3,opt,name=textRecord,proto3,oneof" json:"textRecord,omitempty"` + TextRecord *TextRecord `protobuf:"bytes,3,opt,name=text_record,json=textRecord,proto3,oneof" json:"text_record,omitempty"` } func (*Record_DnsRecord) isRecord_Record() {} @@ -286,9 +286,9 @@ type SecondLevelDomain struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Parent string `protobuf:"bytes,2,opt,name=parent,proto3" json:"parent,omitempty"` Owner string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"` - ExpirationDate time.Time `protobuf:"bytes,4,opt,name=expirationDate,proto3,stdtime" json:"expirationDate"` + ExpirationDate time.Time `protobuf:"bytes,4,opt,name=expiration_date,json=expirationDate,proto3,stdtime" json:"expiration_date"` Records []*Record `protobuf:"bytes,5,rep,name=records,proto3" json:"records,omitempty"` - AccessControl []*AccessControl `protobuf:"bytes,6,rep,name=accessControl,proto3" json:"accessControl,omitempty"` + AccessControl []*AccessControl `protobuf:"bytes,6,rep,name=access_control,json=accessControl,proto3" json:"access_control,omitempty"` } func (m *SecondLevelDomain) Reset() { *m = SecondLevelDomain{} } diff --git a/x/registry/types/subdomain_config.pb.go b/x/registry/types/subdomain_config.pb.go index cbd55837..5322052e 100644 --- a/x/registry/types/subdomain_config.pb.go +++ b/x/registry/types/subdomain_config.pb.go @@ -49,9 +49,9 @@ func (RegistrationPolicyType) EnumDescriptor() ([]byte, []int) { } type SubdomainRegistrationFees struct { - FeeByLength []*FeeByLength `protobuf:"bytes,1,rep,name=feeByLength,proto3" json:"feeByLength,omitempty"` - FeeByName []*FeeByName `protobuf:"bytes,2,rep,name=feeByName,proto3" json:"feeByName,omitempty"` - DefaultFee *types.Coin `protobuf:"bytes,3,opt,name=defaultFee,proto3" json:"defaultFee,omitempty"` + FeeByLength []*FeeByLength `protobuf:"bytes,1,rep,name=fee_by_length,json=feeByLength,proto3" json:"fee_by_length,omitempty"` + FeeByName []*FeeByName `protobuf:"bytes,2,rep,name=fee_by_name,json=feeByName,proto3" json:"fee_by_name,omitempty"` + DefaultFee *types.Coin `protobuf:"bytes,3,opt,name=default_fee,json=defaultFee,proto3" json:"default_fee,omitempty"` } func (m *SubdomainRegistrationFees) Reset() { *m = SubdomainRegistrationFees{} } @@ -110,7 +110,7 @@ func (m *SubdomainRegistrationFees) GetDefaultFee() *types.Coin { type FeeByLength struct { Length uint32 `protobuf:"varint,1,opt,name=length,proto3" json:"length,omitempty"` - IsRegistrable bool `protobuf:"varint,2,opt,name=isRegistrable,proto3" json:"isRegistrable,omitempty"` + IsRegistrable bool `protobuf:"varint,2,opt,name=is_registrable,json=isRegistrable,proto3" json:"is_registrable,omitempty"` Fee *types.Coin `protobuf:"bytes,3,opt,name=fee,proto3" json:"fee,omitempty"` } @@ -170,7 +170,7 @@ func (m *FeeByLength) GetFee() *types.Coin { type FeeByName struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - IsRegistrable bool `protobuf:"varint,2,opt,name=isRegistrable,proto3" json:"isRegistrable,omitempty"` + IsRegistrable bool `protobuf:"varint,2,opt,name=is_registrable,json=isRegistrable,proto3" json:"is_registrable,omitempty"` Fee *types.Coin `protobuf:"bytes,3,opt,name=fee,proto3" json:"fee,omitempty"` } diff --git a/x/registry/types/top_level_domain.pb.go b/x/registry/types/top_level_domain.pb.go index b2add0a9..333cdf8d 100644 --- a/x/registry/types/top_level_domain.pb.go +++ b/x/registry/types/top_level_domain.pb.go @@ -31,11 +31,11 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type TopLevelDomain struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - ExpirationDate time.Time `protobuf:"bytes,2,opt,name=expirationDate,proto3,stdtime" json:"expirationDate"` - SubdomainConfig *SubdomainConfig `protobuf:"bytes,3,opt,name=subdomainConfig,proto3" json:"subdomainConfig,omitempty"` - SubdomainCount uint64 `protobuf:"varint,4,opt,name=subdomainCount,proto3" json:"subdomainCount,omitempty"` - AccessControl []*AccessControl `protobuf:"bytes,5,rep,name=accessControl,proto3" json:"accessControl,omitempty"` - TotalWithdrawalAmount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,6,rep,name=totalWithdrawalAmount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"totalWithdrawalAmount"` + ExpirationDate time.Time `protobuf:"bytes,2,opt,name=expiration_date,json=expirationDate,proto3,stdtime" json:"expiration_date"` + SubdomainConfig *SubdomainConfig `protobuf:"bytes,3,opt,name=subdomain_config,json=subdomainConfig,proto3" json:"subdomain_config,omitempty"` + SubdomainCount uint64 `protobuf:"varint,4,opt,name=subdomain_count,json=subdomainCount,proto3" json:"subdomain_count,omitempty"` + AccessControl []*AccessControl `protobuf:"bytes,5,rep,name=access_control,json=accessControl,proto3" json:"access_control,omitempty"` + TotalWithdrawalAmount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,6,rep,name=total_withdrawal_amount,json=totalWithdrawalAmount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"total_withdrawal_amount"` } func (m *TopLevelDomain) Reset() { *m = TopLevelDomain{} } @@ -114,10 +114,10 @@ func (m *TopLevelDomain) GetTotalWithdrawalAmount() github_com_cosmos_cosmos_sdk } type TopLevelDomainFee struct { - TotalFee github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=totalFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"totalFee"` - BurnWeight string `protobuf:"bytes,2,opt,name=burnWeight,proto3" json:"burnWeight,omitempty"` - FeeToBurn types.Coin `protobuf:"bytes,3,opt,name=feeToBurn,proto3,castvalue=github.com/cosmos/cosmos-sdk/types.Coin" json:"feeToBurn"` - FeeToTreasury types.Coin `protobuf:"bytes,4,opt,name=feeToTreasury,proto3,castvalue=github.com/cosmos/cosmos-sdk/types.Coin" json:"feeToTreasury"` + TotalFee github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=total_fee,json=totalFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"total_fee"` + BurnWeight string `protobuf:"bytes,2,opt,name=burn_weight,json=burnWeight,proto3" json:"burn_weight,omitempty"` + FeeToBurn types.Coin `protobuf:"bytes,3,opt,name=fee_to_burn,json=feeToBurn,proto3,castvalue=github.com/cosmos/cosmos-sdk/types.Coin" json:"fee_to_burn"` + FeeToTreasury types.Coin `protobuf:"bytes,4,opt,name=fee_to_treasury,json=feeToTreasury,proto3,castvalue=github.com/cosmos/cosmos-sdk/types.Coin" json:"fee_to_treasury"` } func (m *TopLevelDomainFee) Reset() { *m = TopLevelDomainFee{} } diff --git a/x/registry/types/tx.pb.go b/x/registry/types/tx.pb.go index 373eb218..c140e9ac 100644 --- a/x/registry/types/tx.pb.go +++ b/x/registry/types/tx.pb.go @@ -34,7 +34,7 @@ type MsgUpdateWalletRecord struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` Parent string `protobuf:"bytes,3,opt,name=parent,proto3" json:"parent,omitempty"` - WalletRecordType string `protobuf:"bytes,4,opt,name=walletRecordType,proto3" json:"walletRecordType,omitempty"` + WalletRecordType string `protobuf:"bytes,4,opt,name=wallet_record_type,json=walletRecordType,proto3" json:"wallet_record_type,omitempty"` Value string `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"` } @@ -146,7 +146,7 @@ type MsgUpdateDnsRecord struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` Parent string `protobuf:"bytes,3,opt,name=parent,proto3" json:"parent,omitempty"` - DnsRecordType string `protobuf:"bytes,4,opt,name=dnsRecordType,proto3" json:"dnsRecordType,omitempty"` + DnsRecordType string `protobuf:"bytes,4,opt,name=dns_record_type,json=dnsRecordType,proto3" json:"dns_record_type,omitempty"` Value string `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"` } @@ -258,7 +258,7 @@ type MsgRegisterSecondLevelDomain struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` Parent string `protobuf:"bytes,3,opt,name=parent,proto3" json:"parent,omitempty"` - RegistrationPeriodInYear uint64 `protobuf:"varint,4,opt,name=registrationPeriodInYear,proto3" json:"registrationPeriodInYear,omitempty"` + RegistrationPeriodInYear uint64 `protobuf:"varint,4,opt,name=registration_period_in_year,json=registrationPeriodInYear,proto3" json:"registration_period_in_year,omitempty"` } func (m *MsgRegisterSecondLevelDomain) Reset() { *m = MsgRegisterSecondLevelDomain{} } @@ -361,7 +361,7 @@ var xxx_messageInfo_MsgRegisterSecondLevelDomainResponse proto.InternalMessageIn type MsgRegisterTopLevelDomain struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - RegistrationPeriodInYear uint64 `protobuf:"varint,3,opt,name=registrationPeriodInYear,proto3" json:"registrationPeriodInYear,omitempty"` + RegistrationPeriodInYear uint64 `protobuf:"varint,3,opt,name=registration_period_in_year,json=registrationPeriodInYear,proto3" json:"registration_period_in_year,omitempty"` } func (m *MsgRegisterTopLevelDomain) Reset() { *m = MsgRegisterTopLevelDomain{} } @@ -419,7 +419,7 @@ func (m *MsgRegisterTopLevelDomain) GetRegistrationPeriodInYear() uint64 { } type MsgRegisterTopLevelDomainResponse struct { - TopLevelDomain *TopLevelDomain `protobuf:"bytes,1,opt,name=topLevelDomain,proto3" json:"topLevelDomain,omitempty"` + TopLevelDomain *TopLevelDomain `protobuf:"bytes,1,opt,name=top_level_domain,json=topLevelDomain,proto3" json:"top_level_domain,omitempty"` Fee *TopLevelDomainFee `protobuf:"bytes,2,opt,name=fee,proto3" json:"fee,omitempty"` } @@ -523,7 +523,7 @@ func (m *MsgWithdrawRegistrationFee) GetName() string { } type MsgWithdrawRegistrationFeeResponse struct { - RegistrationFee github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,7,rep,name=registrationFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"registrationFee"` + RegistrationFee github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,7,rep,name=registration_fee,json=registrationFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"registration_fee"` } func (m *MsgWithdrawRegistrationFeeResponse) Reset() { *m = MsgWithdrawRegistrationFeeResponse{} } @@ -569,7 +569,7 @@ func (m *MsgWithdrawRegistrationFeeResponse) GetRegistrationFee() github_com_cos type MsgExtendTopLevelDomainExpirationDate struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - ExtensionPeriodInYear uint64 `protobuf:"varint,3,opt,name=extensionPeriodInYear,proto3" json:"extensionPeriodInYear,omitempty"` + ExtensionPeriodInYear uint64 `protobuf:"varint,3,opt,name=extension_period_in_year,json=extensionPeriodInYear,proto3" json:"extension_period_in_year,omitempty"` } func (m *MsgExtendTopLevelDomainExpirationDate) Reset() { *m = MsgExtendTopLevelDomainExpirationDate{} } @@ -627,7 +627,7 @@ func (m *MsgExtendTopLevelDomainExpirationDate) GetExtensionPeriodInYear() uint6 } type MsgExtendTopLevelDomainExpirationDateResponse struct { - TopLevelDomain *TopLevelDomain `protobuf:"bytes,1,opt,name=topLevelDomain,proto3" json:"topLevelDomain,omitempty"` + TopLevelDomain *TopLevelDomain `protobuf:"bytes,1,opt,name=top_level_domain,json=topLevelDomain,proto3" json:"top_level_domain,omitempty"` Fee *TopLevelDomainFee `protobuf:"bytes,2,opt,name=fee,proto3" json:"fee,omitempty"` } @@ -797,7 +797,7 @@ var xxx_messageInfo_MsgUpdateTextRecordResponse proto.InternalMessageInfo type MsgUpdateTopLevelDomainRegistrationPolicy struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - RegistrationPolicy string `protobuf:"bytes,3,opt,name=registrationPolicy,proto3" json:"registrationPolicy,omitempty"` + RegistrationPolicy string `protobuf:"bytes,3,opt,name=registration_policy,json=registrationPolicy,proto3" json:"registration_policy,omitempty"` } func (m *MsgUpdateTopLevelDomainRegistrationPolicy) Reset() { diff --git a/x/resolver/types/query.pb.go b/x/resolver/types/query.pb.go index 443baa15..5e187a24 100644 --- a/x/resolver/types/query.pb.go +++ b/x/resolver/types/query.pb.go @@ -115,9 +115,9 @@ func (m *QueryParamsResponse) GetParams() Params { } type QueryWalletRecordRequest struct { - DomainName string `protobuf:"bytes,1,opt,name=domainName,proto3" json:"domainName,omitempty"` - DomainParent string `protobuf:"bytes,2,opt,name=domainParent,proto3" json:"domainParent,omitempty"` - WalletRecordType string `protobuf:"bytes,3,opt,name=walletRecordType,proto3" json:"walletRecordType,omitempty"` + DomainName string `protobuf:"bytes,1,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"` + DomainParent string `protobuf:"bytes,2,opt,name=domain_parent,json=domainParent,proto3" json:"domain_parent,omitempty"` + WalletRecordType string `protobuf:"bytes,3,opt,name=wallet_record_type,json=walletRecordType,proto3" json:"wallet_record_type,omitempty"` } func (m *QueryWalletRecordRequest) Reset() { *m = QueryWalletRecordRequest{} } @@ -219,9 +219,9 @@ func (m *QueryWalletRecordResponse) GetValue() *types.WalletRecord { } type QueryDnsRecordRequest struct { - DomainName string `protobuf:"bytes,1,opt,name=domainName,proto3" json:"domainName,omitempty"` - DomainParent string `protobuf:"bytes,2,opt,name=domainParent,proto3" json:"domainParent,omitempty"` - DnsRecordType string `protobuf:"bytes,3,opt,name=dnsRecordType,proto3" json:"dnsRecordType,omitempty"` + DomainName string `protobuf:"bytes,1,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"` + DomainParent string `protobuf:"bytes,2,opt,name=domain_parent,json=domainParent,proto3" json:"domain_parent,omitempty"` + DnsRecordType string `protobuf:"bytes,3,opt,name=dns_record_type,json=dnsRecordType,proto3" json:"dns_record_type,omitempty"` } func (m *QueryDnsRecordRequest) Reset() { *m = QueryDnsRecordRequest{} } @@ -323,8 +323,8 @@ func (m *QueryDnsRecordResponse) GetValue() *types.DnsRecord { } type QueryAllRecordsRequest struct { - DomainName string `protobuf:"bytes,1,opt,name=domainName,proto3" json:"domainName,omitempty"` - DomainParent string `protobuf:"bytes,2,opt,name=domainParent,proto3" json:"domainParent,omitempty"` + DomainName string `protobuf:"bytes,1,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"` + DomainParent string `protobuf:"bytes,2,opt,name=domain_parent,json=domainParent,proto3" json:"domain_parent,omitempty"` } func (m *QueryAllRecordsRequest) Reset() { *m = QueryAllRecordsRequest{} } @@ -419,8 +419,8 @@ func (m *QueryAllRecordsResponse) GetValues() map[string]*types.Record { } type QueryTextRecordRequest struct { - DomainName string `protobuf:"bytes,1,opt,name=domainName,proto3" json:"domainName,omitempty"` - DomainParent string `protobuf:"bytes,2,opt,name=domainParent,proto3" json:"domainParent,omitempty"` + DomainName string `protobuf:"bytes,1,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"` + DomainParent string `protobuf:"bytes,2,opt,name=domain_parent,json=domainParent,proto3" json:"domain_parent,omitempty"` Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"` } diff --git a/x/resolver/types/query.pb.gw.go b/x/resolver/types/query.pb.gw.go index e45eab18..ec877f31 100644 --- a/x/resolver/types/query.pb.gw.go +++ b/x/resolver/types/query.pb.gw.go @@ -62,37 +62,37 @@ func request_Query_WalletRecord_0(ctx context.Context, marshaler runtime.Marshal _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } - val, ok = pathParams["walletRecordType"] + val, ok = pathParams["wallet_record_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "walletRecordType") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "wallet_record_type") } protoReq.WalletRecordType, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "walletRecordType", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "wallet_record_type", err) } msg, err := client.WalletRecord(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) @@ -111,37 +111,37 @@ func local_request_Query_WalletRecord_0(ctx context.Context, marshaler runtime.M _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } - val, ok = pathParams["walletRecordType"] + val, ok = pathParams["wallet_record_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "walletRecordType") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "wallet_record_type") } protoReq.WalletRecordType, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "walletRecordType", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "wallet_record_type", err) } msg, err := server.WalletRecord(ctx, &protoReq) @@ -160,37 +160,37 @@ func request_Query_DnsRecord_0(ctx context.Context, marshaler runtime.Marshaler, _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } - val, ok = pathParams["dnsRecordType"] + val, ok = pathParams["dns_record_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "dnsRecordType") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "dns_record_type") } protoReq.DnsRecordType, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "dnsRecordType", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "dns_record_type", err) } msg, err := client.DnsRecord(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) @@ -209,37 +209,37 @@ func local_request_Query_DnsRecord_0(ctx context.Context, marshaler runtime.Mars _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } - val, ok = pathParams["dnsRecordType"] + val, ok = pathParams["dns_record_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "dnsRecordType") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "dns_record_type") } protoReq.DnsRecordType, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "dnsRecordType", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "dns_record_type", err) } msg, err := server.DnsRecord(ctx, &protoReq) @@ -258,26 +258,26 @@ func request_Query_AllRecords_0(ctx context.Context, marshaler runtime.Marshaler _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } msg, err := client.AllRecords(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) @@ -296,26 +296,26 @@ func local_request_Query_AllRecords_0(ctx context.Context, marshaler runtime.Mar _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } msg, err := server.AllRecords(ctx, &protoReq) @@ -334,26 +334,26 @@ func request_Query_TextRecord_0(ctx context.Context, marshaler runtime.Marshaler _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } val, ok = pathParams["key"] @@ -383,26 +383,26 @@ func local_request_Query_TextRecord_0(ctx context.Context, marshaler runtime.Mar _ = err ) - val, ok = pathParams["domainName"] + val, ok = pathParams["domain_name"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainName") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_name") } protoReq.DomainName, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainName", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_name", err) } - val, ok = pathParams["domainParent"] + val, ok = pathParams["domain_parent"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domainParent") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain_parent") } protoReq.DomainParent, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domainParent", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain_parent", err) } val, ok = pathParams["key"] @@ -687,15 +687,15 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_WalletRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "wallet_record", "domainName", "domainParent", "walletRecordType"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_WalletRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "wallet_record", "domain_name", "domain_parent", "wallet_record_type"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DnsRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "dns_record", "domainName", "domainParent", "dnsRecordType"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DnsRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "dns_record", "domain_name", "domain_parent", "dns_record_type"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AllRecords_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "all_records", "domainName", "domainParent"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AllRecords_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "all_records", "domain_name", "domain_parent"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TextRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "text_record", "domainName", "domainParent", "key"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TextRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "text_record", "domain_name", "domain_parent", "key"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( From 96818b8fe384e5d22396719d8de06ae888f335ff Mon Sep 17 00:00:00 2001 From: foxytanuki Date: Wed, 7 Feb 2024 16:15:04 +0900 Subject: [PATCH 2/5] Fix package names of mycel proto to have v1beta1 --- docs/static/openapi.yml | 572 ++++++++++++++++---------------- x/epochs/types/query.pb.gw.go | 6 +- x/furnace/types/query.pb.gw.go | 8 +- x/registry/types/query.pb.gw.go | 18 +- x/resolver/types/query.pb.gw.go | 10 +- 5 files changed, 307 insertions(+), 307 deletions(-) diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 892266ae..3988a53a 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -49471,27 +49471,27 @@ paths: schema: type: object properties: - epochInfo: + epoch_info: type: array items: type: object properties: identifier: type: string - startTime: + start_time: type: string format: date-time duration: type: string - currentEpoch: + current_epoch: type: string format: int64 - currentEpochStartTime: + current_epoch_start_time: type: string format: date-time - epochCountingStarted: + epoch_counting_started: type: boolean - currentEpochStartHeight: + current_epoch_start_height: type: string format: int64 pagination: @@ -49609,25 +49609,25 @@ paths: schema: type: object properties: - epochInfo: + epoch_info: type: object properties: identifier: type: string - startTime: + start_time: type: string format: date-time duration: type: string - currentEpoch: + current_epoch: type: string format: int64 - currentEpochStartTime: + current_epoch_start_time: type: string format: date-time - epochCountingStarted: + epoch_counting_started: type: boolean - currentEpochStartHeight: + current_epoch_start_height: type: string format: int64 default: @@ -49700,7 +49700,7 @@ paths: schema: type: object properties: - burnAmount: + burn_amount: type: array items: type: object @@ -49708,15 +49708,15 @@ paths: index: type: string format: uint64 - burnStarted: + burn_started: type: boolean - totalEpochs: + total_epochs: type: string format: uint64 - currentEpoch: + current_epoch: type: string format: uint64 - totalBurnAmount: + total_burn_amount: type: object properties: denom: @@ -49731,7 +49731,7 @@ paths: custom method signatures required by gogoproto. - cumulativeBurntAmount: + cumulative_burnt_amount: type: object properties: denom: @@ -49861,21 +49861,21 @@ paths: schema: type: object properties: - burnAmount: + burn_amount: type: object properties: index: type: string format: uint64 - burnStarted: + burn_started: type: boolean - totalEpochs: + total_epochs: type: string format: uint64 - currentEpoch: + current_epoch: type: string format: uint64 - totalBurnAmount: + total_burn_amount: type: object properties: denom: @@ -49890,7 +49890,7 @@ paths: custom method signatures required by gogoproto. - cumulativeBurntAmount: + cumulative_burnt_amount: type: object properties: denom: @@ -49941,18 +49941,18 @@ paths: schema: type: object properties: - EpochBurnConfig: + epoch_burn_config: type: object properties: - epochIdentifier: + epoch_identifier: type: string - currentBurnAmountIndex: + current_burn_amount_index: type: string format: uint64 - defaultTotalEpochs: + default_total_epochs: type: string format: uint64 - startTime: + start_time: type: string format: date-time default: @@ -50020,7 +50020,7 @@ paths: schema: type: object properties: - domainOwnership: + domain_ownership: type: array items: type: object @@ -50151,7 +50151,7 @@ paths: schema: type: object properties: - domainOwnership: + domain_ownership: type: object properties: owner: @@ -50200,7 +50200,7 @@ paths: schema: type: object properties: - isRegistrable: + is_registrable: type: boolean fee: type: array @@ -50219,13 +50219,13 @@ paths: method signatures required by gogoproto. - registrationPeriodInYear: + registration_period_in_year: type: string format: uint64 - maxSubDomainRegistrations: + max_sub_domain_registrations: type: string format: uint64 - errorMessage: + error_message: type: string default: description: An unexpected error response. @@ -50258,14 +50258,14 @@ paths: in: path required: true type: string - - name: registrationPeriodInYear + - name: registration_period_in_year in: query required: false type: string format: uint64 tags: - Query - /mycel-domain/mycel/registry/v1beta1/role/{domainName}/{address}: + /mycel-domain/mycel/registry/v1beta1/role/{domain_name}/{address}: get: summary: Queries a list of Role items. operationId: MycelRegistryV1Beta1Role @@ -50296,7 +50296,7 @@ paths: type: string additionalProperties: {} parameters: - - name: domainName + - name: domain_name in: path required: true type: string @@ -50315,26 +50315,26 @@ paths: schema: type: object properties: - topLevelDomain: + top_level_domain: type: array items: type: object properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -50342,7 +50342,7 @@ paths: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -50360,14 +50360,14 @@ paths: implements the custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -50385,7 +50385,7 @@ paths: implements the custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -50401,27 +50401,27 @@ paths: implements the custom method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -50435,7 +50435,7 @@ paths: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -50568,24 +50568,24 @@ paths: schema: type: object properties: - topLevelDomain: + top_level_domain: type: object properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -50593,7 +50593,7 @@ paths: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -50611,14 +50611,14 @@ paths: implements the custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -50636,7 +50636,7 @@ paths: implements the custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -50652,27 +50652,27 @@ paths: the custom method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -50686,7 +50686,7 @@ paths: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -50742,10 +50742,10 @@ paths: description: params holds all the parameters of this module. type: object properties: - stakingInflationRatio: + staking_inflation_ratio: type: number format: float - topLevelDomainBaseFeeInUsd: + top_level_domain_base_fee_in_usd: type: string format: int64 description: >- @@ -50780,7 +50780,7 @@ paths: schema: type: object properties: - secondLevelDomain: + second_level_domain: type: array items: type: object @@ -50789,7 +50789,7 @@ paths: type: string parent: type: string - expirationDate: + expiration_date: type: string format: date-time pagination: @@ -50907,14 +50907,14 @@ paths: schema: type: object properties: - secondLevelDomain: + second_level_domain: type: object properties: name: type: string parent: type: string - expirationDate: + expiration_date: type: string format: date-time default: @@ -50946,7 +50946,7 @@ paths: type: string tags: - Query - /mycel-domain/mycel/resolver/v1beta1/all_records/{domainName}/{domainParent}: + /mycel-domain/mycel/resolver/v1beta1/all_records/{domain_name}/{domain_parent}: get: summary: Queries a list of AllRecord items. operationId: MycelResolverV1Beta1AllRecords @@ -50961,10 +50961,10 @@ paths: additionalProperties: type: object properties: - dnsRecord: + dns_record: type: object properties: - dnsRecordType: + dns_record_type: type: string enum: - NO_RECORD_TYPE @@ -50980,10 +50980,10 @@ paths: default: NO_RECORD_TYPE value: type: string - walletRecord: + wallet_record: type: object properties: - walletRecordType: + wallet_record_type: type: string enum: - NO_NETWORK @@ -51043,7 +51043,7 @@ paths: title: 'Rule: CHAINNAME_ENVIRONMENT_NETWORK' value: type: string - textRecord: + text_record: type: object properties: key: @@ -51069,17 +51069,17 @@ paths: type: string additionalProperties: {} parameters: - - name: domainName + - name: domain_name in: path required: true type: string - - name: domainParent + - name: domain_parent in: path required: true type: string tags: - Query - /mycel-domain/mycel/resolver/v1beta1/dns_record/{domainName}/{domainParent}/{dnsRecordType}: + /mycel-domain/mycel/resolver/v1beta1/dns_record/{domain_name}/{domain_parent}/{dns_record_type}: get: summary: Queries a list of DnsRecord items. operationId: MycelResolverV1Beta1DnsRecord @@ -51092,7 +51092,7 @@ paths: value: type: object properties: - dnsRecordType: + dns_record_type: type: string enum: - NO_RECORD_TYPE @@ -51127,15 +51127,15 @@ paths: type: string additionalProperties: {} parameters: - - name: domainName + - name: domain_name in: path required: true type: string - - name: domainParent + - name: domain_parent in: path required: true type: string - - name: dnsRecordType + - name: dns_record_type in: path required: true type: string @@ -51177,7 +51177,7 @@ paths: additionalProperties: {} tags: - Query - /mycel-domain/mycel/resolver/v1beta1/text_record/{domainName}/{domainParent}/{key}: + /mycel-domain/mycel/resolver/v1beta1/text_record/{domain_name}/{domain_parent}/{key}: get: summary: Queries a list of TextRecord items. operationId: MycelResolverV1Beta1TextRecord @@ -51213,11 +51213,11 @@ paths: type: string additionalProperties: {} parameters: - - name: domainName + - name: domain_name in: path required: true type: string - - name: domainParent + - name: domain_parent in: path required: true type: string @@ -51227,7 +51227,7 @@ paths: type: string tags: - Query - /mycel-domain/mycel/resolver/v1beta1/wallet_record/{domainName}/{domainParent}/{walletRecordType}: + /mycel-domain/mycel/resolver/v1beta1/wallet_record/{domain_name}/{domain_parent}/{wallet_record_type}: get: summary: Queries a list of QueryWalletRecord items. operationId: MycelResolverV1Beta1WalletRecord @@ -51240,7 +51240,7 @@ paths: value: type: object properties: - walletRecordType: + wallet_record_type: type: string enum: - NO_NETWORK @@ -51319,15 +51319,15 @@ paths: type: string additionalProperties: {} parameters: - - name: domainName + - name: domain_name in: path required: true type: string - - name: domainParent + - name: domain_parent in: path required: true type: string - - name: walletRecordType + - name: wallet_record_type in: path required: true type: string @@ -80998,20 +80998,20 @@ definitions: properties: identifier: type: string - startTime: + start_time: type: string format: date-time duration: type: string - currentEpoch: + current_epoch: type: string format: int64 - currentEpochStartTime: + current_epoch_start_time: type: string format: date-time - epochCountingStarted: + epoch_counting_started: type: boolean - currentEpochStartHeight: + current_epoch_start_height: type: string format: int64 mycel.epochs.v1beta1.Params: @@ -81020,27 +81020,27 @@ definitions: mycel.epochs.v1beta1.QueryAllEpochInfoResponse: type: object properties: - epochInfo: + epoch_info: type: array items: type: object properties: identifier: type: string - startTime: + start_time: type: string format: date-time duration: type: string - currentEpoch: + current_epoch: type: string format: int64 - currentEpochStartTime: + current_epoch_start_time: type: string format: date-time - epochCountingStarted: + epoch_counting_started: type: boolean - currentEpochStartHeight: + current_epoch_start_height: type: string format: int64 pagination: @@ -81072,25 +81072,25 @@ definitions: mycel.epochs.v1beta1.QueryGetEpochInfoResponse: type: object properties: - epochInfo: + epoch_info: type: object properties: identifier: type: string - startTime: + start_time: type: string format: date-time duration: type: string - currentEpoch: + current_epoch: type: string format: int64 - currentEpochStartTime: + current_epoch_start_time: type: string format: date-time - epochCountingStarted: + epoch_counting_started: type: boolean - currentEpochStartHeight: + current_epoch_start_height: type: string format: int64 mycel.epochs.v1beta1.QueryParamsResponse: @@ -81106,15 +81106,15 @@ definitions: index: type: string format: uint64 - burnStarted: + burn_started: type: boolean - totalEpochs: + total_epochs: type: string format: uint64 - currentEpoch: + current_epoch: type: string format: uint64 - totalBurnAmount: + total_burn_amount: type: object properties: denom: @@ -81126,7 +81126,7 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - cumulativeBurntAmount: + cumulative_burnt_amount: type: object properties: denom: @@ -81141,15 +81141,15 @@ definitions: mycel.furnace.v1beta1.EpochBurnConfig: type: object properties: - epochIdentifier: + epoch_identifier: type: string - currentBurnAmountIndex: + current_burn_amount_index: type: string format: uint64 - defaultTotalEpochs: + default_total_epochs: type: string format: uint64 - startTime: + start_time: type: string format: date-time mycel.furnace.v1beta1.Params: @@ -81158,7 +81158,7 @@ definitions: mycel.furnace.v1beta1.QueryAllBurnAmountResponse: type: object properties: - burnAmount: + burn_amount: type: array items: type: object @@ -81166,15 +81166,15 @@ definitions: index: type: string format: uint64 - burnStarted: + burn_started: type: boolean - totalEpochs: + total_epochs: type: string format: uint64 - currentEpoch: + current_epoch: type: string format: uint64 - totalBurnAmount: + total_burn_amount: type: object properties: denom: @@ -81189,7 +81189,7 @@ definitions: method signatures required by gogoproto. - cumulativeBurntAmount: + cumulative_burnt_amount: type: object properties: denom: @@ -81233,21 +81233,21 @@ definitions: mycel.furnace.v1beta1.QueryGetBurnAmountResponse: type: object properties: - burnAmount: + burn_amount: type: object properties: index: type: string format: uint64 - burnStarted: + burn_started: type: boolean - totalEpochs: + total_epochs: type: string format: uint64 - currentEpoch: + current_epoch: type: string format: uint64 - totalBurnAmount: + total_burn_amount: type: object properties: denom: @@ -81262,7 +81262,7 @@ definitions: method signatures required by gogoproto. - cumulativeBurntAmount: + cumulative_burnt_amount: type: object properties: denom: @@ -81280,18 +81280,18 @@ definitions: mycel.furnace.v1beta1.QueryGetEpochBurnConfigResponse: type: object properties: - EpochBurnConfig: + epoch_burn_config: type: object properties: - epochIdentifier: + epoch_identifier: type: string - currentBurnAmountIndex: + current_burn_amount_index: type: string format: uint64 - defaultTotalEpochs: + default_total_epochs: type: string format: uint64 - startTime: + start_time: type: string format: date-time mycel.furnace.v1beta1.QueryParamsResponse: @@ -81340,7 +81340,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81359,7 +81359,7 @@ definitions: properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81376,24 +81376,24 @@ definitions: mycel.registry.v1beta1.MsgExtendTopLevelDomainExpirationDateResponse: type: object properties: - topLevelDomain: + top_level_domain: type: object properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -81401,7 +81401,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81419,14 +81419,14 @@ definitions: the custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81444,7 +81444,7 @@ definitions: the custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -81459,27 +81459,27 @@ definitions: custom method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -81493,7 +81493,7 @@ definitions: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -81513,7 +81513,7 @@ definitions: fee: type: object properties: - totalFee: + total_fee: type: array items: type: object @@ -81530,9 +81530,9 @@ definitions: method signatures required by gogoproto. - burnWeight: + burn_weight: type: string - feeToBurn: + fee_to_burn: type: object properties: denom: @@ -81547,7 +81547,7 @@ definitions: method signatures required by gogoproto. - feeToTreasury: + fee_to_treasury: type: object properties: denom: @@ -81567,24 +81567,24 @@ definitions: mycel.registry.v1beta1.MsgRegisterTopLevelDomainResponse: type: object properties: - topLevelDomain: + top_level_domain: type: object properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -81592,7 +81592,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81610,14 +81610,14 @@ definitions: the custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81635,7 +81635,7 @@ definitions: the custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -81650,27 +81650,27 @@ definitions: custom method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -81684,7 +81684,7 @@ definitions: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -81704,7 +81704,7 @@ definitions: fee: type: object properties: - totalFee: + total_fee: type: array items: type: object @@ -81721,9 +81721,9 @@ definitions: method signatures required by gogoproto. - burnWeight: + burn_weight: type: string - feeToBurn: + fee_to_burn: type: object properties: denom: @@ -81738,7 +81738,7 @@ definitions: method signatures required by gogoproto. - feeToTreasury: + fee_to_treasury: type: object properties: denom: @@ -81764,7 +81764,7 @@ definitions: mycel.registry.v1beta1.MsgWithdrawRegistrationFeeResponse: type: object properties: - registrationFee: + registration_fee: type: array items: type: object @@ -81788,17 +81788,17 @@ definitions: mycel.registry.v1beta1.Params: type: object properties: - stakingInflationRatio: + staking_inflation_ratio: type: number format: float - topLevelDomainBaseFeeInUsd: + top_level_domain_base_fee_in_usd: type: string format: int64 description: Params defines the parameters for the module. mycel.registry.v1beta1.QueryAllDomainOwnershipResponse: type: object properties: - domainOwnership: + domain_ownership: type: array items: type: object @@ -81843,7 +81843,7 @@ definitions: mycel.registry.v1beta1.QueryAllSecondLevelDomainResponse: type: object properties: - secondLevelDomain: + second_level_domain: type: array items: type: object @@ -81852,7 +81852,7 @@ definitions: type: string parent: type: string - expirationDate: + expiration_date: type: string format: date-time pagination: @@ -81884,26 +81884,26 @@ definitions: mycel.registry.v1beta1.QueryAllTopLevelDomainResponse: type: object properties: - topLevelDomain: + top_level_domain: type: array items: type: object properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -81911,7 +81911,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81929,14 +81929,14 @@ definitions: the custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -81954,7 +81954,7 @@ definitions: the custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -81969,27 +81969,27 @@ definitions: custom method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -82003,7 +82003,7 @@ definitions: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -82049,7 +82049,7 @@ definitions: mycel.registry.v1beta1.QueryDomainRegistrationFeeResponse: type: object properties: - isRegistrable: + is_registrable: type: boolean fee: type: array @@ -82065,18 +82065,18 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - registrationPeriodInYear: + registration_period_in_year: type: string format: uint64 - maxSubDomainRegistrations: + max_sub_domain_registrations: type: string format: uint64 - errorMessage: + error_message: type: string mycel.registry.v1beta1.QueryGetDomainOwnershipResponse: type: object properties: - domainOwnership: + domain_ownership: type: object properties: owner: @@ -82093,37 +82093,37 @@ definitions: mycel.registry.v1beta1.QueryGetSecondLevelDomainResponse: type: object properties: - secondLevelDomain: + second_level_domain: type: object properties: name: type: string parent: type: string - expirationDate: + expiration_date: type: string format: date-time mycel.registry.v1beta1.QueryGetTopLevelDomainResponse: type: object properties: - topLevelDomain: + top_level_domain: type: object properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -82131,7 +82131,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82149,14 +82149,14 @@ definitions: the custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82174,7 +82174,7 @@ definitions: the custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -82189,27 +82189,27 @@ definitions: custom method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -82223,7 +82223,7 @@ definitions: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -82247,10 +82247,10 @@ definitions: description: params holds all the parameters of this module. type: object properties: - stakingInflationRatio: + staking_inflation_ratio: type: number format: float - topLevelDomainBaseFeeInUsd: + top_level_domain_base_fee_in_usd: type: string format: int64 description: QueryParamsResponse is response type for the Query/Params RPC method. @@ -82272,19 +82272,19 @@ definitions: type: string parent: type: string - expirationDate: + expiration_date: type: string format: date-time mycel.registry.v1beta1.SubdomainConfig: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -82292,7 +82292,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82309,14 +82309,14 @@ definitions: method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82333,7 +82333,7 @@ definitions: method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -82348,18 +82348,18 @@ definitions: method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE @@ -82368,7 +82368,7 @@ definitions: mycel.registry.v1beta1.SubdomainRegistrationFees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -82376,7 +82376,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82393,14 +82393,14 @@ definitions: method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82417,7 +82417,7 @@ definitions: method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -82434,19 +82434,19 @@ definitions: properties: name: type: string - expirationDate: + expiration_date: type: string format: date-time - subdomainConfig: + subdomain_config: type: object properties: - maxSubdomainRegistrations: + max_subdomain_registrations: type: string format: uint64 - subdomainRegistrationFees: + subdomain_registration_fees: type: object properties: - feeByLength: + fee_by_length: type: array items: type: object @@ -82454,7 +82454,7 @@ definitions: length: type: integer format: int64 - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82471,14 +82471,14 @@ definitions: custom method signatures required by gogoproto. - feeByName: + fee_by_name: type: array items: type: object properties: name: type: string - isRegistrable: + is_registrable: type: boolean fee: type: object @@ -82495,7 +82495,7 @@ definitions: custom method signatures required by gogoproto. - defaultFee: + default_fee: type: object properties: denom: @@ -82510,27 +82510,27 @@ definitions: method signatures required by gogoproto. - isRegistrable: + is_registrable: type: boolean - registrableRole: + registrable_role: type: string enum: - NO_ROLE - OWNER - EDITOR default: NO_ROLE - customExpirationDate: + custom_expiration_date: type: boolean - registrationPolicy: + registration_policy: type: string enum: - PRIVATE - PUBLIC default: PRIVATE - subdomainCount: + subdomain_count: type: string format: uint64 - accessControl: + access_control: type: array items: type: object @@ -82544,7 +82544,7 @@ definitions: - OWNER - EDITOR default: NO_ROLE - totalWithdrawalAmount: + total_withdrawal_amount: type: array items: type: object @@ -82561,7 +82561,7 @@ definitions: mycel.registry.v1beta1.TopLevelDomainFee: type: object properties: - totalFee: + total_fee: type: array items: type: object @@ -82575,9 +82575,9 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - burnWeight: + burn_weight: type: string - feeToBurn: + fee_to_burn: type: object properties: denom: @@ -82589,7 +82589,7 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - feeToTreasury: + fee_to_treasury: type: object properties: denom: @@ -82604,7 +82604,7 @@ definitions: mycel.registry.v1beta1.DnsRecord: type: object properties: - dnsRecordType: + dns_record_type: type: string enum: - NO_RECORD_TYPE @@ -82695,10 +82695,10 @@ definitions: mycel.registry.v1beta1.Record: type: object properties: - dnsRecord: + dns_record: type: object properties: - dnsRecordType: + dns_record_type: type: string enum: - NO_RECORD_TYPE @@ -82714,10 +82714,10 @@ definitions: default: NO_RECORD_TYPE value: type: string - walletRecord: + wallet_record: type: object properties: - walletRecordType: + wallet_record_type: type: string enum: - NO_NETWORK @@ -82777,7 +82777,7 @@ definitions: title: 'Rule: CHAINNAME_ENVIRONMENT_NETWORK' value: type: string - textRecord: + text_record: type: object properties: key: @@ -82794,7 +82794,7 @@ definitions: mycel.registry.v1beta1.WalletRecord: type: object properties: - walletRecordType: + wallet_record_type: type: string enum: - NO_NETWORK @@ -82865,10 +82865,10 @@ definitions: additionalProperties: type: object properties: - dnsRecord: + dns_record: type: object properties: - dnsRecordType: + dns_record_type: type: string enum: - NO_RECORD_TYPE @@ -82884,10 +82884,10 @@ definitions: default: NO_RECORD_TYPE value: type: string - walletRecord: + wallet_record: type: object properties: - walletRecordType: + wallet_record_type: type: string enum: - NO_NETWORK @@ -82947,7 +82947,7 @@ definitions: title: 'Rule: CHAINNAME_ENVIRONMENT_NETWORK' value: type: string - textRecord: + text_record: type: object properties: key: @@ -82960,7 +82960,7 @@ definitions: value: type: object properties: - dnsRecordType: + dns_record_type: type: string enum: - NO_RECORD_TYPE @@ -82999,7 +82999,7 @@ definitions: value: type: object properties: - walletRecordType: + wallet_record_type: type: string enum: - NO_NETWORK diff --git a/x/epochs/types/query.pb.gw.go b/x/epochs/types/query.pb.gw.go index 584986b1..54f31978 100644 --- a/x/epochs/types/query.pb.gw.go +++ b/x/epochs/types/query.pb.gw.go @@ -321,11 +321,11 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_EpochInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"mycel", "epochs", "v1beta1", "epoch_info", "identifier"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_EpochInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"mycel", "epochs", "v1beta1", "epoch_info", "identifier"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_EpochInfoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "epoch_info"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_EpochInfoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "epochs", "v1beta1", "epoch_info"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/furnace/types/query.pb.gw.go b/x/furnace/types/query.pb.gw.go index 29f2cd29..f6d85734 100644 --- a/x/furnace/types/query.pb.gw.go +++ b/x/furnace/types/query.pb.gw.go @@ -382,13 +382,13 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_EpochBurnConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "epoch_burn_config"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_EpochBurnConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "epoch_burn_config"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_BurnAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount", "index"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_BurnAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount", "index"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_BurnAmountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_BurnAmountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "furnace", "v1beta1", "burn_amount"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/registry/types/query.pb.gw.go b/x/registry/types/query.pb.gw.go index adbee369..0cf72250 100644 --- a/x/registry/types/query.pb.gw.go +++ b/x/registry/types/query.pb.gw.go @@ -973,23 +973,23 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_TopLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain", "name"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_TopLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain", "name"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_TopLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_TopLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "top_level_domain"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_SecondLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel", "registry", "v1beta1", "second_level_domain", "name", "parent"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_SecondLevelDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel", "registry", "v1beta1", "second_level_domain", "name", "parent"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_SecondLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "second_level_domain"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_SecondLevelDomainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"mycel", "registry", "v1beta1", "second_level_domain"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DomainOwnership_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership", "owner"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DomainOwnership_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership", "owner"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DomainOwnershipAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DomainOwnershipAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_ownership"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DomainRegistrationFee_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_registration_fee", "name", "parent", "registerer"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DomainRegistrationFee_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "domain_registration_fee", "name", "parent", "registerer"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Role_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "role", "domain_name", "address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Role_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "registry", "v1beta1", "role", "domain_name", "address"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/resolver/types/query.pb.gw.go b/x/resolver/types/query.pb.gw.go index ec877f31..915108b3 100644 --- a/x/resolver/types/query.pb.gw.go +++ b/x/resolver/types/query.pb.gw.go @@ -687,15 +687,15 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_WalletRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "wallet_record", "domain_name", "domain_parent", "wallet_record_type"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_WalletRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "wallet_record", "domain_name", "domain_parent", "wallet_record_type"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DnsRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "dns_record", "domain_name", "domain_parent", "dns_record_type"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DnsRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "dns_record", "domain_name", "domain_parent", "dns_record_type"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_AllRecords_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "all_records", "domain_name", "domain_parent"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_AllRecords_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "all_records", "domain_name", "domain_parent"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_TextRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "text_record", "domain_name", "domain_parent", "key"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_TextRecord_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"mycel-domain", "mycel", "resolver", "v1beta1", "text_record", "domain_name", "domain_parent", "key"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( From ac8e939be75f56d033b29987e383d22432ad657a Mon Sep 17 00:00:00 2001 From: foxytanuki Date: Wed, 7 Feb 2024 16:17:33 +0900 Subject: [PATCH 3/5] Fix lint `IMPORT_USED` errors --- proto/mycel/epochs/v1beta1/genesis.proto | 1 - proto/mycel/furnace/v1beta1/epoch_burn_config.proto | 1 - proto/mycel/furnace/v1beta1/query.proto | 1 - proto/mycel/registry/v1beta1/query.proto | 1 - proto/mycel/resolver/v1beta1/query.proto | 1 - 5 files changed, 5 deletions(-) diff --git a/proto/mycel/epochs/v1beta1/genesis.proto b/proto/mycel/epochs/v1beta1/genesis.proto index 390dae84..a7640be4 100644 --- a/proto/mycel/epochs/v1beta1/genesis.proto +++ b/proto/mycel/epochs/v1beta1/genesis.proto @@ -3,7 +3,6 @@ package mycel.epochs.v1beta1; import "gogoproto/gogo.proto"; import "mycel/epochs/v1beta1/epoch_info.proto"; -import "mycel/epochs/v1beta1/params.proto"; option go_package = "github.com/mycel-domain/mycel/x/epochs/types"; diff --git a/proto/mycel/furnace/v1beta1/epoch_burn_config.proto b/proto/mycel/furnace/v1beta1/epoch_burn_config.proto index 6273e98f..44143450 100644 --- a/proto/mycel/furnace/v1beta1/epoch_burn_config.proto +++ b/proto/mycel/furnace/v1beta1/epoch_burn_config.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package mycel.furnace.v1beta1; import "gogoproto/gogo.proto"; -import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; option go_package = "github.com/mycel-domain/mycel/x/furnace/types"; diff --git a/proto/mycel/furnace/v1beta1/query.proto b/proto/mycel/furnace/v1beta1/query.proto index 8a2f4e21..6d8b4835 100644 --- a/proto/mycel/furnace/v1beta1/query.proto +++ b/proto/mycel/furnace/v1beta1/query.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package mycel.furnace.v1beta1; import "cosmos/base/query/v1beta1/pagination.proto"; -import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "mycel/furnace/v1beta1/burn_amount.proto"; diff --git a/proto/mycel/registry/v1beta1/query.proto b/proto/mycel/registry/v1beta1/query.proto index d7defa71..22fa4e12 100644 --- a/proto/mycel/registry/v1beta1/query.proto +++ b/proto/mycel/registry/v1beta1/query.proto @@ -9,7 +9,6 @@ import "google/api/annotations.proto"; import "google/protobuf/timestamp.proto"; import "mycel/registry/v1beta1/domain_ownership.proto"; import "mycel/registry/v1beta1/params.proto"; -import "mycel/registry/v1beta1/second_level_domain.proto"; import "mycel/registry/v1beta1/top_level_domain.proto"; option go_package = "github.com/mycel-domain/mycel/x/registry/types"; diff --git a/proto/mycel/resolver/v1beta1/query.proto b/proto/mycel/resolver/v1beta1/query.proto index 04ee7a5f..189745bd 100644 --- a/proto/mycel/resolver/v1beta1/query.proto +++ b/proto/mycel/resolver/v1beta1/query.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package mycel.resolver.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "mycel/registry/v1beta1/second_level_domain.proto"; From d592f9a450e5522dda86881fd2c9a37c7e278bd9 Mon Sep 17 00:00:00 2001 From: foxytanuki Date: Wed, 7 Feb 2024 17:13:33 +0900 Subject: [PATCH 4/5] Remove unused buf.yaml --- buf.yaml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 buf.yaml diff --git a/buf.yaml b/buf.yaml deleted file mode 100644 index 1a519456..00000000 --- a/buf.yaml +++ /dev/null @@ -1,7 +0,0 @@ -version: v1 -breaking: - use: - - FILE -lint: - use: - - DEFAULT From e6e905de061b1fbc0eb468b7b6231d3736fd3970 Mon Sep 17 00:00:00 2001 From: foxytanuki Date: Wed, 7 Feb 2024 17:23:50 +0900 Subject: [PATCH 5/5] pb.go --- x/epochs/types/epoch_info.pb.go | 57 ++++---- x/epochs/types/genesis.pb.go | 21 ++- x/epochs/types/query.pb.go | 44 +++--- x/furnace/types/burn_amount.pb.go | 45 +++--- x/furnace/types/epoch_burn_config.pb.go | 48 +++---- x/furnace/types/genesis.pb.go | 40 +++--- x/furnace/types/query.pb.go | 79 ++++++----- x/registry/types/genesis.pb.go | 45 +++--- x/registry/types/params.pb.go | 26 ++-- x/registry/types/query.pb.go | 152 +++++++++++---------- x/registry/types/second_level_domain.pb.go | 75 +++++----- x/registry/types/subdomain_config.pb.go | 82 +++++------ x/registry/types/top_level_domain.pb.go | 70 +++++----- x/registry/types/tx.pb.go | 106 +++++++------- x/resolver/types/query.pb.go | 95 +++++++------ 15 files changed, 498 insertions(+), 487 deletions(-) diff --git a/x/epochs/types/epoch_info.pb.go b/x/epochs/types/epoch_info.pb.go index 303ba159..43442712 100644 --- a/x/epochs/types/epoch_info.pb.go +++ b/x/epochs/types/epoch_info.pb.go @@ -129,34 +129,35 @@ func init() { } var fileDescriptor_33d4570779b75db9 = []byte{ - // 421 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0x4f, 0x8b, 0xd3, 0x40, - 0x1c, 0xcd, 0x58, 0x5d, 0xb7, 0xa3, 0x20, 0x0e, 0x15, 0x63, 0xc1, 0x49, 0x08, 0x08, 0x01, 0xd7, - 0x84, 0xae, 0x17, 0xf1, 0x58, 0xff, 0xa0, 0xd7, 0xb8, 0x20, 0x78, 0x29, 0xf9, 0x33, 0x49, 0x06, - 0x3a, 0x33, 0x21, 0x99, 0x88, 0x39, 0xf8, 0x1d, 0xf6, 0xe8, 0x47, 0xda, 0xe3, 0x1e, 0x3d, 0x45, - 0x69, 0x6f, 0x1e, 0xf7, 0x0b, 0x28, 0x99, 0x49, 0x6a, 0x6d, 0x2b, 0x7b, 0xcb, 0x9b, 0xf7, 0xe6, - 0xbd, 0xdf, 0x9b, 0xfc, 0xe0, 0x13, 0xd6, 0xc4, 0x64, 0xe9, 0x93, 0x42, 0xc4, 0x79, 0xe5, 0x7f, - 0x9e, 0x45, 0x44, 0x86, 0x33, 0x0d, 0x17, 0x94, 0xa7, 0xc2, 0x2b, 0x4a, 0x21, 0x05, 0x9a, 0x28, - 0x99, 0xa7, 0x65, 0x5e, 0x2f, 0x9b, 0x4e, 0x32, 0x91, 0x09, 0x25, 0xf0, 0xbb, 0x2f, 0xad, 0x9d, - 0xe2, 0x4c, 0x88, 0x6c, 0x49, 0x7c, 0x85, 0xa2, 0x3a, 0xf5, 0x93, 0xba, 0x0c, 0x25, 0x15, 0xbc, - 0xe7, 0xad, 0x5d, 0x5e, 0x52, 0x46, 0x2a, 0x19, 0xb2, 0x42, 0x0b, 0x9c, 0xdf, 0x23, 0x38, 0x7e, - 0xd3, 0x25, 0xbd, 0xe7, 0xa9, 0x40, 0x18, 0x42, 0x9a, 0x10, 0x2e, 0x69, 0x4a, 0x49, 0x69, 0x02, - 0x1b, 0xb8, 0xe3, 0x60, 0xeb, 0x04, 0x7d, 0x84, 0xe3, 0x4a, 0x86, 0xa5, 0x3c, 0xa3, 0x8c, 0x98, - 0x37, 0x6c, 0xe0, 0xde, 0x39, 0x9d, 0x7a, 0x3a, 0xc2, 0x1b, 0x22, 0xbc, 0xb3, 0x21, 0x62, 0xfe, - 0xf8, 0xa2, 0xb5, 0x8c, 0xab, 0xd6, 0xba, 0xdf, 0x84, 0x6c, 0xf9, 0xd2, 0x51, 0x57, 0x17, 0xdd, - 0x04, 0xce, 0xf9, 0x0f, 0x0b, 0x04, 0x7f, 0xbd, 0x50, 0x0e, 0x8f, 0x87, 0xc9, 0xcd, 0x91, 0xf2, - 0x7d, 0xb4, 0xe7, 0xfb, 0xba, 0x17, 0xcc, 0x67, 0x9d, 0xed, 0xaf, 0xd6, 0x42, 0xc3, 0x95, 0x13, - 0xc1, 0xa8, 0x24, 0xac, 0x90, 0xcd, 0x55, 0x6b, 0xdd, 0xd3, 0x61, 0x03, 0xe7, 0x7c, 0xeb, 0xa2, - 0x36, 0xee, 0xc8, 0x81, 0x77, 0xe3, 0xba, 0x2c, 0x09, 0x97, 0xaa, 0xb6, 0x79, 0xd3, 0x06, 0xee, - 0x28, 0xf8, 0xe7, 0x0c, 0x7d, 0x85, 0x0f, 0xb6, 0xf1, 0x87, 0x4d, 0xe5, 0x5b, 0xd7, 0x56, 0x7e, - 0xda, 0x57, 0xb6, 0xf4, 0x14, 0xbd, 0xcd, 0x42, 0xff, 0xe4, 0xdd, 0x07, 0x38, 0x9c, 0x82, 0x4e, - 0xe1, 0x44, 0xe9, 0x5f, 0x89, 0x9a, 0x4b, 0xca, 0x33, 0xc5, 0x90, 0xc4, 0x3c, 0xb2, 0x81, 0x7b, - 0x1c, 0x1c, 0xe4, 0xd0, 0x0b, 0xf8, 0x70, 0xcf, 0xec, 0x1d, 0xa1, 0x59, 0x2e, 0xcd, 0xdb, 0xaa, - 0xe1, 0xff, 0xe8, 0xf9, 0xdb, 0x8b, 0x15, 0x06, 0x97, 0x2b, 0x0c, 0x7e, 0xae, 0x30, 0x38, 0x5f, - 0x63, 0xe3, 0x72, 0x8d, 0x8d, 0xef, 0x6b, 0x6c, 0x7c, 0x3a, 0xc9, 0xa8, 0xcc, 0xeb, 0xc8, 0x8b, - 0x05, 0xf3, 0xd5, 0x4e, 0x3e, 0x4b, 0x04, 0x0b, 0x29, 0xd7, 0xc0, 0xff, 0x32, 0x6c, 0xb2, 0x6c, - 0x0a, 0x52, 0x45, 0x47, 0xea, 0x35, 0x9e, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x76, 0xde, 0xea, - 0x9e, 0xe6, 0x02, 0x00, 0x00, + // 435 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xbf, 0x8f, 0x94, 0x40, + 0x14, 0xc7, 0x19, 0xef, 0x3c, 0x6f, 0x47, 0x8d, 0x71, 0xb2, 0x2a, 0x92, 0x38, 0x10, 0x8c, 0x09, + 0x89, 0x27, 0x64, 0xd5, 0x4a, 0xbb, 0xf5, 0x47, 0xb4, 0xe5, 0x2c, 0x8c, 0x0d, 0xe1, 0xc7, 0x00, + 0x93, 0xec, 0xcc, 0x10, 0x18, 0x8c, 0x74, 0xd6, 0x56, 0x57, 0xfa, 0x27, 0x5d, 0x79, 0xa5, 0x15, + 0x9a, 0xdd, 0xce, 0xf2, 0xfe, 0x02, 0xc3, 0x0c, 0x9c, 0xab, 0xa7, 0xb9, 0x8e, 0xf7, 0xbe, 0x9f, + 0xf7, 0xfd, 0xf2, 0x5e, 0x06, 0x3e, 0x60, 0x5d, 0x4a, 0x56, 0x01, 0xa9, 0x44, 0x5a, 0x36, 0xc1, + 0xc7, 0x45, 0x42, 0x64, 0xbc, 0xd0, 0x65, 0x44, 0x79, 0x2e, 0xfc, 0xaa, 0x16, 0x52, 0xa0, 0xb9, + 0xc2, 0x7c, 0x8d, 0xf9, 0x23, 0x66, 0xcd, 0x0b, 0x51, 0x08, 0x05, 0x04, 0xc3, 0x97, 0x66, 0x2d, + 0x5c, 0x08, 0x51, 0xac, 0x48, 0xa0, 0xaa, 0xa4, 0xcd, 0x83, 0xac, 0xad, 0x63, 0x49, 0x05, 0x1f, + 0x75, 0xfb, 0x6f, 0x5d, 0x52, 0x46, 0x1a, 0x19, 0xb3, 0x4a, 0x03, 0xee, 0x97, 0x5d, 0x38, 0x7b, + 0x35, 0x24, 0xbd, 0xe5, 0xb9, 0x40, 0x18, 0x42, 0x9a, 0x11, 0x2e, 0x69, 0x4e, 0x49, 0x6d, 0x02, + 0x07, 0x78, 0xb3, 0x70, 0xab, 0x83, 0xde, 0x43, 0xd8, 0xc8, 0xb8, 0x96, 0xd1, 0x60, 0x63, 0x5e, + 0x72, 0x80, 0x77, 0xf5, 0xb1, 0xe5, 0xeb, 0x0c, 0x7f, 0xca, 0xf0, 0xdf, 0x4d, 0x19, 0xcb, 0x7b, + 0xc7, 0xbd, 0x6d, 0x9c, 0xf6, 0xf6, 0xcd, 0x2e, 0x66, 0xab, 0x67, 0xee, 0xef, 0x59, 0xf7, 0xe8, + 0xbb, 0x0d, 0xc2, 0x99, 0x6a, 0x0c, 0x38, 0x2a, 0xe1, 0xfe, 0xf4, 0xeb, 0xe6, 0x8e, 0xf2, 0xbd, + 0x7b, 0xce, 0xf7, 0xe5, 0x08, 0x2c, 0x17, 0x83, 0xed, 0xcf, 0xde, 0x46, 0xd3, 0xc8, 0x81, 0x60, + 0x54, 0x12, 0x56, 0xc9, 0xee, 0xb4, 0xb7, 0x6f, 0xe8, 0xb0, 0x49, 0x73, 0xbf, 0x0e, 0x51, 0x67, + 0xee, 0xe8, 0x3e, 0xbc, 0x9e, 0xb6, 0x75, 0x4d, 0xb8, 0x8c, 0xd4, 0x89, 0xcd, 0x5d, 0x07, 0x78, + 0x3b, 0xe1, 0xb5, 0xb1, 0xa9, 0x8e, 0x81, 0x3e, 0x03, 0x68, 0xfe, 0x41, 0x45, 0x5b, 0x7b, 0x5f, + 0xbe, 0x70, 0xef, 0x87, 0xe3, 0xde, 0xb6, 0xfe, 0x95, 0xff, 0x39, 0xe9, 0x2b, 0xdc, 0xda, 0x4e, + 0x3e, 0x3c, 0xbb, 0xc8, 0x53, 0x78, 0x5b, 0xf3, 0xa9, 0x68, 0xb9, 0xa4, 0xbc, 0xd0, 0x83, 0x24, + 0x33, 0xf7, 0x1c, 0xe0, 0xed, 0x87, 0x73, 0xa5, 0xbe, 0x18, 0xc5, 0x43, 0xad, 0xa1, 0xe7, 0xd0, + 0xfa, 0x57, 0x5a, 0x49, 0x68, 0x51, 0x4a, 0xf3, 0x8a, 0x5a, 0xf5, 0xce, 0xb9, 0xc0, 0x37, 0x4a, + 0x5e, 0xbe, 0x3e, 0x5e, 0x63, 0x70, 0xb2, 0xc6, 0xe0, 0xc7, 0x1a, 0x83, 0xa3, 0x0d, 0x36, 0x4e, + 0x36, 0xd8, 0xf8, 0xb6, 0xc1, 0xc6, 0x87, 0x83, 0x82, 0xca, 0xb2, 0x4d, 0xfc, 0x54, 0xb0, 0x40, + 0x3d, 0xcf, 0x47, 0x99, 0x60, 0x31, 0xe5, 0xba, 0x08, 0x3e, 0x4d, 0x8f, 0x5a, 0x76, 0x15, 0x69, + 0x92, 0x3d, 0x75, 0x92, 0x27, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x61, 0xc4, 0xf4, 0x73, 0xf1, + 0x02, 0x00, 0x00, } func (m *EpochInfo) Marshal() (dAtA []byte, err error) { diff --git a/x/epochs/types/genesis.pb.go b/x/epochs/types/genesis.pb.go index f5f589a8..b0f9d27e 100644 --- a/x/epochs/types/genesis.pb.go +++ b/x/epochs/types/genesis.pb.go @@ -77,21 +77,20 @@ func init() { } var fileDescriptor_f39ef1445cd18fe5 = []byte{ - // 218 bytes of a gzipped FileDescriptorProto + // 207 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xca, 0xad, 0x4c, 0x4e, 0xcd, 0xd1, 0x4f, 0x2d, 0xc8, 0x4f, 0xce, 0x28, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x01, 0xab, 0xd1, 0x83, 0xa8, 0xd1, 0x83, 0xaa, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, - 0xd0, 0x07, 0xb1, 0x20, 0x6a, 0xa5, 0x54, 0xb1, 0x9a, 0x07, 0xe6, 0xc6, 0x67, 0xe6, 0xa5, 0xc1, - 0x94, 0x29, 0x62, 0x55, 0x56, 0x90, 0x58, 0x94, 0x98, 0x0b, 0xb5, 0x55, 0xc9, 0x97, 0x8b, 0xc7, - 0x1d, 0xe2, 0x8c, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x5b, 0x2e, 0x36, 0x88, 0x72, 0x09, 0x46, - 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x79, 0x3d, 0x6c, 0xce, 0xd2, 0x73, 0x05, 0x71, 0x3d, 0xf3, 0xd2, - 0xf2, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x6a, 0x72, 0x72, 0x3b, 0xf1, 0x48, 0x8e, - 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, - 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x9d, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, - 0xfc, 0x5c, 0x7d, 0xb0, 0x91, 0xba, 0x29, 0xf9, 0xb9, 0x89, 0x99, 0x79, 0x10, 0x8e, 0x7e, 0x05, - 0xcc, 0x95, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xd7, 0x19, 0x03, 0x02, 0x00, 0x00, - 0xff, 0xff, 0x0d, 0x66, 0x86, 0xbb, 0x39, 0x01, 0x00, 0x00, + 0xd0, 0x07, 0xb1, 0x20, 0x6a, 0xa5, 0x54, 0xb1, 0x9a, 0x07, 0xe6, 0xc6, 0x67, 0xe6, 0xa5, 0x41, + 0x95, 0x29, 0xf9, 0x72, 0xf1, 0xb8, 0x43, 0xec, 0x08, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0xb2, 0xe5, + 0x62, 0x83, 0x68, 0x91, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x36, 0x92, 0xd7, 0xc3, 0x66, 0xa7, 0x9e, + 0x2b, 0x88, 0xeb, 0x99, 0x97, 0x96, 0xef, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0x93, + 0x93, 0xdb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, + 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, 0xa4, 0x67, 0x96, + 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x83, 0x8d, 0xd4, 0x4d, 0xc9, 0xcf, 0x4d, 0xcc, + 0xcc, 0x83, 0x70, 0xf4, 0x2b, 0x60, 0x2e, 0x2d, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xbb, + 0xce, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x74, 0xe7, 0x7b, 0x16, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/epochs/types/query.pb.go b/x/epochs/types/query.pb.go index 4344cbc9..2cc87247 100644 --- a/x/epochs/types/query.pb.go +++ b/x/epochs/types/query.pb.go @@ -309,14 +309,14 @@ func init() { func init() { proto.RegisterFile("mycel/epochs/v1beta1/query.proto", fileDescriptor_8f0c3cbfdf3661af) } var fileDescriptor_8f0c3cbfdf3661af = []byte{ - // 499 bytes of a gzipped FileDescriptorProto + // 500 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xbf, 0x6e, 0x53, 0x31, 0x14, 0xc6, 0xe3, 0x16, 0x22, 0xc5, 0x30, 0x99, 0x0c, 0x25, 0x8a, 0xdc, 0x60, 0xf1, 0x27, 0x20, - 0x6a, 0xab, 0x45, 0x2c, 0xdd, 0x5a, 0x44, 0x2b, 0x36, 0x9a, 0x91, 0x05, 0x7c, 0x53, 0xe7, 0xd6, - 0xd2, 0xbd, 0xf6, 0x6d, 0xec, 0x20, 0x22, 0xc4, 0x02, 0x2f, 0x80, 0xc4, 0xc4, 0xcc, 0xc4, 0x9b, - 0x74, 0xa3, 0x12, 0x0b, 0x13, 0x42, 0x09, 0x0f, 0x82, 0x62, 0x3b, 0xff, 0x54, 0xeb, 0x26, 0x62, + 0x6a, 0xab, 0x45, 0x2c, 0xdd, 0x5a, 0x41, 0x2b, 0x36, 0x9a, 0x91, 0x05, 0xf9, 0xa6, 0xce, 0xad, + 0xa5, 0x7b, 0xed, 0xdb, 0xd8, 0x41, 0x44, 0x88, 0x05, 0x5e, 0x00, 0x89, 0x89, 0x99, 0x8d, 0x27, + 0xe9, 0x46, 0x25, 0x16, 0x26, 0x84, 0x12, 0x1e, 0x04, 0xc5, 0x76, 0xfe, 0xa9, 0xe6, 0x26, 0x62, 0x73, 0x4e, 0xbe, 0xef, 0x3b, 0xbf, 0xa3, 0x73, 0x12, 0xd8, 0xca, 0x87, 0x5d, 0x91, 0x31, 0x51, - 0xe8, 0xee, 0x99, 0x61, 0x6f, 0x77, 0x13, 0x61, 0xf9, 0x2e, 0x3b, 0x1f, 0x88, 0xfe, 0x90, 0x16, + 0xe8, 0xee, 0x99, 0x61, 0x6f, 0x76, 0x13, 0x61, 0xf9, 0x2e, 0x3b, 0x1f, 0x88, 0xfe, 0x90, 0x16, 0x7d, 0x6d, 0x35, 0xaa, 0x3b, 0x05, 0xf5, 0x0a, 0x1a, 0x14, 0x8d, 0x47, 0x5d, 0x6d, 0x72, 0x6d, 0x58, 0xc2, 0x8d, 0xf0, 0xf2, 0x99, 0xb9, 0xe0, 0xa9, 0x54, 0xdc, 0x4a, 0xad, 0x7c, 0x42, 0xa3, 0x9e, 0xea, 0x54, 0xbb, 0x27, 0x9b, 0xbc, 0x42, 0xb5, 0x99, 0x6a, 0x9d, 0x66, 0x82, 0xf1, 0x42, @@ -324,24 +324,24 @@ var fileDescriptor_8f0c3cbfdf3661af = []byte{ 0xd3, 0x90, 0x3b, 0x51, 0x59, 0xc1, 0xfb, 0x3c, 0x0f, 0x49, 0xa4, 0x0e, 0xd1, 0xc9, 0x84, 0xef, 0xa5, 0x2b, 0x76, 0xc4, 0xf9, 0x40, 0x18, 0x4b, 0x4e, 0xe0, 0xad, 0xa5, 0xaa, 0x29, 0xb4, 0x32, 0x02, 0xed, 0xc3, 0xaa, 0x37, 0x6f, 0x81, 0x16, 0x68, 0xdf, 0xd8, 0x6b, 0xd2, 0xd8, 0xf4, 0xd4, - 0xbb, 0x0e, 0xaf, 0x5d, 0xfc, 0xde, 0xae, 0x74, 0x82, 0x83, 0xec, 0xc3, 0x2d, 0x17, 0x79, 0x2c, + 0xbb, 0x0e, 0xaf, 0x5d, 0xfc, 0xda, 0xae, 0x74, 0x82, 0x83, 0xec, 0xc3, 0x2d, 0x17, 0x79, 0x2c, 0xec, 0xf3, 0x89, 0xfc, 0x85, 0xea, 0xe9, 0xd0, 0x0e, 0x61, 0x08, 0xe5, 0xa9, 0x50, 0x56, 0xf6, - 0xa4, 0xe8, 0xbb, 0xec, 0x5a, 0x67, 0xa1, 0x42, 0xde, 0xc0, 0xdb, 0x11, 0x6f, 0x80, 0x7a, 0x06, - 0x6b, 0x62, 0x5a, 0x0c, 0x5c, 0xdb, 0x71, 0xae, 0x99, 0x37, 0xa0, 0xcd, 0x7d, 0x24, 0x09, 0x74, - 0x07, 0x59, 0x76, 0x85, 0xee, 0x08, 0xc2, 0xf9, 0xd2, 0x42, 0x87, 0xfb, 0xd4, 0x6f, 0x98, 0x4e, - 0x36, 0x4c, 0xfd, 0x41, 0xcc, 0xc7, 0x4f, 0x45, 0xf0, 0x76, 0x16, 0x9c, 0xe4, 0x3b, 0x08, 0x63, - 0x2c, 0x37, 0x89, 0x8f, 0xb1, 0xf9, 0x3f, 0x63, 0xa0, 0xe3, 0x25, 0xd4, 0x0d, 0x87, 0xfa, 0x60, - 0x25, 0xaa, 0x27, 0x58, 0x64, 0xdd, 0xfb, 0xb1, 0x09, 0xaf, 0x3b, 0x56, 0xf4, 0x09, 0xc0, 0xaa, - 0x5f, 0x28, 0x6a, 0xc7, 0x79, 0xae, 0xde, 0x4f, 0xe3, 0xe1, 0x1a, 0x4a, 0xdf, 0x95, 0xdc, 0xfd, - 0xf8, 0xf3, 0xef, 0x97, 0x0d, 0x8c, 0x9a, 0xac, 0xe4, 0x58, 0xd1, 0x37, 0x00, 0x6b, 0xb3, 0xb9, - 0x11, 0x2d, 0x89, 0x8f, 0xdc, 0x57, 0x83, 0xad, 0xad, 0x0f, 0x50, 0x4f, 0x1d, 0x14, 0x43, 0x3b, - 0x6c, 0xc5, 0x0f, 0x8d, 0xbd, 0x9f, 0x9f, 0xe9, 0x07, 0xf4, 0x15, 0xc0, 0x9b, 0xb3, 0xb0, 0x83, - 0x2c, 0x2b, 0x05, 0x8d, 0x9c, 0x5a, 0x29, 0x68, 0xec, 0x6a, 0x48, 0xdb, 0x81, 0x12, 0xd4, 0x5a, - 0x05, 0x7a, 0x78, 0x74, 0x31, 0xc2, 0xe0, 0x72, 0x84, 0xc1, 0x9f, 0x11, 0x06, 0x9f, 0xc7, 0xb8, - 0x72, 0x39, 0xc6, 0x95, 0x5f, 0x63, 0x5c, 0x79, 0xf5, 0x38, 0x95, 0xf6, 0x6c, 0x90, 0xd0, 0xae, - 0xce, 0x7d, 0xca, 0xce, 0xa9, 0xce, 0xb9, 0x54, 0x21, 0xf2, 0xdd, 0x34, 0xd4, 0x0e, 0x0b, 0x61, - 0x92, 0xaa, 0xfb, 0xdf, 0x78, 0xf2, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x35, 0xd5, 0x82, 0x1b, - 0x05, 0x00, 0x00, + 0xa4, 0xe8, 0xbb, 0xec, 0x5a, 0x67, 0xa1, 0x42, 0x38, 0xbc, 0x1d, 0xf1, 0x06, 0xa8, 0x67, 0x10, + 0xce, 0x07, 0x0f, 0x60, 0xdb, 0x71, 0xb0, 0x99, 0x39, 0xb0, 0xd5, 0xc4, 0xb4, 0x40, 0x92, 0x80, + 0x77, 0x90, 0x65, 0x57, 0xf0, 0x8e, 0x20, 0x9c, 0x6f, 0x2d, 0x74, 0xb8, 0x4f, 0xfd, 0x8a, 0xe9, + 0x64, 0xc5, 0xd4, 0x5f, 0xc4, 0x7c, 0xfe, 0x54, 0x04, 0x6f, 0x67, 0xc1, 0x49, 0xbe, 0x81, 0x30, + 0xc7, 0x72, 0x93, 0x7f, 0xcc, 0xb1, 0xf9, 0x3f, 0x73, 0xa0, 0xe3, 0x25, 0xd6, 0x0d, 0xc7, 0xfa, + 0x60, 0x25, 0xab, 0x47, 0x58, 0x84, 0xdd, 0xfb, 0xbe, 0x09, 0xaf, 0x3b, 0x58, 0xf4, 0x11, 0xc0, + 0xaa, 0x5f, 0x29, 0x6a, 0xc7, 0x79, 0xae, 0x5e, 0x50, 0xe3, 0xe1, 0x1a, 0x4a, 0xdf, 0x95, 0xdc, + 0xfd, 0xf0, 0xe3, 0xcf, 0xe7, 0x0d, 0x8c, 0x9a, 0xac, 0xe4, 0x5c, 0xd1, 0x57, 0x00, 0x6b, 0xb3, + 0xb9, 0x11, 0x2d, 0x89, 0x8f, 0x5c, 0x58, 0x83, 0xad, 0xad, 0x0f, 0x50, 0x4f, 0x1d, 0x14, 0x43, + 0x3b, 0x6c, 0xc5, 0x4f, 0x8d, 0xbd, 0x9b, 0x1f, 0xea, 0x7b, 0xf4, 0x05, 0xc0, 0x9b, 0xb3, 0xb0, + 0x83, 0x2c, 0x2b, 0x05, 0x8d, 0xdc, 0x5a, 0x29, 0x68, 0xec, 0x6c, 0x48, 0xdb, 0x81, 0x12, 0xd4, + 0x5a, 0x05, 0x7a, 0x78, 0x74, 0x31, 0xc2, 0xe0, 0x72, 0x84, 0xc1, 0xef, 0x11, 0x06, 0x9f, 0xc6, + 0xb8, 0x72, 0x39, 0xc6, 0x95, 0x9f, 0x63, 0x5c, 0x79, 0xf5, 0x38, 0x95, 0xf6, 0x6c, 0x90, 0xd0, + 0xae, 0xce, 0x7d, 0xca, 0xce, 0xa9, 0xce, 0xb9, 0x54, 0x21, 0xf2, 0xed, 0x34, 0xd4, 0x0e, 0x0b, + 0x61, 0x92, 0xaa, 0xfb, 0xe7, 0x78, 0xf2, 0x37, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x55, 0xc1, 0x1d, + 0x1d, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/furnace/types/burn_amount.pb.go b/x/furnace/types/burn_amount.pb.go index 226badac..abd2bb9a 100644 --- a/x/furnace/types/burn_amount.pb.go +++ b/x/furnace/types/burn_amount.pb.go @@ -117,28 +117,29 @@ func init() { } var fileDescriptor_b99a364454e8a693 = []byte{ - // 322 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xc1, 0x4e, 0x3a, 0x31, - 0x10, 0xc6, 0xb7, 0xfc, 0x81, 0xfc, 0x53, 0x4c, 0x4c, 0x36, 0x90, 0xac, 0x1c, 0xea, 0x86, 0x8b, - 0x5c, 0x68, 0x83, 0x3e, 0x81, 0x18, 0x63, 0xbc, 0x62, 0xbc, 0x78, 0x31, 0xdd, 0x52, 0x61, 0x13, - 0xb6, 0x43, 0xba, 0x53, 0x02, 0x6f, 0xe1, 0x83, 0xf8, 0x20, 0x1c, 0x39, 0x7a, 0x32, 0x06, 0x5e, - 0xc4, 0x6c, 0x17, 0x05, 0x8d, 0x07, 0x6f, 0x33, 0x5f, 0xbe, 0xdf, 0x74, 0xbe, 0x0e, 0x3d, 0xcb, - 0x96, 0x4a, 0x4f, 0xc5, 0x93, 0xb3, 0x46, 0x2a, 0x2d, 0xe6, 0xfd, 0x44, 0xa3, 0xec, 0x8b, 0xc4, - 0x59, 0xf3, 0x28, 0x33, 0x70, 0x06, 0xf9, 0xcc, 0x02, 0x42, 0xd8, 0xf2, 0x46, 0xbe, 0x33, 0xf2, - 0x9d, 0xb1, 0xcd, 0x14, 0xe4, 0x19, 0xe4, 0x22, 0x91, 0xf9, 0x9e, 0x56, 0x90, 0x9a, 0x12, 0x6b, - 0x37, 0xc7, 0x30, 0x06, 0x5f, 0x8a, 0xa2, 0x2a, 0xd5, 0xce, 0x4b, 0x85, 0xd2, 0x81, 0xb3, 0xe6, - 0xd2, 0xbf, 0x10, 0x36, 0x69, 0x2d, 0x35, 0x23, 0xbd, 0x88, 0x48, 0x4c, 0xba, 0xd5, 0x61, 0xd9, - 0x84, 0x31, 0x6d, 0x14, 0x6b, 0xdc, 0xa1, 0xb4, 0xa8, 0x47, 0x51, 0x25, 0x26, 0xdd, 0xff, 0xc3, - 0x43, 0xa9, 0x70, 0x20, 0xa0, 0x9c, 0x5e, 0xcf, 0x40, 0x4d, 0xf2, 0xe8, 0x9f, 0xa7, 0x0f, 0xa5, - 0xb0, 0x43, 0x8f, 0x94, 0xb3, 0x56, 0x1b, 0xf4, 0x42, 0x54, 0xf5, 0x96, 0x6f, 0x5a, 0x78, 0x4b, - 0x8f, 0x3d, 0xb2, 0x5f, 0x28, 0xaa, 0xc5, 0xa4, 0xdb, 0x38, 0x3f, 0xe1, 0x65, 0x38, 0x5e, 0x84, - 0xfb, 0x4c, 0xcc, 0xaf, 0x20, 0x35, 0x83, 0xea, 0xea, 0xed, 0x34, 0x18, 0xfe, 0xe4, 0xc2, 0x7b, - 0xda, 0x52, 0x2e, 0x73, 0x53, 0x89, 0xe9, 0x5c, 0x17, 0x3a, 0xee, 0x06, 0xd6, 0xff, 0x36, 0xf0, - 0x77, 0x7a, 0x70, 0xb3, 0xda, 0x30, 0xb2, 0xde, 0x30, 0xf2, 0xbe, 0x61, 0xe4, 0x79, 0xcb, 0x82, - 0xf5, 0x96, 0x05, 0xaf, 0x5b, 0x16, 0x3c, 0xf4, 0xc6, 0x29, 0x4e, 0x5c, 0xc2, 0x15, 0x64, 0xc2, - 0x1f, 0xa8, 0x37, 0x82, 0x4c, 0xa6, 0xa6, 0x6c, 0xc4, 0xe2, 0xeb, 0xb0, 0xb8, 0x9c, 0xe9, 0x3c, - 0xa9, 0xfb, 0xef, 0xbf, 0xf8, 0x08, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xdf, 0xd1, 0x7a, 0xf6, 0x01, - 0x00, 0x00, + // 337 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xc1, 0x4e, 0x32, 0x31, + 0x14, 0x85, 0xa7, 0xfc, 0x40, 0xfe, 0x14, 0x8c, 0x71, 0x02, 0x71, 0x64, 0x51, 0x51, 0x17, 0xb2, + 0xa1, 0x0d, 0xfa, 0x04, 0x62, 0x8c, 0x0b, 0x77, 0xb8, 0x30, 0x71, 0x43, 0x3a, 0xa5, 0xc2, 0x24, + 0x4c, 0x4b, 0x3a, 0x2d, 0x81, 0xb7, 0xf0, 0x5d, 0x7c, 0x09, 0x96, 0x2c, 0x5d, 0x19, 0x03, 0x2f, + 0x62, 0xe6, 0x76, 0x10, 0x96, 0xee, 0xee, 0x3d, 0xf9, 0xce, 0x69, 0x4f, 0x2e, 0xbe, 0x4e, 0x97, + 0x42, 0x4e, 0xd9, 0x9b, 0x33, 0x8a, 0x0b, 0xc9, 0xe6, 0xbd, 0x58, 0x5a, 0xde, 0x63, 0xb1, 0x33, + 0x6a, 0xc8, 0x53, 0xed, 0x94, 0xa5, 0x33, 0xa3, 0xad, 0x0e, 0x9b, 0x00, 0xd2, 0x02, 0xa4, 0x05, + 0xd8, 0x22, 0x42, 0x67, 0xa9, 0xce, 0x58, 0xcc, 0xb3, 0xbd, 0x5b, 0xe8, 0x44, 0x79, 0x5b, 0xab, + 0x31, 0xd6, 0x63, 0x0d, 0x23, 0xcb, 0x27, 0xaf, 0x5e, 0x7e, 0x94, 0x30, 0xee, 0x3b, 0xa3, 0xee, + 0xe0, 0x85, 0xb0, 0x81, 0x2b, 0x89, 0x1a, 0xc9, 0x45, 0x84, 0xda, 0xa8, 0x53, 0x1e, 0xf8, 0x25, + 0xbc, 0xc0, 0x75, 0xf8, 0x46, 0x66, 0xb9, 0xb1, 0x72, 0x14, 0x95, 0xda, 0xa8, 0xf3, 0x7f, 0x50, + 0xcb, 0xb5, 0x67, 0x2f, 0xe5, 0x88, 0xd5, 0x96, 0x4f, 0x87, 0x72, 0xa6, 0xc5, 0x24, 0x8b, 0xfe, + 0x81, 0xbf, 0x06, 0xda, 0x03, 0x48, 0xe1, 0x15, 0x3e, 0x12, 0xce, 0x18, 0xa9, 0xac, 0x87, 0xa2, + 0x32, 0x30, 0xf5, 0x42, 0x04, 0x2a, 0x7c, 0xc2, 0x27, 0x3e, 0xe7, 0xa0, 0x77, 0x54, 0x69, 0xa3, + 0x4e, 0xed, 0xe6, 0x8c, 0xfa, 0x86, 0x34, 0x6f, 0xb8, 0xab, 0x4d, 0xef, 0x75, 0xa2, 0xfa, 0xe5, + 0xd5, 0xd7, 0x79, 0x30, 0x38, 0x06, 0xe7, 0x41, 0x9b, 0x17, 0x7c, 0x2a, 0x5c, 0xea, 0xa6, 0xdc, + 0x26, 0x73, 0x09, 0x89, 0x76, 0x17, 0x59, 0xfd, 0x5b, 0x64, 0x73, 0xef, 0xcf, 0x73, 0xad, 0x0f, + 0xee, 0x3f, 0xae, 0x36, 0x04, 0xad, 0x37, 0x04, 0x7d, 0x6f, 0x08, 0x7a, 0xdf, 0x92, 0x60, 0xbd, + 0x25, 0xc1, 0xe7, 0x96, 0x04, 0xaf, 0xdd, 0x71, 0x62, 0x27, 0x2e, 0xa6, 0x42, 0xa7, 0x0c, 0xee, + 0xd4, 0x1d, 0xe9, 0x94, 0x27, 0xca, 0x2f, 0x6c, 0xf1, 0x7b, 0x5f, 0xbb, 0x9c, 0xc9, 0x2c, 0xae, + 0xc2, 0x15, 0x6e, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x5a, 0xdb, 0xb1, 0x3b, 0xfd, 0x01, 0x00, + 0x00, } func (m *BurnAmount) Marshal() (dAtA []byte, err error) { diff --git a/x/furnace/types/epoch_burn_config.pb.go b/x/furnace/types/epoch_burn_config.pb.go index ef503dbd..23460b82 100644 --- a/x/furnace/types/epoch_burn_config.pb.go +++ b/x/furnace/types/epoch_burn_config.pb.go @@ -8,7 +8,6 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" - _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -105,29 +104,30 @@ func init() { } var fileDescriptor_11af49042c46d8ce = []byte{ - // 344 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0x41, 0x4b, 0xc3, 0x30, - 0x1c, 0xc5, 0x1b, 0x1d, 0xc2, 0xea, 0x61, 0x58, 0x54, 0xca, 0xc0, 0x74, 0xec, 0xd4, 0xcb, 0x12, - 0xa6, 0xe0, 0xc1, 0x9b, 0x13, 0x91, 0x5d, 0xc7, 0x40, 0xf0, 0x32, 0xd2, 0x36, 0xed, 0x02, 0x4d, - 0x52, 0xd2, 0x44, 0xb6, 0x6f, 0xb1, 0x8f, 0xb5, 0xe3, 0x8e, 0x9e, 0xa6, 0x6c, 0xdf, 0xc0, 0xb3, - 0x07, 0x69, 0xba, 0x29, 0x0c, 0xbd, 0xe5, 0x9f, 0xf7, 0x7b, 0x7f, 0xde, 0xe3, 0xef, 0xf6, 0xf8, - 0x3c, 0xa6, 0x39, 0x4e, 0x8d, 0x12, 0x24, 0xa6, 0xf8, 0xb5, 0x1f, 0x51, 0x4d, 0xfa, 0x98, 0x16, - 0x32, 0x9e, 0x4e, 0x22, 0xa3, 0xc4, 0x24, 0x96, 0x22, 0x65, 0x19, 0x2a, 0x94, 0xd4, 0xd2, 0xbb, - 0xb0, 0x38, 0xda, 0xe1, 0x68, 0x87, 0xb7, 0xcf, 0x33, 0x99, 0x49, 0x4b, 0xe0, 0xea, 0x55, 0xc3, - 0x6d, 0x98, 0x49, 0x99, 0xe5, 0x14, 0xdb, 0x29, 0x32, 0x29, 0x4e, 0x8c, 0x22, 0x9a, 0x49, 0xb1, - 0xd3, 0x83, 0x43, 0x5d, 0x33, 0x4e, 0x4b, 0x4d, 0x78, 0x51, 0x03, 0xdd, 0x2f, 0xe0, 0xb6, 0x1e, - 0xab, 0x24, 0x03, 0xa3, 0xc4, 0x83, 0xcd, 0xe1, 0x85, 0x6e, 0xcb, 0x86, 0x1b, 0x26, 0x54, 0x68, - 0x96, 0x32, 0xaa, 0x7c, 0xd0, 0x01, 0x61, 0x73, 0x74, 0xf8, 0xed, 0xdd, 0xba, 0x97, 0xb1, 0x51, - 0x8a, 0x0a, 0x5d, 0xd9, 0xef, 0xb9, 0x34, 0x42, 0x0f, 0x45, 0x42, 0x67, 0xfe, 0x51, 0x07, 0x84, - 0x8d, 0xd1, 0x3f, 0xaa, 0x87, 0x5c, 0x2f, 0xa1, 0x29, 0x31, 0xb9, 0x1e, 0x4b, 0x4d, 0x72, 0x1b, - 0xa0, 0xf4, 0x8f, 0xad, 0xe7, 0x0f, 0xc5, 0x7b, 0x76, 0x9b, 0xa5, 0x26, 0x4a, 0x8f, 0x19, 0xa7, - 0x7e, 0xa3, 0x03, 0xc2, 0xd3, 0xeb, 0x36, 0xaa, 0xab, 0xa1, 0x7d, 0x35, 0x34, 0xde, 0x57, 0x1b, - 0x5c, 0x2d, 0xd7, 0x81, 0xf3, 0xb9, 0x0e, 0xce, 0xe6, 0x84, 0xe7, 0x77, 0x5d, 0x6b, 0x9d, 0x54, - 0xcd, 0xbb, 0x8b, 0xf7, 0x00, 0x8c, 0x7e, 0x77, 0x0d, 0x9e, 0x96, 0x1b, 0x08, 0x56, 0x1b, 0x08, - 0x3e, 0x36, 0x10, 0x2c, 0xb6, 0xd0, 0x59, 0x6d, 0xa1, 0xf3, 0xb6, 0x85, 0xce, 0x4b, 0x2f, 0x63, - 0x7a, 0x6a, 0x22, 0x14, 0x4b, 0x8e, 0xed, 0x45, 0x7a, 0x89, 0xe4, 0x84, 0x89, 0x7a, 0xc0, 0xb3, - 0x9f, 0x7b, 0xea, 0x79, 0x41, 0xcb, 0xe8, 0xc4, 0xc6, 0xb8, 0xf9, 0x0e, 0x00, 0x00, 0xff, 0xff, - 0x47, 0xf9, 0x79, 0x93, 0xed, 0x01, 0x00, 0x00, + // 353 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0x91, 0xb1, 0x4e, 0xf3, 0x30, + 0x14, 0x85, 0xe3, 0xfe, 0xd5, 0x2f, 0x35, 0x0c, 0x85, 0xa8, 0xa0, 0x50, 0x89, 0xa4, 0xea, 0x54, + 0x86, 0xc6, 0x14, 0x26, 0xd8, 0x28, 0x42, 0xa8, 0x6b, 0xd5, 0x01, 0xb1, 0x44, 0x4e, 0xe2, 0xa4, + 0x96, 0x12, 0x3b, 0x72, 0xae, 0x51, 0x3b, 0xf3, 0x02, 0x7d, 0xac, 0x8e, 0x1d, 0x99, 0x0a, 0x6a, + 0xdf, 0x80, 0x27, 0x40, 0x71, 0xd2, 0xb2, 0xf9, 0xde, 0xf3, 0x5d, 0x9f, 0x7b, 0x6c, 0x73, 0x98, + 0x2d, 0x43, 0x9a, 0xe2, 0x58, 0x49, 0x4e, 0x42, 0x8a, 0xdf, 0x47, 0x01, 0x05, 0x32, 0xc2, 0x34, + 0x17, 0xe1, 0xdc, 0x0f, 0x94, 0xe4, 0x7e, 0x28, 0x78, 0xcc, 0x12, 0x2f, 0x97, 0x02, 0x84, 0x75, + 0xae, 0x71, 0xaf, 0xc6, 0xbd, 0x1a, 0xef, 0x76, 0x12, 0x91, 0x08, 0x4d, 0xe0, 0xf2, 0x54, 0xc1, + 0x5d, 0x37, 0x11, 0x22, 0x49, 0x29, 0xd6, 0x55, 0xa0, 0x62, 0x0c, 0x2c, 0xa3, 0x05, 0x90, 0x2c, + 0xaf, 0x80, 0xfe, 0x47, 0xc3, 0x6c, 0x3f, 0x97, 0x4e, 0x63, 0x25, 0xf9, 0x93, 0xf6, 0xb1, 0xae, + 0xcd, 0xd3, 0xca, 0x9c, 0x45, 0x94, 0x03, 0x8b, 0x19, 0x95, 0x36, 0xea, 0xa1, 0x41, 0x6b, 0xda, + 0xd6, 0xfd, 0xc9, 0xb1, 0x6d, 0xdd, 0x9b, 0x97, 0xa1, 0x92, 0x92, 0x72, 0xa8, 0x36, 0x25, 0x99, + 0x50, 0x1c, 0x7c, 0xc6, 0x23, 0xba, 0xb0, 0x1b, 0x3d, 0x34, 0x68, 0x4e, 0x2f, 0x6a, 0xa0, 0x34, + 0x78, 0xd4, 0xf2, 0xa4, 0x54, 0xad, 0x1b, 0xb3, 0x13, 0xd1, 0x98, 0xa8, 0x14, 0x7c, 0x10, 0x40, + 0x52, 0x5f, 0xdf, 0x5d, 0xd8, 0xff, 0xf4, 0x94, 0x55, 0x6b, 0xb3, 0x52, 0xd2, 0x0b, 0x16, 0xd6, + 0xab, 0x69, 0x16, 0x40, 0x24, 0xf8, 0x65, 0x08, 0xbb, 0xd9, 0x43, 0x83, 0x93, 0xdb, 0xae, 0x57, + 0x25, 0xf4, 0x0e, 0x09, 0xbd, 0xd9, 0x21, 0xe1, 0xf8, 0x6a, 0xbd, 0x75, 0x8d, 0x9f, 0xad, 0x7b, + 0xb6, 0x24, 0x59, 0xfa, 0xd0, 0xff, 0x9b, 0xed, 0xaf, 0xbe, 0x5c, 0x34, 0x6d, 0xe9, 0x46, 0x89, + 0x8f, 0x5f, 0xd6, 0x3b, 0x07, 0x6d, 0x76, 0x0e, 0xfa, 0xde, 0x39, 0x68, 0xb5, 0x77, 0x8c, 0xcd, + 0xde, 0x31, 0x3e, 0xf7, 0x8e, 0xf1, 0x36, 0x4c, 0x18, 0xcc, 0x55, 0xe0, 0x85, 0x22, 0xc3, 0xfa, + 0xe1, 0x87, 0x91, 0xc8, 0x08, 0xe3, 0x55, 0x81, 0x17, 0xc7, 0x6f, 0x83, 0x65, 0x4e, 0x8b, 0xe0, + 0xbf, 0x5e, 0xe3, 0xee, 0x37, 0x00, 0x00, 0xff, 0xff, 0x6b, 0xe7, 0x35, 0x5a, 0xd4, 0x01, 0x00, + 0x00, } func (m *EpochBurnConfig) Marshal() (dAtA []byte, err error) { diff --git a/x/furnace/types/genesis.pb.go b/x/furnace/types/genesis.pb.go index c60e03a1..cebec5ae 100644 --- a/x/furnace/types/genesis.pb.go +++ b/x/furnace/types/genesis.pb.go @@ -93,26 +93,26 @@ func init() { } var fileDescriptor_51a23f82e53314cb = []byte{ - // 297 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0xd0, 0x41, 0x4b, 0xc3, 0x30, - 0x14, 0xc0, 0xf1, 0xc6, 0xc9, 0x0e, 0xad, 0x20, 0x14, 0x85, 0x32, 0x30, 0xce, 0x09, 0xba, 0x4b, - 0x13, 0x36, 0x8f, 0x9e, 0xac, 0xc8, 0xf0, 0x26, 0x0a, 0x1e, 0xbc, 0x8c, 0xb4, 0x66, 0x5d, 0xc1, - 0x26, 0x25, 0x4d, 0xc4, 0x7d, 0x0b, 0x3f, 0xd6, 0x8e, 0x3b, 0x7a, 0x12, 0x69, 0xef, 0x7e, 0x06, - 0xd9, 0x6b, 0x18, 0x2a, 0xdd, 0xad, 0x85, 0x5f, 0xfe, 0xbc, 0xf7, 0xdc, 0xd3, 0x7c, 0x91, 0xf0, - 0x17, 0x3a, 0x33, 0x4a, 0xb0, 0x84, 0xd3, 0xd7, 0x51, 0xcc, 0x35, 0x1b, 0xd1, 0x94, 0x0b, 0x5e, - 0x66, 0x25, 0x29, 0x94, 0xd4, 0xd2, 0x3f, 0x04, 0x44, 0x2c, 0x22, 0x16, 0xf5, 0x0e, 0x52, 0x99, - 0x4a, 0x10, 0x74, 0xfd, 0xd5, 0xe0, 0xde, 0x79, 0x7b, 0x31, 0x36, 0x4a, 0x4c, 0x59, 0x2e, 0x8d, - 0xd0, 0x16, 0x86, 0xed, 0x90, 0x17, 0x32, 0x99, 0x4f, 0x81, 0x27, 0x52, 0xcc, 0xb2, 0xd4, 0xf2, - 0x41, 0x3b, 0x2f, 0x98, 0x62, 0xb9, 0x1d, 0x74, 0xf0, 0x8d, 0xdc, 0xbd, 0x49, 0x33, 0xfa, 0x83, - 0x66, 0x9a, 0xfb, 0x97, 0x6e, 0xb7, 0x01, 0x01, 0xea, 0xa3, 0xa1, 0x37, 0x3e, 0x22, 0xad, 0xab, - 0x90, 0x3b, 0x40, 0xd1, 0xee, 0xf2, 0xf3, 0xd8, 0xb9, 0xb7, 0x4f, 0xfc, 0x47, 0x77, 0x1f, 0x86, - 0x89, 0x8c, 0x12, 0xd7, 0x30, 0x4a, 0xb0, 0x03, 0x95, 0xb3, 0x2d, 0x95, 0x9b, 0xbf, 0xda, 0xe6, - 0xfe, 0x47, 0xfc, 0x5b, 0xd7, 0x5b, 0xaf, 0x77, 0x05, 0xc7, 0x28, 0x83, 0x4e, 0xbf, 0x33, 0xf4, - 0xc6, 0x27, 0x5b, 0x9a, 0xd1, 0x46, 0xda, 0xdc, 0xef, 0xb7, 0xd1, 0x64, 0x59, 0x61, 0xb4, 0xaa, - 0x30, 0xfa, 0xaa, 0x30, 0x7a, 0xaf, 0xb1, 0xb3, 0xaa, 0xb1, 0xf3, 0x51, 0x63, 0xe7, 0x29, 0x4c, - 0x33, 0x3d, 0x37, 0x31, 0x49, 0x64, 0x4e, 0xa1, 0x1c, 0x3e, 0xcb, 0x9c, 0x65, 0xa2, 0xf9, 0xa1, - 0x6f, 0x9b, 0x43, 0xea, 0x45, 0xc1, 0xcb, 0xb8, 0x0b, 0x07, 0xbc, 0xf8, 0x09, 0x00, 0x00, 0xff, - 0xff, 0x40, 0x32, 0x98, 0x7e, 0x10, 0x02, 0x00, 0x00, + // 301 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0xd0, 0xcf, 0x4a, 0xc3, 0x30, + 0x1c, 0xc0, 0xf1, 0xc6, 0xc9, 0x0e, 0xed, 0x40, 0x2c, 0x0a, 0x65, 0x60, 0x9c, 0x13, 0x74, 0x97, + 0x26, 0x6c, 0x1e, 0x3d, 0x59, 0x91, 0x81, 0x27, 0xd1, 0x8b, 0x78, 0x19, 0x69, 0xcd, 0xba, 0x82, + 0x4d, 0x4a, 0xfe, 0x88, 0x7b, 0x0b, 0x1f, 0x6b, 0xc7, 0x1d, 0x3d, 0x89, 0xb4, 0x4f, 0xe0, 0x1b, + 0x48, 0xd3, 0x30, 0x14, 0xbb, 0x5b, 0x1b, 0x3e, 0xf9, 0xf2, 0xcb, 0xcf, 0x3d, 0xcd, 0x97, 0x09, + 0x7d, 0xc1, 0x73, 0x2d, 0x18, 0x49, 0x28, 0x7e, 0x1d, 0xc7, 0x54, 0x91, 0x31, 0x4e, 0x29, 0xa3, + 0x32, 0x93, 0xa8, 0x10, 0x5c, 0x71, 0xff, 0xd0, 0x20, 0x64, 0x11, 0xb2, 0xa8, 0x7f, 0x90, 0xf2, + 0x94, 0x1b, 0x81, 0xeb, 0xaf, 0x06, 0xf7, 0xcf, 0xdb, 0x8b, 0xb1, 0x16, 0x6c, 0x46, 0x72, 0xae, + 0x99, 0xb2, 0x30, 0x6c, 0x87, 0xb4, 0xe0, 0xc9, 0x62, 0x66, 0x78, 0xc2, 0xd9, 0x3c, 0x4b, 0x2d, + 0x1f, 0xb6, 0xf3, 0x82, 0x08, 0x92, 0xdb, 0x41, 0x87, 0xdf, 0xc0, 0xed, 0x4d, 0x9b, 0xd1, 0x1f, + 0x14, 0x51, 0xd4, 0xbf, 0x74, 0xbb, 0x0d, 0x08, 0xc0, 0x00, 0x8c, 0xbc, 0xc9, 0x11, 0x6a, 0x7d, + 0x0a, 0xba, 0x33, 0x28, 0xda, 0x5d, 0x7d, 0x1e, 0x3b, 0xf7, 0xf6, 0x8a, 0xff, 0xe8, 0xee, 0xff, + 0x1b, 0x26, 0xd8, 0x31, 0x9d, 0xb3, 0x2d, 0x9d, 0x9b, 0xda, 0x47, 0x5a, 0xb0, 0x6b, 0xa3, 0x6d, + 0x70, 0x8f, 0xfe, 0x3d, 0xf6, 0x6f, 0xdd, 0xde, 0xaf, 0x7d, 0xc8, 0xa0, 0x33, 0xe8, 0x8c, 0xbc, + 0xc9, 0xc9, 0x96, 0x68, 0x7d, 0xf1, 0xca, 0x48, 0xdb, 0xf3, 0xe2, 0xcd, 0x89, 0x8c, 0xa6, 0xab, + 0x12, 0x82, 0x75, 0x09, 0xc1, 0x57, 0x09, 0xc1, 0x7b, 0x05, 0x9d, 0x75, 0x05, 0x9d, 0x8f, 0x0a, + 0x3a, 0x4f, 0x61, 0x9a, 0xa9, 0x85, 0x8e, 0x51, 0xc2, 0x73, 0x6c, 0xca, 0xe1, 0x33, 0xcf, 0x49, + 0xc6, 0x9a, 0x1f, 0xfc, 0xb6, 0xd9, 0xa5, 0x5a, 0x16, 0x54, 0xc6, 0x5d, 0xb3, 0xc3, 0x8b, 0x9f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xa7, 0xc1, 0x23, 0x6e, 0x13, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/furnace/types/query.pb.go b/x/furnace/types/query.pb.go index 53506c2e..dca93864 100644 --- a/x/furnace/types/query.pb.go +++ b/x/furnace/types/query.pb.go @@ -6,7 +6,6 @@ package types import ( context "context" fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -392,45 +391,45 @@ func init() { func init() { proto.RegisterFile("mycel/furnace/v1beta1/query.proto", fileDescriptor_781f6e2e484d56b5) } var fileDescriptor_781f6e2e484d56b5 = []byte{ - // 597 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0xe3, 0xd2, 0xe4, 0xb0, 0x08, 0x21, 0x2d, 0x41, 0x02, 0x0b, 0xdc, 0xd6, 0x07, 0x0a, - 0x11, 0xf1, 0x92, 0xa0, 0x12, 0x21, 0x84, 0x50, 0x82, 0x20, 0x57, 0xc8, 0x81, 0x03, 0x97, 0x6a, - 0xed, 0x6e, 0x5d, 0x4b, 0xf6, 0xae, 0xeb, 0x3f, 0xa8, 0x11, 0xe2, 0xc2, 0x13, 0x20, 0xf5, 0x39, - 0xe0, 0xc0, 0x0b, 0x70, 0xe1, 0xd0, 0x63, 0x25, 0x2e, 0x9c, 0x10, 0x4a, 0x78, 0x10, 0xe4, 0xdd, - 0x49, 0x62, 0x12, 0x3b, 0x4d, 0xb8, 0xd9, 0xb3, 0xdf, 0x37, 0xf3, 0xdb, 0xdd, 0x99, 0x45, 0x3b, - 0xc1, 0xd0, 0x61, 0x3e, 0x39, 0x4c, 0x23, 0x4e, 0x1d, 0x46, 0xde, 0xb5, 0x6c, 0x96, 0xd0, 0x16, - 0x39, 0x4e, 0x59, 0x34, 0xb4, 0xc2, 0x48, 0x24, 0x02, 0x5f, 0x97, 0x12, 0x0b, 0x24, 0x16, 0x48, - 0xf4, 0x86, 0x23, 0xe2, 0x40, 0xc4, 0xc4, 0xa6, 0x31, 0x53, 0xfa, 0xa9, 0x3b, 0xa4, 0xae, 0xc7, - 0x69, 0xe2, 0x09, 0xae, 0x52, 0xe8, 0x46, 0x5e, 0x3b, 0x51, 0x39, 0xc2, 0x9b, 0xac, 0xd7, 0x5d, - 0xe1, 0x0a, 0xf9, 0x49, 0xb2, 0x2f, 0x88, 0xde, 0x72, 0x85, 0x70, 0x7d, 0x46, 0x68, 0xe8, 0x11, - 0xca, 0xb9, 0x48, 0x64, 0xca, 0x18, 0x56, 0x77, 0x8b, 0xc9, 0xed, 0x34, 0xe2, 0xfb, 0x34, 0x10, - 0x29, 0x4f, 0x40, 0xd8, 0x2c, 0x16, 0xb2, 0x50, 0x38, 0x47, 0xfb, 0x52, 0xee, 0x08, 0x7e, 0xe8, - 0xb9, 0x20, 0x37, 0x8b, 0xe5, 0x21, 0x8d, 0x68, 0x00, 0xb5, 0xcd, 0x3a, 0xc2, 0xaf, 0xb3, 0x1d, - 0xbf, 0x92, 0xc1, 0x01, 0x3b, 0x4e, 0x59, 0x9c, 0x98, 0x03, 0x74, 0xed, 0x9f, 0x68, 0x1c, 0x0a, - 0x1e, 0x33, 0xfc, 0x04, 0xd5, 0x94, 0xf9, 0x86, 0xb6, 0xad, 0xdd, 0xbd, 0xdc, 0xbe, 0x6d, 0x15, - 0x1e, 0xa8, 0xa5, 0x6c, 0xbd, 0xcd, 0xb3, 0x5f, 0x5b, 0x95, 0x01, 0x58, 0xcc, 0x6d, 0x64, 0xc8, - 0x9c, 0x7d, 0x96, 0xbc, 0xc8, 0x80, 0x7b, 0x69, 0xc4, 0x9f, 0x4b, 0xdc, 0x49, 0xd5, 0x21, 0xda, - 0x2a, 0x55, 0x00, 0xc1, 0x1b, 0x74, 0x75, 0x6e, 0x09, 0x50, 0xee, 0x94, 0xa0, 0xcc, 0xa9, 0x81, - 0x69, 0x3e, 0x89, 0xd9, 0x42, 0x37, 0x27, 0xa5, 0xb3, 0x68, 0x57, 0x9e, 0x3a, 0x70, 0xe1, 0x3a, - 0xaa, 0x7a, 0xfc, 0x80, 0x9d, 0xc8, 0x52, 0x9b, 0x03, 0xf5, 0x63, 0x32, 0xa4, 0x17, 0x59, 0x00, - 0xb4, 0x8f, 0x90, 0x3d, 0x8d, 0x02, 0xe3, 0x4e, 0x09, 0xe3, 0xcc, 0x0e, 0x78, 0x39, 0xab, 0xe9, - 0x00, 0x59, 0xd7, 0xf7, 0x17, 0xc9, 0x5e, 0x22, 0x34, 0xeb, 0xd0, 0xe9, 0x49, 0xa8, 0x16, 0xb5, - 0xb2, 0x16, 0xb5, 0x54, 0xfb, 0xcf, 0x2e, 0xc6, 0x65, 0xe0, 0x1d, 0xe4, 0x9c, 0xe6, 0x17, 0x0d, - 0x36, 0x33, 0x57, 0xa5, 0x64, 0x33, 0x97, 0xfe, 0x73, 0x33, 0x59, 0xa2, 0x1c, 0xef, 0x86, 0xe4, - 0xdd, 0xbd, 0x90, 0x57, 0x51, 0xe4, 0x81, 0xdb, 0xdf, 0xab, 0xa8, 0x2a, 0x81, 0xf1, 0xa9, 0x86, - 0x6a, 0xaa, 0xdf, 0xf0, 0xbd, 0x12, 0xa4, 0xc5, 0x06, 0xd7, 0x1b, 0xab, 0x48, 0x55, 0x5d, 0xb3, - 0xfd, 0xf1, 0xc7, 0x9f, 0xd3, 0x8d, 0xfb, 0xb8, 0x41, 0xa4, 0xa7, 0x79, 0x20, 0x02, 0xea, 0x71, - 0xb2, 0x6c, 0xb8, 0xf0, 0x37, 0x6d, 0xa1, 0x51, 0xf1, 0xde, 0xb2, 0x9a, 0xa5, 0x53, 0xa1, 0x3f, - 0x5a, 0xd7, 0x06, 0xd8, 0x4f, 0x25, 0x76, 0x07, 0xef, 0xad, 0x82, 0xbd, 0xf0, 0x84, 0xe0, 0xaf, - 0x1a, 0x42, 0xb3, 0xbb, 0xc4, 0x0f, 0x2e, 0xa0, 0x58, 0xe8, 0x4d, 0xbd, 0xb5, 0x86, 0x03, 0x90, - 0x9f, 0x49, 0xe4, 0xc7, 0xb8, 0xb3, 0x0a, 0x72, 0xee, 0x79, 0x24, 0xef, 0xe5, 0x48, 0x7e, 0xc0, - 0x9f, 0x35, 0x74, 0x65, 0x96, 0xb7, 0xeb, 0xfb, 0xcb, 0xb9, 0x8b, 0x66, 0x6a, 0x39, 0x77, 0xe1, - 0x7c, 0x98, 0x1d, 0xc9, 0xdd, 0xc2, 0x64, 0x4d, 0xee, 0x5e, 0xff, 0x6c, 0x64, 0x68, 0xe7, 0x23, - 0x43, 0xfb, 0x3d, 0x32, 0xb4, 0x4f, 0x63, 0xa3, 0x72, 0x3e, 0x36, 0x2a, 0x3f, 0xc7, 0x46, 0xe5, - 0x6d, 0xd3, 0xf5, 0x92, 0xa3, 0xd4, 0xb6, 0x1c, 0x11, 0x14, 0x25, 0x3d, 0x99, 0xa6, 0x4d, 0x86, - 0x21, 0x8b, 0xed, 0x9a, 0x7c, 0xcd, 0x1f, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xb2, 0x9b, 0x17, - 0xc4, 0x05, 0x07, 0x00, 0x00, + // 594 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0xc7, 0xe3, 0xd2, 0xe4, 0xb0, 0x15, 0xaa, 0x58, 0x82, 0x04, 0x16, 0xb8, 0xad, 0x0f, 0x14, + 0x22, 0xe2, 0x25, 0x41, 0x25, 0x42, 0x08, 0xa1, 0x04, 0x41, 0x38, 0x42, 0x4e, 0x88, 0x4b, 0xb5, + 0x76, 0x37, 0xae, 0x25, 0x7b, 0xd7, 0xf5, 0x07, 0x6a, 0x54, 0x71, 0xe1, 0x09, 0x90, 0xfa, 0x1c, + 0x08, 0x89, 0x17, 0xe0, 0xc2, 0xa1, 0xc7, 0x4a, 0x5c, 0x38, 0x21, 0x94, 0xf0, 0x20, 0x28, 0xbb, + 0xd3, 0x7c, 0xda, 0x69, 0xc2, 0x6d, 0x33, 0xf9, 0xff, 0x67, 0x7e, 0xb3, 0x3b, 0x63, 0xb4, 0x13, + 0xf4, 0x1c, 0xe6, 0x93, 0x6e, 0x1a, 0x71, 0xea, 0x30, 0xf2, 0xa1, 0x66, 0xb3, 0x84, 0xd6, 0xc8, + 0x51, 0xca, 0xa2, 0x9e, 0x15, 0x46, 0x22, 0x11, 0xf8, 0x86, 0x94, 0x58, 0x20, 0xb1, 0x40, 0xa2, + 0x57, 0x1c, 0x11, 0x07, 0x22, 0x26, 0x36, 0x8d, 0x99, 0xd2, 0x8f, 0xdc, 0x21, 0x75, 0x3d, 0x4e, + 0x13, 0x4f, 0x70, 0x95, 0x42, 0x2f, 0xbb, 0xc2, 0x15, 0xf2, 0x48, 0x86, 0x27, 0x88, 0xde, 0x76, + 0x85, 0x70, 0x7d, 0x46, 0x68, 0xe8, 0x11, 0xca, 0xb9, 0x48, 0xa4, 0x25, 0x86, 0x7f, 0x77, 0xb3, + 0xc9, 0xec, 0x34, 0xe2, 0xfb, 0x34, 0x10, 0x29, 0x4f, 0x40, 0x58, 0xcd, 0x16, 0xb2, 0x50, 0x38, + 0x87, 0xfb, 0x52, 0xee, 0x08, 0xde, 0xf5, 0x5c, 0x90, 0x9b, 0xd9, 0xf2, 0x90, 0x46, 0x34, 0x80, + 0xda, 0x66, 0x19, 0xe1, 0xb7, 0xc3, 0x8e, 0xde, 0xc8, 0x60, 0x87, 0x1d, 0xa5, 0x2c, 0x4e, 0xcc, + 0x0e, 0xba, 0x3e, 0x15, 0x8d, 0x43, 0xc1, 0x63, 0x86, 0x9f, 0xa2, 0x92, 0x32, 0xdf, 0xd4, 0xb6, + 0xb5, 0x7b, 0x1b, 0xf5, 0x3b, 0x56, 0xe6, 0x85, 0x59, 0xca, 0xd6, 0x5a, 0x3f, 0xfb, 0xbd, 0x55, + 0xe8, 0x80, 0xc5, 0xdc, 0x46, 0x86, 0xcc, 0xd9, 0x66, 0xc9, 0xcb, 0x21, 0x70, 0x2b, 0x8d, 0xf8, + 0x0b, 0x89, 0x7b, 0x51, 0xf5, 0x04, 0x6d, 0xe5, 0x2a, 0x80, 0xe0, 0x1d, 0xba, 0x36, 0xd7, 0x2d, + 0xc0, 0xdc, 0xcd, 0x81, 0x99, 0x49, 0x05, 0x54, 0x9b, 0x6c, 0x3a, 0x6c, 0xd6, 0xd0, 0xad, 0x8b, + 0xe2, 0xc3, 0x68, 0x53, 0xde, 0x3b, 0x90, 0xe1, 0x32, 0x2a, 0x7a, 0xfc, 0x80, 0x1d, 0xcb, 0x52, + 0xeb, 0x1d, 0xf5, 0xc3, 0xec, 0x22, 0x3d, 0xcb, 0x02, 0xa8, 0xaf, 0xd1, 0xc6, 0xc4, 0x0b, 0x02, + 0xe4, 0x4e, 0x0e, 0xe4, 0xd8, 0x0f, 0x7c, 0xc8, 0x1e, 0x45, 0x4c, 0x07, 0xd0, 0x9a, 0xbe, 0x3f, + 0x8f, 0xf6, 0x0a, 0xa1, 0xf1, 0x10, 0x8e, 0xae, 0x42, 0x4d, 0xac, 0x35, 0x9c, 0x58, 0x4b, 0x4d, + 0xf8, 0xf8, 0x6d, 0x5c, 0x06, 0xde, 0xce, 0x84, 0xd3, 0xfc, 0xaa, 0x41, 0x37, 0x33, 0x55, 0xf2, + 0xba, 0xb9, 0xf2, 0x9f, 0xdd, 0xe0, 0xf6, 0x14, 0xf0, 0x9a, 0x04, 0xde, 0xbd, 0x14, 0x58, 0x61, + 0x4c, 0x12, 0xd7, 0x7f, 0x14, 0x51, 0x51, 0x12, 0xe3, 0x53, 0x0d, 0x95, 0xd4, 0xcc, 0xe1, 0xfb, + 0x39, 0x48, 0xf3, 0x43, 0xae, 0x57, 0x96, 0x91, 0xaa, 0xba, 0x66, 0xfd, 0xd3, 0xcf, 0xbf, 0xa7, + 0x6b, 0x0f, 0x70, 0x85, 0x48, 0x4f, 0xf5, 0x40, 0x04, 0xd4, 0xe3, 0x64, 0xd1, 0x82, 0xe1, 0xef, + 0x1a, 0xda, 0x9c, 0x19, 0x3e, 0xbc, 0xb7, 0xa8, 0x66, 0xee, 0x66, 0xe8, 0x8f, 0x57, 0xb5, 0x01, + 0xf6, 0x33, 0x89, 0xdd, 0xc0, 0x7b, 0xcb, 0x60, 0xcf, 0x2d, 0x16, 0xfe, 0xa6, 0x21, 0x34, 0x7e, + 0x4b, 0xfc, 0xf0, 0x12, 0x8a, 0xb9, 0xe1, 0xd4, 0x6b, 0x2b, 0x38, 0x00, 0xf9, 0xb9, 0x44, 0x7e, + 0x82, 0x1b, 0xcb, 0x20, 0x4f, 0x8c, 0x24, 0x39, 0x91, 0x4b, 0xf9, 0x11, 0x7f, 0xd1, 0xd0, 0xd5, + 0x71, 0xde, 0xa6, 0xef, 0x2f, 0xe6, 0xce, 0x5a, 0xaa, 0xc5, 0xdc, 0x99, 0x0b, 0x62, 0x36, 0x24, + 0x77, 0x0d, 0x93, 0x15, 0xb9, 0x5b, 0xed, 0xb3, 0xbe, 0xa1, 0x9d, 0xf7, 0x0d, 0xed, 0x4f, 0xdf, + 0xd0, 0x3e, 0x0f, 0x8c, 0xc2, 0xf9, 0xc0, 0x28, 0xfc, 0x1a, 0x18, 0x85, 0xf7, 0x55, 0xd7, 0x4b, + 0x0e, 0x53, 0xdb, 0x72, 0x44, 0x90, 0x95, 0xf4, 0x78, 0x94, 0x36, 0xe9, 0x85, 0x2c, 0xb6, 0x4b, + 0xf2, 0x8b, 0xfe, 0xe8, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x43, 0xfa, 0x55, 0x1f, 0xe9, 0x06, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/registry/types/genesis.pb.go b/x/registry/types/genesis.pb.go index 5ea374bf..05161713 100644 --- a/x/registry/types/genesis.pb.go +++ b/x/registry/types/genesis.pb.go @@ -101,28 +101,29 @@ func init() { } var fileDescriptor_ae1403d0e8816949 = []byte{ - // 330 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x91, 0x4f, 0x4b, 0xf3, 0x30, - 0x1c, 0xc7, 0xdb, 0x6d, 0xec, 0x90, 0x3d, 0xf0, 0x48, 0x10, 0x19, 0x3b, 0xc4, 0xa1, 0xa2, 0xf3, - 0xb0, 0xc4, 0xcd, 0xab, 0xa7, 0x31, 0xd0, 0x83, 0xa0, 0x38, 0x11, 0xf4, 0x52, 0xba, 0x2d, 0x74, - 0x85, 0xb5, 0x09, 0x4d, 0x9c, 0xf6, 0x5d, 0xf8, 0xb2, 0x76, 0xdc, 0xd1, 0x93, 0x8c, 0xf6, 0x8d, - 0xc8, 0x92, 0x0c, 0xe9, 0x6c, 0xf0, 0x96, 0xc0, 0xe7, 0xf7, 0xf9, 0xfe, 0xfe, 0x80, 0x93, 0x28, - 0x9d, 0xd0, 0x39, 0x49, 0x68, 0x10, 0x0a, 0x99, 0xa4, 0x64, 0xd1, 0x1b, 0x53, 0xe9, 0xf7, 0x48, - 0x40, 0x63, 0x2a, 0x42, 0x81, 0x79, 0xc2, 0x24, 0x83, 0x07, 0x8a, 0xc2, 0x5b, 0x0a, 0x1b, 0xaa, - 0xb5, 0x1f, 0xb0, 0x80, 0x29, 0x84, 0x6c, 0x5e, 0x9a, 0x6e, 0x75, 0x2d, 0xce, 0x29, 0x8b, 0xfc, - 0x30, 0xf6, 0xd8, 0x5b, 0x4c, 0x13, 0x31, 0x0b, 0xb9, 0xc1, 0x8f, 0x2d, 0x38, 0xf7, 0x13, 0x3f, - 0x32, 0x1d, 0xb4, 0x2e, 0x2c, 0x90, 0xa0, 0x13, 0x16, 0x4f, 0xbd, 0x39, 0x5d, 0xd0, 0xb9, 0xa7, - 0x03, 0xfe, 0xe8, 0x42, 0x32, 0x5e, 0x82, 0x1f, 0xad, 0x2b, 0xe0, 0xdf, 0xb5, 0x1e, 0x7a, 0x24, - 0x7d, 0x49, 0xe1, 0x15, 0xa8, 0xeb, 0x0e, 0x9a, 0x6e, 0xdb, 0xed, 0x34, 0xfa, 0x08, 0x97, 0x2f, - 0x01, 0xdf, 0x2b, 0x6a, 0x50, 0x5b, 0x7e, 0x1d, 0x3a, 0x0f, 0xa6, 0x06, 0x3e, 0x81, 0xff, 0x92, - 0xf1, 0xdb, 0x4d, 0xce, 0x50, 0xc5, 0x88, 0x66, 0xa5, 0x5d, 0xed, 0x34, 0xfa, 0xa7, 0x36, 0xcd, - 0x63, 0x01, 0x37, 0xba, 0x5d, 0x09, 0xf4, 0x00, 0xd4, 0x23, 0x17, 0xd4, 0x55, 0xa5, 0x3e, 0xb7, - 0xa9, 0x47, 0xbb, 0x15, 0xc6, 0x5e, 0xa2, 0x82, 0xcf, 0x60, 0x4f, 0xef, 0xe5, 0x6e, 0x7b, 0x26, - 0xd1, 0xac, 0x29, 0xfd, 0x99, 0x4d, 0x3f, 0x2c, 0xf2, 0x46, 0xfe, 0x4b, 0x33, 0xb8, 0x59, 0x66, - 0xc8, 0x5d, 0x65, 0xc8, 0x5d, 0x67, 0xc8, 0xfd, 0xc8, 0x91, 0xb3, 0xca, 0x91, 0xf3, 0x99, 0x23, - 0xe7, 0x05, 0x07, 0xa1, 0x9c, 0xbd, 0x8e, 0xf1, 0x84, 0x45, 0x44, 0x85, 0x74, 0x75, 0xb1, 0xfe, - 0x90, 0xf7, 0x9f, 0x2b, 0xca, 0x94, 0x53, 0x31, 0xae, 0xab, 0x9b, 0x5d, 0x7e, 0x07, 0x00, 0x00, - 0xff, 0xff, 0x34, 0xdf, 0xf4, 0x1c, 0xbe, 0x02, 0x00, 0x00, + // 337 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x91, 0xc1, 0x4b, 0x3a, 0x41, + 0x14, 0xc7, 0x77, 0x55, 0x3c, 0xac, 0x3f, 0xf8, 0xe5, 0x20, 0xb1, 0x78, 0x98, 0xa4, 0xa2, 0xec, + 0xe0, 0x4c, 0xda, 0xb5, 0x93, 0x04, 0x75, 0x08, 0x8a, 0xec, 0x10, 0x5e, 0x64, 0xd4, 0x61, 0x5d, + 0x70, 0x77, 0x86, 0x7d, 0x93, 0xe5, 0x7f, 0xd1, 0x9f, 0xe5, 0xd1, 0x63, 0xa7, 0x08, 0xa5, 0xff, + 0x23, 0x9c, 0x19, 0x09, 0xcd, 0xa1, 0xdb, 0xee, 0xdb, 0xcf, 0xf7, 0xf3, 0xde, 0xdb, 0x17, 0x1c, + 0x27, 0xd3, 0x01, 0x1f, 0xd3, 0x8c, 0x47, 0x31, 0xa8, 0x6c, 0x4a, 0x27, 0xcd, 0x3e, 0x57, 0xac, + 0x49, 0x23, 0x9e, 0x72, 0x88, 0x81, 0xc8, 0x4c, 0x28, 0x81, 0xf6, 0x35, 0x45, 0xd6, 0x14, 0xb1, + 0x54, 0xb5, 0x12, 0x89, 0x48, 0x68, 0x84, 0xae, 0x9e, 0x0c, 0x5d, 0x6d, 0x38, 0x9c, 0x43, 0x91, + 0xb0, 0x38, 0xed, 0x89, 0x97, 0x94, 0x67, 0x30, 0x8a, 0xa5, 0xc5, 0x8f, 0x1c, 0xb8, 0x64, 0x19, + 0x4b, 0xec, 0x04, 0xd5, 0x73, 0x07, 0x04, 0x7c, 0x20, 0xd2, 0x61, 0x6f, 0xcc, 0x27, 0x7c, 0xdc, + 0x33, 0x0d, 0xfe, 0x98, 0x42, 0x09, 0xb9, 0x03, 0x3f, 0xfc, 0xca, 0x05, 0xff, 0xae, 0xcd, 0xd2, + 0x1d, 0xc5, 0x14, 0x47, 0x97, 0x41, 0xd1, 0x4c, 0x10, 0xfa, 0x35, 0xbf, 0x5e, 0x6a, 0x61, 0xb2, + 0xfb, 0x27, 0x90, 0x7b, 0x4d, 0xb5, 0x0b, 0xb3, 0x8f, 0x03, 0xef, 0xc1, 0x66, 0xd0, 0x53, 0x50, + 0xde, 0x6e, 0x04, 0x61, 0xae, 0x96, 0xaf, 0x97, 0x5a, 0x27, 0x2e, 0xd1, 0xa3, 0x90, 0xb7, 0x2b, + 0xfe, 0x4a, 0xe3, 0x56, 0xf8, 0x5f, 0x6d, 0x54, 0x01, 0xb1, 0xa0, 0xb2, 0x63, 0x69, 0x08, 0xf3, + 0x5a, 0x7e, 0xe6, 0x92, 0x77, 0x74, 0xe6, 0xb7, 0x1f, 0xc1, 0xf6, 0x07, 0x40, 0xdd, 0xa0, 0xbc, + 0x7d, 0x2b, 0x08, 0x0b, 0xda, 0x7f, 0xea, 0xf2, 0x9b, 0xec, 0xdd, 0x9a, 0xb7, 0xf6, 0xbd, 0xe1, + 0x66, 0x19, 0xda, 0x37, 0xb3, 0x05, 0xf6, 0xe7, 0x0b, 0xec, 0x7f, 0x2e, 0xb0, 0xff, 0xb6, 0xc4, + 0xde, 0x7c, 0x89, 0xbd, 0xf7, 0x25, 0xf6, 0xba, 0x24, 0x8a, 0xd5, 0xe8, 0xb9, 0x4f, 0x06, 0x22, + 0xa1, 0xba, 0x49, 0xc3, 0x84, 0xcd, 0x0b, 0x7d, 0xfd, 0x39, 0xa5, 0x9a, 0x4a, 0x0e, 0xfd, 0xa2, + 0x3e, 0xdc, 0xc5, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xce, 0x94, 0x3e, 0x91, 0xc3, 0x02, 0x00, + 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/registry/types/params.pb.go b/x/registry/types/params.pb.go index 048264e3..cb484bd6 100644 --- a/x/registry/types/params.pb.go +++ b/x/registry/types/params.pb.go @@ -85,22 +85,24 @@ func init() { } var fileDescriptor_848259ee3558db2c = []byte{ - // 232 bytes of a gzipped FileDescriptorProto + // 265 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xce, 0xad, 0x4c, 0x4e, 0xcd, 0xd1, 0x2f, 0x4a, 0x4d, 0xcf, 0x2c, 0x2e, 0x29, 0xaa, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x03, 0x2b, 0xd2, 0x83, 0x29, 0xd2, 0x83, 0x2a, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, - 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0x95, 0x5a, 0x18, 0xb9, 0xd8, 0x02, 0xc0, 0xda, 0x85, 0x4c, - 0xb8, 0x44, 0x8b, 0x4b, 0x12, 0xb3, 0x33, 0xf3, 0xd2, 0x3d, 0xf3, 0xd2, 0x72, 0x12, 0x4b, 0x32, - 0xf3, 0xf3, 0x82, 0x40, 0xa4, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x53, 0x10, 0x76, 0x49, 0x21, 0x3b, - 0x2e, 0xa9, 0x92, 0xfc, 0x02, 0x9f, 0xd4, 0xb2, 0xd4, 0x1c, 0x97, 0xfc, 0xdc, 0xc4, 0xcc, 0x3c, - 0xa7, 0xc4, 0xe2, 0x54, 0xb7, 0xd4, 0x54, 0xcf, 0xbc, 0xd0, 0xe2, 0x14, 0x09, 0x26, 0x05, 0x46, - 0x0d, 0xe6, 0x20, 0x3c, 0x2a, 0xac, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x38, 0xf1, 0x48, - 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, - 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xbd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, - 0xe4, 0xfc, 0x5c, 0x7d, 0xb0, 0xcf, 0x74, 0x53, 0xc0, 0x86, 0x40, 0x38, 0xfa, 0x15, 0x88, 0xd0, - 0x28, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xfb, 0xcb, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, - 0x75, 0x3d, 0xc4, 0xf0, 0x2c, 0x01, 0x00, 0x00, + 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0x95, 0x7a, 0x18, 0xb9, 0xd8, 0x02, 0xc0, 0xda, 0x85, 0xcc, + 0xb8, 0xc4, 0x8b, 0x4b, 0x12, 0xb3, 0x33, 0xf3, 0xd2, 0xe3, 0x33, 0xf3, 0xd2, 0x72, 0x12, 0x4b, + 0x32, 0xf3, 0xf3, 0xe2, 0x8b, 0x40, 0x94, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x53, 0x90, 0x28, 0x54, + 0xda, 0x13, 0x26, 0x1b, 0x04, 0x22, 0x85, 0x5c, 0xb8, 0x14, 0x4a, 0xf2, 0x0b, 0xe2, 0x73, 0x52, + 0xcb, 0x52, 0x73, 0xe2, 0x53, 0xf2, 0x73, 0x13, 0x33, 0xf3, 0xe2, 0x93, 0x12, 0x8b, 0x53, 0xe3, + 0xd3, 0x52, 0x53, 0xe3, 0x33, 0xf3, 0xe2, 0x4b, 0x8b, 0x53, 0x24, 0x98, 0x14, 0x18, 0x35, 0x98, + 0x83, 0xa4, 0x4a, 0xf2, 0x0b, 0x7c, 0x40, 0xca, 0x5c, 0xc0, 0xaa, 0x9c, 0x12, 0x8b, 0x53, 0xdd, + 0x52, 0x53, 0x3d, 0xf3, 0x42, 0x8b, 0x53, 0xac, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x38, + 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, + 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xbd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xb0, 0x0f, 0x75, 0x21, 0x56, 0x41, 0x38, 0xfa, 0x15, 0x88, + 0x50, 0x29, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xfb, 0xcf, 0x18, 0x10, 0x00, 0x00, 0xff, + 0xff, 0x17, 0x38, 0xc6, 0x09, 0x34, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/registry/types/query.pb.go b/x/registry/types/query.pb.go index c896b9a0..b3eb27d0 100644 --- a/x/registry/types/query.pb.go +++ b/x/registry/types/query.pb.go @@ -1006,81 +1006,83 @@ func init() { } var fileDescriptor_6fac5bfae411c2d0 = []byte{ - // 1173 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xdd, 0x6e, 0xdc, 0x44, - 0x14, 0x8e, 0x93, 0x6d, 0x68, 0x0f, 0x34, 0x25, 0x43, 0xa8, 0x36, 0x2b, 0x70, 0xc2, 0x80, 0x9a, - 0xd0, 0x2a, 0x76, 0xd3, 0xa8, 0x3f, 0x94, 0x04, 0x48, 0x1a, 0xda, 0x22, 0x85, 0x52, 0x9c, 0x48, - 0xa8, 0x20, 0x14, 0x79, 0xb3, 0x13, 0xc7, 0xe0, 0xf5, 0xb8, 0x1e, 0x6f, 0x48, 0x58, 0xed, 0x0d, - 0x77, 0x70, 0x55, 0x09, 0xf1, 0x08, 0xdc, 0xc0, 0x43, 0x00, 0x02, 0x44, 0xb9, 0x40, 0xaa, 0xd4, - 0x1b, 0xae, 0x28, 0x24, 0xbc, 0x00, 0x6f, 0x80, 0x3c, 0x33, 0xce, 0xae, 0xbd, 0xb6, 0xf7, 0x27, - 0x7b, 0xb5, 0xe3, 0x99, 0xf3, 0xf3, 0x7d, 0xe7, 0x9c, 0x99, 0x73, 0x16, 0x70, 0x75, 0x7f, 0x8b, - 0x38, 0xba, 0x4f, 0x2c, 0x9b, 0x05, 0xfe, 0xbe, 0xbe, 0x3b, 0x5f, 0x26, 0x81, 0x39, 0xaf, 0xdf, - 0xaf, 0x11, 0x7f, 0x5f, 0xf3, 0x7c, 0x1a, 0x50, 0x74, 0x96, 0xcb, 0x68, 0x91, 0x8c, 0x26, 0x65, - 0x4a, 0xe7, 0xb7, 0x28, 0xab, 0x52, 0xa6, 0x97, 0x4d, 0x46, 0x84, 0xc2, 0x91, 0xba, 0x67, 0x5a, - 0xb6, 0x6b, 0x06, 0x36, 0x75, 0x85, 0x8d, 0x92, 0xda, 0x2a, 0x1b, 0x49, 0x6d, 0x51, 0x3b, 0x3a, - 0x9f, 0xb0, 0xa8, 0x45, 0xf9, 0x52, 0x0f, 0x57, 0x72, 0xf7, 0x05, 0x8b, 0x52, 0xcb, 0x21, 0xba, - 0xe9, 0xd9, 0xba, 0xe9, 0xba, 0x34, 0xe0, 0x26, 0x99, 0x3c, 0x9d, 0x92, 0xa7, 0xfc, 0xab, 0x5c, - 0xdb, 0xd6, 0x03, 0xbb, 0x4a, 0x58, 0x60, 0x56, 0x3d, 0x29, 0x30, 0x97, 0x41, 0xae, 0x42, 0xab, - 0xa6, 0xed, 0x6e, 0xd2, 0xcf, 0x5c, 0xe2, 0xb3, 0x1d, 0x3b, 0x12, 0x7f, 0x39, 0x43, 0xdc, 0x33, - 0x7d, 0xb3, 0x1a, 0x39, 0xbd, 0x98, 0x21, 0xc4, 0xc8, 0x16, 0x75, 0x2b, 0x9b, 0x0e, 0xd9, 0x25, - 0xce, 0xa6, 0x70, 0xd0, 0x01, 0x45, 0x40, 0xbd, 0x14, 0x71, 0x3c, 0x01, 0xe8, 0xfd, 0x30, 0x96, - 0x77, 0xb9, 0x57, 0x83, 0xdc, 0xaf, 0x11, 0x16, 0xe0, 0x75, 0x78, 0x2e, 0xb6, 0xcb, 0x3c, 0xea, - 0x32, 0x82, 0x16, 0x61, 0x54, 0xa0, 0x2b, 0x2a, 0xd3, 0xca, 0xec, 0xd3, 0x97, 0x54, 0x2d, 0x3d, - 0x57, 0x9a, 0xd0, 0x5b, 0x29, 0x3c, 0xfc, 0x6b, 0x6a, 0xc8, 0x90, 0x3a, 0x78, 0x01, 0x5e, 0xe4, - 0x46, 0x6f, 0x91, 0x60, 0x83, 0x7a, 0x6b, 0x21, 0x96, 0x55, 0x0e, 0x45, 0x7a, 0x45, 0x08, 0x0a, - 0xae, 0x59, 0x25, 0xdc, 0xf8, 0x29, 0x83, 0xaf, 0xf1, 0x2e, 0xa8, 0x59, 0x4a, 0x12, 0xd4, 0x06, - 0x8c, 0x05, 0xb1, 0x13, 0x09, 0xee, 0x5c, 0x16, 0xb8, 0xb8, 0x1d, 0x09, 0x32, 0x61, 0x03, 0x5b, - 0x12, 0xec, 0xb2, 0xe3, 0xa4, 0x83, 0xbd, 0x09, 0xd0, 0x2c, 0xbb, 0x23, 0x97, 0xa2, 0xee, 0xb4, - 0xb0, 0xee, 0x34, 0x51, 0xd4, 0xcd, 0x90, 0x58, 0x44, 0xea, 0x1a, 0x2d, 0x9a, 0xf8, 0x07, 0x45, - 0x32, 0x4c, 0xf1, 0x94, 0xc3, 0x70, 0xe4, 0xb8, 0x0c, 0xd1, 0xad, 0x18, 0x81, 0x61, 0x4e, 0x60, - 0xa6, 0x23, 0x01, 0x01, 0x29, 0xc6, 0xe0, 0x0e, 0x4c, 0x47, 0x29, 0x5a, 0xe7, 0x65, 0xd9, 0x5d, - 0x6a, 0xd1, 0x59, 0x5e, 0x4d, 0xc4, 0x0d, 0xb8, 0xf3, 0x53, 0x86, 0xfc, 0xc2, 0xdf, 0x28, 0x30, - 0x99, 0x62, 0x48, 0x06, 0xa3, 0x07, 0x4b, 0x68, 0x0d, 0xc6, 0xc8, 0x9e, 0x67, 0xfb, 0x1c, 0xe7, - 0xaa, 0x19, 0x90, 0xe2, 0x08, 0xa7, 0x59, 0xd2, 0xc4, 0x5d, 0xd6, 0xa2, 0xbb, 0xac, 0x6d, 0x44, - 0x77, 0x79, 0xe5, 0x64, 0x18, 0xac, 0x07, 0x4f, 0xa6, 0x14, 0x23, 0xa1, 0x8b, 0xbf, 0x52, 0xe0, - 0xa5, 0x1c, 0xa2, 0x12, 0x1f, 0x81, 0x71, 0x96, 0x3c, 0x94, 0xe5, 0x31, 0x9f, 0x95, 0xaf, 0x4c, - 0x6b, 0x32, 0x75, 0xed, 0x16, 0xf1, 0x27, 0x32, 0xe8, 0xcb, 0x8e, 0x93, 0x19, 0xf4, 0x41, 0x95, - 0xe8, 0xe3, 0x88, 0x78, 0xba, 0xb3, 0x7c, 0xe2, 0x23, 0x83, 0x25, 0x3e, 0xb8, 0xb2, 0xbd, 0xd2, - 0x7c, 0x59, 0x84, 0xe9, 0xf7, 0xa2, 0x07, 0x3a, 0x8a, 0xdf, 0x04, 0x9c, 0xe0, 0x8f, 0xb6, 0xac, - 0x35, 0xf1, 0x81, 0x3f, 0x87, 0xa9, 0x4c, 0x3d, 0x19, 0x8a, 0x0f, 0xe0, 0x4c, 0x25, 0x7e, 0x24, - 0xa3, 0x3f, 0x93, 0x15, 0x88, 0x84, 0x25, 0x49, 0x3f, 0x69, 0x05, 0xef, 0x34, 0xdf, 0x8a, 0x0c, - 0xcc, 0x83, 0xca, 0xf9, 0xcf, 0x8a, 0xa4, 0x99, 0xe6, 0x2a, 0x8f, 0xe6, 0xc8, 0xf1, 0x69, 0x0e, - 0x2e, 0xc7, 0xdf, 0x47, 0x95, 0x1b, 0x55, 0x17, 0xc7, 0xc3, 0xcf, 0x6e, 0x12, 0xd2, 0xc7, 0xe3, - 0x84, 0xae, 0x43, 0xd1, 0x6f, 0xb1, 0x72, 0x97, 0xf8, 0x36, 0xad, 0xbc, 0xe3, 0xde, 0x23, 0xa6, - 0xcf, 0x1f, 0x97, 0x82, 0x91, 0x79, 0x8e, 0x54, 0x00, 0x71, 0x46, 0x7c, 0xe2, 0x17, 0x0b, 0xdc, - 0x6e, 0xcb, 0x0e, 0xfe, 0x6d, 0x18, 0x70, 0x1e, 0x5a, 0x19, 0xf6, 0x57, 0xe0, 0xb4, 0xcd, 0xa2, - 0xc3, 0xb2, 0x23, 0x70, 0x9f, 0x34, 0xe2, 0x9b, 0xe8, 0x63, 0x18, 0xd9, 0x26, 0xa4, 0x38, 0xcc, - 0x13, 0x32, 0x19, 0x0b, 0x5e, 0x14, 0xb6, 0x1b, 0xd4, 0x76, 0x57, 0x2e, 0x86, 0x29, 0xf8, 0xee, - 0xc9, 0xd4, 0xac, 0x65, 0x07, 0x3b, 0xb5, 0xb2, 0xb6, 0x45, 0xab, 0xba, 0x9c, 0x9e, 0xc4, 0xcf, - 0x1c, 0xab, 0x7c, 0xaa, 0x07, 0xfb, 0x1e, 0x61, 0x5c, 0x81, 0x19, 0xa1, 0xdd, 0x63, 0xc5, 0x61, - 0x11, 0x26, 0xab, 0xe6, 0xde, 0x7a, 0xad, 0xdc, 0xce, 0x93, 0xf1, 0xb0, 0x14, 0x8c, 0x6c, 0x01, - 0x84, 0xe1, 0x19, 0xe2, 0xfb, 0xd4, 0x7f, 0x97, 0x30, 0x66, 0x5a, 0xa4, 0x78, 0x82, 0xc7, 0x31, - 0xb6, 0x87, 0xd7, 0xe0, 0x59, 0x1e, 0x48, 0x83, 0x3a, 0x47, 0x59, 0x56, 0x01, 0x44, 0x9d, 0xdd, - 0x69, 0xe6, 0xba, 0x65, 0x07, 0x15, 0xe1, 0x29, 0xb3, 0x52, 0xf1, 0x09, 0x63, 0x32, 0xe5, 0xd1, - 0x27, 0x9e, 0x81, 0xf1, 0x16, 0x6b, 0xcd, 0x3e, 0xe4, 0x53, 0xe7, 0xa8, 0x68, 0xc2, 0xf5, 0xa5, - 0x7f, 0x4e, 0xc3, 0x09, 0x2e, 0x89, 0xbe, 0x54, 0x60, 0x54, 0x0c, 0x41, 0xe8, 0x7c, 0xd6, 0x65, - 0x68, 0x9f, 0xbb, 0x4a, 0x17, 0xba, 0x92, 0x15, 0x08, 0xf0, 0xb9, 0x2f, 0x1e, 0xff, 0xfb, 0xf5, - 0xf0, 0x34, 0x52, 0xf5, 0xdc, 0x49, 0x12, 0xfd, 0xaa, 0xc0, 0x58, 0x7c, 0x22, 0x40, 0x97, 0x73, - 0xfd, 0x64, 0x0d, 0x68, 0xa5, 0x2b, 0xbd, 0xaa, 0x49, 0xa4, 0xab, 0x1c, 0xe9, 0x1b, 0x68, 0x51, - 0x20, 0x9d, 0x13, 0x51, 0xd7, 0xbb, 0x9c, 0x54, 0xf5, 0x7a, 0x78, 0x23, 0x1b, 0xe8, 0x27, 0x05, - 0xc6, 0xe3, 0x0e, 0x96, 0x1d, 0xa7, 0x03, 0x95, 0xac, 0xf1, 0xad, 0x03, 0x95, 0xcc, 0x59, 0x0c, - 0x2f, 0x71, 0x2a, 0x57, 0xd1, 0xe5, 0xbe, 0xa8, 0xa0, 0x3f, 0x14, 0x18, 0x6f, 0x6b, 0x7a, 0xe8, - 0x5a, 0xa7, 0xb8, 0x66, 0xb5, 0xf8, 0xd2, 0x6b, 0x7d, 0x68, 0x4a, 0x26, 0x37, 0x38, 0x93, 0x25, - 0xf4, 0xba, 0xde, 0xfd, 0x7f, 0x0c, 0x99, 0x0a, 0xbd, 0x2e, 0x5e, 0xc3, 0x06, 0xfa, 0x51, 0x81, - 0x89, 0x36, 0x17, 0x61, 0x5a, 0xae, 0x75, 0x8a, 0x6f, 0x9f, 0x94, 0xf2, 0x46, 0x10, 0xbc, 0xc0, - 0x29, 0xcd, 0xa1, 0x0b, 0x3d, 0x50, 0x42, 0xbf, 0x2b, 0x70, 0x26, 0xd1, 0x97, 0x50, 0xc7, 0x42, - 0x4f, 0xef, 0xbe, 0xa5, 0xab, 0x3d, 0xeb, 0x49, 0xe4, 0x6f, 0x73, 0xe4, 0x6f, 0xa2, 0xa5, 0xae, - 0xca, 0x2a, 0xf9, 0x8f, 0x52, 0xaf, 0xf3, 0x65, 0x03, 0xfd, 0xa2, 0x00, 0x4a, 0xb8, 0x08, 0x93, - 0xd1, 0xb1, 0xd8, 0xfb, 0xa2, 0x93, 0x3d, 0x19, 0xf4, 0x78, 0x4b, 0x92, 0x74, 0xd0, 0x7f, 0x0a, - 0x3c, 0x9f, 0xda, 0x03, 0x51, 0x7e, 0x71, 0xe4, 0x75, 0xf9, 0xd2, 0xf5, 0x7e, 0x54, 0x25, 0x1f, - 0x93, 0xf3, 0xf9, 0x08, 0xdd, 0xeb, 0x85, 0x4f, 0x6b, 0xff, 0xdb, 0xdc, 0x26, 0x24, 0x79, 0x79, - 0xf4, 0x7a, 0xb3, 0xf7, 0x37, 0xd0, 0xb7, 0x0a, 0x14, 0xc2, 0x06, 0x83, 0x66, 0x73, 0x71, 0xb6, - 0x74, 0xb4, 0xd2, 0xab, 0x5d, 0x48, 0x4a, 0x02, 0xb7, 0x39, 0x81, 0x15, 0xf4, 0x56, 0x57, 0x04, - 0xc2, 0x66, 0xa6, 0xd7, 0x9b, 0xbd, 0xb1, 0xa1, 0xd7, 0x65, 0x2f, 0x6c, 0xac, 0xdc, 0x7e, 0x78, - 0xa0, 0x2a, 0x8f, 0x0e, 0x54, 0xe5, 0xef, 0x03, 0x55, 0x79, 0x70, 0xa8, 0x0e, 0x3d, 0x3a, 0x54, - 0x87, 0xfe, 0x3c, 0x54, 0x87, 0x3e, 0xd4, 0x5a, 0x26, 0x88, 0x14, 0x2f, 0x7b, 0x4d, 0x3f, 0x7c, - 0x9a, 0x28, 0x8f, 0xf2, 0x7f, 0x5f, 0x0b, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x0e, 0xed, 0x45, - 0xd5, 0x15, 0x12, 0x00, 0x00, + // 1208 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x5b, 0x6f, 0xdc, 0x44, + 0x14, 0x8e, 0x93, 0x4d, 0x68, 0x4f, 0xc9, 0x6d, 0x1a, 0xaa, 0xcd, 0x52, 0xbc, 0xc1, 0x15, 0x4d, + 0x68, 0x15, 0x9b, 0x34, 0xea, 0x05, 0x68, 0xa8, 0x72, 0xa1, 0xa5, 0x12, 0x29, 0xc5, 0xa9, 0x10, + 0x05, 0x21, 0xcb, 0x9b, 0x9d, 0x38, 0x06, 0xdb, 0xe3, 0x7a, 0xbc, 0x25, 0xd1, 0x6a, 0x5f, 0x78, + 0x43, 0xe2, 0xa1, 0x12, 0x12, 0x3f, 0x81, 0x07, 0x1e, 0xf8, 0x0d, 0x54, 0x2a, 0x52, 0x79, 0x40, + 0x54, 0x42, 0x48, 0x3c, 0x51, 0x94, 0xf0, 0x07, 0xf8, 0x07, 0x95, 0x67, 0xc6, 0x59, 0xef, 0xc6, + 0xf6, 0x5e, 0x92, 0xa7, 0x1d, 0xcf, 0x9c, 0xcb, 0xf7, 0x9d, 0x73, 0x66, 0xce, 0x59, 0x50, 0xdc, + 0xdd, 0x4d, 0xec, 0x68, 0x01, 0xb6, 0x6c, 0x1a, 0x06, 0xbb, 0xda, 0xc3, 0x85, 0x0a, 0x0e, 0xcd, + 0x05, 0xed, 0x41, 0x0d, 0x07, 0xbb, 0xaa, 0x1f, 0x90, 0x90, 0xa0, 0x33, 0x4c, 0x46, 0x8d, 0x65, + 0x54, 0x21, 0x53, 0xba, 0xb0, 0x49, 0xa8, 0x4b, 0xa8, 0x56, 0x31, 0x29, 0xe6, 0x0a, 0x07, 0xea, + 0xbe, 0x69, 0xd9, 0x9e, 0x19, 0xda, 0xc4, 0xe3, 0x36, 0x4a, 0x72, 0x52, 0x36, 0x96, 0xda, 0x24, + 0x76, 0x7c, 0x3e, 0x65, 0x11, 0x8b, 0xb0, 0xa5, 0x16, 0xad, 0xc4, 0xee, 0x59, 0x8b, 0x10, 0xcb, + 0xc1, 0x9a, 0xe9, 0xdb, 0x9a, 0xe9, 0x79, 0x24, 0x64, 0x26, 0xa9, 0x38, 0x2d, 0x8b, 0x53, 0xf6, + 0x55, 0xa9, 0x6d, 0x69, 0xa1, 0xed, 0x62, 0x1a, 0x9a, 0xae, 0x2f, 0x04, 0xe6, 0x33, 0xc8, 0x55, + 0x89, 0x6b, 0xda, 0x9e, 0x41, 0xbe, 0xf6, 0x70, 0x40, 0xb7, 0xed, 0x58, 0xfc, 0x5c, 0x86, 0xb8, + 0x6f, 0x06, 0xa6, 0x4b, 0x3b, 0xd8, 0x0c, 0x89, 0x6f, 0x38, 0xf8, 0x21, 0x76, 0x0c, 0x6e, 0x9d, + 0x8b, 0x2b, 0x53, 0x80, 0x3e, 0x8e, 0x22, 0x73, 0x97, 0xd9, 0xd0, 0xf1, 0x83, 0x1a, 0xa6, 0xa1, + 0xb2, 0x01, 0xa7, 0x5b, 0x76, 0xa9, 0x4f, 0x3c, 0x8a, 0xd1, 0x75, 0x18, 0xe1, 0xbe, 0x8a, 0xd2, + 0x8c, 0x34, 0x77, 0xea, 0x92, 0xac, 0xa6, 0x47, 0x5e, 0xe5, 0x7a, 0x2b, 0x85, 0xa7, 0xff, 0x94, + 0x07, 0x74, 0xa1, 0xa3, 0x2c, 0xc2, 0x6b, 0xcc, 0xe8, 0x2d, 0x1c, 0xde, 0x23, 0xfe, 0x87, 0x11, + 0x96, 0x35, 0x06, 0x45, 0x78, 0x45, 0x08, 0x0a, 0x9e, 0xe9, 0x62, 0x66, 0xfc, 0xa4, 0xce, 0xd6, + 0xca, 0x0e, 0xc8, 0x59, 0x4a, 0x02, 0xd4, 0x27, 0x30, 0xd1, 0xce, 0x4d, 0xc0, 0x3b, 0x9f, 0x05, + 0xaf, 0xd5, 0x92, 0x80, 0x39, 0x16, 0xb6, 0xec, 0x2a, 0x96, 0x80, 0xbb, 0xec, 0x38, 0xe9, 0x70, + 0x6f, 0x02, 0x34, 0xcb, 0xe8, 0xc0, 0x25, 0xaf, 0x23, 0x35, 0xaa, 0x23, 0x95, 0x17, 0x69, 0x33, + 0x28, 0x16, 0x16, 0xba, 0x7a, 0x42, 0x53, 0x79, 0x2c, 0x09, 0x8e, 0x29, 0x9e, 0x72, 0x39, 0x0e, + 0x1d, 0x95, 0x23, 0xba, 0xd5, 0x42, 0x61, 0x90, 0x51, 0x98, 0xed, 0x48, 0x81, 0x83, 0x6a, 0xe1, + 0x70, 0x07, 0x66, 0xe2, 0x34, 0x6d, 0xe0, 0x4d, 0xe2, 0x55, 0xbb, 0x4b, 0x2f, 0x3a, 0xc3, 0x2a, + 0x0a, 0x7b, 0x21, 0x73, 0x7e, 0x52, 0x17, 0x5f, 0xca, 0x0f, 0x12, 0x4c, 0xa7, 0x18, 0x12, 0xe1, + 0xe8, 0xc1, 0x12, 0x5a, 0x87, 0x71, 0xbc, 0xe3, 0xdb, 0x01, 0xc3, 0x69, 0x54, 0xcd, 0x10, 0x17, + 0x87, 0x18, 0xcf, 0x92, 0xca, 0xaf, 0xa7, 0x1a, 0x5f, 0x4f, 0xf5, 0x5e, 0x7c, 0x3d, 0x57, 0x4e, + 0x44, 0xd1, 0x7a, 0xf4, 0xbc, 0x2c, 0xe9, 0x63, 0x4d, 0xe5, 0x35, 0x33, 0xc4, 0xca, 0x77, 0x12, + 0xbc, 0x9e, 0xc3, 0x54, 0x00, 0xb4, 0xe0, 0x34, 0x65, 0x87, 0x69, 0x65, 0xb9, 0x90, 0x95, 0xb2, + 0x4c, 0x7b, 0x22, 0x7b, 0x93, 0xb4, 0x5d, 0x40, 0xf9, 0x52, 0xc4, 0x7d, 0xd9, 0x71, 0x32, 0xe3, + 0x7e, 0x5c, 0x75, 0xfa, 0x57, 0x4c, 0x3d, 0xdd, 0x59, 0x27, 0xea, 0x43, 0xc7, 0x4b, 0xfd, 0xf8, + 0x6a, 0xf7, 0x4a, 0xf3, 0x89, 0xe1, 0xa6, 0x3f, 0x8a, 0xdf, 0xdd, 0x38, 0x82, 0x53, 0x30, 0xcc, + 0xde, 0x62, 0x51, 0x70, 0xfc, 0x43, 0xa9, 0x43, 0x39, 0x53, 0x4f, 0x04, 0xe3, 0x53, 0x98, 0x68, + 0x7f, 0xcb, 0x45, 0x02, 0x66, 0xb3, 0x22, 0xd1, 0x66, 0x4a, 0xf0, 0x1f, 0xaf, 0xb6, 0x6e, 0x2b, + 0xdb, 0xcd, 0x37, 0x23, 0x03, 0xf4, 0x71, 0xa5, 0xfd, 0x89, 0x24, 0x78, 0xa6, 0xb9, 0xca, 0xe5, + 0x39, 0x74, 0x74, 0x9e, 0xc7, 0x97, 0xe5, 0x9f, 0xe3, 0xea, 0x8d, 0xeb, 0x8b, 0xe1, 0x61, 0x67, + 0x37, 0x31, 0xee, 0xe3, 0x8d, 0x42, 0x4b, 0xf0, 0x6a, 0x90, 0xb0, 0x62, 0xf8, 0x38, 0xb0, 0x49, + 0xd5, 0xb0, 0x3d, 0x63, 0x17, 0x9b, 0x01, 0x7b, 0x65, 0x0a, 0x7a, 0x31, 0x29, 0x72, 0x97, 0x49, + 0xdc, 0xf6, 0xee, 0x63, 0x33, 0x40, 0x32, 0x00, 0x3f, 0xc3, 0x01, 0x0e, 0x8a, 0x05, 0x66, 0x3a, + 0xb1, 0xa3, 0xfc, 0x31, 0x08, 0x4a, 0x1e, 0x60, 0x11, 0xfa, 0x37, 0x60, 0xcc, 0xa6, 0x46, 0xec, + 0xa5, 0xe2, 0x70, 0xec, 0x27, 0xf4, 0x51, 0x9b, 0xea, 0xcd, 0x4d, 0xf4, 0x05, 0x0c, 0x6d, 0x61, + 0x5c, 0x1c, 0x64, 0x49, 0x99, 0x6e, 0x09, 0x60, 0x1c, 0xba, 0x55, 0x62, 0x7b, 0x2b, 0x6f, 0x45, + 0x69, 0xf8, 0xe9, 0x79, 0x79, 0xce, 0xb2, 0xc3, 0xed, 0x5a, 0x45, 0xdd, 0x24, 0xae, 0x26, 0x46, + 0x23, 0xfe, 0x33, 0x4f, 0xab, 0x5f, 0x69, 0xe1, 0xae, 0x8f, 0x29, 0x53, 0xa0, 0x7a, 0x64, 0xf7, + 0xa8, 0xb1, 0xb8, 0x01, 0x67, 0x5d, 0x73, 0xc7, 0xa0, 0xb5, 0x8a, 0x78, 0x2f, 0x8c, 0xa4, 0x28, + 0x65, 0xd1, 0x29, 0xe8, 0xd3, 0xae, 0xb9, 0xb3, 0x51, 0xab, 0x1c, 0x8e, 0x07, 0x45, 0xe7, 0x60, + 0x14, 0x07, 0x01, 0x09, 0x0c, 0x17, 0x53, 0x6a, 0x5a, 0xb8, 0x38, 0xcc, 0xe2, 0xf9, 0x32, 0xdb, + 0x5c, 0xe7, 0x7b, 0xca, 0x3a, 0x4c, 0xb0, 0x80, 0xea, 0xc4, 0x39, 0x48, 0x78, 0x19, 0x4e, 0x09, + 0x8f, 0x89, 0xbc, 0x03, 0xdf, 0xba, 0x13, 0x65, 0xbf, 0x08, 0x2f, 0x99, 0xd5, 0x6a, 0x80, 0x29, + 0x15, 0xe9, 0x8f, 0x3f, 0x95, 0x59, 0x98, 0x4c, 0x98, 0x6b, 0xb6, 0xa6, 0x80, 0x38, 0x07, 0x05, + 0x14, 0xad, 0x2f, 0xed, 0x8d, 0xc2, 0x30, 0x93, 0x44, 0xdf, 0x4a, 0x30, 0xc2, 0x67, 0x23, 0x74, + 0x21, 0xeb, 0x62, 0x1c, 0x1e, 0xc7, 0x4a, 0x17, 0xbb, 0x92, 0xe5, 0x08, 0x94, 0xf3, 0xdf, 0xfc, + 0xf9, 0xdf, 0xf7, 0x83, 0x33, 0x48, 0xd6, 0x72, 0xc7, 0x45, 0xf4, 0xab, 0x04, 0x63, 0xad, 0x43, + 0x02, 0xba, 0x9c, 0xeb, 0x27, 0x6b, 0x6e, 0x2b, 0x5d, 0xe9, 0x55, 0x4d, 0x20, 0x5d, 0x63, 0x48, + 0xdf, 0x43, 0xd7, 0x39, 0xd2, 0x79, 0x1e, 0x75, 0xad, 0xcb, 0x01, 0x56, 0xab, 0x47, 0x19, 0x6b, + 0xa0, 0xc7, 0x12, 0x4c, 0xb6, 0x3a, 0x58, 0x76, 0x9c, 0x0e, 0x54, 0xb2, 0x66, 0xba, 0x0e, 0x54, + 0x32, 0x07, 0x34, 0x65, 0x89, 0x51, 0xb9, 0x8a, 0x2e, 0xf7, 0x45, 0x05, 0xfd, 0x2e, 0xc1, 0xe4, + 0xa1, 0x16, 0x88, 0xae, 0x75, 0x8a, 0x6b, 0x56, 0xcb, 0x2f, 0xbd, 0xdd, 0x87, 0xa6, 0x60, 0xb2, + 0xca, 0x98, 0x2c, 0xa1, 0x77, 0xb3, 0xc0, 0xa7, 0x74, 0x77, 0x91, 0x0a, 0xad, 0xce, 0x5f, 0xc6, + 0x06, 0xfa, 0x45, 0x82, 0xa9, 0x43, 0x2e, 0xa2, 0xb4, 0x5c, 0xeb, 0x14, 0xdf, 0x3e, 0x29, 0xe5, + 0x8d, 0x24, 0xca, 0x22, 0xa3, 0x34, 0x8f, 0x2e, 0xf6, 0x40, 0x09, 0xfd, 0x26, 0xc1, 0x78, 0x5b, + 0x8f, 0x42, 0x1d, 0x0b, 0x3d, 0xbd, 0x15, 0x97, 0xae, 0xf6, 0xac, 0x27, 0x90, 0xbf, 0xcf, 0x90, + 0xdf, 0x40, 0x4b, 0x5d, 0x95, 0x55, 0x7b, 0x0b, 0xd6, 0xea, 0x6c, 0xd9, 0x40, 0x4f, 0x24, 0x40, + 0x6d, 0x2e, 0xa2, 0x64, 0x74, 0x2c, 0xf6, 0xbe, 0xe8, 0x64, 0x8f, 0x09, 0x3d, 0xde, 0x92, 0x76, + 0x3a, 0xe8, 0x7f, 0x09, 0x5e, 0x49, 0x6d, 0x86, 0x28, 0xbf, 0x38, 0xf2, 0x3a, 0x7e, 0xe9, 0x9d, + 0x7e, 0x54, 0x05, 0x1f, 0x93, 0xf1, 0xf9, 0x1c, 0xdd, 0xef, 0x85, 0x4f, 0x4b, 0x9f, 0xdc, 0xc2, + 0xb8, 0xfd, 0xf2, 0x68, 0xf5, 0xe6, 0x10, 0xd0, 0x40, 0x3f, 0x4a, 0x50, 0x88, 0x1a, 0x0c, 0x9a, + 0xcb, 0xc5, 0x99, 0x68, 0x69, 0xa5, 0x37, 0xbb, 0x90, 0x14, 0x04, 0x6e, 0x33, 0x02, 0xab, 0x68, + 0xb9, 0x2b, 0x02, 0x51, 0x33, 0xd3, 0xea, 0x89, 0x76, 0xd9, 0xd0, 0xea, 0xa2, 0x19, 0x36, 0x56, + 0x3e, 0x78, 0xba, 0x27, 0x4b, 0xcf, 0xf6, 0x64, 0xe9, 0xdf, 0x3d, 0x59, 0x7a, 0xb4, 0x2f, 0x0f, + 0x3c, 0xdb, 0x97, 0x07, 0xfe, 0xde, 0x97, 0x07, 0x3e, 0x53, 0x13, 0xa3, 0x44, 0x8a, 0x9b, 0x9d, + 0xa6, 0x23, 0x36, 0x56, 0x54, 0x46, 0xd8, 0x1f, 0xb2, 0xc5, 0x17, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xf9, 0x41, 0xad, 0x75, 0xfb, 0x11, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/registry/types/second_level_domain.pb.go b/x/registry/types/second_level_domain.pb.go index 272abdc7..6a4e8019 100644 --- a/x/registry/types/second_level_domain.pb.go +++ b/x/registry/types/second_level_domain.pb.go @@ -28,7 +28,7 @@ var _ = time.Kitchen const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type DnsRecord struct { - DnsRecordType DnsRecordType `protobuf:"varint,1,opt,name=dnsRecordType,proto3,enum=mycel.registry.v1beta1.DnsRecordType" json:"dnsRecordType,omitempty"` + DnsRecordType DnsRecordType `protobuf:"varint,1,opt,name=dns_record_type,json=dnsRecordType,proto3,enum=mycel.registry.v1beta1.DnsRecordType" json:"dns_record_type,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` } @@ -80,7 +80,7 @@ func (m *DnsRecord) GetValue() string { } type WalletRecord struct { - WalletRecordType NetworkName `protobuf:"varint,1,opt,name=walletRecordType,proto3,enum=mycel.registry.v1beta1.NetworkName" json:"walletRecordType,omitempty"` + WalletRecordType NetworkName `protobuf:"varint,1,opt,name=wallet_record_type,json=walletRecordType,proto3,enum=mycel.registry.v1beta1.NetworkName" json:"wallet_record_type,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` } @@ -379,41 +379,42 @@ func init() { } var fileDescriptor_56ec0bc7d1cf0eb2 = []byte{ - // 539 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0x4d, 0x6f, 0xd3, 0x40, - 0x10, 0xb5, 0x9b, 0x36, 0x34, 0x93, 0x52, 0x15, 0xab, 0xaa, 0xac, 0x1c, 0x9c, 0x10, 0x40, 0x04, - 0x21, 0x6c, 0x1a, 0x38, 0x70, 0x6d, 0xc8, 0x21, 0x82, 0xaa, 0x48, 0x4b, 0x24, 0x24, 0x2e, 0xd1, - 0xc6, 0x19, 0x8c, 0x55, 0x7b, 0xd7, 0xb2, 0x37, 0x5f, 0xff, 0xa2, 0xbf, 0x83, 0x5f, 0xd2, 0x63, - 0x8f, 0x9c, 0x00, 0x25, 0x07, 0xfe, 0x06, 0xf2, 0xae, 0xdd, 0x38, 0x80, 0xd5, 0xdb, 0x8e, 0xf4, - 0xde, 0xbc, 0x79, 0xa3, 0x37, 0x0b, 0x2f, 0xc3, 0xa5, 0x8b, 0x81, 0x13, 0xa3, 0xe7, 0x27, 0x22, - 0x5e, 0x3a, 0xb3, 0xd3, 0x31, 0x0a, 0x7a, 0xea, 0x24, 0xe8, 0x72, 0x36, 0x19, 0x05, 0x38, 0xc3, - 0x60, 0x34, 0xe1, 0x21, 0xf5, 0x99, 0x1d, 0xc5, 0x5c, 0x70, 0xe3, 0x44, 0x32, 0xec, 0x9c, 0x61, - 0x67, 0x8c, 0xc6, 0xb1, 0xc7, 0x3d, 0x2e, 0x21, 0x4e, 0xfa, 0x52, 0xe8, 0x46, 0xd3, 0xe3, 0xdc, - 0x0b, 0xd0, 0x91, 0xd5, 0x78, 0xfa, 0xc5, 0x11, 0x7e, 0x88, 0x89, 0xa0, 0x61, 0x94, 0x01, 0x9e, - 0x96, 0x0c, 0x30, 0x61, 0xc9, 0x28, 0x46, 0x97, 0xc7, 0x93, 0x0c, 0xf8, 0xac, 0x04, 0xc8, 0x50, - 0xcc, 0x79, 0x7c, 0x39, 0x62, 0x34, 0xc4, 0x0c, 0xfa, 0xbc, 0x04, 0x4a, 0x5d, 0x17, 0x93, 0x64, - 0xe4, 0x72, 0x26, 0x62, 0x1e, 0x28, 0x70, 0x9b, 0x41, 0xad, 0xcf, 0x12, 0x22, 0xa5, 0x8c, 0xf7, - 0x70, 0x7f, 0x92, 0x17, 0xc3, 0x65, 0x84, 0xa6, 0xde, 0xd2, 0x3b, 0x87, 0xdd, 0x27, 0xf6, 0xff, - 0x4d, 0xdb, 0xfd, 0x22, 0x98, 0x6c, 0x73, 0x8d, 0x63, 0xd8, 0x9b, 0xd1, 0x60, 0x8a, 0xe6, 0x4e, - 0x4b, 0xef, 0xd4, 0x88, 0x2a, 0xda, 0x53, 0x38, 0xf8, 0x44, 0x83, 0x00, 0x45, 0x26, 0xf9, 0x01, - 0x8e, 0xe6, 0x85, 0xba, 0xa0, 0xfa, 0xa8, 0x4c, 0xf5, 0x42, 0x59, 0xbe, 0xa0, 0x21, 0x92, 0x7f, - 0xc8, 0x25, 0xb2, 0xaf, 0x01, 0x86, 0xb8, 0xc8, 0x45, 0x8f, 0xa0, 0x72, 0x89, 0x4b, 0xa9, 0x53, - 0x23, 0xe9, 0xb3, 0x84, 0xf5, 0x5b, 0x87, 0x6a, 0x46, 0x39, 0x83, 0xda, 0xad, 0x3d, 0x49, 0xac, - 0x77, 0x1f, 0xde, 0xb9, 0x96, 0x81, 0x46, 0x36, 0x2c, 0xe3, 0x1d, 0x1c, 0x14, 0xa7, 0x95, 0x52, - 0xf5, 0xee, 0xe3, 0xb2, 0x2e, 0xc5, 0x35, 0x0d, 0x34, 0xb2, 0xc5, 0x35, 0xfa, 0x00, 0xe2, 0xd6, - 0x8f, 0x59, 0x91, 0x9d, 0xda, 0x65, 0x9d, 0x36, 0xce, 0x07, 0x1a, 0x29, 0xf0, 0x7a, 0xfb, 0x50, - 0x55, 0x21, 0x6b, 0x7f, 0xdb, 0x81, 0x07, 0x1f, 0x65, 0xe8, 0xcf, 0xd3, 0xcc, 0xf7, 0x65, 0xe4, - 0x0d, 0x03, 0x76, 0xd3, 0x5c, 0x65, 0x8b, 0x92, 0x6f, 0xe3, 0x04, 0xaa, 0x11, 0x8d, 0x91, 0x89, - 0x6c, 0x55, 0x59, 0x95, 0x6e, 0x90, 0xcf, 0x19, 0xc6, 0x72, 0x98, 0x1a, 0x51, 0x85, 0x71, 0x0e, - 0x87, 0xb8, 0x88, 0xfc, 0x98, 0x0a, 0x9f, 0xb3, 0x3e, 0x15, 0x68, 0xee, 0xca, 0x59, 0x1b, 0xb6, - 0xba, 0x0c, 0x3b, 0xbf, 0x0c, 0x7b, 0x98, 0x5f, 0x46, 0x6f, 0xff, 0xfa, 0x47, 0x53, 0xbb, 0xfa, - 0xd9, 0xd4, 0xc9, 0x5f, 0x5c, 0xe3, 0x0d, 0xdc, 0x53, 0xf3, 0x26, 0xe6, 0x5e, 0xab, 0xd2, 0xa9, - 0x77, 0xad, 0x32, 0xcb, 0xca, 0x20, 0xc9, 0xe1, 0x69, 0xb2, 0x55, 0xfc, 0xdf, 0xaa, 0xf4, 0x9b, - 0x55, 0xc9, 0x2f, 0x4d, 0xf6, 0x59, 0x11, 0x4c, 0xb6, 0xb9, 0xbd, 0xc1, 0xf5, 0xca, 0xd2, 0x6f, - 0x56, 0x96, 0xfe, 0x6b, 0x65, 0xe9, 0x57, 0x6b, 0x4b, 0xbb, 0x59, 0x5b, 0xda, 0xf7, 0xb5, 0xa5, - 0x7d, 0xb6, 0x3d, 0x5f, 0x7c, 0x9d, 0x8e, 0x6d, 0x97, 0x87, 0x8e, 0xec, 0xfc, 0x42, 0x7d, 0x1e, - 0xaa, 0x70, 0x16, 0x9b, 0xa3, 0x14, 0xcb, 0x08, 0x93, 0x71, 0x55, 0xda, 0x7f, 0xf5, 0x27, 0x00, - 0x00, 0xff, 0xff, 0xbf, 0x7e, 0x1a, 0x02, 0x88, 0x04, 0x00, 0x00, + // 554 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0xcb, 0x6e, 0xd3, 0x4c, + 0x14, 0xb6, 0x9b, 0x36, 0x7f, 0x73, 0xd2, 0xe4, 0x2f, 0xa3, 0xaa, 0x8a, 0xb2, 0x70, 0x42, 0x00, + 0x11, 0x84, 0xb0, 0x69, 0x60, 0xc1, 0x96, 0x10, 0xa4, 0x48, 0x94, 0x4a, 0x0c, 0x91, 0x90, 0xd8, + 0x58, 0x13, 0xfb, 0x60, 0xac, 0xda, 0x1e, 0xcb, 0x9e, 0xdc, 0xde, 0xa2, 0x0f, 0xc2, 0x83, 0x74, + 0xd9, 0x25, 0x2b, 0x40, 0xc9, 0x8e, 0xa7, 0x40, 0x9e, 0x71, 0x2e, 0x95, 0x6a, 0xd8, 0xf9, 0x93, + 0xbe, 0xcb, 0x7c, 0x47, 0xe7, 0x18, 0x9e, 0x87, 0x0b, 0x07, 0x03, 0x2b, 0x41, 0xcf, 0x4f, 0x45, + 0xb2, 0xb0, 0xa6, 0x67, 0x63, 0x14, 0xec, 0xcc, 0x4a, 0xd1, 0xe1, 0x91, 0x6b, 0x07, 0x38, 0xc5, + 0xc0, 0x76, 0x79, 0xc8, 0xfc, 0xc8, 0x8c, 0x13, 0x2e, 0x38, 0x39, 0x95, 0x0a, 0x73, 0xad, 0x30, + 0x73, 0x45, 0xf3, 0xc4, 0xe3, 0x1e, 0x97, 0x14, 0x2b, 0xfb, 0x52, 0xec, 0x66, 0xcb, 0xe3, 0xdc, + 0x0b, 0xd0, 0x92, 0x68, 0x3c, 0xf9, 0x62, 0x09, 0x3f, 0xc4, 0x54, 0xb0, 0x30, 0xce, 0x09, 0x8f, + 0x0b, 0x1e, 0xe0, 0x46, 0xa9, 0x9d, 0xa0, 0xc3, 0x13, 0x37, 0x27, 0x3e, 0x29, 0x20, 0x46, 0x28, + 0x66, 0x3c, 0xb9, 0xb4, 0x23, 0x16, 0x62, 0x4e, 0x7d, 0x5a, 0x40, 0x65, 0x8e, 0x83, 0x69, 0x6a, + 0x3b, 0x3c, 0x12, 0x09, 0x0f, 0x14, 0xb9, 0x13, 0x43, 0x65, 0x10, 0xa5, 0x54, 0x46, 0x91, 0xf7, + 0xf0, 0xff, 0x36, 0xd8, 0x16, 0x8b, 0x18, 0x1b, 0x7a, 0x5b, 0xef, 0xd6, 0x7b, 0x8f, 0xcc, 0xbb, + 0x6b, 0x9b, 0x1b, 0xed, 0x68, 0x11, 0x23, 0xad, 0xb9, 0xbb, 0x90, 0x9c, 0xc0, 0xc1, 0x94, 0x05, + 0x13, 0x6c, 0xec, 0xb5, 0xf5, 0x6e, 0x85, 0x2a, 0xd0, 0x99, 0xc1, 0xd1, 0x27, 0x16, 0x04, 0x28, + 0xf2, 0xd0, 0x0f, 0x40, 0x66, 0x12, 0xdf, 0x91, 0xfb, 0xa0, 0x28, 0xf7, 0x42, 0xd5, 0xbe, 0x60, + 0x21, 0xd2, 0xe3, 0xd9, 0x8e, 0xdd, 0x5f, 0x82, 0x5f, 0x02, 0x8c, 0x70, 0xbe, 0x8e, 0x3d, 0x86, + 0xd2, 0x25, 0x2e, 0x64, 0x4e, 0x85, 0x66, 0x9f, 0x05, 0xaa, 0xdf, 0x3a, 0x94, 0x73, 0x49, 0x1f, + 0x60, 0x3b, 0x1e, 0xa9, 0xac, 0xf6, 0xee, 0xff, 0x73, 0x32, 0x43, 0x8d, 0x56, 0x36, 0x73, 0x21, + 0xef, 0xa0, 0x76, 0xab, 0xad, 0x0c, 0xab, 0xf6, 0x1e, 0x16, 0xd9, 0xec, 0x8e, 0x6a, 0xa8, 0xd1, + 0xa3, 0xdd, 0xae, 0xe4, 0x2d, 0x54, 0x05, 0xce, 0x37, 0x56, 0x25, 0x69, 0xd5, 0x29, 0xb2, 0xda, + 0x96, 0x1f, 0x6a, 0x14, 0xc4, 0x06, 0xf5, 0x0f, 0xa1, 0xac, 0x1c, 0x3a, 0xdf, 0xf6, 0xe0, 0xde, + 0x47, 0xb9, 0xfb, 0xe7, 0xd9, 0xea, 0x0f, 0xe4, 0xe6, 0x13, 0x02, 0xfb, 0xd9, 0x7a, 0xe5, 0xb3, + 0x92, 0xdf, 0xe4, 0x14, 0xca, 0x31, 0x4b, 0x30, 0x12, 0xf9, 0xb4, 0x72, 0x94, 0x0d, 0x91, 0xcf, + 0x22, 0x4c, 0xe4, 0x63, 0x2a, 0x54, 0x81, 0x6c, 0xb1, 0x70, 0x1e, 0xfb, 0x09, 0x13, 0x3e, 0x8f, + 0x6c, 0x97, 0x09, 0x6c, 0xec, 0xcb, 0xc7, 0x36, 0x4d, 0x75, 0x21, 0xe6, 0xfa, 0x42, 0xcc, 0xd1, + 0xfa, 0x42, 0xfa, 0x87, 0xd7, 0x3f, 0x5a, 0xda, 0xd5, 0xcf, 0x96, 0x4e, 0xeb, 0x5b, 0xf1, 0x80, + 0x09, 0x24, 0xaf, 0xe0, 0x3f, 0xf5, 0xe0, 0xb4, 0x71, 0xd0, 0x2e, 0x75, 0xab, 0x3d, 0xa3, 0xa8, + 0xb3, 0x6a, 0x48, 0xd7, 0x74, 0x72, 0x0e, 0xf5, 0xdb, 0x67, 0xd0, 0x28, 0x4b, 0x83, 0xc2, 0x05, + 0x7f, 0x2d, 0xd9, 0x6f, 0x14, 0x99, 0xd6, 0xd8, 0x2e, 0xec, 0x0f, 0xaf, 0x97, 0x86, 0x7e, 0xb3, + 0x34, 0xf4, 0x5f, 0x4b, 0x43, 0xbf, 0x5a, 0x19, 0xda, 0xcd, 0xca, 0xd0, 0xbe, 0xaf, 0x0c, 0xed, + 0xb3, 0xe9, 0xf9, 0xe2, 0xeb, 0x64, 0x6c, 0x3a, 0x3c, 0xb4, 0xa4, 0xf3, 0x33, 0xf5, 0x17, 0x51, + 0xc0, 0x9a, 0x6f, 0xaf, 0x33, 0xdb, 0xf6, 0x74, 0x5c, 0x96, 0xfd, 0x5f, 0xfc, 0x09, 0x00, 0x00, + 0xff, 0xff, 0xa4, 0xcf, 0x56, 0x2d, 0x91, 0x04, 0x00, 0x00, } func (m *DnsRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/registry/types/subdomain_config.pb.go b/x/registry/types/subdomain_config.pb.go index 5322052e..57ec79e9 100644 --- a/x/registry/types/subdomain_config.pb.go +++ b/x/registry/types/subdomain_config.pb.go @@ -229,12 +229,12 @@ func (m *FeeByName) GetFee() *types.Coin { } type SubdomainConfig struct { - MaxSubdomainRegistrations uint64 `protobuf:"varint,1,opt,name=maxSubdomainRegistrations,proto3" json:"maxSubdomainRegistrations,omitempty"` - SubdomainRegistrationFees *SubdomainRegistrationFees `protobuf:"bytes,2,opt,name=subdomainRegistrationFees,proto3" json:"subdomainRegistrationFees,omitempty"` - IsRegistrable bool `protobuf:"varint,3,opt,name=isRegistrable,proto3" json:"isRegistrable,omitempty"` - RegistrableRole DomainRole `protobuf:"varint,4,opt,name=registrableRole,proto3,enum=mycel.registry.v1beta1.DomainRole" json:"registrableRole,omitempty"` - CustomExpirationDate bool `protobuf:"varint,5,opt,name=customExpirationDate,proto3" json:"customExpirationDate,omitempty"` - RegistrationPolicy RegistrationPolicyType `protobuf:"varint,6,opt,name=registrationPolicy,proto3,enum=mycel.registry.v1beta1.RegistrationPolicyType" json:"registrationPolicy,omitempty"` + MaxSubdomainRegistrations uint64 `protobuf:"varint,1,opt,name=max_subdomain_registrations,json=maxSubdomainRegistrations,proto3" json:"max_subdomain_registrations,omitempty"` + SubdomainRegistrationFees *SubdomainRegistrationFees `protobuf:"bytes,2,opt,name=subdomain_registration_fees,json=subdomainRegistrationFees,proto3" json:"subdomain_registration_fees,omitempty"` + IsRegistrable bool `protobuf:"varint,3,opt,name=is_registrable,json=isRegistrable,proto3" json:"is_registrable,omitempty"` + RegistrableRole DomainRole `protobuf:"varint,4,opt,name=registrable_role,json=registrableRole,proto3,enum=mycel.registry.v1beta1.DomainRole" json:"registrable_role,omitempty"` + CustomExpirationDate bool `protobuf:"varint,5,opt,name=custom_expiration_date,json=customExpirationDate,proto3" json:"custom_expiration_date,omitempty"` + RegistrationPolicy RegistrationPolicyType `protobuf:"varint,6,opt,name=registration_policy,json=registrationPolicy,proto3,enum=mycel.registry.v1beta1.RegistrationPolicyType" json:"registration_policy,omitempty"` } func (m *SubdomainConfig) Reset() { *m = SubdomainConfig{} } @@ -325,40 +325,42 @@ func init() { } var fileDescriptor_5688b541b0d773cd = []byte{ - // 513 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x4f, 0x8b, 0xd3, 0x40, - 0x18, 0xc6, 0x3b, 0xa6, 0x56, 0xfb, 0x86, 0x75, 0x97, 0x41, 0x4a, 0xba, 0x87, 0x50, 0xab, 0x87, - 0xe0, 0xb2, 0x13, 0x1a, 0x4f, 0x82, 0x20, 0xb6, 0xdb, 0xe2, 0x42, 0x91, 0x32, 0xae, 0x1e, 0x3c, - 0x28, 0x49, 0x76, 0xda, 0x1d, 0x48, 0x32, 0x25, 0x33, 0x95, 0xe6, 0x5b, 0xf8, 0xb1, 0xf6, 0xb8, - 0x47, 0x4f, 0x22, 0xed, 0x17, 0x91, 0x4c, 0xb6, 0x7f, 0x74, 0x13, 0xf1, 0xe2, 0xad, 0x6f, 0xf3, - 0x3c, 0xef, 0xf3, 0x7b, 0xdf, 0x19, 0x06, 0x4e, 0xe3, 0x2c, 0x64, 0x91, 0x9b, 0xb2, 0x19, 0x97, - 0x2a, 0xcd, 0xdc, 0xaf, 0xbd, 0x80, 0x29, 0xbf, 0xe7, 0xca, 0x45, 0x70, 0x29, 0x62, 0x9f, 0x27, - 0x5f, 0x42, 0x91, 0x4c, 0xf9, 0x8c, 0xcc, 0x53, 0xa1, 0x04, 0x6e, 0x69, 0x39, 0xd9, 0xc8, 0xc9, - 0xad, 0xfc, 0xd8, 0x0e, 0x85, 0x8c, 0x85, 0x74, 0x03, 0x5f, 0xb2, 0x6d, 0x8f, 0x50, 0xf0, 0xa4, - 0xf0, 0x1d, 0x9f, 0x54, 0xc4, 0xf8, 0x61, 0xc8, 0xa4, 0xcc, 0x33, 0x54, 0x2a, 0xa2, 0x42, 0xdc, - 0xfd, 0x81, 0xa0, 0xfd, 0x7e, 0x93, 0x4f, 0x0b, 0x8b, 0xaf, 0xb8, 0x48, 0x46, 0x8c, 0x49, 0x3c, - 0x04, 0x73, 0xca, 0x58, 0x3f, 0x1b, 0xb3, 0x64, 0xa6, 0xae, 0x2c, 0xd4, 0x31, 0x1c, 0xd3, 0x7b, - 0x4a, 0xca, 0xc1, 0xc8, 0x68, 0x27, 0xa5, 0xfb, 0x3e, 0xfc, 0x1a, 0x9a, 0xba, 0x7c, 0xe7, 0xc7, - 0xcc, 0xba, 0xa7, 0x9b, 0x3c, 0xf9, 0x6b, 0x93, 0x5c, 0x48, 0x77, 0x1e, 0xfc, 0x12, 0xe0, 0x92, - 0x4d, 0xfd, 0x45, 0xa4, 0x46, 0x8c, 0x59, 0x46, 0x07, 0x39, 0xa6, 0xd7, 0x26, 0xc5, 0x1e, 0x48, - 0xbe, 0x87, 0xad, 0x7d, 0x20, 0x78, 0x42, 0xf7, 0xc4, 0xdd, 0x25, 0x98, 0x7b, 0x5c, 0xb8, 0x05, - 0x8d, 0x68, 0x33, 0x0c, 0x72, 0x0e, 0xe8, 0x6d, 0x85, 0x9f, 0xc1, 0x01, 0x97, 0x9b, 0xf9, 0x83, - 0x28, 0xc7, 0x44, 0xce, 0x43, 0xfa, 0xfb, 0x9f, 0xf8, 0x04, 0x8c, 0xe9, 0xbf, 0x00, 0xe4, 0xaa, - 0x6e, 0x0a, 0xcd, 0xed, 0x30, 0x18, 0x43, 0x3d, 0xc9, 0xa7, 0xcf, 0x53, 0x9b, 0x54, 0xff, 0xfe, - 0x1f, 0x99, 0xd7, 0x06, 0x1c, 0x6e, 0x8f, 0x73, 0xa0, 0x6f, 0x13, 0x7e, 0x05, 0xed, 0xd8, 0x5f, - 0x96, 0x1e, 0xb2, 0xd4, 0x3c, 0x75, 0x5a, 0x2d, 0xc0, 0x02, 0xda, 0xb2, 0xea, 0x7e, 0x68, 0x60, - 0xd3, 0xeb, 0x55, 0x9d, 0x65, 0xe5, 0xc5, 0xa2, 0xd5, 0x3d, 0xef, 0x6e, 0xc5, 0x28, 0xdb, 0xca, - 0x18, 0x0e, 0xd3, 0x5d, 0x49, 0x45, 0xc4, 0xac, 0x7a, 0x07, 0x39, 0x8f, 0xbc, 0x6e, 0x15, 0xcc, - 0x59, 0x11, 0x27, 0x22, 0x46, 0xff, 0xb4, 0x62, 0x0f, 0x1e, 0x87, 0x0b, 0xa9, 0x44, 0x3c, 0x5c, - 0xce, 0x79, 0xc1, 0x72, 0xe6, 0x2b, 0x66, 0xdd, 0xd7, 0xd1, 0xa5, 0xdf, 0xf0, 0x67, 0xc0, 0xe9, - 0x1e, 0xfb, 0x44, 0x44, 0x3c, 0xcc, 0xac, 0x86, 0x86, 0x20, 0x55, 0x10, 0xf4, 0x8e, 0xe3, 0x22, - 0x9b, 0x33, 0x5a, 0xd2, 0xe9, 0x79, 0x0f, 0x5a, 0xe5, 0x6a, 0x6c, 0xc2, 0x83, 0x09, 0x3d, 0xff, - 0xf8, 0xe6, 0x62, 0x78, 0x54, 0xc3, 0x00, 0x8d, 0xc9, 0x87, 0xfe, 0xf8, 0x7c, 0x70, 0x84, 0xfa, - 0x6f, 0xaf, 0x57, 0x36, 0xba, 0x59, 0xd9, 0xe8, 0xe7, 0xca, 0x46, 0xdf, 0xd6, 0x76, 0xed, 0x66, - 0x6d, 0xd7, 0xbe, 0xaf, 0xed, 0xda, 0x27, 0x32, 0xe3, 0xea, 0x6a, 0x11, 0x90, 0x50, 0xc4, 0xae, - 0x46, 0x3b, 0x2d, 0xb6, 0x5f, 0x14, 0xee, 0x72, 0xf7, 0x5a, 0xa8, 0x6c, 0xce, 0x64, 0xd0, 0xd0, - 0xaf, 0xc3, 0x8b, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x45, 0x20, 0x56, 0xb8, 0xb3, 0x04, 0x00, - 0x00, + // 552 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcf, 0x6f, 0xd3, 0x30, + 0x14, 0x6e, 0xe8, 0x28, 0xcc, 0x51, 0xb7, 0xca, 0xa0, 0x2a, 0xdd, 0xa4, 0xa8, 0x14, 0x21, 0x55, + 0x4c, 0x4b, 0xd4, 0xc2, 0x89, 0x03, 0xd2, 0xda, 0xad, 0x30, 0x69, 0xa0, 0xca, 0x0c, 0x0e, 0x5c, + 0x22, 0x27, 0x7d, 0xe9, 0x2c, 0x25, 0x71, 0x89, 0x5d, 0xd4, 0xfc, 0x17, 0xfc, 0x59, 0x1c, 0xc7, + 0x8d, 0x23, 0x6a, 0xff, 0x11, 0x14, 0x27, 0x4d, 0x8b, 0xd6, 0x20, 0x2e, 0xdc, 0xec, 0xe7, 0xef, + 0x7b, 0xdf, 0xf7, 0x7e, 0xc8, 0xe8, 0x34, 0x4c, 0x3c, 0x08, 0xec, 0x18, 0xa6, 0x4c, 0xc8, 0x38, + 0xb1, 0xbf, 0xf6, 0x5c, 0x90, 0xb4, 0x67, 0x8b, 0xb9, 0x3b, 0xe1, 0x21, 0x65, 0x91, 0xe3, 0xf1, + 0xc8, 0x67, 0x53, 0x6b, 0x16, 0x73, 0xc9, 0x71, 0x53, 0xc1, 0xad, 0x35, 0xdc, 0xca, 0xe1, 0x47, + 0xa6, 0xc7, 0x45, 0xc8, 0x85, 0xed, 0x52, 0x01, 0x45, 0x0e, 0x8f, 0xb3, 0x28, 0xe3, 0x1d, 0x9d, + 0x94, 0xc8, 0x50, 0xcf, 0x03, 0x21, 0x52, 0x0d, 0x19, 0xf3, 0x20, 0x03, 0x77, 0x56, 0x1a, 0x6a, + 0x7d, 0x58, 0xeb, 0x93, 0x8c, 0x42, 0x25, 0xe3, 0xd1, 0x08, 0x40, 0xe0, 0x37, 0xa8, 0xee, 0x03, + 0x38, 0x6e, 0xe2, 0x04, 0x10, 0x4d, 0xe5, 0x8d, 0xa1, 0xb5, 0xab, 0x5d, 0xbd, 0xff, 0xd4, 0xda, + 0x6d, 0xcd, 0x1a, 0x01, 0x0c, 0x92, 0x2b, 0x05, 0x25, 0xba, 0xbf, 0xb9, 0xe0, 0x33, 0xa4, 0xe7, + 0x89, 0x22, 0x1a, 0x82, 0x71, 0x4f, 0xa5, 0x79, 0xf2, 0xd7, 0x34, 0xef, 0x69, 0x08, 0x64, 0xdf, + 0x5f, 0x1f, 0xf1, 0x2b, 0xa4, 0x4f, 0xc0, 0xa7, 0xf3, 0x40, 0x3a, 0x3e, 0x80, 0x51, 0x6d, 0x6b, + 0x5d, 0xbd, 0xdf, 0xb2, 0xb2, 0x66, 0x58, 0x69, 0x33, 0x0a, 0xfe, 0x90, 0xb3, 0x88, 0xa0, 0x1c, + 0x3d, 0x02, 0xe8, 0x24, 0x48, 0xdf, 0xb2, 0x86, 0x9b, 0xa8, 0x56, 0xd4, 0xa3, 0x75, 0xeb, 0x24, + 0xbf, 0xe1, 0x67, 0xe8, 0x80, 0x09, 0x27, 0xb7, 0x43, 0xdd, 0x20, 0x35, 0xaa, 0x75, 0x1f, 0x92, + 0x3a, 0x13, 0x64, 0x13, 0xc4, 0x27, 0xa8, 0xfa, 0x4f, 0x0e, 0x52, 0x54, 0x47, 0xa0, 0xfd, 0xa2, + 0x1c, 0x8c, 0xd1, 0x9e, 0xaa, 0x3f, 0x95, 0xdd, 0x27, 0xea, 0xfc, 0x5f, 0x44, 0x7f, 0x54, 0xd1, + 0x61, 0x31, 0xd5, 0xa1, 0x5a, 0x2a, 0xfc, 0x1a, 0x1d, 0x87, 0x74, 0xe1, 0x6c, 0x96, 0x2d, 0xde, + 0x9a, 0xb6, 0x50, 0x96, 0xf6, 0x48, 0x2b, 0xa4, 0x8b, 0x9d, 0xeb, 0x20, 0xf0, 0x17, 0x74, 0xbc, + 0x9b, 0x9b, 0x8e, 0x43, 0x28, 0xd3, 0x7a, 0xbf, 0x57, 0x36, 0xd2, 0xd2, 0x1d, 0x23, 0x2d, 0x51, + 0xba, 0x7e, 0x77, 0x5b, 0x53, 0xdd, 0xd5, 0x9a, 0x77, 0xa8, 0xb1, 0x85, 0x71, 0x62, 0x1e, 0x80, + 0xb1, 0xd7, 0xd6, 0xba, 0x07, 0xfd, 0x4e, 0x99, 0x9d, 0xf3, 0x4c, 0x90, 0x07, 0x40, 0x0e, 0xb7, + 0xb8, 0x69, 0x00, 0xbf, 0x44, 0x4d, 0x6f, 0x2e, 0x24, 0x0f, 0x1d, 0x58, 0xcc, 0x58, 0x5e, 0xe3, + 0x84, 0x4a, 0x30, 0xee, 0x2b, 0xf5, 0xc7, 0xd9, 0xeb, 0x45, 0xf1, 0x78, 0x4e, 0x25, 0x60, 0x07, + 0x3d, 0xfa, 0xa3, 0x29, 0x33, 0x1e, 0x30, 0x2f, 0x31, 0x6a, 0xca, 0x87, 0x55, 0xe6, 0x63, 0xbb, + 0xe4, 0xb1, 0x62, 0x5c, 0x27, 0x33, 0x20, 0x38, 0xbe, 0x13, 0x7f, 0xde, 0x43, 0xcd, 0xdd, 0x68, + 0xac, 0xa3, 0x07, 0x63, 0x72, 0xf9, 0xe9, 0xec, 0xfa, 0xa2, 0x51, 0xc1, 0x08, 0xd5, 0xc6, 0x1f, + 0x07, 0x57, 0x97, 0xc3, 0x86, 0x36, 0x78, 0xfb, 0x7d, 0x69, 0x6a, 0xb7, 0x4b, 0x53, 0xfb, 0xb5, + 0x34, 0xb5, 0x6f, 0x2b, 0xb3, 0x72, 0xbb, 0x32, 0x2b, 0x3f, 0x57, 0x66, 0xe5, 0xb3, 0x35, 0x65, + 0xf2, 0x66, 0xee, 0x5a, 0x1e, 0x0f, 0x6d, 0x65, 0xed, 0x34, 0x1b, 0x41, 0x76, 0xb1, 0x17, 0x9b, + 0xdf, 0x43, 0x26, 0x33, 0x10, 0x6e, 0x4d, 0xfd, 0x16, 0x2f, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, + 0x4a, 0x20, 0xde, 0xa9, 0xc3, 0x04, 0x00, 0x00, } func (m *SubdomainRegistrationFees) Marshal() (dAtA []byte, err error) { diff --git a/x/registry/types/top_level_domain.pb.go b/x/registry/types/top_level_domain.pb.go index 333cdf8d..391358f0 100644 --- a/x/registry/types/top_level_domain.pb.go +++ b/x/registry/types/top_level_domain.pb.go @@ -191,40 +191,42 @@ func init() { } var fileDescriptor_82805ec1d6b2bfd3 = []byte{ - // 528 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x53, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0x8d, 0xdb, 0x50, 0x35, 0x5b, 0x35, 0x88, 0x15, 0xa0, 0x90, 0x83, 0x1d, 0x55, 0x82, 0x5a, - 0x42, 0xd9, 0xa5, 0xe5, 0x0b, 0x9a, 0x54, 0x15, 0x12, 0xbd, 0x60, 0x22, 0x55, 0xe2, 0x12, 0xad, - 0x9d, 0x89, 0xb3, 0xc2, 0xf6, 0x5a, 0xbb, 0xeb, 0xd2, 0x1c, 0xb9, 0x72, 0xea, 0x77, 0xf0, 0x11, - 0x9c, 0x7b, 0xec, 0x91, 0x13, 0x41, 0xc9, 0x4f, 0x70, 0x44, 0x5e, 0x3b, 0x69, 0x12, 0x35, 0x88, - 0x43, 0x4f, 0xde, 0x1d, 0xbf, 0x79, 0xf3, 0x66, 0xe6, 0x2d, 0x6a, 0xc7, 0xe3, 0x00, 0x22, 0x2a, - 0x21, 0xe4, 0x4a, 0xcb, 0x31, 0xbd, 0x3c, 0xf2, 0x41, 0xb3, 0x23, 0xaa, 0x45, 0xda, 0x8f, 0xe0, - 0x12, 0xa2, 0xfe, 0x40, 0xc4, 0x8c, 0x27, 0x24, 0x95, 0x42, 0x0b, 0xfc, 0xdc, 0xc0, 0xc9, 0x1c, - 0x4e, 0x4a, 0x78, 0xd3, 0x0e, 0x84, 0x8a, 0x85, 0xa2, 0x3e, 0x53, 0xb0, 0xe0, 0x08, 0xc4, 0x3c, - 0xaf, 0xf9, 0x34, 0x14, 0xa1, 0x30, 0x47, 0x9a, 0x9f, 0xca, 0xa8, 0x13, 0x0a, 0x11, 0x46, 0x40, - 0xcd, 0xcd, 0xcf, 0x86, 0x54, 0xf3, 0x18, 0x94, 0x66, 0x71, 0x5a, 0x02, 0x5e, 0x6f, 0x50, 0xc7, - 0x82, 0x00, 0x94, 0xea, 0x07, 0x22, 0xd1, 0x52, 0x44, 0x25, 0x78, 0x53, 0x2b, 0x2a, 0xf3, 0x8b, - 0x1e, 0x72, 0xfc, 0x90, 0x87, 0x05, 0xfc, 0xe0, 0xc7, 0x36, 0xaa, 0xf7, 0x44, 0x7a, 0x9e, 0x37, - 0x79, 0x6a, 0xfe, 0x63, 0x8c, 0xaa, 0x09, 0x8b, 0xa1, 0x61, 0xb5, 0x2c, 0xb7, 0xe6, 0x99, 0x33, - 0x3e, 0x47, 0x75, 0xb8, 0x4a, 0xb9, 0x64, 0x9a, 0x8b, 0xe4, 0x94, 0x69, 0x68, 0x6c, 0xb5, 0x2c, - 0x77, 0xef, 0xb8, 0x49, 0x0a, 0xf1, 0x64, 0x2e, 0x9e, 0xf4, 0xe6, 0xe2, 0x3b, 0xbb, 0x37, 0xbf, - 0x9c, 0xca, 0xf5, 0xc4, 0xb1, 0xbc, 0xb5, 0x5c, 0xfc, 0x01, 0x3d, 0x5e, 0xc8, 0xe9, 0x1a, 0x35, - 0x8d, 0x6d, 0x43, 0x77, 0x48, 0xee, 0x9f, 0x2c, 0xf9, 0xb8, 0x0a, 0xf7, 0xd6, 0xf3, 0xf1, 0x2b, - 0x54, 0x5f, 0x0a, 0x65, 0x89, 0x6e, 0x54, 0x5b, 0x96, 0x5b, 0xf5, 0xd6, 0xa2, 0xf8, 0x3d, 0xda, - 0x2f, 0xc6, 0xd6, 0x2d, 0xa6, 0xd6, 0x78, 0xd4, 0xda, 0x76, 0xf7, 0x8e, 0x5f, 0x6e, 0x2a, 0x7c, - 0xb2, 0x0c, 0xf6, 0x56, 0x73, 0xf1, 0x57, 0x0b, 0x3d, 0xd3, 0x42, 0xb3, 0xe8, 0x82, 0xeb, 0xd1, - 0x40, 0xb2, 0x2f, 0x2c, 0x3a, 0x89, 0x4d, 0xf1, 0x1d, 0xc3, 0xfa, 0x82, 0x14, 0x86, 0x20, 0xb9, - 0x21, 0x16, 0x94, 0x5d, 0xc1, 0x93, 0xce, 0x9b, 0x7c, 0x38, 0xdf, 0x27, 0x8e, 0x1b, 0x72, 0x3d, - 0xca, 0x7c, 0x12, 0x88, 0x98, 0x96, 0xee, 0x29, 0x3e, 0x6d, 0x35, 0xf8, 0x4c, 0xf5, 0x38, 0x05, - 0x65, 0x12, 0x94, 0x77, 0x7f, 0xa5, 0x83, 0x3f, 0x5b, 0xe8, 0xc9, 0xea, 0x02, 0xcf, 0x00, 0x70, - 0x88, 0x76, 0x0d, 0xfc, 0x0c, 0xf2, 0x3d, 0x3e, 0xb8, 0x96, 0x05, 0x39, 0xb6, 0x11, 0xf2, 0x33, - 0x99, 0x5c, 0x00, 0x0f, 0x47, 0xda, 0x98, 0xa2, 0xe6, 0x2d, 0x45, 0xf0, 0x08, 0xd5, 0x86, 0x00, - 0x3d, 0xd1, 0xc9, 0x64, 0x52, 0x2e, 0xf9, 0x1f, 0x4a, 0x68, 0xae, 0xe4, 0xdb, 0xc4, 0x39, 0xfc, - 0x4f, 0x25, 0xde, 0x1d, 0x39, 0x4e, 0xd1, 0xbe, 0xb9, 0xf4, 0x24, 0x30, 0x95, 0xc9, 0xb1, 0x31, - 0xc0, 0xc3, 0x56, 0x5b, 0x2d, 0xd0, 0x79, 0x77, 0x33, 0xb5, 0xad, 0xdb, 0xa9, 0x6d, 0xfd, 0x9e, - 0xda, 0xd6, 0xf5, 0xcc, 0xae, 0xdc, 0xce, 0xec, 0xca, 0xcf, 0x99, 0x5d, 0xf9, 0x44, 0x96, 0x18, - 0x8d, 0xb1, 0xda, 0x85, 0x07, 0x8b, 0x0b, 0xbd, 0xba, 0x7b, 0x9e, 0x86, 0xdd, 0xdf, 0x31, 0xcf, - 0xe7, 0xed, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x68, 0x13, 0x23, 0xb6, 0x88, 0x04, 0x00, 0x00, + // 558 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x53, 0x4f, 0x6f, 0xd3, 0x30, + 0x1c, 0x6d, 0xd6, 0x32, 0xad, 0xae, 0xd6, 0x82, 0xc5, 0x9f, 0xd2, 0x43, 0x52, 0x4d, 0x42, 0xad, + 0x84, 0x6a, 0xb3, 0xf1, 0x09, 0xd6, 0x4e, 0x88, 0xc3, 0xb8, 0x84, 0x4a, 0x93, 0xb8, 0x44, 0x4e, + 0xfa, 0x6b, 0x1a, 0x48, 0xe2, 0xc8, 0x76, 0xd6, 0xf5, 0xcc, 0x8d, 0xd3, 0x3e, 0x07, 0x9f, 0x83, + 0xc3, 0x8e, 0x3b, 0x72, 0xa2, 0xa8, 0xfd, 0x1e, 0x08, 0xc5, 0x49, 0xbb, 0x16, 0x51, 0xc4, 0x61, + 0xa7, 0xd8, 0xbf, 0x3c, 0xbf, 0xf7, 0xfc, 0xfb, 0x3d, 0xa3, 0x5e, 0x34, 0xf3, 0x20, 0xa4, 0x02, + 0xfc, 0x40, 0x2a, 0x31, 0xa3, 0x97, 0xc7, 0x2e, 0x28, 0x76, 0x4c, 0x15, 0x4f, 0x9c, 0x10, 0x2e, + 0x21, 0x74, 0x46, 0x3c, 0x62, 0x41, 0x4c, 0x12, 0xc1, 0x15, 0xc7, 0x4f, 0x35, 0x9c, 0xac, 0xe0, + 0xa4, 0x80, 0xb7, 0x4c, 0x8f, 0xcb, 0x88, 0x4b, 0xea, 0x32, 0x09, 0x6b, 0x0e, 0x8f, 0xaf, 0xce, + 0xb5, 0x1e, 0xfb, 0xdc, 0xe7, 0x7a, 0x49, 0xb3, 0x55, 0x51, 0xb5, 0x7c, 0xce, 0xfd, 0x10, 0xa8, + 0xde, 0xb9, 0xe9, 0x98, 0xaa, 0x20, 0x02, 0xa9, 0x58, 0x94, 0x14, 0x80, 0x97, 0x3b, 0xdc, 0x31, + 0xcf, 0x03, 0x29, 0x1d, 0x8f, 0xc7, 0x4a, 0xf0, 0xb0, 0x00, 0xef, 0xba, 0x8a, 0x4c, 0xdd, 0xfc, + 0x0e, 0x19, 0x7e, 0x1c, 0xf8, 0x39, 0xfc, 0xe8, 0x5b, 0x19, 0xd5, 0x87, 0x3c, 0x39, 0xcf, 0x2e, + 0x79, 0xa6, 0xff, 0x63, 0x8c, 0x2a, 0x31, 0x8b, 0xa0, 0x69, 0xb4, 0x8d, 0x6e, 0xd5, 0xd6, 0x6b, + 0xfc, 0x0e, 0x35, 0xe0, 0x2a, 0x09, 0x04, 0x53, 0x01, 0x8f, 0x9d, 0x11, 0x53, 0xd0, 0xdc, 0x6b, + 0x1b, 0xdd, 0xda, 0x49, 0x8b, 0xe4, 0xee, 0xc9, 0xca, 0x3d, 0x19, 0xae, 0xdc, 0xf7, 0x0f, 0x6e, + 0x7e, 0x58, 0xa5, 0xeb, 0xb9, 0x65, 0xd8, 0xf5, 0xbb, 0xc3, 0x67, 0x4c, 0x01, 0xb6, 0xd1, 0xc3, + 0x3f, 0xfd, 0x34, 0xcb, 0x9a, 0xaf, 0x43, 0xfe, 0xde, 0x5b, 0xf2, 0x7e, 0x85, 0x1f, 0x68, 0xb8, + 0xdd, 0x90, 0xdb, 0x05, 0xdc, 0x41, 0x8d, 0x4d, 0xce, 0x34, 0x56, 0xcd, 0x4a, 0xdb, 0xe8, 0x56, + 0xec, 0xfa, 0x06, 0x32, 0x8d, 0x15, 0x3e, 0x47, 0xf5, 0xed, 0xce, 0x35, 0x1f, 0xb4, 0xcb, 0xdd, + 0xda, 0xc9, 0x8b, 0x5d, 0xd2, 0xa7, 0x1a, 0x3d, 0xc8, 0xc1, 0xf6, 0x21, 0xdb, 0xdc, 0xe2, 0xcf, + 0x06, 0x7a, 0xa6, 0xb8, 0x62, 0xa1, 0x33, 0x0d, 0xd4, 0x64, 0x24, 0xd8, 0x94, 0x85, 0x0e, 0x8b, + 0xb4, 0xfe, 0xbe, 0xe6, 0x7d, 0x4e, 0xf2, 0x58, 0x90, 0x2c, 0x16, 0x6b, 0xd2, 0x01, 0x0f, 0xe2, + 0xfe, 0xab, 0xac, 0x43, 0x5f, 0xe7, 0x56, 0xd7, 0x0f, 0xd4, 0x24, 0x75, 0x89, 0xc7, 0x23, 0x5a, + 0x64, 0x28, 0xff, 0xf4, 0xe4, 0xe8, 0x13, 0x55, 0xb3, 0x04, 0xa4, 0x3e, 0x20, 0xed, 0x27, 0x5a, + 0xeb, 0x62, 0x2d, 0x75, 0xaa, 0x95, 0x8e, 0x7e, 0xed, 0xa1, 0x47, 0xdb, 0x63, 0x7c, 0x03, 0x80, + 0x27, 0xa8, 0x9a, 0x5b, 0x1b, 0x43, 0x36, 0xce, 0x7b, 0x37, 0x73, 0xa0, 0xd9, 0x33, 0x25, 0x0b, + 0xd5, 0xdc, 0x54, 0xc4, 0xce, 0x14, 0x02, 0x7f, 0xa2, 0x74, 0x36, 0xaa, 0x36, 0xca, 0x4a, 0x17, + 0xba, 0x82, 0x3f, 0xa2, 0xda, 0x18, 0xc0, 0x51, 0xdc, 0xc9, 0x8a, 0xc5, 0xb0, 0xff, 0x61, 0x86, + 0x66, 0x66, 0xbe, 0xcc, 0xad, 0xce, 0x7f, 0x9a, 0xb1, 0xab, 0x63, 0x80, 0x21, 0xef, 0xa7, 0x22, + 0xc6, 0x02, 0x35, 0x0a, 0x2d, 0x25, 0x80, 0xc9, 0x54, 0xcc, 0x74, 0x12, 0xee, 0x57, 0xef, 0x50, + 0xeb, 0x0d, 0x0b, 0x81, 0xfe, 0xdb, 0x9b, 0x85, 0x69, 0xdc, 0x2e, 0x4c, 0xe3, 0xe7, 0xc2, 0x34, + 0xae, 0x97, 0x66, 0xe9, 0x76, 0x69, 0x96, 0xbe, 0x2f, 0xcd, 0xd2, 0x07, 0xb2, 0xc1, 0xa8, 0x03, + 0xd6, 0xcb, 0xc3, 0x98, 0x6f, 0xe8, 0xd5, 0xdd, 0x53, 0xd5, 0xec, 0xee, 0xbe, 0x7e, 0x49, 0xaf, + 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x59, 0xe4, 0xef, 0x94, 0x04, 0x00, 0x00, } func (m *TopLevelDomain) Marshal() (dAtA []byte, err error) { diff --git a/x/registry/types/tx.pb.go b/x/registry/types/tx.pb.go index c140e9ac..bac35484 100644 --- a/x/registry/types/tx.pb.go +++ b/x/registry/types/tx.pb.go @@ -920,58 +920,60 @@ func init() { func init() { proto.RegisterFile("mycel/registry/v1beta1/tx.proto", fileDescriptor_a149ca4076788b36) } var fileDescriptor_a149ca4076788b36 = []byte{ - // 815 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x4d, 0x4f, 0xd4, 0x5a, - 0x18, 0x9e, 0x73, 0x87, 0x8f, 0x7b, 0x5f, 0x72, 0x2f, 0xa4, 0x17, 0xb8, 0xa5, 0x17, 0x66, 0xb8, - 0x0d, 0x97, 0x00, 0x66, 0x5a, 0x67, 0xc0, 0x85, 0xa8, 0x0b, 0x11, 0x88, 0x18, 0xc7, 0x98, 0x8a, - 0x21, 0xba, 0x21, 0x9d, 0xf6, 0x58, 0x1a, 0x66, 0x7a, 0x6a, 0x7b, 0x80, 0x19, 0xb7, 0x46, 0x13, - 0xe2, 0x42, 0x57, 0x6e, 0x5c, 0xe8, 0x9a, 0x95, 0x2b, 0x57, 0xfe, 0x00, 0x96, 0x2c, 0x5d, 0xa9, - 0x81, 0x1f, 0xe1, 0xd6, 0xcc, 0xe9, 0xcc, 0x61, 0x3e, 0xda, 0xf9, 0x00, 0x16, 0xae, 0x7a, 0x3e, - 0x9e, 0xe7, 0x39, 0xcf, 0xdb, 0xf3, 0xf6, 0x7d, 0x0b, 0xc9, 0x42, 0xc9, 0xc0, 0x79, 0xd5, 0xc3, - 0x96, 0xed, 0x53, 0xaf, 0xa4, 0xee, 0xa6, 0x73, 0x98, 0xea, 0x69, 0x95, 0x16, 0x15, 0xd7, 0x23, - 0x94, 0x08, 0xa3, 0x0c, 0xa0, 0x54, 0x01, 0x4a, 0x05, 0x20, 0x25, 0x0c, 0xe2, 0x17, 0x88, 0xaf, - 0xe6, 0x74, 0x1f, 0x73, 0x96, 0x41, 0x6c, 0x27, 0xe0, 0x49, 0xc3, 0x16, 0xb1, 0x08, 0x1b, 0xaa, - 0xe5, 0x51, 0x65, 0x35, 0x15, 0x75, 0x1c, 0x71, 0x37, 0xf3, 0x78, 0x17, 0xe7, 0x37, 0x4d, 0x52, - 0xd0, 0xab, 0x22, 0xf2, 0x7b, 0x04, 0x23, 0x59, 0xdf, 0x7a, 0xe8, 0x9a, 0x3a, 0xc5, 0x1b, 0x7a, - 0x3e, 0x8f, 0xa9, 0x86, 0x0d, 0xe2, 0x99, 0x82, 0x08, 0xfd, 0x86, 0x87, 0x75, 0x4a, 0x3c, 0x11, - 0x4d, 0xa2, 0x99, 0x3f, 0xb4, 0xea, 0x54, 0x10, 0xa0, 0xc7, 0xd1, 0x0b, 0x58, 0xfc, 0x8d, 0x2d, - 0xb3, 0xb1, 0x30, 0x0a, 0x7d, 0xae, 0xee, 0x61, 0x87, 0x8a, 0x71, 0xb6, 0x5a, 0x99, 0x09, 0x73, - 0x30, 0xb4, 0x57, 0xa3, 0xba, 0x5e, 0x72, 0xb1, 0xd8, 0xc3, 0x10, 0x4d, 0xeb, 0xc2, 0x30, 0xf4, - 0xee, 0xea, 0xf9, 0x1d, 0x2c, 0xf6, 0x32, 0x40, 0x30, 0x91, 0x93, 0x30, 0x11, 0x6a, 0x50, 0xc3, - 0xbe, 0x4b, 0x1c, 0x1f, 0xcb, 0x6f, 0x11, 0x08, 0x1c, 0xb1, 0xec, 0xf8, 0x17, 0xea, 0x7f, 0x0a, - 0xfe, 0x34, 0xab, 0x92, 0x35, 0xe6, 0xeb, 0x17, 0x23, 0x9c, 0x8f, 0x83, 0xd4, 0xec, 0x8b, 0xdb, - 0xfe, 0x80, 0x60, 0x3c, 0xeb, 0x5b, 0x1a, 0xbb, 0x28, 0xec, 0x3d, 0xc0, 0x06, 0x71, 0xcc, 0xbb, - 0xe5, 0x1b, 0x5a, 0x66, 0x17, 0x74, 0x41, 0x01, 0x2c, 0x82, 0x58, 0xc9, 0x05, 0x9d, 0xda, 0xc4, - 0xb9, 0x8f, 0x3d, 0x9b, 0x98, 0x6b, 0xce, 0x23, 0xac, 0x7b, 0x2c, 0x96, 0x1e, 0x2d, 0x72, 0x5f, - 0x9e, 0x86, 0xa9, 0x56, 0x0e, 0x79, 0x28, 0x2f, 0x10, 0x8c, 0xd5, 0x00, 0xd7, 0x89, 0x7b, 0xf6, - 0x38, 0x5a, 0xf9, 0x8d, 0xb7, 0xf1, 0xfb, 0x11, 0xc1, 0x7f, 0x91, 0x3e, 0xaa, 0x6e, 0x85, 0x7b, - 0xf0, 0x17, 0xad, 0xdb, 0x61, 0xb6, 0x06, 0x32, 0xd3, 0x4a, 0xf8, 0x87, 0xa8, 0x34, 0xe8, 0x34, - 0xb0, 0x85, 0x6b, 0x10, 0x7f, 0x82, 0x83, 0x20, 0x06, 0x32, 0xb3, 0x9d, 0x89, 0xac, 0x62, 0xac, - 0x95, 0x59, 0xf2, 0x1d, 0x96, 0x23, 0x1b, 0x36, 0xdd, 0x32, 0x3d, 0x7d, 0x4f, 0xab, 0x89, 0x6c, - 0x15, 0xe3, 0xee, 0x5e, 0x9d, 0xfc, 0x0e, 0x81, 0x1c, 0x2d, 0xc6, 0xe3, 0xdf, 0x81, 0x41, 0xaf, - 0x7e, 0x4b, 0xec, 0x9f, 0x8c, 0xcf, 0x0c, 0x64, 0xc6, 0x94, 0xa0, 0xe2, 0x28, 0xe5, 0x8a, 0xc3, - 0x8d, 0xdf, 0x22, 0xb6, 0xb3, 0x74, 0xf9, 0xf0, 0x6b, 0x32, 0x76, 0xf0, 0x2d, 0x39, 0x63, 0xd9, - 0x74, 0x6b, 0x27, 0xa7, 0x18, 0xa4, 0xa0, 0x56, 0xca, 0x53, 0xf0, 0x48, 0xf9, 0xe6, 0xb6, 0x4a, - 0x4b, 0x2e, 0xf6, 0x19, 0xc1, 0xd7, 0x1a, 0xcf, 0x90, 0x5f, 0x21, 0xf8, 0x3f, 0xeb, 0x5b, 0x2b, - 0x45, 0x8a, 0x1d, 0xb3, 0xfe, 0x6d, 0xac, 0x14, 0x5d, 0x3b, 0x00, 0x2e, 0xeb, 0xb4, 0xcb, 0xa8, - 0x85, 0x05, 0x18, 0xc1, 0x65, 0x4d, 0x3f, 0x3c, 0x5b, 0xc2, 0x37, 0xe5, 0xcf, 0x08, 0x52, 0x1d, - 0xb9, 0xf9, 0x35, 0xd3, 0xe6, 0x39, 0x82, 0xbf, 0x79, 0x6d, 0x59, 0xc7, 0xc5, 0x8b, 0x2d, 0xda, - 0x43, 0x10, 0xdf, 0xc6, 0xa5, 0x4a, 0xa9, 0x2b, 0x0f, 0x23, 0x0a, 0xdc, 0x04, 0xfc, 0x1b, 0x62, - 0x82, 0x97, 0x85, 0x7d, 0x04, 0xb3, 0xa7, 0xfb, 0x0d, 0x1f, 0x63, 0xcd, 0x27, 0x4c, 0xf2, 0xb6, - 0x51, 0xea, 0xd2, 0xba, 0x02, 0x82, 0xd7, 0xa4, 0x51, 0x09, 0x23, 0x64, 0x47, 0x9e, 0x87, 0x74, - 0xc7, 0x56, 0xaa, 0x01, 0x64, 0x7e, 0xfc, 0x0e, 0xf1, 0xac, 0x6f, 0x09, 0xcf, 0x40, 0x08, 0x69, - 0x90, 0xa9, 0xa8, 0x3b, 0x0b, 0x6d, 0x57, 0xd2, 0x95, 0xae, 0xe0, 0x3c, 0xed, 0x9e, 0xc2, 0x60, - 0x63, 0x67, 0x9b, 0x6b, 0xab, 0xc4, 0xb1, 0x52, 0xa6, 0x73, 0x2c, 0x3f, 0xf2, 0x35, 0x82, 0xb1, - 0xe8, 0xb6, 0xb4, 0xd0, 0x42, 0x31, 0x92, 0x25, 0x5d, 0x3f, 0x0b, 0x8b, 0x3b, 0x7a, 0x89, 0x60, - 0x34, 0xa2, 0xbb, 0xa4, 0x3b, 0x10, 0xae, 0xa7, 0x48, 0x57, 0xbb, 0xa6, 0x70, 0x23, 0xfb, 0x08, - 0xfe, 0x89, 0x2a, 0xd6, 0xad, 0x5e, 0x75, 0x04, 0x47, 0x5a, 0xec, 0x9e, 0xc3, 0xbd, 0x1c, 0x20, - 0x90, 0x3b, 0xa8, 0xa6, 0x37, 0x5a, 0x1c, 0xd1, 0x9e, 0x2e, 0xad, 0x9c, 0x8b, 0xce, 0xcd, 0x52, - 0x18, 0x6a, 0x2a, 0x56, 0x97, 0xda, 0xe6, 0xe6, 0x29, 0x58, 0x9a, 0xef, 0x02, 0xcc, 0x4f, 0xfd, - 0x84, 0x60, 0xba, 0xc3, 0xf2, 0x73, 0xb3, 0xbd, 0x7e, 0x1b, 0x09, 0x69, 0xed, 0xdc, 0x12, 0x55, - 0xe3, 0x4b, 0xb7, 0x0f, 0x8f, 0x13, 0xe8, 0xe8, 0x38, 0x81, 0xbe, 0x1f, 0x27, 0xd0, 0x9b, 0x93, - 0x44, 0xec, 0xe8, 0x24, 0x11, 0xfb, 0x72, 0x92, 0x88, 0x3d, 0x56, 0x6a, 0x3a, 0x30, 0x3b, 0x2e, - 0x15, 0xfc, 0xcf, 0x07, 0x13, 0xb5, 0x78, 0xfa, 0xe7, 0xcf, 0xba, 0x71, 0xae, 0x8f, 0xfd, 0xe7, - 0xcf, 0xff, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x7c, 0x79, 0x09, 0x87, 0x0c, 0x00, 0x00, + // 847 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcd, 0x6f, 0xe3, 0x44, + 0x14, 0xcf, 0x90, 0x7e, 0xc0, 0xab, 0xa0, 0x91, 0xfb, 0x81, 0xeb, 0xb6, 0x49, 0xb1, 0x20, 0x6a, + 0x81, 0xd8, 0x24, 0x05, 0x21, 0x3e, 0x7a, 0xa0, 0xb4, 0x15, 0x45, 0x44, 0xaa, 0x4c, 0x51, 0x05, + 0x97, 0xc8, 0xb1, 0x07, 0xd7, 0x6a, 0xe2, 0x31, 0x9e, 0x69, 0x9a, 0x70, 0x45, 0x42, 0xc0, 0x01, + 0x38, 0xee, 0x61, 0x2f, 0xab, 0xbd, 0xf5, 0xb8, 0x87, 0x3d, 0xee, 0xb9, 0xc7, 0x1e, 0xf7, 0xb4, + 0xbb, 0x6a, 0xff, 0x88, 0xbd, 0xae, 0x3c, 0x4e, 0xa6, 0x49, 0x1a, 0xe7, 0xa3, 0xed, 0x61, 0x4f, + 0xf5, 0xd8, 0xbf, 0xf7, 0x7b, 0xbf, 0x37, 0xf3, 0xe6, 0xf7, 0x1a, 0xc8, 0x54, 0x1b, 0x16, 0xae, + 0xe8, 0x01, 0x76, 0x5c, 0xca, 0x82, 0x86, 0x5e, 0xcb, 0x97, 0x31, 0x33, 0xf3, 0x3a, 0xab, 0x6b, + 0x7e, 0x40, 0x18, 0x91, 0xe6, 0x39, 0x40, 0x6b, 0x01, 0xb4, 0x26, 0x40, 0x49, 0x5b, 0x84, 0x56, + 0x09, 0xd5, 0xcb, 0x26, 0xc5, 0x22, 0xca, 0x22, 0xae, 0x17, 0xc5, 0x29, 0xb3, 0x0e, 0x71, 0x08, + 0x7f, 0xd4, 0xc3, 0xa7, 0xe6, 0xdb, 0x5c, 0x5c, 0x3a, 0xe2, 0x97, 0x2a, 0xb8, 0x86, 0x2b, 0x25, + 0x9b, 0x54, 0xcd, 0x16, 0x89, 0xfa, 0x00, 0xc1, 0x5c, 0x91, 0x3a, 0x3f, 0xf9, 0xb6, 0xc9, 0xf0, + 0x81, 0x59, 0xa9, 0x60, 0x66, 0x60, 0x8b, 0x04, 0xb6, 0x24, 0xc3, 0xa4, 0x15, 0x60, 0x93, 0x91, + 0x40, 0x46, 0x2b, 0x68, 0xf5, 0x2d, 0xa3, 0xb5, 0x94, 0x24, 0x18, 0xf3, 0xcc, 0x2a, 0x96, 0xdf, + 0xe0, 0xaf, 0xf9, 0xb3, 0x34, 0x0f, 0x13, 0xbe, 0x19, 0x60, 0x8f, 0xc9, 0x49, 0xfe, 0xb6, 0xb9, + 0x92, 0x3e, 0x06, 0xe9, 0x84, 0xb3, 0x96, 0x02, 0x4e, 0x5b, 0x62, 0x0d, 0x1f, 0xcb, 0x63, 0x1c, + 0x93, 0x3a, 0x69, 0xcb, 0xb7, 0xdf, 0xf0, 0xb1, 0x34, 0x0b, 0xe3, 0x35, 0xb3, 0x72, 0x8c, 0xe5, + 0x71, 0x0e, 0x88, 0x16, 0x6a, 0x06, 0x96, 0x7b, 0x4a, 0x34, 0x30, 0xf5, 0x89, 0x47, 0xb1, 0x7a, + 0x0f, 0x81, 0x24, 0x10, 0x5b, 0x1e, 0xbd, 0xd3, 0x0a, 0xb2, 0x30, 0x6d, 0x7b, 0xb4, 0x87, 0xfc, + 0xb7, 0xed, 0x56, 0xa6, 0x3e, 0xda, 0x97, 0x40, 0xb9, 0xae, 0x4c, 0x08, 0x7f, 0x88, 0x60, 0xa9, + 0x48, 0x1d, 0x83, 0x1f, 0x16, 0x0e, 0x7e, 0xc4, 0x16, 0xf1, 0xec, 0x1f, 0xc2, 0x53, 0xda, 0xe2, + 0x87, 0x74, 0x47, 0x25, 0x6c, 0xc0, 0x62, 0xb3, 0x1f, 0x4c, 0xe6, 0x12, 0xaf, 0xe4, 0xe3, 0xc0, + 0x25, 0x76, 0xc9, 0xf5, 0x4a, 0x0d, 0x6c, 0x06, 0xbc, 0x9c, 0x31, 0x43, 0x6e, 0x87, 0xec, 0x71, + 0xc4, 0xae, 0xf7, 0x33, 0x36, 0x03, 0x35, 0x0b, 0xef, 0xf7, 0x13, 0x29, 0xaa, 0xf9, 0x0b, 0xc1, + 0x42, 0x1b, 0x70, 0x9f, 0xf8, 0x37, 0x2f, 0x65, 0x80, 0xe4, 0xe4, 0x00, 0xc9, 0x8f, 0x10, 0xbc, + 0x17, 0x2b, 0xa5, 0x25, 0x58, 0xda, 0x83, 0x54, 0xf7, 0xb5, 0xe0, 0xda, 0xa6, 0x0a, 0x59, 0xad, + 0xf7, 0xa5, 0xd4, 0xba, 0x98, 0xde, 0x61, 0x9d, 0x45, 0x7e, 0x05, 0xc9, 0x5f, 0x71, 0x54, 0xc9, + 0x54, 0x61, 0x6d, 0x38, 0x92, 0x1d, 0x8c, 0x8d, 0x30, 0x4a, 0xfd, 0x9e, 0xf7, 0xca, 0x81, 0xcb, + 0x0e, 0xed, 0xc0, 0x3c, 0x31, 0xda, 0x6a, 0xdb, 0xc1, 0x78, 0xb4, 0xfd, 0x53, 0xef, 0x23, 0x50, + 0xe3, 0xc9, 0xc4, 0x0e, 0xd4, 0x20, 0xd5, 0xb1, 0xcd, 0xa1, 0xf8, 0xc9, 0x95, 0xe4, 0xea, 0x54, + 0x61, 0x41, 0x8b, 0xec, 0x47, 0x0b, 0xed, 0x47, 0x28, 0xff, 0x96, 0xb8, 0xde, 0xe6, 0x27, 0x67, + 0xcf, 0x32, 0x89, 0xd3, 0xe7, 0x99, 0x55, 0xc7, 0x65, 0x87, 0xc7, 0x65, 0xcd, 0x22, 0x55, 0xbd, + 0xe9, 0x55, 0xd1, 0x9f, 0x1c, 0xb5, 0x8f, 0xf4, 0xf0, 0xa6, 0x50, 0x1e, 0x40, 0x8d, 0xe9, 0xa0, + 0x33, 0xbf, 0xfa, 0x2f, 0x82, 0x0f, 0x8a, 0xd4, 0xd9, 0xae, 0x33, 0xec, 0xd9, 0x9d, 0xdb, 0xb1, + 0x5d, 0xf7, 0xdd, 0x08, 0xb8, 0x65, 0xb2, 0x11, 0xcb, 0x96, 0x3e, 0x07, 0x19, 0x87, 0x9c, 0x34, + 0xb6, 0x67, 0xe6, 0xc4, 0xf7, 0x8e, 0x86, 0x79, 0x82, 0x20, 0x37, 0x94, 0xa0, 0xd7, 0xb5, 0x79, + 0xfe, 0x40, 0x30, 0x23, 0x9c, 0x66, 0x1f, 0xd7, 0xef, 0xd6, 0xc6, 0x53, 0x90, 0x3c, 0xc2, 0x8d, + 0xa6, 0xf1, 0x85, 0x8f, 0x31, 0x76, 0xb7, 0x0c, 0x8b, 0x3d, 0x44, 0x08, 0x87, 0xf8, 0x07, 0xc1, + 0xda, 0xd5, 0xf7, 0xae, 0x4b, 0xd9, 0x76, 0x95, 0x49, 0xc5, 0xb5, 0x1a, 0x23, 0x4a, 0xd7, 0x61, + 0xa6, 0xd3, 0x31, 0x38, 0x49, 0xb3, 0x0e, 0x29, 0xb8, 0x46, 0xaf, 0xae, 0x43, 0x7e, 0x68, 0x2d, + 0xad, 0x0a, 0x0a, 0x2f, 0xdf, 0x84, 0x64, 0x91, 0x3a, 0xd2, 0xef, 0x20, 0xf5, 0x98, 0x99, 0xb9, + 0xb8, 0x43, 0xeb, 0x39, 0xbf, 0x94, 0xcf, 0x46, 0x82, 0x8b, 0xce, 0xfb, 0x0d, 0xa6, 0xbb, 0x47, + 0xdd, 0x87, 0x03, 0x99, 0x04, 0x56, 0x29, 0x0c, 0x8f, 0x15, 0x29, 0xff, 0x43, 0xb0, 0x10, 0x3f, + 0xa5, 0x3e, 0xed, 0xc3, 0x18, 0x1b, 0xa5, 0x7c, 0x7d, 0x93, 0x28, 0xa1, 0xe8, 0x4f, 0x04, 0xf3, + 0x31, 0x93, 0x26, 0x3f, 0x04, 0x71, 0x67, 0x88, 0xf2, 0xc5, 0xc8, 0x21, 0x42, 0xc8, 0xdf, 0x08, + 0xde, 0x8d, 0xf3, 0xec, 0x7e, 0x5b, 0x1d, 0x13, 0xa3, 0x7c, 0x39, 0x7a, 0x8c, 0xd0, 0x72, 0x8a, + 0x40, 0x1d, 0xc2, 0x53, 0x37, 0xfa, 0xa4, 0x18, 0x1c, 0xae, 0x6c, 0xdf, 0x2a, 0x5c, 0x88, 0x65, + 0x90, 0xba, 0xe6, 0x56, 0x1f, 0x0d, 0xec, 0xcd, 0x2b, 0xb0, 0xb2, 0x3e, 0x02, 0x58, 0x64, 0x7d, + 0x8c, 0x20, 0x3b, 0xa4, 0xff, 0x7c, 0x33, 0x98, 0x7f, 0x00, 0x85, 0xb2, 0x7b, 0x6b, 0x8a, 0x96, + 0xf0, 0xcd, 0xef, 0xce, 0x2e, 0xd2, 0xe8, 0xfc, 0x22, 0x8d, 0x5e, 0x5c, 0xa4, 0xd1, 0xff, 0x97, + 0xe9, 0xc4, 0xf9, 0x65, 0x3a, 0xf1, 0xf4, 0x32, 0x9d, 0xf8, 0x45, 0x6b, 0x9b, 0xc3, 0x3c, 0x5d, + 0x2e, 0x1a, 0x47, 0xd1, 0x42, 0xaf, 0x5f, 0xfd, 0x18, 0xe0, 0x33, 0xb9, 0x3c, 0xc1, 0xff, 0xf5, + 0x5f, 0x7f, 0x15, 0x00, 0x00, 0xff, 0xff, 0x6d, 0x01, 0xb0, 0x9c, 0x9a, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/resolver/types/query.pb.go b/x/resolver/types/query.pb.go index 5e187a24..37a9ecb0 100644 --- a/x/resolver/types/query.pb.go +++ b/x/resolver/types/query.pb.go @@ -6,7 +6,6 @@ package types import ( context "context" fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -541,53 +540,53 @@ func init() { } var fileDescriptor_d9dcb5275900fe88 = []byte{ - // 735 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x96, 0x4f, 0x4f, 0x13, 0x4f, - 0x18, 0xc7, 0x3b, 0xed, 0x8f, 0xfe, 0xc2, 0x80, 0x09, 0x19, 0x11, 0x6b, 0x63, 0x56, 0x1d, 0x39, - 0x10, 0x08, 0xbb, 0xfc, 0x31, 0x91, 0xa0, 0x17, 0x89, 0x26, 0x1e, 0x0c, 0x81, 0xd2, 0x48, 0x44, - 0x0d, 0x99, 0x6e, 0x27, 0xeb, 0x86, 0xed, 0xce, 0xb2, 0xb3, 0xad, 0x6c, 0x48, 0x0f, 0x7a, 0xf4, - 0x64, 0x62, 0xe2, 0x1b, 0xf2, 0x02, 0x27, 0x49, 0xbc, 0x78, 0x22, 0x06, 0xf4, 0x7d, 0x98, 0xce, - 0xcc, 0xb6, 0xbb, 0xfd, 0xc7, 0x92, 0xe0, 0x6d, 0xfb, 0xec, 0xf3, 0x7c, 0xe7, 0xfb, 0x79, 0x76, - 0x9e, 0x27, 0x85, 0xb8, 0x16, 0x9a, 0xd4, 0x31, 0x7c, 0xca, 0x99, 0xd3, 0xa0, 0xbe, 0xd1, 0x58, - 0xac, 0xd0, 0x80, 0x2c, 0x1a, 0xfb, 0x75, 0xea, 0x87, 0xba, 0xe7, 0xb3, 0x80, 0xa1, 0x29, 0x91, - 0xa3, 0x47, 0x39, 0xba, 0xca, 0x29, 0xce, 0x9a, 0x8c, 0xd7, 0x18, 0x37, 0x2a, 0x84, 0x53, 0x59, - 0xd0, 0x2e, 0xf7, 0x88, 0x65, 0xbb, 0x24, 0xb0, 0x99, 0x2b, 0x35, 0x8a, 0x93, 0x16, 0xb3, 0x98, - 0x78, 0x34, 0x5a, 0x4f, 0x2a, 0x7a, 0xdb, 0x62, 0xcc, 0x72, 0xa8, 0x41, 0x3c, 0xdb, 0x20, 0xae, - 0xcb, 0x02, 0x51, 0xc2, 0xd5, 0xdb, 0x85, 0xc8, 0x9b, 0x65, 0xf3, 0x20, 0x26, 0xce, 0xa9, 0xc9, - 0xdc, 0xea, 0xae, 0x43, 0x1b, 0xd4, 0xd9, 0xad, 0xb2, 0x1a, 0xb1, 0xa3, 0x53, 0xee, 0x0f, 0xa0, - 0xf1, 0x88, 0x4f, 0x6a, 0x4a, 0x16, 0x4f, 0x42, 0xb4, 0xd9, 0x32, 0xbb, 0x21, 0x82, 0x25, 0xba, - 0x5f, 0xa7, 0x3c, 0xc0, 0x5b, 0xf0, 0x7a, 0x22, 0xca, 0x3d, 0xe6, 0x72, 0x8a, 0x1e, 0xc3, 0xbc, - 0x2c, 0x2e, 0x80, 0xbb, 0x60, 0x66, 0x6c, 0x49, 0xd3, 0xfb, 0x37, 0x43, 0x97, 0x75, 0x6b, 0xff, - 0x1d, 0x9d, 0xde, 0xc9, 0x94, 0x54, 0x0d, 0xfe, 0x04, 0x60, 0x41, 0xa8, 0x6e, 0x13, 0xc7, 0xa1, - 0x41, 0x89, 0x9a, 0xcc, 0xaf, 0xaa, 0x13, 0x91, 0x06, 0xa1, 0x34, 0xbf, 0x4e, 0x6a, 0x54, 0xc8, - 0x8f, 0x96, 0x62, 0x11, 0x84, 0xe1, 0xb8, 0xfc, 0xb5, 0x41, 0x7c, 0xea, 0x06, 0x85, 0xac, 0xc8, - 0x48, 0xc4, 0xd0, 0x2c, 0x9c, 0x78, 0x1f, 0x93, 0x2e, 0x87, 0x1e, 0x2d, 0xe4, 0x44, 0x5e, 0x4f, - 0x1c, 0x6f, 0xc3, 0x5b, 0x7d, 0xbc, 0x28, 0xce, 0x55, 0x38, 0xd2, 0x20, 0x4e, 0x9d, 0x2a, 0xcc, - 0xe9, 0x36, 0xa6, 0xec, 0x7d, 0x1b, 0x33, 0x51, 0x2c, 0x4b, 0xf0, 0x07, 0x00, 0x6f, 0x08, 0xe5, - 0xa7, 0x2e, 0xbf, 0x7a, 0xc4, 0x69, 0x78, 0xad, 0x1a, 0xe9, 0xc6, 0xf8, 0x92, 0x41, 0xbc, 0x09, - 0xa7, 0xba, 0x2d, 0x28, 0xb2, 0x87, 0x49, 0xb2, 0x7b, 0x83, 0xc8, 0x3a, 0x95, 0x0a, 0xeb, 0x8d, - 0x92, 0x7c, 0xe2, 0x38, 0xf2, 0x05, 0xbf, 0x42, 0x2c, 0x7c, 0x0c, 0xe0, 0xcd, 0x1e, 0x79, 0x65, - 0x79, 0x0b, 0xe6, 0x85, 0x85, 0xd6, 0xa5, 0xcb, 0xcd, 0x8c, 0x2d, 0x3d, 0x1a, 0x74, 0xe9, 0x06, - 0x08, 0xe8, 0x2f, 0x45, 0xf5, 0x33, 0x37, 0xf0, 0xc3, 0x92, 0x92, 0x2a, 0xbe, 0x82, 0x63, 0xb1, - 0x30, 0x9a, 0x80, 0xb9, 0x3d, 0x1a, 0x2a, 0xf3, 0xad, 0x47, 0xf4, 0x20, 0x6a, 0x54, 0xb6, 0xeb, - 0xa6, 0x77, 0x35, 0x2a, 0xd1, 0xa5, 0xd5, 0xec, 0x0a, 0xc0, 0xae, 0xea, 0x54, 0x99, 0x1e, 0xfc, - 0x83, 0x3b, 0xae, 0x9c, 0xe6, 0xda, 0x4e, 0xf1, 0x96, 0x6a, 0x5d, 0xfc, 0x3c, 0xd5, 0xba, 0x95, - 0xe4, 0xd7, 0xc6, 0x83, 0x20, 0x62, 0xa5, 0xb2, 0x60, 0xe9, 0xcf, 0xff, 0x70, 0x44, 0xa8, 0xa2, - 0xaf, 0x00, 0xe6, 0xe5, 0x38, 0xa3, 0xd9, 0xa1, 0x9d, 0x4f, 0x6c, 0x90, 0xe2, 0x5c, 0xaa, 0x5c, - 0xe9, 0x13, 0x2f, 0x7f, 0xfc, 0xf1, 0xfb, 0x4b, 0x76, 0x1e, 0xcd, 0x19, 0xa2, 0x68, 0x5e, 0x12, - 0x1b, 0x43, 0xf7, 0x17, 0x3a, 0x05, 0x70, 0x3c, 0x3e, 0x80, 0x68, 0x61, 0xe8, 0x91, 0x7d, 0x96, - 0x4e, 0x71, 0xf1, 0x12, 0x15, 0xca, 0xaa, 0x2d, 0xac, 0x9a, 0x88, 0xa4, 0xb2, 0x2a, 0xd7, 0xce, - 0xae, 0x2f, 0x34, 0x8c, 0xc3, 0xce, 0xb7, 0x6e, 0x46, 0x3f, 0xe4, 0x67, 0x6d, 0x1a, 0x87, 0xdd, - 0x1b, 0xaa, 0x89, 0xbe, 0x03, 0x38, 0xda, 0x9e, 0x43, 0x34, 0x3f, 0xd4, 0x6b, 0xf7, 0xb2, 0x29, - 0xea, 0x69, 0xd3, 0x15, 0x97, 0x29, 0xb8, 0xde, 0xa2, 0xd7, 0xa9, 0xb8, 0xaa, 0x2e, 0x4f, 0x05, - 0x95, 0x58, 0x4b, 0x4d, 0xf4, 0x0d, 0x40, 0xd8, 0x19, 0x50, 0xa4, 0xa7, 0x9e, 0x64, 0xc9, 0x64, - 0x5c, 0x72, 0xf2, 0x71, 0x59, 0x40, 0xad, 0xa3, 0x17, 0xa9, 0xa0, 0x88, 0xe3, 0x28, 0x28, 0x3e, - 0x8c, 0x0a, 0x1d, 0x03, 0x08, 0x3b, 0x13, 0x73, 0x01, 0x45, 0xcf, 0x16, 0xb8, 0x80, 0xa2, 0x77, - 0x8a, 0xf1, 0x8e, 0xa0, 0x28, 0xa3, 0x52, 0x2a, 0x8a, 0x80, 0x1e, 0xa4, 0xbb, 0x70, 0x7b, 0x34, - 0x6c, 0xae, 0x3d, 0x3f, 0x3a, 0xd3, 0xc0, 0xc9, 0x99, 0x06, 0x7e, 0x9d, 0x69, 0xe0, 0xf3, 0xb9, - 0x96, 0x39, 0x39, 0xd7, 0x32, 0x3f, 0xcf, 0xb5, 0xcc, 0x8e, 0x6e, 0xd9, 0xc1, 0xbb, 0x7a, 0x45, - 0x37, 0x59, 0xad, 0xdf, 0xb9, 0x07, 0x9d, 0x93, 0x83, 0xd0, 0xa3, 0xbc, 0x92, 0x17, 0xff, 0x27, - 0x96, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xe3, 0xbf, 0x4f, 0x99, 0x44, 0x09, 0x00, 0x00, + // 734 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x96, 0x5d, 0x6b, 0x13, 0x4d, + 0x14, 0xc7, 0x33, 0xc9, 0xd3, 0x3c, 0xf4, 0xa4, 0xc5, 0x32, 0xd6, 0x1a, 0x83, 0x6c, 0x75, 0x2a, + 0x52, 0xac, 0xdd, 0xed, 0x8b, 0x60, 0xa9, 0xde, 0x58, 0x14, 0xbc, 0x2a, 0x6d, 0x5a, 0x5a, 0x14, + 0x31, 0x4c, 0x93, 0x61, 0x0d, 0xdd, 0xdd, 0xd9, 0xee, 0x6e, 0xd2, 0x2e, 0x25, 0x37, 0x82, 0xb7, + 0x22, 0x08, 0x7e, 0x23, 0xa1, 0xe2, 0x4d, 0xa1, 0x37, 0x5e, 0x89, 0xa4, 0x7e, 0x01, 0xbf, 0x81, + 0x64, 0x66, 0xf2, 0xb2, 0x79, 0xeb, 0x16, 0xec, 0x5d, 0x3a, 0x7b, 0xfe, 0xe7, 0xfc, 0x7f, 0x67, + 0xe6, 0x1c, 0x0a, 0xc4, 0x0e, 0x8b, 0xcc, 0x32, 0x3c, 0xe6, 0x73, 0xab, 0xca, 0x3c, 0xa3, 0xba, + 0xb8, 0xc7, 0x02, 0xba, 0x68, 0x1c, 0x54, 0x98, 0x17, 0xea, 0xae, 0xc7, 0x03, 0x8e, 0xa7, 0x44, + 0x8c, 0xde, 0x8c, 0xd1, 0x55, 0x4c, 0x6e, 0xd2, 0xe4, 0x26, 0x17, 0x21, 0x46, 0xe3, 0x97, 0x8c, + 0xce, 0xdd, 0x36, 0x39, 0x37, 0x2d, 0x66, 0x50, 0xb7, 0x6c, 0x50, 0xc7, 0xe1, 0x01, 0x0d, 0xca, + 0xdc, 0xf1, 0xd5, 0xd7, 0x85, 0x66, 0x3d, 0xb3, 0xec, 0x07, 0x5e, 0xd8, 0xaa, 0xe7, 0xb3, 0x22, + 0x77, 0x4a, 0x05, 0x8b, 0x55, 0x99, 0x55, 0x28, 0x71, 0x9b, 0x96, 0x1d, 0xa5, 0x98, 0x19, 0xe0, + 0xd0, 0xa5, 0x1e, 0xb5, 0x55, 0x5a, 0x32, 0x09, 0x78, 0xb3, 0xe1, 0x78, 0x43, 0x1c, 0xe6, 0xd9, + 0x41, 0x85, 0xf9, 0x01, 0xd9, 0x82, 0xeb, 0x91, 0x53, 0xdf, 0xe5, 0x8e, 0xcf, 0xf0, 0x53, 0x48, + 0x4b, 0x71, 0x16, 0xdd, 0x41, 0xb3, 0x99, 0x25, 0x4d, 0xef, 0x0f, 0xa8, 0x4b, 0xdd, 0xda, 0x7f, + 0x27, 0x3f, 0xa7, 0x13, 0x79, 0xa5, 0x21, 0x1f, 0x11, 0x64, 0x45, 0xd6, 0x5d, 0x6a, 0x59, 0x2c, + 0xc8, 0xb3, 0x22, 0xf7, 0x4a, 0xaa, 0x22, 0x9e, 0x86, 0x8c, 0x34, 0x5f, 0x70, 0xa8, 0xcd, 0x44, + 0xfe, 0xd1, 0x3c, 0xc8, 0xa3, 0x75, 0x6a, 0x33, 0x3c, 0x03, 0xe3, 0x2a, 0xc0, 0xa5, 0x1e, 0x73, + 0x82, 0x6c, 0x52, 0x84, 0x8c, 0xc9, 0xc3, 0x0d, 0x71, 0x86, 0x1f, 0x02, 0x3e, 0x14, 0xc9, 0x0b, + 0x9e, 0xc8, 0x5e, 0x08, 0x42, 0x97, 0x65, 0x53, 0x22, 0x72, 0xe2, 0xb0, 0xa3, 0xec, 0x76, 0xe8, + 0x32, 0xb2, 0x0b, 0xb7, 0xfa, 0xf8, 0x51, 0xac, 0xab, 0x30, 0x52, 0xa5, 0x56, 0x85, 0x29, 0xd4, + 0x7b, 0x2d, 0x54, 0xd9, 0xff, 0x16, 0x6a, 0x44, 0x2c, 0x25, 0xe4, 0x03, 0x82, 0x1b, 0x22, 0xf3, + 0x73, 0xc7, 0xbf, 0x0a, 0xcc, 0xfb, 0x70, 0xad, 0xe4, 0xf8, 0x7d, 0x18, 0xc7, 0x4b, 0xcd, 0x82, + 0x02, 0x70, 0x13, 0xa6, 0xba, 0x6d, 0x28, 0xba, 0xc7, 0x51, 0xba, 0xbb, 0x83, 0xe8, 0xda, 0x4a, + 0x85, 0xf6, 0x56, 0xa5, 0x7c, 0x66, 0x59, 0xf2, 0x83, 0xff, 0x4f, 0xd1, 0xc8, 0x37, 0x04, 0x37, + 0x7b, 0x0a, 0x28, 0xd3, 0x5b, 0x90, 0x16, 0x26, 0x1a, 0xcf, 0x2f, 0x35, 0x9b, 0x59, 0x7a, 0x32, + 0xe8, 0xf9, 0x0d, 0x48, 0xa0, 0xef, 0x08, 0xf5, 0x0b, 0x27, 0xf0, 0xc2, 0xbc, 0x4a, 0x95, 0x7b, + 0x05, 0x99, 0x8e, 0x63, 0x3c, 0x01, 0xa9, 0x7d, 0x16, 0x2a, 0xf7, 0x8d, 0x9f, 0xf8, 0x51, 0xb3, + 0x55, 0xc9, 0xae, 0x37, 0xdf, 0xd5, 0xaa, 0x48, 0x9f, 0x56, 0x93, 0x2b, 0x88, 0xb8, 0xaa, 0x57, + 0xdb, 0xec, 0xe8, 0x4a, 0x5e, 0xbb, 0xf2, 0x9a, 0x6a, 0x79, 0x25, 0x5b, 0xaa, 0x79, 0x9d, 0x15, + 0x55, 0xf3, 0x56, 0xa2, 0x37, 0x4e, 0x06, 0x61, 0x74, 0x48, 0xa5, 0x60, 0xe9, 0xcf, 0xff, 0x30, + 0x22, 0xb2, 0xe2, 0x2f, 0x08, 0xd2, 0x72, 0xb4, 0xf1, 0x83, 0xa1, 0xbd, 0x8f, 0x6c, 0x93, 0xdc, + 0x5c, 0xac, 0x58, 0xe9, 0x93, 0x2c, 0xbf, 0x3f, 0xfb, 0xfd, 0x39, 0x39, 0x8f, 0xe7, 0x0c, 0x21, + 0x9a, 0x97, 0xc4, 0xc6, 0xd0, 0x5d, 0x86, 0xeb, 0x08, 0xc6, 0x3a, 0x07, 0x11, 0x2f, 0x0c, 0x2d, + 0xd9, 0x67, 0x01, 0xe5, 0x16, 0x2f, 0xa1, 0x50, 0x56, 0x6d, 0x61, 0xd5, 0xc4, 0x2c, 0x96, 0xd5, + 0xc8, 0x62, 0x32, 0x8e, 0x3b, 0xee, 0xbf, 0xd6, 0xfa, 0x4b, 0x5e, 0x76, 0xcd, 0x38, 0xee, 0xdd, + 0x62, 0x35, 0x7c, 0x86, 0x60, 0xb4, 0x35, 0x8f, 0x78, 0x7e, 0xa8, 0xdf, 0xee, 0xc5, 0x93, 0xd3, + 0xe3, 0x86, 0x2b, 0x36, 0x53, 0xb0, 0x51, 0x5c, 0x88, 0xc5, 0xd6, 0xde, 0x46, 0x17, 0x81, 0x75, + 0xed, 0xad, 0x1a, 0xfe, 0x8a, 0x00, 0xda, 0xa3, 0x8a, 0xf5, 0xd8, 0x33, 0x2d, 0xb9, 0x8c, 0x4b, + 0xee, 0x00, 0xb2, 0x23, 0xc0, 0x36, 0xf0, 0x7a, 0x2c, 0x30, 0x6a, 0x59, 0xca, 0xae, 0x3f, 0x9c, + 0x0c, 0x7f, 0x47, 0x00, 0xed, 0xd9, 0xb9, 0x80, 0xa3, 0x67, 0x23, 0x5c, 0xc0, 0xd1, 0x3b, 0xcf, + 0xe4, 0x8d, 0xe0, 0xd8, 0xc1, 0xdb, 0xb1, 0x38, 0x02, 0x76, 0x14, 0xf7, 0xe9, 0xed, 0xb3, 0xb0, + 0xb6, 0xf6, 0xf2, 0xa4, 0xae, 0xa1, 0xd3, 0xba, 0x86, 0x7e, 0xd5, 0x35, 0xf4, 0xe9, 0x5c, 0x4b, + 0x9c, 0x9e, 0x6b, 0x89, 0x1f, 0xe7, 0x5a, 0xe2, 0xb5, 0x6e, 0x96, 0x83, 0x77, 0x95, 0x3d, 0xbd, + 0xc8, 0xed, 0x7e, 0x95, 0x8f, 0xda, 0xb5, 0x1b, 0xf7, 0xeb, 0xef, 0xa5, 0xc5, 0xff, 0x19, 0xcb, + 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xc3, 0x7c, 0x62, 0x30, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.