From f923a895f209c8857f55cb6ece1933746350624d Mon Sep 17 00:00:00 2001 From: tarumi Date: Thu, 2 Nov 2023 22:00:15 +0100 Subject: [PATCH] impl tld registration fee query --- docs/static/openapi.yml | 71 +++- proto/mycel/registry/query.proto | 10 +- .../cli/query_domain_registration_fee.go | 8 +- .../keeper/query_domain_registration_fee.go | 63 ++- x/registry/keeper/top_level_domain_fee.go | 1 + x/registry/types/query.pb.go | 370 ++++++++++++++---- x/registry/types/query.pb.gw.go | 18 + 7 files changed, 427 insertions(+), 114 deletions(-) diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 7b9325ec..fba529f6 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -50200,21 +50200,33 @@ paths: schema: type: object properties: + isRegstrable: + type: boolean fee: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Int which implements the custom - method + NOTE: The amount field is an Int which implements the custom + method - signatures required by gogoproto. + signatures required by gogoproto. + registrationPeriodInYear: + type: string + format: uint64 + maxSubDomainRegistrations: + type: string + format: uint64 + errorMessage: + type: string default: description: An unexpected error response. schema: @@ -50242,6 +50254,11 @@ paths: in: path required: true type: string + - name: registrationPeriodInYear + in: query + required: false + type: string + format: uint64 tags: - Query /mycel-domain/mycel/registry/is_registrable_domain/{name}/{parent}: @@ -81788,18 +81805,30 @@ definitions: mycel.registry.QueryDomainRegistrationFeeResponse: type: object properties: + isRegstrable: + type: boolean fee: - type: object - properties: - denom: - type: string - amount: - type: string - description: |- - Coin defines a token with a denomination and an amount. + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: |- + Coin defines a token with a denomination and an amount. - NOTE: The amount field is an Int which implements the custom method - signatures required by gogoproto. + NOTE: The amount field is an Int which implements the custom method + signatures required by gogoproto. + registrationPeriodInYear: + type: string + format: uint64 + maxSubDomainRegistrations: + type: string + format: uint64 + errorMessage: + type: string mycel.registry.QueryGetDomainOwnershipResponse: type: object properties: diff --git a/proto/mycel/registry/query.proto b/proto/mycel/registry/query.proto index ac790da8..b7ed0f0c 100644 --- a/proto/mycel/registry/query.proto +++ b/proto/mycel/registry/query.proto @@ -135,10 +135,18 @@ message QueryAllDomainOwnershipResponse { message QueryDomainRegistrationFeeRequest { string name = 1; string parent = 2; + uint64 registrationPeriodInYear = 3; } message QueryDomainRegistrationFeeResponse { - cosmos.base.v1beta1.Coin fee = 1 [(gogoproto.nullable) = false]; + bool isRegstrable = 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; } message QueryIsRegistrableDomainRequest { diff --git a/x/registry/client/cli/query_domain_registration_fee.go b/x/registry/client/cli/query_domain_registration_fee.go index 556e4883..b21dde03 100644 --- a/x/registry/client/cli/query_domain_registration_fee.go +++ b/x/registry/client/cli/query_domain_registration_fee.go @@ -6,6 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/mycel-domain/mycel/x/registry/types" + "github.com/spf13/cast" "github.com/spf13/cobra" ) @@ -13,12 +14,13 @@ var _ = strconv.Itoa(0) func CmdDomainRegistrationFee() *cobra.Command { cmd := &cobra.Command{ - Use: "domain-registration-fee [name] [parent]", + Use: "domain-registration-fee [name] [parent] [registration-period-in-year]", Short: "query domain registration fee", - Args: cobra.ExactArgs(2), + Args: cobra.ExactArgs(3), RunE: func(cmd *cobra.Command, args []string) (err error) { reqName := args[0] reqParent := args[1] + reqRegistrationPeriodInYear, err := cast.ToUint64E(args[2]) clientCtx, err := client.GetClientQueryContext(cmd) if err != nil { @@ -28,9 +30,9 @@ func CmdDomainRegistrationFee() *cobra.Command { queryClient := types.NewQueryClient(clientCtx) params := &types.QueryDomainRegistrationFeeRequest{ - Name: reqName, Parent: reqParent, + RegistrationPeriodInYear: reqRegistrationPeriodInYear, } res, err := queryClient.DomainRegistrationFee(cmd.Context(), params) diff --git a/x/registry/keeper/query_domain_registration_fee.go b/x/registry/keeper/query_domain_registration_fee.go index 294264df..e7534e61 100644 --- a/x/registry/keeper/query_domain_registration_fee.go +++ b/x/registry/keeper/query_domain_registration_fee.go @@ -9,21 +9,64 @@ import ( "google.golang.org/grpc/status" ) +func createErrorResponse(err error) *types.QueryDomainRegistrationFeeResponse { + return &types.QueryDomainRegistrationFeeResponse{ + IsRegstrable: false, + Fee: sdk.NewCoins(), + RegistrationPeriodInYear: 0, + MaxSubDomainRegistrations: 0, + ErrorMessage: err.Error(), + } +} + func (k Keeper) DomainRegistrationFee(goCtx context.Context, req *types.QueryDomainRegistrationFeeRequest) (*types.QueryDomainRegistrationFeeResponse, error) { if req == nil { return nil, status.Error(codes.InvalidArgument, "invalid request") } ctx := sdk.UnwrapSDKContext(goCtx) - - // TODO: Process the query - _ = ctx - domain := types.SecondLevelDomain{Name: req.Name, Parent: req.Parent} - config := k.GetSecondLevelDomainParentsSubdomainConfig(ctx, domain) - fee, err := config.GetRegistrationFee(domain.Name, 1) - if err != nil { - return nil, err + if req.Parent == "" { + // Top level domain + config := types.GetDefaultSubdomainConfig(1) + domain := types.TopLevelDomain{ + Name: req.Name, + SubdomainConfig: &config, + } + err := k.ValidateTopLevelDomainIsRegistrable(ctx, domain) + if err != nil { + return createErrorResponse(err), nil + } + fee, err := k.GetTopLevelDomainFee(ctx, domain, req.RegistrationPeriodInYear) + if err != nil { + return createErrorResponse(err), nil + } else { + return &types.QueryDomainRegistrationFeeResponse{ + IsRegstrable: true, + Fee: fee.TotalFee, + RegistrationPeriodInYear: 1, + MaxSubDomainRegistrations: config.MaxSubdomainRegistrations, + ErrorMessage: "", + }, nil + } + } else { + // Second level domain + domain := types.SecondLevelDomain{Name: req.Name, Parent: req.Parent} + err := k.ValidateSecondLevelDomainIsRegistrable(ctx, domain) + if err != nil { + return createErrorResponse(err), nil + } + config := k.GetSecondLevelDomainParentsSubdomainConfig(ctx, domain) + fee, err := config.GetRegistrationFee(domain.Name, req.RegistrationPeriodInYear) + if err != nil { + return createErrorResponse(err), nil + } else { + return &types.QueryDomainRegistrationFeeResponse{ + IsRegstrable: true, + Fee: sdk.NewCoins(fee), + RegistrationPeriodInYear: 1, + MaxSubDomainRegistrations: 0, + ErrorMessage: "", + }, nil + } } - - return &types.QueryDomainRegistrationFeeResponse{Fee: fee}, nil } diff --git a/x/registry/keeper/top_level_domain_fee.go b/x/registry/keeper/top_level_domain_fee.go index 1542b3f0..5ab09778 100644 --- a/x/registry/keeper/top_level_domain_fee.go +++ b/x/registry/keeper/top_level_domain_fee.go @@ -41,6 +41,7 @@ func (k Keeper) GetTopLevelDomainFee(ctx sdk.Context, topLevelDomain types.TopLe if err != nil { return types.TopLevelDomainFee{}, err } + topLevelDomainFee.TotalFee = sdk.NewCoins(sdk.NewCoin(denom, fee)) // Get burn weight (=W) weight, err := k.GetBurnWeight(ctx) diff --git a/x/registry/types/query.pb.go b/x/registry/types/query.pb.go index c5d88b1a..ff9c6653 100644 --- a/x/registry/types/query.pb.go +++ b/x/registry/types/query.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" @@ -735,8 +736,9 @@ 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"` + 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"` } func (m *QueryDomainRegistrationFeeRequest) Reset() { *m = QueryDomainRegistrationFeeRequest{} } @@ -786,8 +788,19 @@ func (m *QueryDomainRegistrationFeeRequest) GetParent() string { return "" } +func (m *QueryDomainRegistrationFeeRequest) GetRegistrationPeriodInYear() uint64 { + if m != nil { + return m.RegistrationPeriodInYear + } + return 0 +} + type QueryDomainRegistrationFeeResponse struct { - Fee types.Coin `protobuf:"bytes,1,opt,name=fee,proto3" json:"fee"` + IsRegstrable bool `protobuf:"varint,1,opt,name=isRegstrable,proto3" json:"isRegstrable,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"` } func (m *QueryDomainRegistrationFeeResponse) Reset() { *m = QueryDomainRegistrationFeeResponse{} } @@ -823,11 +836,39 @@ func (m *QueryDomainRegistrationFeeResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryDomainRegistrationFeeResponse proto.InternalMessageInfo -func (m *QueryDomainRegistrationFeeResponse) GetFee() types.Coin { +func (m *QueryDomainRegistrationFeeResponse) GetIsRegstrable() bool { + if m != nil { + return m.IsRegstrable + } + return false +} + +func (m *QueryDomainRegistrationFeeResponse) GetFee() github_com_cosmos_cosmos_sdk_types.Coins { if m != nil { return m.Fee } - return types.Coin{} + return nil +} + +func (m *QueryDomainRegistrationFeeResponse) GetRegistrationPeriodInYear() uint64 { + if m != nil { + return m.RegistrationPeriodInYear + } + return 0 +} + +func (m *QueryDomainRegistrationFeeResponse) GetMaxSubDomainRegistrations() uint64 { + if m != nil { + return m.MaxSubDomainRegistrations + } + return 0 +} + +func (m *QueryDomainRegistrationFeeResponse) GetErrorMessage() string { + if m != nil { + return m.ErrorMessage + } + return "" } type QueryIsRegistrableDomainRequest struct { @@ -959,70 +1000,75 @@ func init() { func init() { proto.RegisterFile("mycel/registry/query.proto", fileDescriptor_0f2c8f2d33ba1956) } var fileDescriptor_0f2c8f2d33ba1956 = []byte{ - // 997 bytes of a gzipped FileDescriptorProto + // 1083 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x97, 0xcf, 0x6f, 0xdc, 0x44, - 0x14, 0xc7, 0x33, 0xdd, 0x36, 0xa2, 0x43, 0x95, 0x2a, 0xd3, 0x10, 0xa5, 0x06, 0x9c, 0x30, 0x55, - 0x4b, 0x00, 0xc5, 0x93, 0x4d, 0x9a, 0x72, 0x00, 0x0e, 0x09, 0xab, 0x94, 0x1f, 0x29, 0x29, 0x0b, - 0x12, 0x12, 0x12, 0x5a, 0x79, 0x37, 0x53, 0xc7, 0xc8, 0xeb, 0x71, 0x3c, 0x4e, 0xe9, 0x2a, 0xca, - 0xa5, 0x7f, 0x01, 0x12, 0xff, 0x04, 0x48, 0x70, 0x00, 0x09, 0x71, 0xe0, 0xca, 0xa1, 0x12, 0x1c, - 0x2a, 0x71, 0xe1, 0x84, 0x50, 0xc2, 0x1f, 0x52, 0x79, 0xfc, 0xdc, 0xac, 0x67, 0x3d, 0xce, 0xee, - 0x6a, 0x6f, 0x5e, 0xbf, 0x37, 0xdf, 0xf9, 0xbc, 0x1f, 0x7e, 0x33, 0x8b, 0xad, 0x6e, 0xaf, 0xc3, - 0x03, 0x16, 0x73, 0xcf, 0x97, 0x49, 0xdc, 0x63, 0x07, 0x87, 0x3c, 0xee, 0x39, 0x51, 0x2c, 0x12, - 0x41, 0x66, 0x94, 0xcd, 0xc9, 0x6d, 0xd6, 0x9c, 0x27, 0x3c, 0xa1, 0x4c, 0x2c, 0x7d, 0xca, 0xbc, - 0xac, 0x57, 0x3c, 0x21, 0xbc, 0x80, 0x33, 0x37, 0xf2, 0x99, 0x1b, 0x86, 0x22, 0x71, 0x13, 0x5f, - 0x84, 0x12, 0xac, 0x6f, 0x76, 0x84, 0xec, 0x0a, 0xc9, 0xda, 0xae, 0xe4, 0x99, 0x38, 0x7b, 0x58, - 0x6f, 0xf3, 0xc4, 0xad, 0xb3, 0xc8, 0xf5, 0xfc, 0x50, 0x39, 0x83, 0xef, 0xcb, 0x1a, 0x4b, 0xe4, - 0xc6, 0x6e, 0x37, 0x17, 0xba, 0xa9, 0x19, 0x13, 0x11, 0xb5, 0x02, 0xfe, 0x90, 0x07, 0xad, 0x3d, - 0xd1, 0x75, 0xfd, 0x5c, 0x63, 0x59, 0x73, 0x93, 0xbc, 0x23, 0xc2, 0xbd, 0x32, 0x4f, 0x5d, 0x30, - 0x33, 0xb6, 0xc4, 0x37, 0x21, 0x8f, 0xe5, 0xbe, 0x1f, 0x81, 0x9b, 0xdd, 0x1f, 0x40, 0x8e, 0xde, - 0x11, 0xb9, 0x0c, 0x9d, 0xc3, 0xe4, 0xd3, 0x34, 0xac, 0xfb, 0x0a, 0xb6, 0xc9, 0x0f, 0x0e, 0xb9, - 0x4c, 0xe8, 0xc7, 0xf8, 0x5a, 0xe1, 0xad, 0x8c, 0x44, 0x28, 0x39, 0xb9, 0x8d, 0xa7, 0xb3, 0xa0, - 0x16, 0xd0, 0x12, 0x5a, 0x7e, 0x71, 0x6d, 0xde, 0x29, 0xa6, 0xd8, 0xc9, 0xfc, 0xb7, 0x2e, 0x3e, - 0xf9, 0x77, 0x71, 0xaa, 0x09, 0xbe, 0x74, 0x1d, 0xbf, 0xaa, 0xc4, 0xee, 0xf2, 0xe4, 0x73, 0x11, - 0xed, 0xa4, 0xa1, 0x34, 0x14, 0x2c, 0xec, 0x46, 0x08, 0xbe, 0x18, 0xba, 0x5d, 0xae, 0x44, 0x2f, - 0x37, 0xd5, 0x33, 0x0d, 0xb1, 0x6d, 0x5a, 0x04, 0x30, 0x3b, 0x78, 0x26, 0x29, 0x58, 0x00, 0xca, - 0xd6, 0xa1, 0x8a, 0xeb, 0x01, 0x4e, 0x5b, 0x4b, 0x3d, 0x80, 0xdc, 0x0c, 0x82, 0x72, 0xc8, 0x6d, - 0x8c, 0xcf, 0x2a, 0x0e, 0x5b, 0xdd, 0x72, 0xb2, 0xec, 0x3a, 0x69, 0x76, 0x9d, 0xac, 0xf7, 0x20, - 0xc7, 0xce, 0x7d, 0xd7, 0xe3, 0xb0, 0xb6, 0xd9, 0xb7, 0x92, 0xfe, 0x86, 0x20, 0xb2, 0x92, 0x9d, - 0x2a, 0x22, 0xab, 0x8d, 0x1b, 0x19, 0xb9, 0x5b, 0x00, 0xbf, 0xa0, 0xc0, 0x5f, 0x3f, 0x17, 0x3c, - 0x43, 0x29, 0x90, 0x7f, 0x82, 0x97, 0xf2, 0x92, 0x7c, 0xa6, 0xda, 0x72, 0xb8, 0x52, 0x92, 0x79, - 0xd5, 0x35, 0x3c, 0x4c, 0xd4, 0xe6, 0x97, 0x9b, 0xf0, 0x8b, 0x0a, 0x7c, 0xbd, 0x44, 0x07, 0x72, - 0x30, 0x82, 0x10, 0xb9, 0x85, 0x67, 0xf8, 0xa3, 0xc8, 0x8f, 0x15, 0x66, 0xc3, 0x4d, 0xf8, 0x42, - 0x6d, 0x09, 0x2d, 0xd7, 0x9a, 0xda, 0x5b, 0xfa, 0x18, 0xe1, 0xd7, 0x2a, 0x22, 0x80, 0x9d, 0xbf, - 0xc2, 0xb3, 0x52, 0x37, 0x42, 0xbd, 0xdf, 0xd0, 0x0b, 0x60, 0x54, 0x81, 0x5a, 0x0c, 0x2a, 0xd1, - 0xaf, 0x21, 0x8b, 0x9b, 0x41, 0x60, 0xcc, 0xe2, 0xa4, 0x7a, 0xed, 0xcf, 0x3c, 0xe0, 0xf2, 0xcd, - 0xaa, 0x03, 0xae, 0x4d, 0x26, 0xe0, 0xc9, 0xf5, 0xdf, 0x9d, 0xb3, 0x91, 0x90, 0x49, 0xef, 0xe6, - 0xb3, 0x2e, 0xcf, 0xdb, 0x1c, 0xbe, 0xa4, 0xe6, 0x1f, 0x74, 0x4d, 0xf6, 0x83, 0xc6, 0x78, 0xd1, - 0xb8, 0x0e, 0x52, 0xb0, 0x8b, 0xaf, 0xee, 0x15, 0x4d, 0x90, 0xf5, 0x45, 0x3d, 0x01, 0x9a, 0x02, - 0x84, 0xad, 0xaf, 0xa6, 0xfb, 0x67, 0x1f, 0xb9, 0x81, 0x75, 0x52, 0x35, 0xfe, 0x1d, 0x41, 0x78, - 0x65, 0x5b, 0x55, 0x85, 0x57, 0x1b, 0x3f, 0xbc, 0xc9, 0xd5, 0x74, 0x17, 0x1a, 0x34, 0x6f, 0x26, - 0x85, 0xa1, 0x4c, 0xdb, 0x9c, 0x8f, 0x33, 0x54, 0xbe, 0xc0, 0xb4, 0x4a, 0x10, 0x12, 0x52, 0xc7, - 0xb5, 0x07, 0x9c, 0x43, 0xd6, 0xaf, 0x17, 0xc0, 0x73, 0xe4, 0xf7, 0xc5, 0xf3, 0x89, 0x9a, 0xfa, - 0xd2, 0x7b, 0x90, 0xe6, 0x0f, 0x65, 0x2e, 0xda, 0x0e, 0xf8, 0xf8, 0xc3, 0x2f, 0x1f, 0x03, 0xa5, - 0x72, 0x40, 0x49, 0xf1, 0x15, 0x3f, 0x35, 0x83, 0x55, 0xe9, 0xbe, 0xd0, 0x2c, 0xbc, 0x4b, 0x7d, - 0x78, 0x1c, 0x8b, 0xf8, 0x1e, 0x97, 0xd2, 0xf5, 0x38, 0xec, 0x52, 0x78, 0xb7, 0xf6, 0xcb, 0x15, - 0x7c, 0x49, 0x6d, 0x46, 0x0e, 0xf0, 0x74, 0x76, 0x44, 0x13, 0xaa, 0x57, 0x7e, 0xf0, 0x16, 0x60, - 0xdd, 0xa8, 0xf4, 0xc9, 0x20, 0xa9, 0xfd, 0xf8, 0xef, 0xff, 0xbf, 0xbb, 0xb0, 0x40, 0xe6, 0x59, - 0xe9, 0xf5, 0x87, 0xfc, 0x84, 0xf0, 0x4c, 0xf1, 0x9c, 0x22, 0x2b, 0xa5, 0xba, 0xa6, 0xeb, 0x81, - 0xe5, 0x0c, 0xeb, 0x0e, 0x44, 0xef, 0x2a, 0xa2, 0x3b, 0xe4, 0x76, 0x46, 0xb4, 0x92, 0x35, 0x2f, - 0x3b, 0xe7, 0x02, 0xc6, 0x8e, 0xd2, 0x7a, 0x1d, 0x93, 0x1f, 0x10, 0x9e, 0x2d, 0x0a, 0x6f, 0x06, - 0x81, 0x01, 0xd9, 0x74, 0x59, 0x30, 0x20, 0x1b, 0x4f, 0x7c, 0xba, 0xa1, 0x90, 0x19, 0x59, 0x19, - 0x09, 0x99, 0xfc, 0x8a, 0xf0, 0xec, 0xc0, 0x44, 0x26, 0xab, 0xa6, 0x7c, 0x99, 0xce, 0x1b, 0xab, - 0x3e, 0xc2, 0x0a, 0x20, 0x7e, 0x47, 0x11, 0x6f, 0x90, 0x75, 0x76, 0xfe, 0x8d, 0x15, 0x52, 0xcb, - 0x8e, 0xb2, 0xde, 0x3f, 0x26, 0xdf, 0x23, 0x3c, 0x37, 0x20, 0x9d, 0xa6, 0x79, 0xd5, 0x94, 0xb7, - 0x11, 0xd1, 0xab, 0xce, 0x3b, 0xfa, 0x96, 0x42, 0xbf, 0x49, 0x6e, 0x0c, 0x81, 0x4e, 0x7e, 0x46, - 0xf8, 0xaa, 0x36, 0x14, 0x89, 0xb1, 0x21, 0xcb, 0x47, 0xbd, 0xc5, 0x86, 0xf6, 0x07, 0xc2, 0xf7, - 0x14, 0xe1, 0xdb, 0x64, 0xa3, 0xb2, 0x1d, 0xf4, 0x1b, 0x3f, 0x3b, 0x52, 0x8f, 0xc7, 0xe4, 0x47, - 0x84, 0x89, 0x26, 0x9d, 0x26, 0xd7, 0xd8, 0x94, 0x23, 0x61, 0x9b, 0x8f, 0x99, 0x21, 0xbb, 0x58, - 0xc7, 0x26, 0x7f, 0x21, 0xfc, 0x52, 0xe9, 0xb8, 0x26, 0xe5, 0xc5, 0xad, 0x3a, 0x2b, 0xac, 0xb5, - 0x51, 0x96, 0x00, 0xf7, 0x8e, 0xe2, 0xde, 0x26, 0x8d, 0x61, 0xb8, 0xe3, 0x3e, 0x91, 0xd6, 0x03, - 0xce, 0x07, 0x9a, 0xfb, 0x0f, 0x84, 0xaf, 0x95, 0x4c, 0x75, 0x52, 0x9e, 0x4e, 0xf3, 0x71, 0x62, - 0xad, 0x0e, 0xbf, 0x00, 0x02, 0xf9, 0x48, 0x05, 0xd2, 0x20, 0x5b, 0x95, 0x81, 0xf8, 0xf2, 0x79, - 0x10, 0xed, 0x80, 0x1b, 0xbe, 0xd1, 0xad, 0x0f, 0x9e, 0x9c, 0xd8, 0xe8, 0xe9, 0x89, 0x8d, 0xfe, - 0x3b, 0xb1, 0xd1, 0xb7, 0xa7, 0xf6, 0xd4, 0xd3, 0x53, 0x7b, 0xea, 0x9f, 0x53, 0x7b, 0xea, 0x4b, - 0xc7, 0xf3, 0x93, 0xfd, 0xc3, 0xb6, 0xd3, 0x11, 0xdd, 0xb2, 0x7d, 0x1e, 0xf5, 0x0d, 0xac, 0x5e, - 0xc4, 0x65, 0x7b, 0x5a, 0xfd, 0xd3, 0x5c, 0x7f, 0x16, 0x00, 0x00, 0xff, 0xff, 0x78, 0xd0, 0xb6, - 0x51, 0xac, 0x0f, 0x00, 0x00, + 0x14, 0xc7, 0xe3, 0x6c, 0x12, 0xd1, 0xa1, 0x4a, 0x95, 0x69, 0x88, 0x36, 0x06, 0x9c, 0x30, 0x55, + 0x4b, 0x00, 0xc5, 0x93, 0x1f, 0x4d, 0x91, 0xa0, 0x1c, 0x12, 0xa2, 0x94, 0x42, 0x4a, 0x83, 0xcb, + 0x05, 0xa4, 0x2a, 0xf2, 0xee, 0xbe, 0x3a, 0x06, 0xaf, 0xc7, 0xf1, 0x38, 0x25, 0x51, 0x94, 0x4b, + 0xaf, 0x5c, 0x90, 0xf8, 0x27, 0x00, 0xc1, 0x01, 0x24, 0xc4, 0x81, 0x2b, 0x48, 0x95, 0xe0, 0x50, + 0x89, 0x0b, 0x27, 0x40, 0x09, 0x7f, 0x08, 0xf2, 0x78, 0x4c, 0xd6, 0xb3, 0x1e, 0x67, 0x37, 0xdd, + 0x53, 0x1c, 0xbf, 0x1f, 0xf3, 0x79, 0xdf, 0x79, 0x9e, 0x37, 0x8b, 0xcc, 0xf6, 0x41, 0x13, 0x02, + 0x1a, 0x83, 0xe7, 0xf3, 0x24, 0x3e, 0xa0, 0xbb, 0x7b, 0x10, 0x1f, 0xd8, 0x51, 0xcc, 0x12, 0x86, + 0xc7, 0x85, 0xcd, 0xce, 0x6d, 0xe6, 0xa4, 0xc7, 0x3c, 0x26, 0x4c, 0x34, 0x7d, 0xca, 0xbc, 0xcc, + 0x17, 0x3c, 0xc6, 0xbc, 0x00, 0xa8, 0x1b, 0xf9, 0xd4, 0x0d, 0x43, 0x96, 0xb8, 0x89, 0xcf, 0x42, + 0x2e, 0xad, 0xaf, 0x36, 0x19, 0x6f, 0x33, 0x4e, 0x1b, 0x2e, 0x87, 0x2c, 0x39, 0x7d, 0xb8, 0xd8, + 0x80, 0xc4, 0x5d, 0xa4, 0x91, 0xeb, 0xf9, 0xa1, 0x70, 0x96, 0xbe, 0xcf, 0x2b, 0x2c, 0x91, 0x1b, + 0xbb, 0xed, 0x3c, 0xd1, 0x55, 0xc5, 0x98, 0xb0, 0x68, 0x3b, 0x80, 0x87, 0x10, 0x6c, 0xb7, 0x58, + 0xdb, 0xf5, 0xf3, 0x1c, 0x73, 0x8a, 0x1b, 0x87, 0x26, 0x0b, 0x5b, 0x65, 0x9e, 0x6a, 0xc2, 0xcc, + 0xb8, 0xcd, 0x3e, 0x0b, 0x21, 0xe6, 0x3b, 0x7e, 0x24, 0xdd, 0xac, 0xce, 0x02, 0x72, 0xf4, 0x26, + 0xcb, 0xd3, 0x90, 0x49, 0x84, 0x3f, 0x48, 0xcb, 0xda, 0x12, 0xb0, 0x0e, 0xec, 0xee, 0x01, 0x4f, + 0xc8, 0x7b, 0xe8, 0x72, 0xe1, 0x2d, 0x8f, 0x58, 0xc8, 0x01, 0x5f, 0x47, 0x63, 0x59, 0x51, 0x75, + 0x63, 0xd6, 0x98, 0x7b, 0x76, 0x69, 0xca, 0x2e, 0x4a, 0x6c, 0x67, 0xfe, 0x6b, 0x23, 0x8f, 0xff, + 0x9a, 0x19, 0x72, 0xa4, 0x2f, 0x59, 0x46, 0x2f, 0x8a, 0x64, 0xb7, 0x20, 0xf9, 0x90, 0x45, 0x9b, + 0x69, 0x29, 0xeb, 0x02, 0x56, 0xae, 0x86, 0x31, 0x1a, 0x09, 0xdd, 0x36, 0x88, 0xa4, 0x17, 0x1c, + 0xf1, 0x4c, 0x42, 0x64, 0xe9, 0x82, 0x24, 0xcc, 0x26, 0x1a, 0x4f, 0x0a, 0x16, 0x09, 0x65, 0xa9, + 0x50, 0xc5, 0x78, 0x09, 0xa7, 0xc4, 0x12, 0x4f, 0x42, 0xae, 0x06, 0x41, 0x39, 0xe4, 0x06, 0x42, + 0xa7, 0x3b, 0x2e, 0x97, 0xba, 0x66, 0x67, 0xea, 0xda, 0xa9, 0xba, 0x76, 0xd6, 0x7b, 0x52, 0x63, + 0x7b, 0xcb, 0xf5, 0x40, 0xc6, 0x3a, 0x1d, 0x91, 0xe4, 0x27, 0x43, 0x56, 0x56, 0xb2, 0x52, 0x45, + 0x65, 0xb5, 0xf3, 0x56, 0x86, 0x6f, 0x15, 0xc0, 0x87, 0x05, 0xf8, 0xcb, 0x67, 0x82, 0x67, 0x28, + 0x05, 0xf2, 0xf7, 0xd1, 0x6c, 0xbe, 0x25, 0xf7, 0x44, 0x5b, 0xf6, 0xb6, 0x95, 0x78, 0x4a, 0x74, + 0x0d, 0x84, 0x89, 0x58, 0xfc, 0x82, 0x23, 0xff, 0x23, 0x0c, 0x4d, 0x97, 0xe4, 0x91, 0x1a, 0xf4, + 0x91, 0x08, 0x5f, 0x43, 0xe3, 0xb0, 0x1f, 0xf9, 0xb1, 0xc0, 0x5c, 0x77, 0x13, 0xa8, 0xd7, 0x66, + 0x8d, 0xb9, 0x9a, 0xa3, 0xbc, 0x25, 0x8f, 0x0c, 0xf4, 0x52, 0x45, 0x05, 0x72, 0xe5, 0xfb, 0x68, + 0x82, 0xab, 0x46, 0xb9, 0xdf, 0xaf, 0xa8, 0x1b, 0xa0, 0xcd, 0x22, 0xf7, 0xa2, 0x3b, 0x13, 0xf9, + 0x44, 0xaa, 0xb8, 0x1a, 0x04, 0x5a, 0x15, 0x07, 0xd5, 0x6b, 0xbf, 0xe5, 0x05, 0x97, 0x2f, 0x56, + 0x5d, 0x70, 0x6d, 0x30, 0x05, 0x0f, 0xae, 0xff, 0x6e, 0x9c, 0x1e, 0x09, 0x59, 0xea, 0xbb, 0xf9, + 0x59, 0x97, 0xeb, 0x36, 0x89, 0x46, 0xc5, 0xf9, 0x27, 0xbb, 0x26, 0xfb, 0x87, 0xc4, 0x68, 0x46, + 0x1b, 0x27, 0x25, 0xb8, 0x8b, 0x2e, 0xb5, 0x8a, 0x26, 0xa9, 0xfa, 0x8c, 0x2a, 0x80, 0x92, 0x41, + 0x96, 0xad, 0x46, 0x93, 0x9d, 0xd3, 0x8f, 0x5c, 0xc3, 0x3a, 0xa8, 0x3d, 0xfe, 0xd9, 0x90, 0xe5, + 0x95, 0x2d, 0x55, 0x55, 0x5e, 0xed, 0xfc, 0xe5, 0x0d, 0x6e, 0x4f, 0x3f, 0xcf, 0x3b, 0x34, 0xef, + 0x26, 0xc1, 0x21, 0x6c, 0x1b, 0x00, 0xe7, 0x38, 0x55, 0xf0, 0x1b, 0xa8, 0x1e, 0x77, 0x64, 0xd9, + 0x82, 0xd8, 0x67, 0xad, 0xdb, 0xe1, 0x47, 0xe0, 0xc6, 0xe2, 0x58, 0x18, 0x71, 0xb4, 0x76, 0xf2, + 0xeb, 0x30, 0x22, 0x55, 0x34, 0x52, 0x4e, 0x82, 0x2e, 0xfa, 0xdc, 0x01, 0x2f, 0xb5, 0x35, 0x82, + 0x0c, 0xeb, 0x19, 0xa7, 0xf0, 0x0e, 0xdf, 0x47, 0xb5, 0x07, 0x00, 0xf5, 0x61, 0x21, 0xf3, 0x74, + 0x41, 0x9a, 0x5c, 0x94, 0xb7, 0x99, 0x1f, 0xae, 0x2d, 0xa4, 0x02, 0x7f, 0xf3, 0xf7, 0xcc, 0x9c, + 0xe7, 0x27, 0x3b, 0x7b, 0x0d, 0xbb, 0xc9, 0xda, 0x54, 0x8e, 0xec, 0xec, 0xcf, 0x3c, 0x6f, 0x7d, + 0x4a, 0x93, 0x83, 0x08, 0xb8, 0x08, 0xe0, 0x4e, 0x9a, 0xf7, 0x69, 0xaa, 0xc4, 0x37, 0xd1, 0x74, + 0xdb, 0xdd, 0xbf, 0xb7, 0xd7, 0xe8, 0xae, 0x92, 0xd7, 0x47, 0x44, 0xb0, 0xde, 0x21, 0x2d, 0x1e, + 0xe2, 0x98, 0xc5, 0x77, 0x80, 0x73, 0xd7, 0x83, 0xfa, 0xa8, 0x50, 0xbf, 0xf0, 0x8e, 0xdc, 0x91, + 0x2d, 0x79, 0x9b, 0xe7, 0xb1, 0x8d, 0x00, 0xce, 0x3f, 0x28, 0xf2, 0x23, 0xb3, 0x34, 0x5d, 0x1f, + 0x7b, 0xa2, 0xa2, 0x0f, 0x77, 0xa3, 0x2f, 0xfd, 0x70, 0x11, 0x8d, 0x8a, 0xc5, 0xf0, 0x2e, 0x1a, + 0xcb, 0xae, 0x33, 0x98, 0xa8, 0x5f, 0x49, 0xf7, 0x8d, 0xc9, 0xbc, 0x52, 0xe9, 0x93, 0x41, 0x12, + 0xeb, 0xd1, 0x1f, 0xff, 0x7e, 0x39, 0x5c, 0xc7, 0x53, 0xb4, 0xf4, 0xaa, 0x88, 0xbf, 0x33, 0xd0, + 0x78, 0x71, 0xa6, 0xe3, 0xf9, 0xd2, 0xbc, 0xba, 0xab, 0x94, 0x69, 0xf7, 0xea, 0x2e, 0x89, 0x6e, + 0x0a, 0xa2, 0x1b, 0xf8, 0x7a, 0x46, 0x34, 0x9f, 0x7d, 0xe8, 0xf4, 0x8c, 0xcb, 0x2a, 0x3d, 0x4c, + 0xf7, 0xeb, 0x08, 0x7f, 0x6d, 0xa0, 0x89, 0x62, 0xe2, 0xd5, 0x20, 0xd0, 0x20, 0xeb, 0x2e, 0x56, + 0x1a, 0x64, 0xed, 0xed, 0x88, 0xac, 0x08, 0x64, 0x8a, 0xe7, 0xfb, 0x42, 0xc6, 0x3f, 0x1a, 0x68, + 0xa2, 0x6b, 0x7a, 0xe1, 0x05, 0x9d, 0x5e, 0xba, 0xd9, 0x6c, 0x2e, 0xf6, 0x11, 0x21, 0x89, 0xdf, + 0x14, 0xc4, 0x2b, 0x78, 0x99, 0x9e, 0x7d, 0xbb, 0x97, 0xd2, 0xd2, 0xc3, 0xac, 0xf7, 0x8f, 0xf0, + 0x57, 0x06, 0x9a, 0xec, 0x4a, 0x9d, 0xca, 0xbc, 0xa0, 0xd3, 0xad, 0x4f, 0xf4, 0xaa, 0xbb, 0x01, + 0x79, 0x4d, 0xa0, 0x5f, 0xc5, 0x57, 0x7a, 0x40, 0xc7, 0xdf, 0x1b, 0xe8, 0x92, 0x32, 0x40, 0xb0, + 0xb6, 0x21, 0xcb, 0xc7, 0xa2, 0x49, 0x7b, 0xf6, 0x97, 0x84, 0x6f, 0x09, 0xc2, 0xd7, 0xf1, 0x4a, + 0x65, 0x3b, 0xa8, 0xbf, 0x8e, 0xe8, 0xa1, 0x78, 0x3c, 0xc2, 0xdf, 0x1a, 0x08, 0x2b, 0xa9, 0x53, + 0x71, 0xb5, 0x4d, 0xd9, 0x17, 0xb6, 0x7e, 0x24, 0xf7, 0xd8, 0xc5, 0x2a, 0x36, 0xfe, 0xdd, 0x40, + 0xcf, 0x95, 0x0e, 0x27, 0x5c, 0xbe, 0xb9, 0x55, 0x63, 0xd5, 0x5c, 0xea, 0x27, 0x44, 0x72, 0x6f, + 0x0a, 0xee, 0x0d, 0xbc, 0xde, 0x0b, 0x77, 0xe7, 0x08, 0xda, 0x7e, 0x00, 0xd0, 0xd5, 0xdc, 0xbf, + 0x18, 0xe8, 0x72, 0xc9, 0xa9, 0x8e, 0xcb, 0xe5, 0xd4, 0x8f, 0x13, 0x73, 0xa1, 0xf7, 0x00, 0x59, + 0xc8, 0xbb, 0xa2, 0x90, 0x75, 0xbc, 0x56, 0x59, 0x88, 0xcf, 0xff, 0x2f, 0xa2, 0x11, 0x80, 0xe6, + 0x1b, 0x5d, 0x7b, 0xe7, 0xf1, 0xb1, 0x65, 0x3c, 0x39, 0xb6, 0x8c, 0x7f, 0x8e, 0x2d, 0xe3, 0x8b, + 0x13, 0x6b, 0xe8, 0xc9, 0x89, 0x35, 0xf4, 0xe7, 0x89, 0x35, 0xf4, 0xb1, 0xdd, 0x31, 0xd6, 0x4b, + 0xd6, 0xd9, 0xef, 0x38, 0xb0, 0xd2, 0x11, 0xdf, 0x18, 0x13, 0xbf, 0xca, 0x97, 0xff, 0x0b, 0x00, + 0x00, 0xff, 0xff, 0xff, 0x0a, 0xf1, 0x20, 0xd8, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1971,6 +2017,11 @@ func (m *QueryDomainRegistrationFeeRequest) MarshalToSizedBuffer(dAtA []byte) (i _ = i var l int _ = l + if m.RegistrationPeriodInYear != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.RegistrationPeriodInYear)) + i-- + dAtA[i] = 0x18 + } if len(m.Parent) > 0 { i -= len(m.Parent) copy(dAtA[i:], m.Parent) @@ -2008,16 +2059,47 @@ func (m *QueryDomainRegistrationFeeResponse) MarshalToSizedBuffer(dAtA []byte) ( _ = i var l int _ = l - { - size, err := m.Fee.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.ErrorMessage) > 0 { + i -= len(m.ErrorMessage) + copy(dAtA[i:], m.ErrorMessage) + i = encodeVarintQuery(dAtA, i, uint64(len(m.ErrorMessage))) + i-- + dAtA[i] = 0x2a + } + if m.MaxSubDomainRegistrations != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.MaxSubDomainRegistrations)) + i-- + dAtA[i] = 0x20 + } + if m.RegistrationPeriodInYear != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.RegistrationPeriodInYear)) + i-- + dAtA[i] = 0x18 + } + if len(m.Fee) > 0 { + for iNdEx := len(m.Fee) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Fee[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 } - i -= size - i = encodeVarintQuery(dAtA, i, uint64(size)) } - i-- - dAtA[i] = 0xa + if m.IsRegstrable { + i-- + if m.IsRegstrable { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } return len(dAtA) - i, nil } @@ -2335,6 +2417,9 @@ func (m *QueryDomainRegistrationFeeRequest) Size() (n int) { if l > 0 { n += 1 + l + sovQuery(uint64(l)) } + if m.RegistrationPeriodInYear != 0 { + n += 1 + sovQuery(uint64(m.RegistrationPeriodInYear)) + } return n } @@ -2344,8 +2429,25 @@ func (m *QueryDomainRegistrationFeeResponse) Size() (n int) { } var l int _ = l - l = m.Fee.Size() - n += 1 + l + sovQuery(uint64(l)) + if m.IsRegstrable { + n += 2 + } + if len(m.Fee) > 0 { + for _, e := range m.Fee { + l = e.Size() + n += 1 + l + sovQuery(uint64(l)) + } + } + if m.RegistrationPeriodInYear != 0 { + n += 1 + sovQuery(uint64(m.RegistrationPeriodInYear)) + } + if m.MaxSubDomainRegistrations != 0 { + n += 1 + sovQuery(uint64(m.MaxSubDomainRegistrations)) + } + l = len(m.ErrorMessage) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } return n } @@ -3892,6 +3994,25 @@ func (m *QueryDomainRegistrationFeeRequest) Unmarshal(dAtA []byte) error { } m.Parent = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RegistrationPeriodInYear", wireType) + } + m.RegistrationPeriodInYear = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.RegistrationPeriodInYear |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) @@ -3943,6 +4064,26 @@ func (m *QueryDomainRegistrationFeeResponse) Unmarshal(dAtA []byte) error { } switch fieldNum { case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsRegstrable", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsRegstrable = bool(v != 0) + case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fee", wireType) } @@ -3971,10 +4112,81 @@ func (m *QueryDomainRegistrationFeeResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Fee.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Fee = append(m.Fee, types.Coin{}) + if err := m.Fee[len(m.Fee)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RegistrationPeriodInYear", wireType) + } + m.RegistrationPeriodInYear = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.RegistrationPeriodInYear |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxSubDomainRegistrations", wireType) + } + m.MaxSubDomainRegistrations = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MaxSubDomainRegistrations |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ErrorMessage", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ErrorMessage = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) diff --git a/x/registry/types/query.pb.gw.go b/x/registry/types/query.pb.gw.go index e393e20b..acec3d52 100644 --- a/x/registry/types/query.pb.gw.go +++ b/x/registry/types/query.pb.gw.go @@ -343,6 +343,10 @@ func local_request_Query_DomainOwnershipAll_0(ctx context.Context, marshaler run } +var ( + filter_Query_DomainRegistrationFee_0 = &utilities.DoubleArray{Encoding: map[string]int{"name": 0, "parent": 1}, Base: []int{1, 1, 2, 0, 0}, Check: []int{0, 1, 1, 2, 3}} +) + func request_Query_DomainRegistrationFee_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq QueryDomainRegistrationFeeRequest var metadata runtime.ServerMetadata @@ -376,6 +380,13 @@ func request_Query_DomainRegistrationFee_0(ctx context.Context, marshaler runtim return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "parent", err) } + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_DomainRegistrationFee_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + msg, err := client.DomainRegistrationFee(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) return msg, metadata, err @@ -414,6 +425,13 @@ func local_request_Query_DomainRegistrationFee_0(ctx context.Context, marshaler return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "parent", err) } + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_DomainRegistrationFee_0); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + msg, err := server.DomainRegistrationFee(ctx, &protoReq) return msg, metadata, err