diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index 13f05c131a..ce15b06e75 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -13,9 +13,10 @@ jobs: - uses: actions/checkout@master - name: lint run: make proto-lint - breakage: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: check-breakage - run: make proto-check-breaking +# TODO ebony: release comment after merging initial proto files to v2 branch +# breakage: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@master +# - name: check-breakage +# run: make proto-check-breaking diff --git a/Dockerfile b/Dockerfile index 2c88a2c23c..b9da99a1d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,8 @@ COPY . . # install simapp, remove packages # TODO ebony: fix module download error in docker +RUN go env -w GOPRIVATE=github.com/line/* +RUN git config --global url."https://$GITHUB_TOKEN:x-oauth-basic@github.com/".insteadOf "https://github.com/" RUN make build-linux diff --git a/baseapp/baseapp_test.go b/baseapp/baseapp_test.go index 3301389b10..9ae71ca8a8 100644 --- a/baseapp/baseapp_test.go +++ b/baseapp/baseapp_test.go @@ -91,11 +91,11 @@ func registerTestCodec(cdc *codec.LegacyAmino) { sdk.RegisterLegacyAminoCodec(cdc) // register test types - cdc.RegisterConcrete(&txTest{}, "cosmos-sdk/baseapp/txTest", nil) - cdc.RegisterConcrete(&msgCounter{}, "cosmos-sdk/baseapp/msgCounter", nil) - cdc.RegisterConcrete(&msgCounter2{}, "cosmos-sdk/baseapp/msgCounter2", nil) - cdc.RegisterConcrete(&msgKeyValue{}, "cosmos-sdk/baseapp/msgKeyValue", nil) - cdc.RegisterConcrete(&msgNoRoute{}, "cosmos-sdk/baseapp/msgNoRoute", nil) + cdc.RegisterConcrete(&txTest{}, "lbm-sdk/baseapp/txTest", nil) + cdc.RegisterConcrete(&msgCounter{}, "lbm-sdk/baseapp/msgCounter", nil) + cdc.RegisterConcrete(&msgCounter2{}, "lbm-sdk/baseapp/msgCounter2", nil) + cdc.RegisterConcrete(&msgKeyValue{}, "lbm-sdk/baseapp/msgKeyValue", nil) + cdc.RegisterConcrete(&msgNoRoute{}, "lbm-sdk/baseapp/msgNoRoute", nil) } // aminoTxEncoder creates a amino TxEncoder for testing purposes. @@ -1250,7 +1250,7 @@ func TestRunInvalidTransaction(t *testing.T) { // new codec so we can encode the tx, but we shouldn't be able to decode newCdc := codec.NewLegacyAmino() registerTestCodec(newCdc) - newCdc.RegisterConcrete(&msgNoDecode{}, "cosmos-sdk/baseapp/msgNoDecode", nil) + newCdc.RegisterConcrete(&msgNoDecode{}, "lbm-sdk/baseapp/msgNoDecode", nil) txBytes, err := newCdc.MarshalBinaryBare(tx) require.NoError(t, err) diff --git a/client/docs/swagger-ui/swagger.yaml b/client/docs/swagger-ui/swagger.yaml index 5d8529c79e..e4a4c0f07b 100644 --- a/client/docs/swagger-ui/swagger.yaml +++ b/client/docs/swagger-ui/swagger.yaml @@ -18305,7 +18305,7 @@ paths: in: body required: true schema: - $ref: '#/definitions/cosmos.tx.v1beta1.SimulateRequest' + $ref: '#/definitions/lbm.tx.v1beta1.SimulateRequest' tags: - Service /cosmos/tx/v1beta1/txs: @@ -18316,7 +18316,7 @@ paths: '200': description: A successful response. schema: - $ref: '#/definitions/cosmos.tx.v1beta1.GetTxsEventResponse' + $ref: '#/definitions/lbm.tx.v1beta1.GetTxsEventResponse' default: description: An unexpected error response. schema: @@ -18974,7 +18974,7 @@ paths: '200': description: A successful response. schema: - $ref: '#/definitions/cosmos.tx.v1beta1.GetTxResponse' + $ref: '#/definitions/lbm.tx.v1beta1.GetTxResponse' default: description: An unexpected error response. schema: @@ -29862,7 +29862,7 @@ definitions: amount: type: string example: '50' - cosmos.auth.v1beta1.Params: + lbm.auth.v1beta1.Params: type: object properties: max_memo_characters: @@ -29881,7 +29881,7 @@ definitions: type: string format: uint64 description: Params defines the parameters for the auth module. - cosmos.auth.v1beta1.QueryAccountResponse: + lbm.auth.v1beta1.QueryAccountResponse: type: object properties: account: @@ -29949,7 +29949,7 @@ definitions: description: >- QueryAccountResponse is the response type for the Query/Account RPC method. - cosmos.auth.v1beta1.QueryParamsResponse: + lbm.auth.v1beta1.QueryParamsResponse: type: object properties: params: @@ -30301,7 +30301,7 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - cosmos.bank.v1beta1.Params: + lbm.bank.v1beta1.Params: type: object properties: send_enabled: @@ -30321,7 +30321,7 @@ definitions: default_send_enabled: type: boolean description: Params defines the parameters for the bank module. - cosmos.bank.v1beta1.QueryAllBalancesResponse: + lbm.bank.v1beta1.QueryAllBalancesResponse: type: object properties: balances: @@ -30362,7 +30362,7 @@ definitions: RPC method. - cosmos.bank.v1beta1.QueryBalanceResponse: + lbm.bank.v1beta1.QueryBalanceResponse: type: object properties: balance: @@ -30376,7 +30376,7 @@ definitions: description: >- QueryBalanceResponse is the response type for the Query/Balance RPC method. - cosmos.bank.v1beta1.QueryParamsResponse: + lbm.bank.v1beta1.QueryParamsResponse: type: object properties: params: @@ -30402,7 +30402,7 @@ definitions: description: >- QueryParamsResponse defines the response type for querying x/bank parameters. - cosmos.bank.v1beta1.QuerySupplyOfResponse: + lbm.bank.v1beta1.QuerySupplyOfResponse: type: object properties: amount: @@ -30416,7 +30416,7 @@ definitions: description: >- QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. - cosmos.bank.v1beta1.QueryTotalSupplyResponse: + lbm.bank.v1beta1.QueryTotalSupplyResponse: type: object properties: supply: @@ -30439,7 +30439,7 @@ definitions: RPC method - cosmos.bank.v1beta1.SendEnabled: + lbm.bank.v1beta1.SendEnabled: type: object properties: denom: @@ -30449,7 +30449,7 @@ definitions: description: |- SendEnabled maps coin denom to a send_enabled status (whether a denom is sendable). - cosmos.base.query.v1beta1.PageRequest: + lbm.base.query.v1beta1.PageRequest: type: object properties: key: @@ -30494,7 +30494,7 @@ definitions: title: |- PageRequest is to be embedded in gRPC request messages for efficient pagination. Ex: - cosmos.base.query.v1beta1.PageResponse: + lbm.base.query.v1beta1.PageResponse: type: object properties: next_key: @@ -30517,7 +30517,7 @@ definitions: repeated Bar results = 1; PageResponse page = 2; } - cosmos.base.v1beta1.Coin: + lbm.base.v1beta1.Coin: type: object properties: denom: @@ -30529,7 +30529,7 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. - cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse: + lbm.base.tendermint.v1beta1.GetBlockByHeightResponse: type: object properties: block_id: @@ -31080,7 +31080,7 @@ definitions: description: >- GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. - cosmos.base.tendermint.v1beta1.GetLatestBlockResponse: + lbm.base.tendermint.v1beta1.GetLatestBlockResponse: type: object properties: block_id: @@ -31631,7 +31631,7 @@ definitions: description: >- GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method. - cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse: + lbm.base.tendermint.v1beta1.GetLatestValidatorSetResponse: type: object properties: block_height: @@ -31841,7 +31841,7 @@ definitions: description: >- GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. - cosmos.base.tendermint.v1beta1.GetNodeInfoResponse: + lbm.base.tendermint.v1beta1.GetNodeInfoResponse: type: object properties: default_node_info: @@ -31913,7 +31913,7 @@ definitions: description: >- GetNodeInfoResponse is the request type for the Query/GetNodeInfo RPC method. - cosmos.base.tendermint.v1beta1.GetSyncingResponse: + lbm.base.tendermint.v1beta1.GetSyncingResponse: type: object properties: syncing: @@ -31921,7 +31921,7 @@ definitions: description: >- GetSyncingResponse is the response type for the Query/GetSyncing RPC method. - cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse: + lbm.base.tendermint.v1beta1.GetValidatorSetByHeightResponse: type: object properties: block_height: @@ -32131,7 +32131,7 @@ definitions: description: >- GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. - cosmos.base.tendermint.v1beta1.Module: + lbm.base.tendermint.v1beta1.Module: type: object properties: path: @@ -32144,7 +32144,7 @@ definitions: type: string title: checksum title: Module is the type for VersionInfo - cosmos.base.tendermint.v1beta1.Validator: + lbm.base.tendermint.v1beta1.Validator: type: object properties: address: @@ -32315,7 +32315,7 @@ definitions: type: string format: int64 description: Validator is the type for the validator-set. - cosmos.base.tendermint.v1beta1.VersionInfo: + lbm.base.tendermint.v1beta1.VersionInfo: type: object properties: name: @@ -34735,7 +34735,7 @@ definitions: application's state transition machine. - cosmos.base.v1beta1.DecCoin: + lbm.base.v1beta1.DecCoin: type: object properties: denom: @@ -34747,7 +34747,7 @@ definitions: NOTE: The amount field is an Dec which implements the custom method signatures required by gogoproto. - cosmos.distribution.v1beta1.DelegationDelegatorReward: + lbm.distribution.v1beta1.DelegationDelegatorReward: type: object properties: validator_address: @@ -34769,7 +34769,7 @@ definitions: description: |- DelegationDelegatorReward represents the properties of a delegator's delegation reward. - cosmos.distribution.v1beta1.Params: + lbm.distribution.v1beta1.Params: type: object properties: community_tax: @@ -34781,7 +34781,7 @@ definitions: withdraw_addr_enabled: type: boolean description: Params defines the set of params for the distribution module. - cosmos.distribution.v1beta1.QueryCommunityPoolResponse: + lbm.distribution.v1beta1.QueryCommunityPoolResponse: type: object properties: pool: @@ -34804,7 +34804,7 @@ definitions: Query/CommunityPool RPC method. - cosmos.distribution.v1beta1.QueryDelegationRewardsResponse: + lbm.distribution.v1beta1.QueryDelegationRewardsResponse: type: object properties: rewards: @@ -34825,7 +34825,7 @@ definitions: description: |- QueryDelegationRewardsResponse is the response type for the Query/DelegationRewards RPC method. - cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse: + lbm.distribution.v1beta1.QueryDelegationTotalRewardsResponse: type: object properties: rewards: @@ -34875,7 +34875,7 @@ definitions: description: |- QueryDelegationTotalRewardsResponse is the response type for the Query/DelegationTotalRewards RPC method. - cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse: + lbm.distribution.v1beta1.QueryDelegatorValidatorsResponse: type: object properties: validators: @@ -34886,7 +34886,7 @@ definitions: description: |- QueryDelegatorValidatorsResponse is the response type for the Query/DelegatorValidators RPC method. - cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse: + lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse: type: object properties: withdraw_address: @@ -34895,7 +34895,7 @@ definitions: description: |- QueryDelegatorWithdrawAddressResponse is the response type for the Query/DelegatorWithdrawAddress RPC method. - cosmos.distribution.v1beta1.QueryParamsResponse: + lbm.distribution.v1beta1.QueryParamsResponse: type: object properties: params: @@ -34911,7 +34911,7 @@ definitions: withdraw_addr_enabled: type: boolean description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.distribution.v1beta1.QueryValidatorCommissionResponse: + lbm.distribution.v1beta1.QueryValidatorCommissionResponse: type: object properties: commission: @@ -34939,7 +34939,7 @@ definitions: title: |- QueryValidatorCommissionResponse is the response type for the Query/ValidatorCommission RPC method - cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse: + lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse: type: object properties: rewards: @@ -34971,7 +34971,7 @@ definitions: description: |- QueryValidatorOutstandingRewardsResponse is the response type for the Query/ValidatorOutstandingRewards RPC method. - cosmos.distribution.v1beta1.QueryValidatorSlashesResponse: + lbm.distribution.v1beta1.QueryValidatorSlashesResponse: type: object properties: slashes: @@ -35011,7 +35011,7 @@ definitions: description: |- QueryValidatorSlashesResponse is the response type for the Query/ValidatorSlashes RPC method. - cosmos.distribution.v1beta1.ValidatorAccumulatedCommission: + lbm.distribution.v1beta1.ValidatorAccumulatedCommission: type: object properties: commission: @@ -35031,7 +35031,7 @@ definitions: description: |- ValidatorAccumulatedCommission represents accumulated commission for a validator kept as a running counter, can be withdrawn at any time. - cosmos.distribution.v1beta1.ValidatorOutstandingRewards: + lbm.distribution.v1beta1.ValidatorOutstandingRewards: type: object properties: rewards: @@ -35051,7 +35051,7 @@ definitions: description: |- ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards for a validator inexpensive to track, allows simple sanity checks. - cosmos.distribution.v1beta1.ValidatorSlashEvent: + lbm.distribution.v1beta1.ValidatorSlashEvent: type: object properties: validator_period: @@ -35064,7 +35064,7 @@ definitions: Height is implicit within the store key. This is needed to calculate appropriate amount of staking tokens for delegations which are withdrawn after a slash has occurred. - cosmos.evidence.v1beta1.QueryAllEvidenceResponse: + lbm.evidence.v1beta1.QueryAllEvidenceResponse: type: object properties: evidence: @@ -35255,7 +35255,7 @@ definitions: RPC method. - cosmos.evidence.v1beta1.QueryEvidenceResponse: + lbm.evidence.v1beta1.QueryEvidenceResponse: type: object properties: evidence: @@ -35323,7 +35323,7 @@ definitions: description: >- QueryEvidenceResponse is the response type for the Query/Evidence RPC method. - cosmos.gov.v1beta1.Deposit: + lbm.gov.v1beta1.Deposit: type: object properties: proposal_id: @@ -35348,7 +35348,7 @@ definitions: description: |- Deposit defines an amount deposited by an account address to an active proposal. - cosmos.gov.v1beta1.DepositParams: + lbm.gov.v1beta1.DepositParams: type: object properties: min_deposit: @@ -35373,7 +35373,7 @@ definitions: value: 2 months. description: DepositParams defines the params for deposits on governance proposals. - cosmos.gov.v1beta1.Proposal: + lbm.gov.v1beta1.Proposal: type: object properties: proposal_id: @@ -35601,7 +35601,7 @@ definitions: type: string format: date-time description: Proposal defines the core field members of a governance proposal. - cosmos.gov.v1beta1.ProposalStatus: + lbm.gov.v1beta1.ProposalStatus: type: string enum: - PROPOSAL_STATUS_UNSPECIFIED @@ -35625,7 +35625,7 @@ definitions: been rejected. - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has failed. - cosmos.gov.v1beta1.QueryDepositResponse: + lbm.gov.v1beta1.QueryDepositResponse: type: object properties: deposit: @@ -35657,7 +35657,7 @@ definitions: description: >- QueryDepositResponse is the response type for the Query/Deposit RPC method. - cosmos.gov.v1beta1.QueryDepositsResponse: + lbm.gov.v1beta1.QueryDepositsResponse: type: object properties: deposits: @@ -35713,7 +35713,7 @@ definitions: description: >- QueryDepositsResponse is the response type for the Query/Deposits RPC method. - cosmos.gov.v1beta1.QueryParamsResponse: + lbm.gov.v1beta1.QueryParamsResponse: type: object properties: voting_params: @@ -35776,7 +35776,7 @@ definitions: be vetoed. Default value: 1/3. description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.gov.v1beta1.QueryProposalResponse: + lbm.gov.v1beta1.QueryProposalResponse: type: object properties: proposal: @@ -36019,7 +36019,7 @@ definitions: description: >- QueryProposalResponse is the response type for the Query/Proposal RPC method. - cosmos.gov.v1beta1.QueryProposalsResponse: + lbm.gov.v1beta1.QueryProposalsResponse: type: object properties: proposals: @@ -36286,7 +36286,7 @@ definitions: description: |- QueryProposalsResponse is the response type for the Query/Proposals RPC method. - cosmos.gov.v1beta1.QueryTallyResultResponse: + lbm.gov.v1beta1.QueryTallyResultResponse: type: object properties: tally: @@ -36304,7 +36304,7 @@ definitions: description: >- QueryTallyResultResponse is the response type for the Query/Tally RPC method. - cosmos.gov.v1beta1.QueryVoteResponse: + lbm.gov.v1beta1.QueryVoteResponse: type: object properties: vote: @@ -36335,7 +36335,7 @@ definitions: - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. description: QueryVoteResponse is the response type for the Query/Vote RPC method. - cosmos.gov.v1beta1.QueryVotesResponse: + lbm.gov.v1beta1.QueryVotesResponse: type: object properties: votes: @@ -36389,7 +36389,7 @@ definitions: was set, its value is undefined otherwise description: QueryVotesResponse is the response type for the Query/Votes RPC method. - cosmos.gov.v1beta1.TallyParams: + lbm.gov.v1beta1.TallyParams: type: object properties: quorum: @@ -36411,7 +36411,7 @@ definitions: Minimum value of Veto votes to Total votes ratio for proposal to be vetoed. Default value: 1/3. description: TallyParams defines the params for tallying votes on governance proposals. - cosmos.gov.v1beta1.TallyResult: + lbm.gov.v1beta1.TallyResult: type: object properties: 'yes': @@ -36423,7 +36423,7 @@ definitions: no_with_veto: type: string description: TallyResult defines a standard tally for a governance proposal. - cosmos.gov.v1beta1.Vote: + lbm.gov.v1beta1.Vote: type: object properties: proposal_id: @@ -36452,7 +36452,7 @@ definitions: description: |- Vote defines a vote on a governance proposal. A Vote consists of a proposal ID, the voter, and the vote option. - cosmos.gov.v1beta1.VoteOption: + lbm.gov.v1beta1.VoteOption: type: string enum: - VOTE_OPTION_UNSPECIFIED @@ -36470,14 +36470,14 @@ definitions: - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option. - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option. - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. - cosmos.gov.v1beta1.VotingParams: + lbm.gov.v1beta1.VotingParams: type: object properties: voting_period: type: string description: Length of the voting period. description: VotingParams defines the params for voting on governance proposals. - cosmos.mint.v1beta1.Params: + lbm.mint.v1beta1.Params: type: object properties: mint_denom: @@ -36500,7 +36500,7 @@ definitions: format: uint64 title: expected blocks per year description: Params holds parameters for the mint module. - cosmos.mint.v1beta1.QueryAnnualProvisionsResponse: + lbm.mint.v1beta1.QueryAnnualProvisionsResponse: type: object properties: annual_provisions: @@ -36510,7 +36510,7 @@ definitions: description: |- QueryAnnualProvisionsResponse is the response type for the Query/AnnualProvisions RPC method. - cosmos.mint.v1beta1.QueryInflationResponse: + lbm.mint.v1beta1.QueryInflationResponse: type: object properties: inflation: @@ -36520,7 +36520,7 @@ definitions: description: |- QueryInflationResponse is the response type for the Query/Inflation RPC method. - cosmos.mint.v1beta1.QueryParamsResponse: + lbm.mint.v1beta1.QueryParamsResponse: type: object properties: params: @@ -36547,7 +36547,7 @@ definitions: format: uint64 title: expected blocks per year description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.params.v1beta1.ParamChange: + lbm.params.v1beta1.ParamChange: type: object properties: subspace: @@ -36559,7 +36559,7 @@ definitions: description: |- ParamChange defines an individual parameter change, for use in ParameterChangeProposal. - cosmos.params.v1beta1.QueryParamsResponse: + lbm.params.v1beta1.QueryParamsResponse: type: object properties: param: @@ -36573,7 +36573,7 @@ definitions: value: type: string description: QueryParamsResponse is response type for the Query/Params RPC method. - cosmos.slashing.v1beta1.Params: + lbm.slashing.v1beta1.Params: type: object properties: signed_blocks_window: @@ -36591,7 +36591,7 @@ definitions: type: string format: byte description: Params represents the parameters used for by the slashing module. - cosmos.slashing.v1beta1.QueryParamsResponse: + lbm.slashing.v1beta1.QueryParamsResponse: type: object properties: params: @@ -36613,7 +36613,7 @@ definitions: format: byte description: Params represents the parameters used for by the slashing module. title: QueryParamsResponse is the response type for the Query/Params RPC method - cosmos.slashing.v1beta1.QuerySigningInfoResponse: + lbm.slashing.v1beta1.QuerySigningInfoResponse: type: object properties: val_signing_info: @@ -36655,7 +36655,7 @@ definitions: RPC method - cosmos.slashing.v1beta1.QuerySigningInfosResponse: + lbm.slashing.v1beta1.QuerySigningInfosResponse: type: object properties: info: @@ -36724,7 +36724,7 @@ definitions: RPC method - cosmos.slashing.v1beta1.ValidatorSigningInfo: + lbm.slashing.v1beta1.ValidatorSigningInfo: type: object properties: address: @@ -36757,7 +36757,7 @@ definitions: their liveness activity. - cosmos.staking.v1beta1.BondStatus: + lbm.staking.v1beta1.BondStatus: type: string enum: - BOND_STATUS_UNSPECIFIED @@ -36772,7 +36772,7 @@ definitions: - BOND_STATUS_UNBONDED: UNBONDED defines a validator that is not bonded. - BOND_STATUS_UNBONDING: UNBONDING defines a validator that is unbonding. - BOND_STATUS_BONDED: BONDED defines a validator that is bonded. - cosmos.staking.v1beta1.Commission: + lbm.staking.v1beta1.Commission: type: object properties: commission_rates: @@ -36793,7 +36793,7 @@ definitions: type: string format: date-time description: Commission defines commission parameters for a given validator. - cosmos.staking.v1beta1.CommissionRates: + lbm.staking.v1beta1.CommissionRates: type: object properties: rate: @@ -36807,7 +36807,7 @@ definitions: creating a validator. - cosmos.staking.v1beta1.Delegation: + lbm.staking.v1beta1.Delegation: type: object properties: delegator_address: @@ -36820,7 +36820,7 @@ definitions: Delegation represents the bond with tokens held by an account. It is owned by one delegator, and is associated with the voting power of one validator. - cosmos.staking.v1beta1.DelegationResponse: + lbm.staking.v1beta1.DelegationResponse: type: object properties: delegation: @@ -36851,7 +36851,7 @@ definitions: description: |- DelegationResponse is equivalent to Delegation except that it contains a balance in addition to shares which is more suitable for client responses. - cosmos.staking.v1beta1.Description: + lbm.staking.v1beta1.Description: type: object properties: moniker: @@ -36865,7 +36865,7 @@ definitions: details: type: string description: Description defines a validator description. - cosmos.staking.v1beta1.HistoricalInfo: + lbm.staking.v1beta1.HistoricalInfo: type: object properties: header: @@ -37216,7 +37216,7 @@ definitions: recent HistoricalInfo (`n` is set by the staking module's `historical_entries` parameter). - cosmos.staking.v1beta1.Params: + lbm.staking.v1beta1.Params: type: object properties: unbonding_time: @@ -37233,7 +37233,7 @@ definitions: bond_denom: type: string description: Params defines the parameters for the staking module. - cosmos.staking.v1beta1.Pool: + lbm.staking.v1beta1.Pool: type: object properties: not_bonded_tokens: @@ -37243,7 +37243,7 @@ definitions: description: |- Pool is used for tracking bonded and not-bonded token supply of the bond denomination. - cosmos.staking.v1beta1.QueryDelegationResponse: + lbm.staking.v1beta1.QueryDelegationResponse: type: object properties: delegation_response: @@ -37285,7 +37285,7 @@ definitions: description: >- QueryDelegationResponse is response type for the Query/Delegation RPC method. - cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse: + lbm.staking.v1beta1.QueryDelegatorDelegationsResponse: type: object properties: delegation_responses: @@ -37353,7 +37353,7 @@ definitions: description: |- QueryDelegatorDelegationsResponse is response type for the Query/DelegatorDelegations RPC method. - cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse: + lbm.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse: type: object properties: unbonding_responses: @@ -37409,7 +37409,7 @@ definitions: description: |- QueryUnbondingDelegatorDelegationsResponse is response type for the Query/UnbondingDelegatorDelegations RPC method. - cosmos.staking.v1beta1.QueryDelegatorValidatorResponse: + lbm.staking.v1beta1.QueryDelegatorValidatorResponse: type: object properties: validator: @@ -37650,7 +37650,7 @@ definitions: description: |- QueryDelegatorValidatorResponse response type for the Query/DelegatorValidator RPC method. - cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse: + lbm.staking.v1beta1.QueryDelegatorValidatorsResponse: type: object properties: validators: @@ -37936,7 +37936,7 @@ definitions: description: |- QueryDelegatorValidatorsResponse is response type for the Query/DelegatorValidators RPC method. - cosmos.staking.v1beta1.QueryHistoricalInfoResponse: + lbm.staking.v1beta1.QueryHistoricalInfoResponse: type: object properties: hist: @@ -38296,7 +38296,7 @@ definitions: RPC method. - cosmos.staking.v1beta1.QueryParamsResponse: + lbm.staking.v1beta1.QueryParamsResponse: type: object properties: params: @@ -38317,7 +38317,7 @@ definitions: bond_denom: type: string description: QueryParamsResponse is response type for the Query/Params RPC method. - cosmos.staking.v1beta1.QueryPoolResponse: + lbm.staking.v1beta1.QueryPoolResponse: type: object properties: pool: @@ -38329,7 +38329,7 @@ definitions: bonded_tokens: type: string description: QueryPoolResponse is response type for the Query/Pool RPC method. - cosmos.staking.v1beta1.QueryRedelegationsResponse: + lbm.staking.v1beta1.QueryRedelegationsResponse: type: object properties: redelegation_responses: @@ -38432,7 +38432,7 @@ definitions: RPC method. - cosmos.staking.v1beta1.QueryUnbondingDelegationResponse: + lbm.staking.v1beta1.QueryUnbondingDelegationResponse: type: object properties: unbond: @@ -38464,7 +38464,7 @@ definitions: description: |- QueryDelegationResponse is response type for the Query/UnbondingDelegation RPC method. - cosmos.staking.v1beta1.QueryValidatorDelegationsResponse: + lbm.staking.v1beta1.QueryValidatorDelegationsResponse: type: object properties: delegation_responses: @@ -38531,7 +38531,7 @@ definitions: title: |- QueryValidatorDelegationsResponse is response type for the Query/ValidatorDelegations RPC method - cosmos.staking.v1beta1.QueryValidatorResponse: + lbm.staking.v1beta1.QueryValidatorResponse: type: object properties: validator: @@ -38770,7 +38770,7 @@ definitions: min_self_delegation: type: string title: QueryValidatorResponse is response type for the Query/Validator RPC method - cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse: + lbm.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse: type: object properties: unbonding_responses: @@ -38826,7 +38826,7 @@ definitions: description: |- QueryValidatorUnbondingDelegationsResponse is response type for the Query/ValidatorUnbondingDelegations RPC method. - cosmos.staking.v1beta1.QueryValidatorsResponse: + lbm.staking.v1beta1.QueryValidatorsResponse: type: object properties: validators: @@ -39112,7 +39112,7 @@ definitions: title: >- QueryValidatorsResponse is response type for the Query/Validators RPC method - cosmos.staking.v1beta1.Redelegation: + lbm.staking.v1beta1.Redelegation: type: object properties: delegator_address: @@ -39144,7 +39144,7 @@ definitions: bonds from a particular source validator to a particular destination validator. - cosmos.staking.v1beta1.RedelegationEntry: + lbm.staking.v1beta1.RedelegationEntry: type: object properties: creation_height: @@ -39158,7 +39158,7 @@ definitions: shares_dst: type: string description: RedelegationEntry defines a redelegation object with relevant metadata. - cosmos.staking.v1beta1.RedelegationEntryResponse: + lbm.staking.v1beta1.RedelegationEntryResponse: type: object properties: redelegation_entry: @@ -39186,7 +39186,7 @@ definitions: contains a balance in addition to shares which is more suitable for client responses. - cosmos.staking.v1beta1.RedelegationResponse: + lbm.staking.v1beta1.RedelegationResponse: type: object properties: redelegation: @@ -39260,7 +39260,7 @@ definitions: contain a balance in addition to shares which is more suitable for client responses. - cosmos.staking.v1beta1.UnbondingDelegation: + lbm.staking.v1beta1.UnbondingDelegation: type: object properties: delegator_address: @@ -39288,7 +39288,7 @@ definitions: description: |- UnbondingDelegation stores all of a single delegator's unbonding bonds for a single validator in an time-ordered list. - cosmos.staking.v1beta1.UnbondingDelegationEntry: + lbm.staking.v1beta1.UnbondingDelegationEntry: type: object properties: creation_height: @@ -39304,7 +39304,7 @@ definitions: description: >- UnbondingDelegationEntry defines an unbonding object with relevant metadata. - cosmos.staking.v1beta1.Validator: + lbm.staking.v1beta1.Validator: type: object properties: operator_address: @@ -39552,7 +39552,7 @@ definitions: exchange rate. Voting power can be calculated as total bonded shares multiplied by exchange rate. - cosmos.base.abci.v1beta1.ABCIMessageLog: + lbm.base.abci.v1beta1.ABCIMessageLog: type: object properties: msg_index: @@ -39590,7 +39590,7 @@ definitions: description: >- ABCIMessageLog defines a structure containing an indexed tx ABCI message log. - cosmos.base.abci.v1beta1.Attribute: + lbm.base.abci.v1beta1.Attribute: type: object properties: key: @@ -39600,7 +39600,7 @@ definitions: description: |- Attribute defines an attribute wrapper where the key and value are strings instead of raw bytes. - cosmos.base.abci.v1beta1.GasInfo: + lbm.base.abci.v1beta1.GasInfo: type: object properties: gas_wanted: @@ -39612,7 +39612,7 @@ definitions: format: uint64 description: GasUsed is the amount of gas actually consumed. description: GasInfo defines tx execution gas context. - cosmos.base.abci.v1beta1.Result: + lbm.base.abci.v1beta1.Result: type: object properties: data: @@ -39664,7 +39664,7 @@ definitions: or handler execution. description: Result is the union of ResponseFormat and ResponseCheckTx. - cosmos.base.abci.v1beta1.StringEvent: + lbm.base.abci.v1beta1.StringEvent: type: object properties: type: @@ -39684,7 +39684,7 @@ definitions: description: |- StringEvent defines en Event object wrapper where all the attributes contain key/value pairs that are strings instead of raw bytes. - cosmos.base.abci.v1beta1.TxResponse: + lbm.base.abci.v1beta1.TxResponse: type: object properties: height: @@ -39844,7 +39844,7 @@ definitions: The tags are stringified and the log is JSON decoded. - cosmos.crypto.multisig.v1beta1.CompactBitArray: + lbm.crypto.multisig.v1beta1.CompactBitArray: type: object properties: extra_bits_stored: @@ -39858,7 +39858,7 @@ definitions: This is used to ensure that the encoded data takes up a minimal amount of space after proto encoding. This is not thread safe, and is not intended for concurrent usage. - cosmos.tx.signing.v1beta1.SignMode: + lbm.tx.signing.v1beta1.SignMode: type: string enum: - SIGN_MODE_UNSPECIFIED @@ -39878,13 +39878,13 @@ definitions: from SIGN_MODE_DIRECT - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses Amino JSON and will be removed in the future - cosmos.tx.v1beta1.AuthInfo: + lbm.tx.v1beta1.AuthInfo: type: object properties: signer_infos: type: array items: - $ref: '#/definitions/cosmos.tx.v1beta1.SignerInfo' + $ref: '#/definitions/lbm.tx.v1beta1.SignerInfo' description: >- signer_infos defines the signing modes for the required signers. The number @@ -39959,7 +39959,7 @@ definitions: description: |- AuthInfo describes the fee and signer modes that are used to sign a transaction. - cosmos.tx.v1beta1.BroadcastMode: + lbm.tx.v1beta1.BroadcastMode: type: string enum: - BROADCAST_MODE_UNSPECIFIED @@ -39978,7 +39978,7 @@ definitions: a CheckTx execution response only. - BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns immediately. - cosmos.tx.v1beta1.BroadcastTxRequest: + lbm.tx.v1beta1.BroadcastTxRequest: type: object properties: tx_bytes: @@ -40007,7 +40007,7 @@ definitions: description: |- BroadcastTxRequest is the request type for the Service.BroadcastTxRequest RPC method. - cosmos.tx.v1beta1.BroadcastTxResponse: + lbm.tx.v1beta1.BroadcastTxResponse: type: object properties: tx_response: @@ -40173,7 +40173,7 @@ definitions: description: |- BroadcastTxResponse is the response type for the Service.BroadcastTx method. - cosmos.tx.v1beta1.Fee: + lbm.tx.v1beta1.Fee: type: object properties: amount: @@ -40227,11 +40227,11 @@ definitions: "gasprice", which must be above some miminum to be accepted into the mempool. - cosmos.tx.v1beta1.GetTxResponse: + lbm.tx.v1beta1.GetTxResponse: type: object properties: tx: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + $ref: '#/definitions/lbm.tx.v1beta1.Tx' description: tx is the queried transaction. tx_response: description: tx_response is the queried TxResponses. @@ -40394,13 +40394,13 @@ definitions: it's genesis time. description: GetTxResponse is the response type for the Service.GetTx method. - cosmos.tx.v1beta1.GetTxsEventResponse: + lbm.tx.v1beta1.GetTxsEventResponse: type: object properties: txs: type: array items: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + $ref: '#/definitions/lbm.tx.v1beta1.Tx' description: txs is the list of queried transactions. tx_responses: type: array @@ -40592,7 +40592,7 @@ definitions: description: |- GetTxsEventResponse is the response type for the Service.TxsByEvents RPC method. - cosmos.tx.v1beta1.ModeInfo: + lbm.tx.v1beta1.ModeInfo: type: object properties: single: @@ -40624,10 +40624,10 @@ definitions: - SIGN_MODE_LEGACY_AMINO_JSON: SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses Amino JSON and will be removed in the future multi: - $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo.Multi' + $ref: '#/definitions/lbm.tx.v1beta1.ModeInfo.Multi' title: multi represents a nested multisig signer description: ModeInfo describes the signing mode of a single or nested multisig signer. - cosmos.tx.v1beta1.ModeInfo.Multi: + lbm.tx.v1beta1.ModeInfo.Multi: type: object properties: bitarray: @@ -40652,12 +40652,12 @@ definitions: mode_infos: type: array items: - $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo' + $ref: '#/definitions/lbm.tx.v1beta1.ModeInfo' title: |- mode_infos is the corresponding modes of the signers of the multisig which could include nested multisig public keys title: Multi is the mode info for a multisig public key - cosmos.tx.v1beta1.ModeInfo.Single: + lbm.tx.v1beta1.ModeInfo.Single: type: object properties: mode: @@ -40687,7 +40687,7 @@ definitions: Single is the mode info for a single signer. It is structured as a message to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the future - cosmos.tx.v1beta1.SignerInfo: + lbm.tx.v1beta1.SignerInfo: type: object properties: public_key: @@ -40760,7 +40760,7 @@ definitions: Must be a valid serialized protocol buffer of the above specified type. mode_info: - $ref: '#/definitions/cosmos.tx.v1beta1.ModeInfo' + $ref: '#/definitions/lbm.tx.v1beta1.ModeInfo' title: |- mode_info describes the signing mode of the signer and is a nested structure to support nested multisig pubkey's @@ -40777,16 +40777,16 @@ definitions: description: |- SignerInfo describes the public key and signing mode of a single top-level signer. - cosmos.tx.v1beta1.SimulateRequest: + lbm.tx.v1beta1.SimulateRequest: type: object properties: tx: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' + $ref: '#/definitions/lbm.tx.v1beta1.Tx' description: tx is the transaction to simulate. description: |- SimulateRequest is the request type for the Service.Simulate RPC method. - cosmos.tx.v1beta1.SimulateResponse: + lbm.tx.v1beta1.SimulateResponse: type: object properties: gas_info: @@ -40860,7 +40860,7 @@ definitions: description: |- SimulateResponse is the response type for the Service.SimulateRPC method. - cosmos.tx.v1beta1.Tx: + lbm.tx.v1beta1.Tx: type: object properties: body: @@ -41427,7 +41427,7 @@ definitions: and can't be handled, they will be ignored description: TxBody is the body of a transaction that all signers sign over. auth_info: - $ref: '#/definitions/cosmos.tx.v1beta1.AuthInfo' + $ref: '#/definitions/lbm.tx.v1beta1.AuthInfo' title: |- auth_info is the authorization related content of the transaction, specifically signers, signer modes and fee @@ -41445,7 +41445,7 @@ definitions: public key and signing mode by position. description: Tx is the standard type used for broadcasting transactions. - cosmos.tx.v1beta1.TxBody: + lbm.tx.v1beta1.TxBody: type: object properties: messages: @@ -42019,7 +42019,7 @@ definitions: index: type: boolean description: 'EventAttribute is a single key-value pair, associated with an event.' - cosmos.upgrade.v1beta1.Plan: + lbm.upgrade.v1beta1.Plan: type: object properties: name: @@ -42235,7 +42235,7 @@ definitions: description: >- Plan specifies information about a planned upgrade and when it should occur. - cosmos.upgrade.v1beta1.QueryAppliedPlanResponse: + lbm.upgrade.v1beta1.QueryAppliedPlanResponse: type: object properties: height: @@ -42247,7 +42247,7 @@ definitions: RPC method. - cosmos.upgrade.v1beta1.QueryCurrentPlanResponse: + lbm.upgrade.v1beta1.QueryCurrentPlanResponse: type: object properties: plan: @@ -42479,7 +42479,7 @@ definitions: RPC method. - cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse: + lbm.upgrade.v1beta1.QueryUpgradedConsensusStateResponse: type: object properties: upgraded_consensus_state: diff --git a/client/grpc/reflection/reflection.pb.go b/client/grpc/reflection/reflection.pb.go index 7cbdd1f84a..81d6b1bcc7 100644 --- a/client/grpc/reflection/reflection.pb.go +++ b/client/grpc/reflection/reflection.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/reflection/v1beta1/reflection.proto +// source: lbm/base/reflection/v1beta1/reflection.proto package reflection @@ -36,7 +36,7 @@ func (m *ListAllInterfacesRequest) Reset() { *m = ListAllInterfacesReque func (m *ListAllInterfacesRequest) String() string { return proto.CompactTextString(m) } func (*ListAllInterfacesRequest) ProtoMessage() {} func (*ListAllInterfacesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d48c054165687f5c, []int{0} + return fileDescriptor_4b0a893d2bce2fae, []int{0} } func (m *ListAllInterfacesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,7 +75,7 @@ func (m *ListAllInterfacesResponse) Reset() { *m = ListAllInterfacesResp func (m *ListAllInterfacesResponse) String() string { return proto.CompactTextString(m) } func (*ListAllInterfacesResponse) ProtoMessage() {} func (*ListAllInterfacesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d48c054165687f5c, []int{1} + return fileDescriptor_4b0a893d2bce2fae, []int{1} } func (m *ListAllInterfacesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *ListImplementationsRequest) Reset() { *m = ListImplementationsR func (m *ListImplementationsRequest) String() string { return proto.CompactTextString(m) } func (*ListImplementationsRequest) ProtoMessage() {} func (*ListImplementationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d48c054165687f5c, []int{2} + return fileDescriptor_4b0a893d2bce2fae, []int{2} } func (m *ListImplementationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *ListImplementationsResponse) Reset() { *m = ListImplementations func (m *ListImplementationsResponse) String() string { return proto.CompactTextString(m) } func (*ListImplementationsResponse) ProtoMessage() {} func (*ListImplementationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d48c054165687f5c, []int{3} + return fileDescriptor_4b0a893d2bce2fae, []int{3} } func (m *ListImplementationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -205,44 +205,43 @@ func (m *ListImplementationsResponse) GetImplementationMessageNames() []string { } func init() { - proto.RegisterType((*ListAllInterfacesRequest)(nil), "cosmos.base.reflection.v1beta1.ListAllInterfacesRequest") - proto.RegisterType((*ListAllInterfacesResponse)(nil), "cosmos.base.reflection.v1beta1.ListAllInterfacesResponse") - proto.RegisterType((*ListImplementationsRequest)(nil), "cosmos.base.reflection.v1beta1.ListImplementationsRequest") - proto.RegisterType((*ListImplementationsResponse)(nil), "cosmos.base.reflection.v1beta1.ListImplementationsResponse") + proto.RegisterType((*ListAllInterfacesRequest)(nil), "lbm.base.reflection.v1beta1.ListAllInterfacesRequest") + proto.RegisterType((*ListAllInterfacesResponse)(nil), "lbm.base.reflection.v1beta1.ListAllInterfacesResponse") + proto.RegisterType((*ListImplementationsRequest)(nil), "lbm.base.reflection.v1beta1.ListImplementationsRequest") + proto.RegisterType((*ListImplementationsResponse)(nil), "lbm.base.reflection.v1beta1.ListImplementationsResponse") } func init() { - proto.RegisterFile("cosmos/base/reflection/v1beta1/reflection.proto", fileDescriptor_d48c054165687f5c) -} - -var fileDescriptor_d48c054165687f5c = []byte{ - // 401 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xbd, 0x6e, 0xdb, 0x30, - 0x18, 0x34, 0x6b, 0xa0, 0x80, 0x09, 0xd4, 0x85, 0xd9, 0xc5, 0x55, 0x0d, 0xc1, 0x10, 0x50, 0xd4, - 0x28, 0x5a, 0x11, 0x76, 0x97, 0xfe, 0x2c, 0xfd, 0x5b, 0x0c, 0xd7, 0x1d, 0xe4, 0xad, 0x8b, 0x41, - 0xa9, 0x9f, 0x55, 0xa2, 0x14, 0xa9, 0x8a, 0xb4, 0x97, 0xa2, 0x4b, 0x9f, 0x20, 0x40, 0x5e, 0x26, - 0x43, 0x1e, 0x20, 0xa3, 0x81, 0x2c, 0x19, 0x03, 0x2b, 0x0f, 0x12, 0xc8, 0x52, 0x1c, 0x0b, 0x51, - 0x12, 0xc3, 0xeb, 0x77, 0xbc, 0xe3, 0xdd, 0xf1, 0x23, 0xa6, 0x81, 0xd2, 0x91, 0xd2, 0xd4, 0x67, - 0x1a, 0x68, 0x02, 0x33, 0x01, 0x81, 0xe1, 0x4a, 0xd2, 0x45, 0xdf, 0x07, 0xc3, 0xfa, 0x5b, 0x23, - 0x37, 0x4e, 0x94, 0x51, 0xc4, 0xce, 0x09, 0x6e, 0x46, 0x70, 0xb7, 0xd0, 0x82, 0x60, 0x75, 0x42, - 0xa5, 0x42, 0x01, 0x94, 0xc5, 0x9c, 0x32, 0x29, 0x95, 0x61, 0x19, 0xac, 0x73, 0xb6, 0x63, 0xe1, - 0xf6, 0x37, 0xae, 0xcd, 0x27, 0x21, 0x86, 0xd2, 0x40, 0x32, 0x63, 0x01, 0x68, 0x0f, 0xfe, 0xcc, - 0x41, 0x1b, 0xe7, 0x2b, 0x7e, 0x5a, 0x81, 0xe9, 0x58, 0x49, 0x0d, 0xe4, 0x05, 0x7e, 0xcc, 0xaf, - 0xa6, 0x53, 0xc9, 0x22, 0xd0, 0x6d, 0xd4, 0xad, 0xf7, 0x1a, 0x5e, 0x73, 0x33, 0xfe, 0x9e, 0x4d, - 0x9d, 0x2f, 0xd8, 0xca, 0x54, 0x86, 0x51, 0x2c, 0x20, 0x02, 0x59, 0x5c, 0x5f, 0xdc, 0x41, 0x9e, - 0xe3, 0x66, 0x59, 0xa6, 0x8d, 0xba, 0xa8, 0xd7, 0xf0, 0x1e, 0x95, 0x54, 0x9c, 0x29, 0x7e, 0x56, - 0x29, 0x52, 0x98, 0xf9, 0x88, 0x3b, 0xbc, 0x04, 0x4d, 0x23, 0xd0, 0x9a, 0x85, 0x65, 0x67, 0x56, - 0xf9, 0xcc, 0x38, 0x3f, 0xb2, 0x76, 0x39, 0x38, 0xaa, 0xe3, 0x96, 0xb7, 0x29, 0x6f, 0x02, 0xc9, - 0x82, 0x07, 0x40, 0x8e, 0x11, 0x6e, 0xdd, 0xa8, 0x80, 0xbc, 0x75, 0xef, 0xae, 0xdc, 0xbd, 0xad, - 0x51, 0xeb, 0xdd, 0x1e, 0xcc, 0x3c, 0xa2, 0x33, 0xf8, 0x7f, 0x7a, 0x71, 0xf8, 0xe0, 0x15, 0x79, - 0x79, 0xdf, 0x82, 0xf0, 0x6b, 0xa3, 0x29, 0xc2, 0x4f, 0x2a, 0x6a, 0x23, 0xef, 0x77, 0xb1, 0x51, - 0xfd, 0x60, 0xd6, 0x87, 0xbd, 0xb8, 0x45, 0x88, 0xc9, 0x3a, 0xc4, 0x98, 0x8c, 0x76, 0x0f, 0x41, - 0xff, 0x96, 0xf7, 0xe3, 0x1f, 0x2d, 0xbf, 0xa2, 0xfe, 0x3c, 0x3a, 0x59, 0xd9, 0x68, 0xb9, 0xb2, - 0xd1, 0xf9, 0xca, 0x46, 0x07, 0xa9, 0x5d, 0x5b, 0xa6, 0x76, 0xed, 0x2c, 0xb5, 0x6b, 0x3f, 0xfa, - 0x21, 0x37, 0xbf, 0xe6, 0xbe, 0x1b, 0xa8, 0x88, 0x0a, 0x2e, 0x81, 0x0a, 0x3f, 0x7a, 0xad, 0x7f, - 0xfe, 0xa6, 0x8b, 0x01, 0x0d, 0x04, 0x07, 0x69, 0x68, 0x98, 0xc4, 0xc1, 0x96, 0x01, 0xff, 0xe1, - 0xfa, 0x5b, 0xbc, 0xb9, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x6c, 0x28, 0x34, 0x1c, 0x87, 0x03, 0x00, - 0x00, + proto.RegisterFile("lbm/base/reflection/v1beta1/reflection.proto", fileDescriptor_4b0a893d2bce2fae) +} + +var fileDescriptor_4b0a893d2bce2fae = []byte{ + // 400 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xc9, 0x49, 0xca, 0xd5, + 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x4a, 0x4d, 0xcb, 0x49, 0x4d, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, + 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0x44, 0x12, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, + 0x92, 0xce, 0x49, 0xca, 0xd5, 0x03, 0xa9, 0xd6, 0x43, 0x92, 0x82, 0xaa, 0x96, 0x92, 0x49, 0xcf, + 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x4f, 0x2c, 0xc8, 0xd4, 0x4f, 0xcc, 0xcb, 0xcb, 0x2f, 0x49, 0x04, + 0x49, 0x17, 0x43, 0xb4, 0x2a, 0x49, 0x71, 0x49, 0xf8, 0x64, 0x16, 0x97, 0x38, 0xe6, 0xe4, 0x78, + 0xe6, 0x95, 0xa4, 0x16, 0xa5, 0x25, 0x26, 0xa7, 0x16, 0x07, 0xa5, 0x16, 0x96, 0xa6, 0x16, 0x97, + 0x28, 0xb9, 0x70, 0x49, 0x62, 0x91, 0x2b, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x15, 0x52, 0xe7, 0xe2, + 0xcf, 0x84, 0x89, 0xc6, 0xe7, 0x25, 0xe6, 0xa6, 0x16, 0x4b, 0x30, 0x2a, 0x30, 0x6b, 0x70, 0x06, + 0xf1, 0xc1, 0x85, 0xfd, 0x40, 0xa2, 0x4a, 0xce, 0x5c, 0x52, 0x20, 0x53, 0x3c, 0x73, 0x0b, 0x72, + 0x52, 0x73, 0x53, 0xf3, 0xa0, 0xd6, 0x43, 0xed, 0x10, 0x52, 0xe5, 0xe2, 0x43, 0x35, 0x46, 0x82, + 0x51, 0x81, 0x51, 0x83, 0x33, 0x88, 0x17, 0xc5, 0x14, 0xa5, 0x78, 0x2e, 0x69, 0xac, 0x86, 0x40, + 0x1d, 0xe3, 0xc0, 0x25, 0x93, 0x89, 0x22, 0x15, 0x9f, 0x9b, 0x5a, 0x5c, 0x9c, 0x98, 0x8e, 0xea, + 0x32, 0x29, 0x54, 0x35, 0xbe, 0x10, 0x25, 0x60, 0x57, 0x1a, 0x2d, 0x63, 0xe6, 0x12, 0x0c, 0x82, + 0x07, 0x5e, 0x70, 0x6a, 0x51, 0x59, 0x66, 0x72, 0xaa, 0xd0, 0x66, 0x46, 0x2e, 0x41, 0x8c, 0x20, + 0x10, 0x32, 0xd5, 0xc3, 0x13, 0xde, 0x7a, 0xb8, 0x82, 0x53, 0xca, 0x8c, 0x54, 0x6d, 0x10, 0xcf, + 0x29, 0xe9, 0x37, 0x5d, 0x7e, 0x32, 0x99, 0x49, 0x53, 0x48, 0x5d, 0x1f, 0x5f, 0xa2, 0xc8, 0x44, + 0xb8, 0xef, 0x16, 0x23, 0x97, 0x30, 0x96, 0xd0, 0x12, 0x32, 0x27, 0xe8, 0x00, 0xec, 0x91, 0x24, + 0x65, 0x41, 0xba, 0x46, 0xa8, 0xdb, 0x03, 0xc0, 0x6e, 0xf7, 0x12, 0xf2, 0x20, 0xd2, 0xed, 0xfa, + 0xd5, 0xa8, 0xa9, 0xa1, 0x56, 0x1f, 0x35, 0xce, 0x8a, 0x9d, 0xbc, 0x4f, 0x3c, 0x92, 0x63, 0xbc, + 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, + 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x30, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, + 0x57, 0x3f, 0x27, 0x33, 0x2f, 0x15, 0x64, 0xa5, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, 0x99, 0x91, 0x7e, + 0x72, 0x4e, 0x66, 0x6a, 0x5e, 0x89, 0x7e, 0x7a, 0x51, 0x41, 0x32, 0x92, 0x03, 0x92, 0xd8, 0xc0, + 0x99, 0xc0, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x78, 0xff, 0xae, 0x8e, 0x6f, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -275,7 +274,7 @@ func NewReflectionServiceClient(cc grpc1.ClientConn) ReflectionServiceClient { func (c *reflectionServiceClient) ListAllInterfaces(ctx context.Context, in *ListAllInterfacesRequest, opts ...grpc.CallOption) (*ListAllInterfacesResponse, error) { out := new(ListAllInterfacesResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.reflection.v1beta1.ReflectionService/ListAllInterfaces", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.reflection.v1beta1.ReflectionService/ListAllInterfaces", in, out, opts...) if err != nil { return nil, err } @@ -284,7 +283,7 @@ func (c *reflectionServiceClient) ListAllInterfaces(ctx context.Context, in *Lis func (c *reflectionServiceClient) ListImplementations(ctx context.Context, in *ListImplementationsRequest, opts ...grpc.CallOption) (*ListImplementationsResponse, error) { out := new(ListImplementationsResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.reflection.v1beta1.ReflectionService/ListImplementations", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.reflection.v1beta1.ReflectionService/ListImplementations", in, out, opts...) if err != nil { return nil, err } @@ -326,7 +325,7 @@ func _ReflectionService_ListAllInterfaces_Handler(srv interface{}, ctx context.C } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.reflection.v1beta1.ReflectionService/ListAllInterfaces", + FullMethod: "/lbm.base.reflection.v1beta1.ReflectionService/ListAllInterfaces", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ReflectionServiceServer).ListAllInterfaces(ctx, req.(*ListAllInterfacesRequest)) @@ -344,7 +343,7 @@ func _ReflectionService_ListImplementations_Handler(srv interface{}, ctx context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.reflection.v1beta1.ReflectionService/ListImplementations", + FullMethod: "/lbm.base.reflection.v1beta1.ReflectionService/ListImplementations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ReflectionServiceServer).ListImplementations(ctx, req.(*ListImplementationsRequest)) @@ -353,7 +352,7 @@ func _ReflectionService_ListImplementations_Handler(srv interface{}, ctx context } var _ReflectionService_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.base.reflection.v1beta1.ReflectionService", + ServiceName: "lbm.base.reflection.v1beta1.ReflectionService", HandlerType: (*ReflectionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -366,7 +365,7 @@ var _ReflectionService_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/base/reflection/v1beta1/reflection.proto", + Metadata: "lbm/base/reflection/v1beta1/reflection.proto", } func (m *ListAllInterfacesRequest) Marshal() (dAtA []byte, err error) { diff --git a/client/grpc/reflection/reflection.pb.gw.go b/client/grpc/reflection/reflection.pb.gw.go index ab486750e8..6a1026f1de 100644 --- a/client/grpc/reflection/reflection.pb.gw.go +++ b/client/grpc/reflection/reflection.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/base/reflection/v1beta1/reflection.proto +// source: lbm/base/reflection/v1beta1/reflection.proto /* Package reflection is a reverse proxy. @@ -234,9 +234,9 @@ func RegisterReflectionServiceHandlerClient(ctx context.Context, mux *runtime.Se } var ( - pattern_ReflectionService_ListAllInterfaces_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"cosmos", "base", "reflection", "v1beta1", "interfaces"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_ReflectionService_ListAllInterfaces_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"lbm", "base", "reflection", "v1beta1", "interfaces"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_ReflectionService_ListImplementations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"cosmos", "base", "reflection", "v1beta1", "interfaces", "interface_name", "implementations"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_ReflectionService_ListImplementations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"lbm", "base", "reflection", "v1beta1", "interfaces", "interface_name", "implementations"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/client/grpc/reflection/reflection_test.go b/client/grpc/reflection/reflection_test.go index 41ad976039..8e5ab8e75a 100644 --- a/client/grpc/reflection/reflection_test.go +++ b/client/grpc/reflection/reflection_test.go @@ -29,9 +29,9 @@ func (s *IntegrationTestSuite) SetupSuite() { func (s IntegrationTestSuite) TestSimulateService() { // We will test the following interface for testing. - var iface = "cosmos.evidence.v1beta1.Evidence" + var iface = "lbm.evidence.v1beta1.Evidence" - // Test that "cosmos.evidence.v1beta1.Evidence" is included in the + // Test that "lbm.evidence.v1beta1.Evidence" is included in the // interfaces. resIface, err := s.queryClient.ListAllInterfaces( context.Background(), @@ -40,14 +40,14 @@ func (s IntegrationTestSuite) TestSimulateService() { s.Require().NoError(err) s.Require().Contains(resIface.GetInterfaceNames(), iface) - // Test that "cosmos.evidence.v1beta1.Evidence" has at least the + // Test that "lbm.evidence.v1beta1.Evidence" has at least the // Equivocation implementations. resImpl, err := s.queryClient.ListImplementations( context.Background(), &reflection.ListImplementationsRequest{InterfaceName: iface}, ) s.Require().NoError(err) - s.Require().Contains(resImpl.GetImplementationMessageNames(), "/cosmos.evidence.v1beta1.Equivocation") + s.Require().Contains(resImpl.GetImplementationMessageNames(), "/lbm.evidence.v1beta1.Equivocation") } func TestSimulateTestSuite(t *testing.T) { diff --git a/client/grpc/tmservice/query.pb.go b/client/grpc/tmservice/query.pb.go index 3d0c72b93a..e09b58b09b 100644 --- a/client/grpc/tmservice/query.pb.go +++ b/client/grpc/tmservice/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/ostracon/v1beta1/query.proto +// source: lbm/base/ostracon/v1beta1/query.proto package tmservice @@ -44,7 +44,7 @@ func (m *GetValidatorSetByHeightRequest) Reset() { *m = GetValidatorSetB func (m *GetValidatorSetByHeightRequest) String() string { return proto.CompactTextString(m) } func (*GetValidatorSetByHeightRequest) ProtoMessage() {} func (*GetValidatorSetByHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{0} + return fileDescriptor_5c3400217bb8282c, []int{0} } func (m *GetValidatorSetByHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -99,7 +99,7 @@ func (m *GetValidatorSetByHeightResponse) Reset() { *m = GetValidatorSet func (m *GetValidatorSetByHeightResponse) String() string { return proto.CompactTextString(m) } func (*GetValidatorSetByHeightResponse) ProtoMessage() {} func (*GetValidatorSetByHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{1} + return fileDescriptor_5c3400217bb8282c, []int{1} } func (m *GetValidatorSetByHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -159,7 +159,7 @@ func (m *GetLatestValidatorSetRequest) Reset() { *m = GetLatestValidator func (m *GetLatestValidatorSetRequest) String() string { return proto.CompactTextString(m) } func (*GetLatestValidatorSetRequest) ProtoMessage() {} func (*GetLatestValidatorSetRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{2} + return fileDescriptor_5c3400217bb8282c, []int{2} } func (m *GetLatestValidatorSetRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -207,7 +207,7 @@ func (m *GetLatestValidatorSetResponse) Reset() { *m = GetLatestValidato func (m *GetLatestValidatorSetResponse) String() string { return proto.CompactTextString(m) } func (*GetLatestValidatorSetResponse) ProtoMessage() {} func (*GetLatestValidatorSetResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{3} + return fileDescriptor_5c3400217bb8282c, []int{3} } func (m *GetLatestValidatorSetResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -269,7 +269,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{4} + return fileDescriptor_5c3400217bb8282c, []int{4} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *GetBlockByHeightRequest) Reset() { *m = GetBlockByHeightRequest func (m *GetBlockByHeightRequest) String() string { return proto.CompactTextString(m) } func (*GetBlockByHeightRequest) ProtoMessage() {} func (*GetBlockByHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{5} + return fileDescriptor_5c3400217bb8282c, []int{5} } func (m *GetBlockByHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -381,7 +381,7 @@ func (m *GetBlockByHeightResponse) Reset() { *m = GetBlockByHeightRespon func (m *GetBlockByHeightResponse) String() string { return proto.CompactTextString(m) } func (*GetBlockByHeightResponse) ProtoMessage() {} func (*GetBlockByHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{6} + return fileDescriptor_5c3400217bb8282c, []int{6} } func (m *GetBlockByHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -432,7 +432,7 @@ func (m *GetLatestBlockRequest) Reset() { *m = GetLatestBlockRequest{} } func (m *GetLatestBlockRequest) String() string { return proto.CompactTextString(m) } func (*GetLatestBlockRequest) ProtoMessage() {} func (*GetLatestBlockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{7} + return fileDescriptor_5c3400217bb8282c, []int{7} } func (m *GetLatestBlockRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -471,7 +471,7 @@ func (m *GetLatestBlockResponse) Reset() { *m = GetLatestBlockResponse{} func (m *GetLatestBlockResponse) String() string { return proto.CompactTextString(m) } func (*GetLatestBlockResponse) ProtoMessage() {} func (*GetLatestBlockResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{8} + return fileDescriptor_5c3400217bb8282c, []int{8} } func (m *GetLatestBlockResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -522,7 +522,7 @@ func (m *GetSyncingRequest) Reset() { *m = GetSyncingRequest{} } func (m *GetSyncingRequest) String() string { return proto.CompactTextString(m) } func (*GetSyncingRequest) ProtoMessage() {} func (*GetSyncingRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{9} + return fileDescriptor_5c3400217bb8282c, []int{9} } func (m *GetSyncingRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -560,7 +560,7 @@ func (m *GetSyncingResponse) Reset() { *m = GetSyncingResponse{} } func (m *GetSyncingResponse) String() string { return proto.CompactTextString(m) } func (*GetSyncingResponse) ProtoMessage() {} func (*GetSyncingResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{10} + return fileDescriptor_5c3400217bb8282c, []int{10} } func (m *GetSyncingResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -604,7 +604,7 @@ func (m *GetNodeInfoRequest) Reset() { *m = GetNodeInfoRequest{} } func (m *GetNodeInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetNodeInfoRequest) ProtoMessage() {} func (*GetNodeInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{11} + return fileDescriptor_5c3400217bb8282c, []int{11} } func (m *GetNodeInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -643,7 +643,7 @@ func (m *GetNodeInfoResponse) Reset() { *m = GetNodeInfoResponse{} } func (m *GetNodeInfoResponse) String() string { return proto.CompactTextString(m) } func (*GetNodeInfoResponse) ProtoMessage() {} func (*GetNodeInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{12} + return fileDescriptor_5c3400217bb8282c, []int{12} } func (m *GetNodeInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -701,7 +701,7 @@ func (m *VersionInfo) Reset() { *m = VersionInfo{} } func (m *VersionInfo) String() string { return proto.CompactTextString(m) } func (*VersionInfo) ProtoMessage() {} func (*VersionInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{13} + return fileDescriptor_5c3400217bb8282c, []int{13} } func (m *VersionInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -793,7 +793,7 @@ func (m *Module) Reset() { *m = Module{} } func (m *Module) String() string { return proto.CompactTextString(m) } func (*Module) ProtoMessage() {} func (*Module) Descriptor() ([]byte, []int) { - return fileDescriptor_59f7f56f2cc1e7e8, []int{14} + return fileDescriptor_5c3400217bb8282c, []int{14} } func (m *Module) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -844,96 +844,96 @@ func (m *Module) GetSum() string { } func init() { - proto.RegisterType((*GetValidatorSetByHeightRequest)(nil), "cosmos.base.ostracon.v1beta1.GetValidatorSetByHeightRequest") - proto.RegisterType((*GetValidatorSetByHeightResponse)(nil), "cosmos.base.ostracon.v1beta1.GetValidatorSetByHeightResponse") - proto.RegisterType((*GetLatestValidatorSetRequest)(nil), "cosmos.base.ostracon.v1beta1.GetLatestValidatorSetRequest") - proto.RegisterType((*GetLatestValidatorSetResponse)(nil), "cosmos.base.ostracon.v1beta1.GetLatestValidatorSetResponse") - proto.RegisterType((*Validator)(nil), "cosmos.base.ostracon.v1beta1.Validator") - proto.RegisterType((*GetBlockByHeightRequest)(nil), "cosmos.base.ostracon.v1beta1.GetBlockByHeightRequest") - proto.RegisterType((*GetBlockByHeightResponse)(nil), "cosmos.base.ostracon.v1beta1.GetBlockByHeightResponse") - proto.RegisterType((*GetLatestBlockRequest)(nil), "cosmos.base.ostracon.v1beta1.GetLatestBlockRequest") - proto.RegisterType((*GetLatestBlockResponse)(nil), "cosmos.base.ostracon.v1beta1.GetLatestBlockResponse") - proto.RegisterType((*GetSyncingRequest)(nil), "cosmos.base.ostracon.v1beta1.GetSyncingRequest") - proto.RegisterType((*GetSyncingResponse)(nil), "cosmos.base.ostracon.v1beta1.GetSyncingResponse") - proto.RegisterType((*GetNodeInfoRequest)(nil), "cosmos.base.ostracon.v1beta1.GetNodeInfoRequest") - proto.RegisterType((*GetNodeInfoResponse)(nil), "cosmos.base.ostracon.v1beta1.GetNodeInfoResponse") - proto.RegisterType((*VersionInfo)(nil), "cosmos.base.ostracon.v1beta1.VersionInfo") - proto.RegisterType((*Module)(nil), "cosmos.base.ostracon.v1beta1.Module") + proto.RegisterType((*GetValidatorSetByHeightRequest)(nil), "lbm.base.ostracon.v1beta1.GetValidatorSetByHeightRequest") + proto.RegisterType((*GetValidatorSetByHeightResponse)(nil), "lbm.base.ostracon.v1beta1.GetValidatorSetByHeightResponse") + proto.RegisterType((*GetLatestValidatorSetRequest)(nil), "lbm.base.ostracon.v1beta1.GetLatestValidatorSetRequest") + proto.RegisterType((*GetLatestValidatorSetResponse)(nil), "lbm.base.ostracon.v1beta1.GetLatestValidatorSetResponse") + proto.RegisterType((*Validator)(nil), "lbm.base.ostracon.v1beta1.Validator") + proto.RegisterType((*GetBlockByHeightRequest)(nil), "lbm.base.ostracon.v1beta1.GetBlockByHeightRequest") + proto.RegisterType((*GetBlockByHeightResponse)(nil), "lbm.base.ostracon.v1beta1.GetBlockByHeightResponse") + proto.RegisterType((*GetLatestBlockRequest)(nil), "lbm.base.ostracon.v1beta1.GetLatestBlockRequest") + proto.RegisterType((*GetLatestBlockResponse)(nil), "lbm.base.ostracon.v1beta1.GetLatestBlockResponse") + proto.RegisterType((*GetSyncingRequest)(nil), "lbm.base.ostracon.v1beta1.GetSyncingRequest") + proto.RegisterType((*GetSyncingResponse)(nil), "lbm.base.ostracon.v1beta1.GetSyncingResponse") + proto.RegisterType((*GetNodeInfoRequest)(nil), "lbm.base.ostracon.v1beta1.GetNodeInfoRequest") + proto.RegisterType((*GetNodeInfoResponse)(nil), "lbm.base.ostracon.v1beta1.GetNodeInfoResponse") + proto.RegisterType((*VersionInfo)(nil), "lbm.base.ostracon.v1beta1.VersionInfo") + proto.RegisterType((*Module)(nil), "lbm.base.ostracon.v1beta1.Module") } func init() { - proto.RegisterFile("cosmos/base/ostracon/v1beta1/query.proto", fileDescriptor_59f7f56f2cc1e7e8) + proto.RegisterFile("lbm/base/ostracon/v1beta1/query.proto", fileDescriptor_5c3400217bb8282c) } -var fileDescriptor_59f7f56f2cc1e7e8 = []byte{ +var fileDescriptor_5c3400217bb8282c = []byte{ // 1065 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x56, 0xcf, 0x4f, 0x1b, 0xc7, - 0x17, 0x67, 0x71, 0x82, 0xe1, 0xf9, 0xab, 0x6f, 0x61, 0x20, 0x61, 0x63, 0x81, 0x4b, 0xad, 0xb6, - 0x90, 0x22, 0x76, 0xc0, 0x90, 0x1c, 0xd2, 0xf4, 0x50, 0x82, 0x4a, 0xe8, 0x8f, 0x08, 0x2d, 0x55, - 0x0f, 0xb9, 0x58, 0x63, 0xef, 0xb0, 0x8c, 0x58, 0xef, 0x4c, 0x76, 0xc6, 0xae, 0xac, 0xa8, 0x52, - 0xd5, 0xbf, 0xa0, 0x52, 0xef, 0xbd, 0xb4, 0x7f, 0x40, 0x8f, 0x3d, 0xf4, 0x0f, 0xe8, 0xa1, 0x87, - 0x48, 0x8d, 0xaa, 0x1e, 0x2b, 0xc8, 0x1f, 0xd1, 0x63, 0xb5, 0x33, 0xb3, 0xf6, 0x3a, 0x80, 0x0d, - 0x1c, 0x2a, 0xf5, 0xb6, 0xf3, 0x7e, 0x7e, 0x3e, 0x6f, 0xde, 0x7b, 0x3b, 0xb0, 0xd2, 0xe4, 0xb2, - 0xc5, 0x25, 0x6e, 0x10, 0x49, 0x31, 0x97, 0x2a, 0x21, 0x4d, 0x1e, 0xe3, 0xce, 0x46, 0x83, 0x2a, - 0xb2, 0x81, 0x9f, 0xb5, 0x69, 0xd2, 0xf5, 0x44, 0xc2, 0x15, 0x47, 0x0b, 0xc6, 0xd2, 0x4b, 0x2d, - 0xbd, 0xcc, 0xd2, 0xb3, 0x96, 0xe5, 0xb9, 0x90, 0x87, 0x5c, 0x1b, 0xe2, 0xf4, 0xcb, 0xf8, 0x94, - 0xef, 0x84, 0x9c, 0x87, 0x11, 0xc5, 0xfa, 0xd4, 0x68, 0x1f, 0x62, 0x12, 0xdb, 0x70, 0xe5, 0x05, - 0xab, 0x22, 0x82, 0x61, 0x12, 0xc7, 0x5c, 0x11, 0xc5, 0x78, 0x2c, 0xad, 0xd6, 0xed, 0x41, 0x11, - 0x35, 0x81, 0x55, 0x57, 0xd0, 0x4c, 0x53, 0xee, 0x69, 0xb4, 0x14, 0x37, 0x22, 0xde, 0x3c, 0xbe, - 0x40, 0x97, 0xf7, 0x7b, 0x2f, 0x4f, 0x54, 0xf3, 0xea, 0xb1, 0x14, 0x24, 0x64, 0xb1, 0x4e, 0x6f, - 0x6c, 0xab, 0x5f, 0x3b, 0x50, 0xd9, 0xa5, 0xea, 0x0b, 0x12, 0xb1, 0x80, 0x28, 0x9e, 0x1c, 0x50, - 0xb5, 0xdd, 0x7d, 0x4c, 0x59, 0x78, 0xa4, 0x7c, 0xfa, 0xac, 0x4d, 0xa5, 0x42, 0xb7, 0x61, 0xe2, - 0x48, 0x0b, 0x5c, 0x67, 0xc9, 0x59, 0x29, 0xf8, 0xf6, 0x84, 0x3e, 0x02, 0xe8, 0x87, 0x73, 0xc7, - 0x97, 0x9c, 0x95, 0x52, 0xed, 0x5d, 0x2f, 0x5f, 0x3a, 0x53, 0x53, 0x9b, 0xdb, 0xdb, 0x27, 0x21, - 0xb5, 0x31, 0xfd, 0x9c, 0x67, 0xf5, 0x0f, 0x07, 0xde, 0xbc, 0x10, 0x82, 0x14, 0x3c, 0x96, 0x14, - 0xbd, 0x05, 0xff, 0xd3, 0xec, 0xeb, 0x03, 0x48, 0x4a, 0x5a, 0x66, 0x4c, 0xd1, 0x2e, 0x40, 0x27, - 0x0b, 0x21, 0xdd, 0xf1, 0xa5, 0xc2, 0x4a, 0xa9, 0xb6, 0xec, 0x0d, 0xbb, 0x49, 0xaf, 0x97, 0xd2, - 0xcf, 0xb9, 0xa6, 0x81, 0x72, 0xbc, 0x0a, 0x9a, 0xd7, 0xf2, 0x48, 0x5e, 0x06, 0xe8, 0x00, 0xb1, - 0x43, 0x58, 0xd8, 0xa5, 0xea, 0x53, 0xa2, 0xa8, 0x1c, 0x60, 0x97, 0x15, 0x76, 0xb0, 0x80, 0xce, - 0xb5, 0x0b, 0xf8, 0xd2, 0x81, 0xc5, 0x0b, 0x12, 0xfd, 0x97, 0xcb, 0xf7, 0xa3, 0x03, 0x53, 0xbd, - 0x14, 0xc8, 0x85, 0x22, 0x09, 0x82, 0x84, 0x4a, 0xa9, 0xd1, 0x4f, 0xf9, 0xd9, 0x11, 0xad, 0x41, - 0x51, 0xb4, 0x1b, 0xf5, 0x63, 0xda, 0xb5, 0x4d, 0x38, 0xe7, 0x99, 0x81, 0xf3, 0xb2, 0x59, 0xf4, - 0x3e, 0x8c, 0xbb, 0xfe, 0x84, 0x68, 0x37, 0x3e, 0xa1, 0xdd, 0xb4, 0x16, 0x1d, 0xae, 0x58, 0x1c, - 0xd6, 0x05, 0xff, 0x92, 0x26, 0x1a, 0x61, 0xc1, 0x2f, 0x19, 0xd9, 0x7e, 0x2a, 0x42, 0xab, 0x30, - 0x23, 0x12, 0x2e, 0xb8, 0xa4, 0x49, 0x5d, 0x24, 0x8c, 0x27, 0x4c, 0x75, 0xdd, 0x1b, 0xda, 0x6e, - 0x3a, 0x53, 0xec, 0x5b, 0x79, 0x75, 0x03, 0xe6, 0x77, 0xa9, 0xda, 0x4e, 0x4b, 0x79, 0xc9, 0xc9, - 0xa9, 0x3e, 0x07, 0xf7, 0xac, 0x8b, 0xbd, 0xaa, 0x1a, 0x4c, 0x9a, 0xab, 0x62, 0x81, 0x6d, 0x89, - 0xf9, 0x7e, 0xe5, 0xcd, 0x94, 0x6b, 0xc7, 0xbd, 0x1d, 0xbf, 0xa8, 0x0d, 0xf7, 0x02, 0xb4, 0x0a, - 0x37, 0xf5, 0xa7, 0xe5, 0x7f, 0xeb, 0x5c, 0x07, 0xdf, 0xd8, 0x54, 0xe7, 0xe1, 0x56, 0xaf, 0x59, - 0x8c, 0xc2, 0xa0, 0xad, 0x76, 0xe1, 0xf6, 0xeb, 0x8a, 0x7f, 0x0b, 0xd3, 0x2c, 0xcc, 0xec, 0x52, - 0x75, 0xd0, 0x8d, 0x9b, 0x2c, 0x0e, 0x33, 0x3c, 0x1e, 0xa0, 0xbc, 0xd0, 0x62, 0x71, 0xa1, 0x28, - 0x8d, 0x48, 0x43, 0x99, 0xf4, 0xb3, 0x63, 0x75, 0x4e, 0xdb, 0x3f, 0xe1, 0x01, 0xdd, 0x8b, 0x0f, - 0x79, 0x16, 0xe5, 0x17, 0x07, 0x66, 0x07, 0xc4, 0x36, 0xce, 0x1e, 0xcc, 0x04, 0xf4, 0x90, 0xb4, - 0x23, 0x55, 0x8f, 0x79, 0x40, 0xeb, 0x2c, 0x3e, 0xe4, 0x96, 0xdc, 0x62, 0x1f, 0xab, 0xa8, 0x09, - 0x6f, 0xc7, 0x98, 0xf5, 0x22, 0xbc, 0x11, 0x0c, 0x0a, 0xd0, 0x53, 0x98, 0x25, 0x42, 0x44, 0xac, - 0xa9, 0xfb, 0xb6, 0xde, 0xa1, 0x89, 0xec, 0x6f, 0xc4, 0xbb, 0x23, 0x66, 0xc8, 0x18, 0xeb, 0xc0, - 0x28, 0x17, 0xc5, 0xca, 0xab, 0x7f, 0x3b, 0x50, 0xca, 0xd9, 0x20, 0x04, 0x37, 0x62, 0xd2, 0xa2, - 0x76, 0x06, 0xf4, 0x37, 0xba, 0x03, 0x93, 0x44, 0x88, 0xba, 0x96, 0x8f, 0xdb, 0xd9, 0x10, 0xe2, - 0x49, 0xaa, 0x72, 0xa1, 0x98, 0xc1, 0x29, 0x18, 0x8d, 0x3d, 0xa2, 0x45, 0x80, 0x90, 0xa9, 0x7a, - 0x93, 0xb7, 0x5a, 0x4c, 0xe9, 0xe6, 0x9e, 0xf2, 0xa7, 0x42, 0xa6, 0x1e, 0x69, 0x41, 0xaa, 0x6e, - 0xb4, 0x59, 0x14, 0xd4, 0x15, 0x09, 0xa5, 0x7b, 0xd3, 0xa8, 0xb5, 0xe4, 0x73, 0x12, 0x4a, 0xed, - 0xcd, 0x7b, 0x4c, 0x27, 0xac, 0x37, 0xb7, 0x48, 0xd1, 0xa3, 0xcc, 0x3b, 0xa0, 0x42, 0xba, 0x45, - 0xbd, 0x4c, 0xde, 0x1e, 0x5e, 0x88, 0xcf, 0x78, 0xd0, 0x8e, 0xa8, 0xcd, 0xb1, 0x43, 0x85, 0xac, - 0x3e, 0x86, 0x09, 0x23, 0x4c, 0x49, 0x0b, 0xa2, 0x8e, 0x32, 0xd2, 0xe9, 0x77, 0x9e, 0xd9, 0xf8, - 0x20, 0xb3, 0x69, 0x28, 0xc8, 0x76, 0xcb, 0xf2, 0x4d, 0x3f, 0x6b, 0xaf, 0x26, 0xa1, 0x78, 0x40, - 0x93, 0x0e, 0x6b, 0x52, 0xf4, 0x83, 0x03, 0xa5, 0x5c, 0x3f, 0xa0, 0xf5, 0xe1, 0xb0, 0xce, 0x76, - 0x54, 0x79, 0xe3, 0x0a, 0x1e, 0xa6, 0xd9, 0xaa, 0xf8, 0x9b, 0xdf, 0x5f, 0x7d, 0x37, 0x7e, 0x17, - 0x2d, 0xe3, 0xa1, 0x6f, 0x90, 0x5e, 0x23, 0xa2, 0xef, 0x1d, 0x80, 0x7e, 0xf3, 0x23, 0x3c, 0x32, - 0xe5, 0xe0, 0xec, 0x94, 0xd7, 0x2f, 0xef, 0x60, 0x21, 0xae, 0x69, 0x88, 0xcb, 0xe8, 0x9d, 0xe1, - 0x10, 0xed, 0xb0, 0xa1, 0x9f, 0x1c, 0xf8, 0xff, 0xe0, 0xb6, 0x40, 0x9b, 0x23, 0x73, 0x9e, 0x5d, - 0x3a, 0xe5, 0xad, 0xab, 0x39, 0x59, 0xb0, 0x9b, 0x1a, 0xec, 0x1a, 0x5a, 0x1d, 0x0e, 0x56, 0x2f, - 0x17, 0x89, 0x23, 0x1d, 0x01, 0xfd, 0xec, 0xc0, 0xf4, 0xeb, 0x6b, 0x17, 0xdd, 0x1b, 0x99, 0xff, - 0xbc, 0xcd, 0x5e, 0xbe, 0x7f, 0x55, 0x37, 0x0b, 0xfc, 0x9e, 0x06, 0x8e, 0xd1, 0xda, 0xa5, 0x80, - 0x3f, 0x37, 0xff, 0x8b, 0xaf, 0xd0, 0x6f, 0x4e, 0x6e, 0x69, 0xe7, 0xff, 0xf0, 0xe8, 0xc1, 0x25, - 0xeb, 0x77, 0xce, 0xfb, 0xa3, 0xfc, 0xfe, 0xb5, 0x7c, 0x2d, 0x93, 0x07, 0x9a, 0xc9, 0x16, 0xaa, - 0x0d, 0x67, 0xd2, 0x7f, 0x18, 0x50, 0xd5, 0xbb, 0x89, 0x97, 0x8e, 0xfe, 0x67, 0x9e, 0xf7, 0xe2, - 0x43, 0x0f, 0x47, 0x82, 0x1a, 0xf2, 0x56, 0x2d, 0x7f, 0x70, 0x4d, 0x6f, 0x4b, 0xea, 0xa1, 0x26, - 0x75, 0x1f, 0x6d, 0x5d, 0x85, 0x54, 0x76, 0x4b, 0xdb, 0x1f, 0xff, 0x7a, 0x52, 0x71, 0x5e, 0x9c, - 0x54, 0x9c, 0xbf, 0x4e, 0x2a, 0xce, 0xb7, 0xa7, 0x95, 0xb1, 0x17, 0xa7, 0x95, 0xb1, 0x3f, 0x4f, - 0x2b, 0x63, 0x4f, 0xd7, 0x43, 0xa6, 0x8e, 0xda, 0x0d, 0xaf, 0xc9, 0x5b, 0x38, 0x62, 0x31, 0xc5, - 0x51, 0xa3, 0xb5, 0x26, 0x83, 0x63, 0xdc, 0xa9, 0xe1, 0x66, 0xc4, 0x68, 0xac, 0x70, 0x98, 0x88, - 0x26, 0x56, 0x2d, 0x69, 0xd6, 0x54, 0x63, 0x42, 0xbf, 0x5d, 0x36, 0xff, 0x09, 0x00, 0x00, 0xff, - 0xff, 0xa4, 0xe8, 0xcf, 0xa2, 0xb5, 0x0c, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x56, 0xcf, 0x6f, 0xdc, 0xc4, + 0x17, 0x8f, 0xb3, 0x6d, 0x36, 0x79, 0xfb, 0xd5, 0x97, 0x64, 0x92, 0x36, 0xce, 0xaa, 0x59, 0xd2, + 0xa5, 0x25, 0x41, 0x61, 0xed, 0x66, 0x53, 0x7e, 0x55, 0x1c, 0x20, 0x8d, 0x94, 0x86, 0x1f, 0x55, + 0xe4, 0x20, 0x90, 0xb8, 0xac, 0xfc, 0x63, 0xe2, 0x8c, 0xe2, 0xf5, 0x4c, 0x3d, 0xe3, 0x45, 0xab, + 0xaa, 0x17, 0xfe, 0x02, 0x24, 0x2e, 0x5c, 0xb8, 0x71, 0xe2, 0xc8, 0x8d, 0x1b, 0x27, 0xc4, 0xa9, + 0x8a, 0xc4, 0x85, 0x23, 0x4a, 0xf8, 0x17, 0xb8, 0x23, 0xcf, 0x8c, 0xbd, 0xde, 0x26, 0xb1, 0x92, + 0x1e, 0x90, 0xb8, 0xcd, 0xbc, 0x9f, 0x9f, 0xcf, 0xf3, 0x7b, 0xcf, 0x03, 0x77, 0x23, 0xaf, 0x6f, + 0x7b, 0x2e, 0xc7, 0x36, 0xe5, 0x22, 0x71, 0x7d, 0x1a, 0xdb, 0x83, 0x0d, 0x0f, 0x0b, 0x77, 0xc3, + 0x7e, 0x92, 0xe2, 0x64, 0x68, 0xb1, 0x84, 0x0a, 0x8a, 0x96, 0x22, 0xaf, 0x6f, 0x65, 0x66, 0x56, + 0x6e, 0x66, 0x69, 0xb3, 0xe6, 0x42, 0x48, 0x43, 0x2a, 0xad, 0xec, 0xec, 0xa4, 0x1c, 0x9a, 0x4b, + 0x21, 0xa5, 0x61, 0x84, 0x6d, 0x79, 0xf3, 0xd2, 0x03, 0xdb, 0x8d, 0x75, 0xac, 0xe6, 0x2d, 0xad, + 0x72, 0x19, 0xb1, 0xdd, 0x38, 0xa6, 0xc2, 0x15, 0x84, 0xc6, 0x5c, 0x6b, 0xcd, 0x02, 0x07, 0xeb, + 0x32, 0x5b, 0x0c, 0x19, 0xce, 0x35, 0xcd, 0x42, 0x23, 0xa5, 0xb6, 0x17, 0x51, 0xff, 0xe8, 0x02, + 0x5d, 0xd9, 0x6f, 0xb5, 0xa0, 0x28, 0x19, 0x15, 0xfc, 0x98, 0x1b, 0x92, 0x58, 0xe6, 0x56, 0x86, + 0xed, 0x67, 0xd0, 0xda, 0xc1, 0xe2, 0x73, 0x37, 0x22, 0x81, 0x2b, 0x68, 0xb2, 0x8f, 0xc5, 0xd6, + 0xf0, 0x11, 0x26, 0xe1, 0xa1, 0x70, 0xf0, 0x93, 0x14, 0x73, 0x81, 0x6e, 0xc2, 0xd4, 0xa1, 0x14, + 0x98, 0xc6, 0x8a, 0xb1, 0x56, 0x73, 0xf4, 0x0d, 0x3d, 0x04, 0x18, 0x45, 0x33, 0x27, 0x57, 0x8c, + 0xb5, 0x46, 0xf7, 0x35, 0xab, 0xa8, 0x99, 0xaa, 0xa4, 0xce, 0x6b, 0xed, 0xb9, 0x21, 0xd6, 0x01, + 0x9d, 0x92, 0x5b, 0xfb, 0xd8, 0x80, 0x57, 0x2f, 0xcc, 0xcf, 0x19, 0x8d, 0x39, 0x46, 0xb7, 0xe1, + 0x7f, 0x92, 0x76, 0x6f, 0x0c, 0x46, 0x43, 0xca, 0x94, 0x29, 0xda, 0x06, 0x18, 0xe4, 0x21, 0xb8, + 0x39, 0xb9, 0x52, 0x5b, 0x6b, 0x74, 0xef, 0x58, 0x17, 0x7e, 0x3f, 0xab, 0xc8, 0xe7, 0x94, 0xfc, + 0xb2, 0x28, 0x25, 0x46, 0x35, 0xc9, 0xe8, 0x4e, 0x35, 0x23, 0x05, 0x71, 0x8c, 0x92, 0x0f, 0xb7, + 0x76, 0xb0, 0xf8, 0xc4, 0x15, 0x98, 0x8f, 0xf1, 0xca, 0xeb, 0x39, 0x5e, 0x37, 0xe3, 0xe5, 0xea, + 0xf6, 0xdc, 0x80, 0xe5, 0x0b, 0xb2, 0xfc, 0x37, 0xab, 0xf6, 0x83, 0x01, 0x33, 0x45, 0x7c, 0x64, + 0x42, 0xdd, 0x0d, 0x82, 0x04, 0x73, 0x2e, 0x71, 0xcf, 0x38, 0xf9, 0x15, 0x75, 0xa0, 0xce, 0x52, + 0xaf, 0x77, 0x84, 0x87, 0xba, 0xe5, 0x16, 0x2c, 0x35, 0x5a, 0x56, 0x3e, 0x75, 0xd6, 0x87, 0xf1, + 0xd0, 0x99, 0x62, 0xa9, 0xf7, 0x31, 0x1e, 0x66, 0x55, 0x18, 0x50, 0x41, 0xe2, 0xb0, 0xc7, 0xe8, + 0x57, 0x38, 0x91, 0xf0, 0x6a, 0x4e, 0x43, 0xc9, 0xf6, 0x32, 0x11, 0x5a, 0x87, 0x39, 0x96, 0x50, + 0x46, 0x39, 0x4e, 0x7a, 0x2c, 0x21, 0x34, 0x21, 0x62, 0x68, 0x5e, 0x93, 0x76, 0xb3, 0xb9, 0x62, + 0x4f, 0xcb, 0xdb, 0x1b, 0xb0, 0xb8, 0x83, 0xc5, 0x56, 0x56, 0xc4, 0x4b, 0xce, 0x49, 0xfb, 0x29, + 0x98, 0x67, 0x5d, 0xf4, 0x47, 0xea, 0xc2, 0xb4, 0xfa, 0x48, 0x24, 0xd0, 0x9d, 0xb0, 0x38, 0x2a, + 0xbb, 0x9a, 0x67, 0xe9, 0xb8, 0xbb, 0xed, 0xd4, 0xa5, 0xe1, 0x6e, 0x80, 0xd6, 0xe1, 0xba, 0x3c, + 0x6a, 0xfe, 0x37, 0xce, 0x75, 0x70, 0x94, 0x4d, 0x7b, 0x11, 0x6e, 0x14, 0x6d, 0xa2, 0x14, 0x0a, + 0x6d, 0x7b, 0x08, 0x37, 0x5f, 0x54, 0xfc, 0x5b, 0x98, 0xe6, 0x61, 0x6e, 0x07, 0x8b, 0xfd, 0x61, + 0xec, 0x93, 0x38, 0xcc, 0xf1, 0x58, 0x80, 0xca, 0x42, 0x8d, 0xc5, 0x84, 0x3a, 0x57, 0x22, 0x09, + 0x65, 0xda, 0xc9, 0xaf, 0xed, 0x05, 0x69, 0xff, 0x98, 0x06, 0x78, 0x37, 0x3e, 0xa0, 0x79, 0x94, + 0x9f, 0x0d, 0x98, 0x1f, 0x13, 0xeb, 0x38, 0xbb, 0x30, 0x17, 0xe0, 0x03, 0x37, 0x8d, 0x44, 0x2f, + 0xa6, 0x01, 0xee, 0x91, 0xf8, 0x80, 0x6a, 0x72, 0xcb, 0x23, 0xac, 0xac, 0xcb, 0xac, 0x6d, 0x65, + 0x56, 0x44, 0x78, 0x25, 0x18, 0x17, 0xa0, 0x2f, 0x60, 0xde, 0x65, 0x2c, 0x22, 0xbe, 0xec, 0xdb, + 0xde, 0x00, 0x27, 0x7c, 0xb4, 0xff, 0x5e, 0xaf, 0x9a, 0x1e, 0x65, 0x29, 0xa3, 0xa2, 0x52, 0x08, + 0x2d, 0x6f, 0xff, 0x6d, 0x40, 0xa3, 0x64, 0x83, 0x10, 0x5c, 0x8b, 0xdd, 0x3e, 0xd6, 0x03, 0x20, + 0xcf, 0x68, 0x09, 0xa6, 0x5d, 0xc6, 0x7a, 0x52, 0x3e, 0xa9, 0x07, 0x83, 0xb1, 0xc7, 0x99, 0xca, + 0x84, 0x7a, 0x8e, 0xa5, 0xa6, 0x34, 0xfa, 0x8a, 0x96, 0x01, 0x42, 0x22, 0x7a, 0x3e, 0xed, 0xf7, + 0x89, 0x90, 0x9d, 0x3d, 0xe3, 0xcc, 0x84, 0x44, 0x3c, 0x94, 0x82, 0x4c, 0xed, 0xa5, 0x24, 0x0a, + 0x7a, 0xc2, 0x0d, 0xb9, 0x79, 0x5d, 0xa9, 0xa5, 0xe4, 0x33, 0x37, 0xe4, 0xd2, 0x9b, 0x16, 0x34, + 0xa7, 0xb4, 0x37, 0xd5, 0x48, 0xd1, 0x07, 0xb9, 0x77, 0x80, 0x19, 0x37, 0xeb, 0x72, 0x87, 0xdc, + 0xae, 0xa8, 0xc2, 0xa7, 0x34, 0x48, 0x23, 0xac, 0x13, 0x6c, 0x63, 0xc6, 0xdb, 0x8f, 0x60, 0x4a, + 0x09, 0x33, 0xc6, 0xcc, 0x15, 0x87, 0x39, 0xe3, 0xec, 0x5c, 0xa6, 0x35, 0x39, 0x4e, 0x6b, 0x16, + 0x6a, 0x3c, 0xed, 0x6b, 0xb2, 0xd9, 0xb1, 0xfb, 0xcb, 0x34, 0xd4, 0xf7, 0x71, 0x32, 0x20, 0x3e, + 0x46, 0xdf, 0x1b, 0xd0, 0x28, 0x75, 0x02, 0xea, 0x54, 0x60, 0x3a, 0xdb, 0x48, 0x4d, 0xeb, 0xb2, + 0xe6, 0xaa, 0xc1, 0xda, 0xf6, 0xd7, 0xbf, 0xff, 0xf5, 0xed, 0xe4, 0x1b, 0x68, 0xd5, 0xf6, 0x29, + 0xef, 0x53, 0x7e, 0xc1, 0xf3, 0xa2, 0x68, 0x3e, 0xf4, 0x9d, 0x01, 0x30, 0x6a, 0x78, 0xf4, 0x66, + 0x75, 0xbe, 0xf1, 0x61, 0x69, 0x76, 0x2e, 0x69, 0xad, 0xc1, 0x75, 0x24, 0xb8, 0x55, 0x74, 0xb7, + 0x1a, 0x9c, 0x1e, 0x2d, 0xf4, 0xa3, 0x01, 0xff, 0x1f, 0xdf, 0x0d, 0xe8, 0x5e, 0x75, 0xc2, 0xb3, + 0xfb, 0xa5, 0xb9, 0x71, 0x05, 0x0f, 0x0d, 0x73, 0x53, 0xc2, 0xec, 0xa0, 0xf5, 0x6a, 0x98, 0x72, + 0x89, 0x70, 0x3b, 0x92, 0x11, 0xd0, 0x4f, 0x06, 0xcc, 0xbe, 0xb8, 0x5e, 0x51, 0xb7, 0x3a, 0xf9, + 0x79, 0xeb, 0xbb, 0xb9, 0x79, 0x25, 0x1f, 0x0d, 0xf9, 0x2d, 0x09, 0xd9, 0x46, 0x9d, 0x4b, 0x41, + 0x7e, 0xaa, 0xfe, 0x08, 0xcf, 0xd0, 0xaf, 0x46, 0x69, 0x2d, 0x97, 0xff, 0xde, 0xe8, 0x9d, 0xcb, + 0x94, 0xed, 0x9c, 0x57, 0x45, 0xf3, 0xdd, 0xab, 0x3b, 0x6a, 0x0e, 0x0f, 0x24, 0x87, 0xfb, 0xa8, + 0x5b, 0xcd, 0x61, 0xf4, 0xc7, 0xc7, 0xa2, 0xa8, 0xfe, 0x73, 0x43, 0xfe, 0x0f, 0xcf, 0x7b, 0xbe, + 0xa1, 0xf7, 0xaa, 0x11, 0x55, 0x3c, 0x39, 0x9b, 0x0f, 0x5e, 0xc6, 0x55, 0xd3, 0x79, 0x5f, 0xd2, + 0x79, 0x1b, 0xdd, 0xbf, 0x0a, 0x9d, 0xfc, 0xcb, 0x6c, 0x7d, 0xf4, 0xdb, 0x49, 0xcb, 0x38, 0x3e, + 0x69, 0x19, 0x7f, 0x9e, 0xb4, 0x8c, 0x6f, 0x4e, 0x5b, 0x13, 0xc7, 0xa7, 0xad, 0x89, 0x3f, 0x4e, + 0x5b, 0x13, 0x5f, 0xde, 0x0b, 0x89, 0x38, 0x4c, 0x3d, 0xcb, 0xa7, 0x7d, 0x3b, 0x22, 0x31, 0xb6, + 0x23, 0xaf, 0xdf, 0xe1, 0xc1, 0x91, 0x3d, 0xe8, 0xda, 0x7e, 0x44, 0x70, 0x2c, 0xec, 0x30, 0x61, + 0xbe, 0x2d, 0xfa, 0x5c, 0xad, 0x20, 0x6f, 0x4a, 0xbe, 0x48, 0x36, 0xff, 0x09, 0x00, 0x00, 0xff, + 0xff, 0xba, 0x15, 0xe6, 0x2d, 0x6f, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -972,7 +972,7 @@ func NewServiceClient(cc grpc1.ClientConn) ServiceClient { func (c *serviceClient) GetNodeInfo(ctx context.Context, in *GetNodeInfoRequest, opts ...grpc.CallOption) (*GetNodeInfoResponse, error) { out := new(GetNodeInfoResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.ostracon.v1beta1.Service/GetNodeInfo", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.ostracon.v1beta1.Service/GetNodeInfo", in, out, opts...) if err != nil { return nil, err } @@ -981,7 +981,7 @@ func (c *serviceClient) GetNodeInfo(ctx context.Context, in *GetNodeInfoRequest, func (c *serviceClient) GetSyncing(ctx context.Context, in *GetSyncingRequest, opts ...grpc.CallOption) (*GetSyncingResponse, error) { out := new(GetSyncingResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.ostracon.v1beta1.Service/GetSyncing", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.ostracon.v1beta1.Service/GetSyncing", in, out, opts...) if err != nil { return nil, err } @@ -990,7 +990,7 @@ func (c *serviceClient) GetSyncing(ctx context.Context, in *GetSyncingRequest, o func (c *serviceClient) GetLatestBlock(ctx context.Context, in *GetLatestBlockRequest, opts ...grpc.CallOption) (*GetLatestBlockResponse, error) { out := new(GetLatestBlockResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.ostracon.v1beta1.Service/GetLatestBlock", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.ostracon.v1beta1.Service/GetLatestBlock", in, out, opts...) if err != nil { return nil, err } @@ -999,7 +999,7 @@ func (c *serviceClient) GetLatestBlock(ctx context.Context, in *GetLatestBlockRe func (c *serviceClient) GetBlockByHeight(ctx context.Context, in *GetBlockByHeightRequest, opts ...grpc.CallOption) (*GetBlockByHeightResponse, error) { out := new(GetBlockByHeightResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.ostracon.v1beta1.Service/GetBlockByHeight", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.ostracon.v1beta1.Service/GetBlockByHeight", in, out, opts...) if err != nil { return nil, err } @@ -1008,7 +1008,7 @@ func (c *serviceClient) GetBlockByHeight(ctx context.Context, in *GetBlockByHeig func (c *serviceClient) GetLatestValidatorSet(ctx context.Context, in *GetLatestValidatorSetRequest, opts ...grpc.CallOption) (*GetLatestValidatorSetResponse, error) { out := new(GetLatestValidatorSetResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.ostracon.v1beta1.Service/GetLatestValidatorSet", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.ostracon.v1beta1.Service/GetLatestValidatorSet", in, out, opts...) if err != nil { return nil, err } @@ -1017,7 +1017,7 @@ func (c *serviceClient) GetLatestValidatorSet(ctx context.Context, in *GetLatest func (c *serviceClient) GetValidatorSetByHeight(ctx context.Context, in *GetValidatorSetByHeightRequest, opts ...grpc.CallOption) (*GetValidatorSetByHeightResponse, error) { out := new(GetValidatorSetByHeightResponse) - err := c.cc.Invoke(ctx, "/cosmos.base.ostracon.v1beta1.Service/GetValidatorSetByHeight", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.base.ostracon.v1beta1.Service/GetValidatorSetByHeight", in, out, opts...) if err != nil { return nil, err } @@ -1077,7 +1077,7 @@ func _Service_GetNodeInfo_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.ostracon.v1beta1.Service/GetNodeInfo", + FullMethod: "/lbm.base.ostracon.v1beta1.Service/GetNodeInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetNodeInfo(ctx, req.(*GetNodeInfoRequest)) @@ -1095,7 +1095,7 @@ func _Service_GetSyncing_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.ostracon.v1beta1.Service/GetSyncing", + FullMethod: "/lbm.base.ostracon.v1beta1.Service/GetSyncing", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetSyncing(ctx, req.(*GetSyncingRequest)) @@ -1113,7 +1113,7 @@ func _Service_GetLatestBlock_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.ostracon.v1beta1.Service/GetLatestBlock", + FullMethod: "/lbm.base.ostracon.v1beta1.Service/GetLatestBlock", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetLatestBlock(ctx, req.(*GetLatestBlockRequest)) @@ -1131,7 +1131,7 @@ func _Service_GetBlockByHeight_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.ostracon.v1beta1.Service/GetBlockByHeight", + FullMethod: "/lbm.base.ostracon.v1beta1.Service/GetBlockByHeight", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetBlockByHeight(ctx, req.(*GetBlockByHeightRequest)) @@ -1149,7 +1149,7 @@ func _Service_GetLatestValidatorSet_Handler(srv interface{}, ctx context.Context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.ostracon.v1beta1.Service/GetLatestValidatorSet", + FullMethod: "/lbm.base.ostracon.v1beta1.Service/GetLatestValidatorSet", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetLatestValidatorSet(ctx, req.(*GetLatestValidatorSetRequest)) @@ -1167,7 +1167,7 @@ func _Service_GetValidatorSetByHeight_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.base.ostracon.v1beta1.Service/GetValidatorSetByHeight", + FullMethod: "/lbm.base.ostracon.v1beta1.Service/GetValidatorSetByHeight", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetValidatorSetByHeight(ctx, req.(*GetValidatorSetByHeightRequest)) @@ -1176,7 +1176,7 @@ func _Service_GetValidatorSetByHeight_Handler(srv interface{}, ctx context.Conte } var _Service_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.base.ostracon.v1beta1.Service", + ServiceName: "lbm.base.ostracon.v1beta1.Service", HandlerType: (*ServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1205,7 +1205,7 @@ var _Service_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/base/ostracon/v1beta1/query.proto", + Metadata: "lbm/base/ostracon/v1beta1/query.proto", } func (m *GetValidatorSetByHeightRequest) Marshal() (dAtA []byte, err error) { diff --git a/client/grpc/tmservice/query.pb.gw.go b/client/grpc/tmservice/query.pb.gw.go index 6977242ee0..a79499e30a 100644 --- a/client/grpc/tmservice/query.pb.gw.go +++ b/client/grpc/tmservice/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/base/ostracon/v1beta1/query.proto +// source: lbm/base/ostracon/v1beta1/query.proto /* Package tmservice is a reverse proxy. diff --git a/client/tx/tx.go b/client/tx/tx.go index ded74fb15f..6df5c45c8d 100644 --- a/client/tx/tx.go +++ b/client/tx/tx.go @@ -288,7 +288,7 @@ func CalculateGas( // TODO This should use the generated tx service Client. // https://github.com/line/lbm-sdk/v2/issues/7726 - bz, _, err := queryFunc("/cosmos.tx.v1beta1.Service/Simulate", txBytes) + bz, _, err := queryFunc("/lbm.tx.v1beta1.Service/Simulate", txBytes) if err != nil { return tx.SimulateResponse{}, 0, err } diff --git a/codec/amino_codec_test.go b/codec/amino_codec_test.go index fec4597dfe..55cde456ac 100644 --- a/codec/amino_codec_test.go +++ b/codec/amino_codec_test.go @@ -120,7 +120,7 @@ func TestAminoCodecUnpackAnyFails(t *testing.T) { func TestAminoCodecFullDecodeAndEncode(t *testing.T) { // This tx comes from https://github.com/cosmos/cosmos-sdk/issues/8117. - txSigned := `{"type":"cosmos-sdk/StdTx","value":{"msg":[{"type":"cosmos-sdk/MsgCreateValidator","value":{"description":{"moniker":"fulltest","identity":"satoshi","website":"example.com","details":"example inc"},"commission":{"rate":"0.500000000000000000","max_rate":"1.000000000000000000","max_change_rate":"0.200000000000000000"},"min_self_delegation":"1000000","delegator_address":"cosmos14pt0q5cwf38zt08uu0n6yrstf3rndzr5057jys","validator_address":"cosmosvaloper14pt0q5cwf38zt08uu0n6yrstf3rndzr52q28gr","pubkey":{"type":"tendermint/PubKeyEd25519","value":"CYrOiM3HtS7uv1B1OAkknZnFYSRpQYSYII8AtMMtev0="},"value":{"denom":"umuon","amount":"700000000"}}}],"fee":{"amount":[{"denom":"umuon","amount":"6000"}],"gas":"160000"},"signatures":[{"pub_key":{"type":"tendermint/PubKeySecp256k1","value":"AwAOXeWgNf1FjMaayrSnrOOKz+Fivr6DiI/i0x0sZCHw"},"signature":"RcnfS/u2yl7uIShTrSUlDWvsXo2p2dYu6WJC8VDVHMBLEQZWc8bsINSCjOnlsIVkUNNe1q/WCA9n3Gy1+0zhYA=="}],"memo":"","timeout_height":"0"}}` + txSigned := `{"type":"lbm-sdk/StdTx","value":{"msg":[{"type":"lbm-sdk/MsgCreateValidator","value":{"description":{"moniker":"fulltest","identity":"satoshi","website":"example.com","details":"example inc"},"commission":{"rate":"0.500000000000000000","max_rate":"1.000000000000000000","max_change_rate":"0.200000000000000000"},"min_self_delegation":"1000000","delegator_address":"cosmos14pt0q5cwf38zt08uu0n6yrstf3rndzr5057jys","validator_address":"cosmosvaloper14pt0q5cwf38zt08uu0n6yrstf3rndzr52q28gr","pubkey":{"type":"tendermint/PubKeyEd25519","value":"CYrOiM3HtS7uv1B1OAkknZnFYSRpQYSYII8AtMMtev0="},"value":{"denom":"umuon","amount":"700000000"}}}],"fee":{"amount":[{"denom":"umuon","amount":"6000"}],"gas":"160000"},"signatures":[{"pub_key":{"type":"tendermint/PubKeySecp256k1","value":"AwAOXeWgNf1FjMaayrSnrOOKz+Fivr6DiI/i0x0sZCHw"},"signature":"RcnfS/u2yl7uIShTrSUlDWvsXo2p2dYu6WJC8VDVHMBLEQZWc8bsINSCjOnlsIVkUNNe1q/WCA9n3Gy1+0zhYA=="}],"memo":"","timeout_height":"0"}}` _, legacyCdc := simapp.MakeCodecs() var tx legacytx.StdTx diff --git a/codec/types/interface_registry.go b/codec/types/interface_registry.go index 0f9eb760be..a4bbd5b555 100644 --- a/codec/types/interface_registry.go +++ b/codec/types/interface_registry.go @@ -36,7 +36,7 @@ type InterfaceRegistry interface { // as implementations of iface. // // Ex: - // registry.RegisterInterface("cosmos.base.v1beta1.Msg", (*sdk.Msg)(nil)) + // registry.RegisterInterface("lbm.base.v1beta1.Msg", (*sdk.Msg)(nil)) RegisterInterface(protoName string, iface interface{}, impls ...proto.Message) // RegisterImplementations registers impls as concrete implementations of diff --git a/crypto/codec/proto.go b/crypto/codec/proto.go index 20193f633d..3d93a16ab7 100644 --- a/crypto/codec/proto.go +++ b/crypto/codec/proto.go @@ -10,7 +10,7 @@ import ( // RegisterInterfaces registers the sdk.Tx interface. func RegisterInterfaces(registry codectypes.InterfaceRegistry) { - registry.RegisterInterface("cosmos.crypto.PubKey", (*cryptotypes.PubKey)(nil)) + registry.RegisterInterface("lbm.crypto.PubKey", (*cryptotypes.PubKey)(nil)) registry.RegisterImplementations((*cryptotypes.PubKey)(nil), &ed25519.PubKey{}) registry.RegisterImplementations((*cryptotypes.PubKey)(nil), &secp256k1.PubKey{}) registry.RegisterImplementations((*cryptotypes.PubKey)(nil), &multisig.LegacyAminoPubKey{}) diff --git a/crypto/keys/ed25519/keys.pb.go b/crypto/keys/ed25519/keys.pb.go index 85aa8e1d37..ce3d12a422 100644 --- a/crypto/keys/ed25519/keys.pb.go +++ b/crypto/keys/ed25519/keys.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crypto/ed25519/keys.proto +// source: lbm/crypto/ed25519/keys.proto package ed25519 @@ -36,7 +36,7 @@ type PubKey struct { func (m *PubKey) Reset() { *m = PubKey{} } func (*PubKey) ProtoMessage() {} func (*PubKey) Descriptor() ([]byte, []int) { - return fileDescriptor_48fe3336771e732d, []int{0} + return fileDescriptor_77f16f108d950617, []int{0} } func (m *PubKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -81,7 +81,7 @@ func (m *PrivKey) Reset() { *m = PrivKey{} } func (m *PrivKey) String() string { return proto.CompactTextString(m) } func (*PrivKey) ProtoMessage() {} func (*PrivKey) Descriptor() ([]byte, []int) { - return fileDescriptor_48fe3336771e732d, []int{1} + return fileDescriptor_77f16f108d950617, []int{1} } func (m *PrivKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,29 +118,29 @@ func (m *PrivKey) GetKey() crypto_ed25519.PrivateKey { } func init() { - proto.RegisterType((*PubKey)(nil), "cosmos.crypto.ed25519.PubKey") - proto.RegisterType((*PrivKey)(nil), "cosmos.crypto.ed25519.PrivKey") + proto.RegisterType((*PubKey)(nil), "lbm.crypto.ed25519.PubKey") + proto.RegisterType((*PrivKey)(nil), "lbm.crypto.ed25519.PrivKey") } -func init() { proto.RegisterFile("cosmos/crypto/ed25519/keys.proto", fileDescriptor_48fe3336771e732d) } +func init() { proto.RegisterFile("lbm/crypto/ed25519/keys.proto", fileDescriptor_77f16f108d950617) } -var fileDescriptor_48fe3336771e732d = []byte{ - // 228 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0x4f, 0x4d, 0x31, 0x32, 0x35, 0x35, - 0xb4, 0xd4, 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xa8, - 0xd0, 0x83, 0xa8, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd0, 0x07, - 0xb1, 0x20, 0x8a, 0x95, 0xec, 0xb8, 0xd8, 0x02, 0x4a, 0x93, 0xbc, 0x53, 0x2b, 0x85, 0xf4, 0xb8, - 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x78, 0x9c, 0x64, 0x7e, 0xdd, 0x93, 0x97, - 0x40, 0xb5, 0x42, 0x2f, 0xa0, 0x34, 0x29, 0x27, 0x33, 0xd9, 0x3b, 0xb5, 0x32, 0x08, 0xa4, 0xd0, - 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, 0x25, 0x2b, 0x2e, 0xf6, 0x80, 0xa2, 0xcc, 0x32, 0x90, 0x01, - 0xfa, 0xc8, 0x06, 0xc8, 0xfe, 0xba, 0x27, 0x2f, 0x89, 0x6e, 0x40, 0x51, 0x66, 0x59, 0x62, 0x49, - 0x2a, 0xcc, 0x04, 0x27, 0x8f, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, - 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, - 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xcf, 0xc9, 0xcc, 0x4b, 0xd5, - 0xcf, 0x49, 0xca, 0xd5, 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, 0x33, 0x82, 0x79, 0x1c, 0xe4, 0x61, 0x98, - 0xc9, 0x49, 0x6c, 0x60, 0xcf, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x31, 0x27, 0xf2, - 0x1d, 0x01, 0x00, 0x00, +var fileDescriptor_77f16f108d950617 = []byte{ + // 226 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0x49, 0xca, 0xd5, + 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0x4f, 0x4d, 0x31, 0x32, 0x35, 0x35, 0xb4, 0xd4, 0xcf, + 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0x49, 0xca, 0xd5, 0x83, + 0x48, 0xeb, 0x41, 0xa5, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xd2, 0xfa, 0x20, 0x16, 0x44, + 0xa5, 0x92, 0x1d, 0x17, 0x5b, 0x40, 0x69, 0x92, 0x77, 0x6a, 0xa5, 0x90, 0x1e, 0x17, 0x73, 0x76, + 0x6a, 0xa5, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x8f, 0x93, 0xcc, 0xaf, 0x7b, 0xf2, 0x12, 0xa8, 0xe6, + 0xeb, 0x05, 0x94, 0x26, 0xe5, 0x64, 0x26, 0x7b, 0xa7, 0x56, 0x06, 0x81, 0x14, 0x5a, 0xb1, 0xcc, + 0x58, 0x20, 0xcf, 0xa0, 0x64, 0xc5, 0xc5, 0x1e, 0x50, 0x94, 0x59, 0x06, 0x32, 0x40, 0x1f, 0xd9, + 0x00, 0xd9, 0x5f, 0xf7, 0xe4, 0x25, 0xd1, 0x0d, 0x28, 0xca, 0x2c, 0x4b, 0x2c, 0x49, 0x85, 0x99, + 0xe0, 0xe4, 0x71, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, + 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x7a, 0xe9, 0x99, + 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x39, 0x99, 0x79, 0xa9, 0xfa, 0x39, 0x49, + 0xb9, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x65, 0x46, 0x30, 0x5f, 0x83, 0x7c, 0x0b, 0x33, 0x39, 0x89, + 0x0d, 0xec, 0x19, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x1e, 0x6c, 0xca, 0x17, 0x01, + 0x00, 0x00, } func (m *PubKey) Marshal() (dAtA []byte, err error) { diff --git a/crypto/keys/multisig/keys.pb.go b/crypto/keys/multisig/keys.pb.go index 60985794d6..39dc376af7 100644 --- a/crypto/keys/multisig/keys.pb.go +++ b/crypto/keys/multisig/keys.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crypto/multisig/keys.proto +// source: lbm/crypto/multisig/keys.proto package multisig @@ -36,7 +36,7 @@ func (m *LegacyAminoPubKey) Reset() { *m = LegacyAminoPubKey{} } func (m *LegacyAminoPubKey) String() string { return proto.CompactTextString(m) } func (*LegacyAminoPubKey) ProtoMessage() {} func (*LegacyAminoPubKey) Descriptor() ([]byte, []int) { - return fileDescriptor_46b57537e097d47d, []int{0} + return fileDescriptor_40d178eb613bc4d8, []int{0} } func (m *LegacyAminoPubKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -66,32 +66,32 @@ func (m *LegacyAminoPubKey) XXX_DiscardUnknown() { var xxx_messageInfo_LegacyAminoPubKey proto.InternalMessageInfo func init() { - proto.RegisterType((*LegacyAminoPubKey)(nil), "cosmos.crypto.multisig.LegacyAminoPubKey") + proto.RegisterType((*LegacyAminoPubKey)(nil), "lbm.crypto.multisig.LegacyAminoPubKey") } -func init() { proto.RegisterFile("cosmos/crypto/multisig/keys.proto", fileDescriptor_46b57537e097d47d) } +func init() { proto.RegisterFile("lbm/crypto/multisig/keys.proto", fileDescriptor_40d178eb613bc4d8) } -var fileDescriptor_46b57537e097d47d = []byte{ - // 294 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0xcf, 0x2d, 0xcd, 0x29, 0xc9, 0x2c, - 0xce, 0x4c, 0xd7, 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x83, - 0x28, 0xd1, 0x83, 0x28, 0xd1, 0x83, 0x29, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd1, - 0x07, 0xb1, 0x20, 0xaa, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xbc, 0xa4, - 0xd2, 0x34, 0xfd, 0xc4, 0xbc, 0x4a, 0x88, 0x94, 0xd2, 0x62, 0x46, 0x2e, 0x41, 0x9f, 0xd4, 0xf4, - 0xc4, 0xe4, 0x4a, 0xc7, 0xdc, 0xcc, 0xbc, 0xfc, 0x80, 0xd2, 0x24, 0xef, 0xd4, 0x4a, 0x21, 0x23, - 0x2e, 0xce, 0x92, 0x8c, 0xa2, 0xd4, 0xe2, 0x8c, 0xfc, 0x9c, 0x14, 0x09, 0x46, 0x05, 0x46, 0x0d, - 0x5e, 0x27, 0x91, 0x4f, 0xf7, 0xe4, 0x05, 0x2a, 0x13, 0x73, 0x73, 0xac, 0x94, 0xe0, 0x52, 0x4a, - 0x41, 0x08, 0x65, 0x42, 0x21, 0x5c, 0xdc, 0x05, 0xa5, 0x49, 0x39, 0x99, 0xc9, 0xf1, 0x20, 0x77, - 0x4a, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x1b, 0x89, 0xe8, 0x41, 0xac, 0xd6, 0x83, 0x59, 0xad, 0xe7, - 0x98, 0x57, 0xe9, 0x24, 0xfb, 0xe8, 0x9e, 0x3c, 0x3b, 0xc4, 0xaa, 0xe2, 0x4f, 0xf7, 0xe4, 0xf9, - 0x20, 0xc6, 0x16, 0x94, 0x26, 0x81, 0x74, 0x2a, 0x05, 0x71, 0x41, 0xcc, 0x01, 0xc9, 0x5a, 0xb1, - 0x74, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x3c, 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, 0xfd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xcc, 0xbc, - 0x54, 0xfd, 0x9c, 0xa4, 0x5c, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x32, 0x23, 0x58, 0xf8, 0x81, 0x0c, - 0x85, 0x07, 0x62, 0x12, 0x1b, 0xd8, 0x25, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0xb2, - 0x0e, 0xe9, 0x65, 0x01, 0x00, 0x00, +var fileDescriptor_40d178eb613bc4d8 = []byte{ + // 291 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0x49, 0xca, 0xd5, + 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0xcf, 0x2d, 0xcd, 0x29, 0xc9, 0x2c, 0xce, 0x4c, 0xd7, + 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xce, 0x49, 0xca, 0xd5, + 0x83, 0xc8, 0xeb, 0xc1, 0xe4, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xf2, 0xfa, 0x20, 0x16, + 0x44, 0xa9, 0x94, 0x64, 0x7a, 0x7e, 0x7e, 0x7a, 0x4e, 0xaa, 0x3e, 0x98, 0x97, 0x54, 0x9a, 0xa6, + 0x9f, 0x98, 0x57, 0x09, 0x91, 0x52, 0x5a, 0xcc, 0xc8, 0x25, 0xe8, 0x93, 0x9a, 0x9e, 0x98, 0x5c, + 0xe9, 0x98, 0x9b, 0x99, 0x97, 0x1f, 0x50, 0x9a, 0xe4, 0x9d, 0x5a, 0x29, 0x64, 0xc4, 0xc5, 0x59, + 0x92, 0x51, 0x94, 0x5a, 0x9c, 0x91, 0x9f, 0x93, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0xeb, 0x24, + 0xf2, 0xe9, 0x9e, 0xbc, 0x40, 0x65, 0x62, 0x6e, 0x8e, 0x95, 0x12, 0x5c, 0x4a, 0x29, 0x08, 0xa1, + 0x4c, 0x28, 0x84, 0x8b, 0xbb, 0xa0, 0x34, 0x29, 0x27, 0x33, 0x39, 0x1e, 0xe4, 0x48, 0x09, 0x26, + 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x11, 0x3d, 0x88, 0xd5, 0x7a, 0x30, 0xab, 0xf5, 0x1c, 0xf3, 0x2a, + 0x9d, 0x64, 0x1f, 0xdd, 0x93, 0x67, 0x87, 0x58, 0x55, 0xfc, 0xe9, 0x9e, 0x3c, 0x1f, 0xc4, 0xd8, + 0x82, 0xd2, 0x24, 0x90, 0x4e, 0xa5, 0x20, 0x2e, 0x88, 0x39, 0x20, 0x59, 0x2b, 0x96, 0x8e, 0x05, + 0xf2, 0x0c, 0x4e, 0x9e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, + 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9f, + 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x93, 0x99, 0x97, 0xaa, 0x9f, + 0x93, 0x94, 0xab, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x66, 0x04, 0x0b, 0x3c, 0x90, 0xa1, 0xf0, 0x10, + 0x4c, 0x62, 0x03, 0xbb, 0xc4, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xca, 0xb3, 0x1e, 0xfa, 0x5f, + 0x01, 0x00, 0x00, } func (m *LegacyAminoPubKey) Marshal() (dAtA []byte, err error) { diff --git a/crypto/keys/secp256k1/keys.pb.go b/crypto/keys/secp256k1/keys.pb.go index 59c2307c5d..55c4ab6ae8 100644 --- a/crypto/keys/secp256k1/keys.pb.go +++ b/crypto/keys/secp256k1/keys.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crypto/secp256k1/keys.proto +// source: lbm/crypto/secp256k1/keys.proto package secp256k1 @@ -35,7 +35,7 @@ type PubKey struct { func (m *PubKey) Reset() { *m = PubKey{} } func (*PubKey) ProtoMessage() {} func (*PubKey) Descriptor() ([]byte, []int) { - return fileDescriptor_e0835e68ebdcb224, []int{0} + return fileDescriptor_b396d6817d4ff685, []int{0} } func (m *PubKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *PrivKey) Reset() { *m = PrivKey{} } func (m *PrivKey) String() string { return proto.CompactTextString(m) } func (*PrivKey) ProtoMessage() {} func (*PrivKey) Descriptor() ([]byte, []int) { - return fileDescriptor_e0835e68ebdcb224, []int{1} + return fileDescriptor_b396d6817d4ff685, []int{1} } func (m *PrivKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,29 +117,26 @@ func (m *PrivKey) GetKey() []byte { } func init() { - proto.RegisterType((*PubKey)(nil), "cosmos.crypto.secp256k1.PubKey") - proto.RegisterType((*PrivKey)(nil), "cosmos.crypto.secp256k1.PrivKey") + proto.RegisterType((*PubKey)(nil), "lbm.crypto.secp256k1.PubKey") + proto.RegisterType((*PrivKey)(nil), "lbm.crypto.secp256k1.PrivKey") } -func init() { - proto.RegisterFile("cosmos/crypto/secp256k1/keys.proto", fileDescriptor_e0835e68ebdcb224) -} +func init() { proto.RegisterFile("lbm/crypto/secp256k1/keys.proto", fileDescriptor_b396d6817d4ff685) } -var fileDescriptor_e0835e68ebdcb224 = []byte{ - // 193 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0x2f, 0x4e, 0x4d, 0x2e, 0x30, 0x32, - 0x35, 0xcb, 0x36, 0xd4, 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, - 0x87, 0xa8, 0xd1, 0x83, 0xa8, 0xd1, 0x83, 0xab, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, - 0xd1, 0x07, 0xb1, 0x20, 0xca, 0x95, 0x14, 0xb8, 0xd8, 0x02, 0x4a, 0x93, 0xbc, 0x53, 0x2b, 0x85, - 0x04, 0xb8, 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x78, 0x82, 0x40, 0x4c, 0x2b, - 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x94, 0xa4, 0xb9, 0xd8, 0x03, 0x8a, 0x32, 0xcb, 0xb0, 0x2a, 0x71, - 0xf2, 0x3a, 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, 0x83, 0xf4, 0xcc, 0x92, - 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xcc, 0xbc, 0x54, 0xfd, 0x9c, 0xa4, 0x5c, - 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x32, 0x23, 0x98, 0xfb, 0x41, 0xae, 0x46, 0x78, 0x22, 0x89, 0x0d, - 0xec, 0x22, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x97, 0x78, 0x4b, 0xe3, 0xe6, 0x00, 0x00, - 0x00, +var fileDescriptor_b396d6817d4ff685 = []byte{ + // 191 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0x49, 0xca, 0xd5, + 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0x2f, 0x4e, 0x4d, 0x2e, 0x30, 0x32, 0x35, 0xcb, 0x36, + 0xd4, 0xcf, 0x4e, 0xad, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc9, 0x49, 0xca, + 0xd5, 0x83, 0x28, 0xd0, 0x83, 0x2b, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd0, 0x07, + 0xb1, 0x20, 0x6a, 0x95, 0x14, 0xb8, 0xd8, 0x02, 0x4a, 0x93, 0xbc, 0x53, 0x2b, 0x85, 0x04, 0xb8, + 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x78, 0x82, 0x40, 0x4c, 0x2b, 0x96, 0x19, + 0x0b, 0xe4, 0x19, 0x94, 0xa4, 0xb9, 0xd8, 0x03, 0x8a, 0x32, 0xcb, 0xb0, 0x2a, 0x71, 0xf2, 0x3a, + 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, 0x83, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xcc, 0xbc, 0x54, 0xfd, 0x9c, 0xa4, 0x5c, 0xdd, 0xe2, + 0x94, 0x6c, 0xfd, 0x32, 0x23, 0x98, 0xe3, 0x41, 0x4e, 0x46, 0xf8, 0x20, 0x89, 0x0d, 0xec, 0x22, + 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x23, 0xf5, 0x50, 0x3f, 0xe0, 0x00, 0x00, 0x00, } func (m *PubKey) Marshal() (dAtA []byte, err error) { diff --git a/crypto/types/multisig.pb.go b/crypto/types/multisig.pb.go index 5cafd344d6..0b7ee98789 100644 --- a/crypto/types/multisig.pb.go +++ b/crypto/types/multisig.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crypto/multisig/v1beta1/multisig.proto +// source: lbm/crypto/multisig/v1beta1/multisig.proto package types @@ -24,7 +24,7 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey. -// See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers +// See lbm.tx.v1betata1.ModeInfo.Multi for how to specify which signers // signed and with which modes. type MultiSignature struct { Signatures [][]byte `protobuf:"bytes,1,rep,name=signatures,proto3" json:"signatures,omitempty"` @@ -35,7 +35,7 @@ func (m *MultiSignature) Reset() { *m = MultiSignature{} } func (m *MultiSignature) String() string { return proto.CompactTextString(m) } func (*MultiSignature) ProtoMessage() {} func (*MultiSignature) Descriptor() ([]byte, []int) { - return fileDescriptor_1177bdf7025769be, []int{0} + return fileDescriptor_60ff315845162b81, []int{0} } func (m *MultiSignature) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ type CompactBitArray struct { func (m *CompactBitArray) Reset() { *m = CompactBitArray{} } func (*CompactBitArray) ProtoMessage() {} func (*CompactBitArray) Descriptor() ([]byte, []int) { - return fileDescriptor_1177bdf7025769be, []int{1} + return fileDescriptor_60ff315845162b81, []int{1} } func (m *CompactBitArray) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,34 +127,34 @@ func (m *CompactBitArray) GetElems() []byte { } func init() { - proto.RegisterType((*MultiSignature)(nil), "cosmos.crypto.multisig.v1beta1.MultiSignature") - proto.RegisterType((*CompactBitArray)(nil), "cosmos.crypto.multisig.v1beta1.CompactBitArray") + proto.RegisterType((*MultiSignature)(nil), "lbm.crypto.multisig.v1beta1.MultiSignature") + proto.RegisterType((*CompactBitArray)(nil), "lbm.crypto.multisig.v1beta1.CompactBitArray") } func init() { - proto.RegisterFile("cosmos/crypto/multisig/v1beta1/multisig.proto", fileDescriptor_1177bdf7025769be) + proto.RegisterFile("lbm/crypto/multisig/v1beta1/multisig.proto", fileDescriptor_60ff315845162b81) } -var fileDescriptor_1177bdf7025769be = []byte{ - // 274 bytes of a gzipped FileDescriptorProto +var fileDescriptor_60ff315845162b81 = []byte{ + // 273 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xb1, 0x4e, 0xc3, 0x30, - 0x10, 0x86, 0x63, 0x28, 0x0c, 0x56, 0xa1, 0x22, 0xea, 0x50, 0x31, 0xb8, 0x51, 0x17, 0x22, 0xa4, - 0xc6, 0x2a, 0x48, 0x0c, 0xdd, 0x1a, 0x66, 0x96, 0x74, 0x82, 0xa5, 0x4a, 0x52, 0xcb, 0x58, 0xc4, - 0x75, 0xe4, 0xbb, 0x54, 0xe4, 0x2d, 0x18, 0x19, 0xe1, 0x6d, 0x18, 0x33, 0x32, 0xa2, 0xe4, 0x45, - 0x50, 0x13, 0x5a, 0xb1, 0xdd, 0xff, 0xfd, 0xdf, 0x0d, 0x77, 0x74, 0x9a, 0x1a, 0xd0, 0x06, 0x78, - 0x6a, 0xcb, 0x1c, 0x0d, 0xd7, 0x45, 0x86, 0x0a, 0x94, 0xe4, 0xdb, 0x59, 0x22, 0x30, 0x9e, 0x1d, - 0x40, 0x90, 0x5b, 0x83, 0xc6, 0x65, 0x9d, 0x1e, 0x74, 0x7a, 0x70, 0x68, 0xff, 0xf4, 0xcb, 0xa1, - 0x34, 0xd2, 0xb4, 0x2a, 0xdf, 0x4d, 0xdd, 0xd6, 0xe4, 0x8e, 0x9e, 0x3f, 0xec, 0xcc, 0xa5, 0x92, - 0x9b, 0x18, 0x0b, 0x2b, 0x5c, 0x46, 0x29, 0xec, 0x03, 0x8c, 0x88, 0x77, 0xec, 0xf7, 0xa3, 0x7f, - 0x64, 0xde, 0xab, 0x3e, 0xc7, 0x64, 0xf2, 0x48, 0x07, 0xf7, 0x46, 0xe7, 0x71, 0x8a, 0xa1, 0xc2, - 0x85, 0xb5, 0x71, 0xe9, 0x5e, 0xd3, 0x0b, 0xf1, 0x8a, 0x36, 0x5e, 0x25, 0x0a, 0x61, 0x05, 0x68, - 0xac, 0x58, 0x8f, 0x88, 0x47, 0xfc, 0xb3, 0x68, 0xd0, 0x16, 0xa1, 0x42, 0x58, 0xb6, 0xd8, 0x1d, - 0xd2, 0x13, 0x91, 0x09, 0x0d, 0xa3, 0x23, 0x8f, 0xf8, 0xfd, 0xa8, 0x0b, 0xf3, 0xde, 0xfb, 0xc7, - 0xd8, 0x09, 0x17, 0x5f, 0x35, 0x23, 0x55, 0xcd, 0xc8, 0x4f, 0xcd, 0xc8, 0x5b, 0xc3, 0x9c, 0xaa, - 0x61, 0xce, 0x77, 0xc3, 0x9c, 0xa7, 0x2b, 0xa9, 0xf0, 0xb9, 0x48, 0x82, 0xd4, 0x68, 0x9e, 0xa9, - 0x8d, 0xe0, 0x59, 0xa2, 0xa7, 0xb0, 0x7e, 0xe1, 0xdb, 0x9b, 0xfd, 0x97, 0xb0, 0xcc, 0x05, 0x24, - 0xa7, 0xed, 0x71, 0xb7, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x42, 0xb7, 0xd7, 0x43, 0x01, - 0x00, 0x00, + 0x10, 0x86, 0x63, 0x28, 0x0c, 0x56, 0xa1, 0x22, 0xea, 0x10, 0x81, 0xe4, 0x46, 0x5d, 0x88, 0x2a, + 0x11, 0xab, 0x20, 0x31, 0x74, 0x6b, 0x98, 0x59, 0xd2, 0x09, 0x96, 0x2a, 0x4e, 0xad, 0x60, 0x61, + 0xd7, 0x91, 0x7d, 0xa9, 0xc8, 0x5b, 0x30, 0x32, 0xc2, 0xdb, 0x30, 0x66, 0x64, 0x44, 0xc9, 0x8b, + 0xa0, 0x26, 0xb4, 0xea, 0x76, 0xff, 0xf7, 0x7f, 0x37, 0xdc, 0xe1, 0x89, 0x64, 0x8a, 0xa6, 0xa6, + 0xcc, 0x41, 0x53, 0x55, 0x48, 0x10, 0x56, 0x64, 0x74, 0x33, 0x65, 0x1c, 0x92, 0xe9, 0x1e, 0x84, + 0xb9, 0xd1, 0xa0, 0xdd, 0x2b, 0xc9, 0x54, 0xd8, 0xb9, 0xe1, 0xbe, 0xfa, 0x77, 0x2f, 0x87, 0x99, + 0xce, 0x74, 0xeb, 0xd1, 0xed, 0xd4, 0xad, 0x8c, 0xef, 0xf1, 0xf9, 0xe3, 0xd6, 0x5c, 0x88, 0x6c, + 0x9d, 0x40, 0x61, 0xb8, 0x4b, 0x30, 0xb6, 0xbb, 0x60, 0x3d, 0xe4, 0x1f, 0x07, 0xfd, 0xf8, 0x80, + 0xcc, 0x7a, 0xd5, 0xd7, 0x08, 0x8d, 0x9f, 0xf0, 0xe0, 0x41, 0xab, 0x3c, 0x49, 0x21, 0x12, 0x30, + 0x37, 0x26, 0x29, 0xdd, 0x09, 0xbe, 0xe0, 0x6f, 0x60, 0x92, 0x25, 0x13, 0x60, 0x97, 0x16, 0xb4, + 0xe1, 0x2b, 0x0f, 0xf9, 0x28, 0x38, 0x8b, 0x07, 0x6d, 0x11, 0x09, 0xb0, 0x8b, 0x16, 0xbb, 0x43, + 0x7c, 0xc2, 0x25, 0x57, 0xd6, 0x3b, 0xf2, 0x51, 0xd0, 0x8f, 0xbb, 0x30, 0xeb, 0x7d, 0x7c, 0x8e, + 0x9c, 0x68, 0xfe, 0x5d, 0x13, 0x54, 0xd5, 0x04, 0xfd, 0xd6, 0x04, 0xbd, 0x37, 0xc4, 0xa9, 0x1a, + 0xe2, 0xfc, 0x34, 0xc4, 0x79, 0xbe, 0xce, 0x04, 0xbc, 0x14, 0x2c, 0x4c, 0xb5, 0xa2, 0x52, 0xac, + 0x39, 0x95, 0x4c, 0xdd, 0xd8, 0xd5, 0x2b, 0xdd, 0xdc, 0xee, 0x5e, 0x04, 0x65, 0xce, 0x2d, 0x3b, + 0x6d, 0x8f, 0xbb, 0xfb, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xca, 0xcb, 0x2f, 0x5c, 0x3d, 0x01, 0x00, + 0x00, } func (m *MultiSignature) Marshal() (dAtA []byte, err error) { diff --git a/docs/architecture/adr-011-generalize-genesis-accounts.md b/docs/architecture/adr-011-generalize-genesis-accounts.md index b03a0833c0..136480d92c 100644 --- a/docs/architecture/adr-011-generalize-genesis-accounts.md +++ b/docs/architecture/adr-011-generalize-genesis-accounts.md @@ -67,7 +67,7 @@ import authtypes "github.com/line/lbm-sdk/v2/x/auth/types" // Register the module account type with the auth module codec so it can decode module accounts stored in a genesis file func init() { - authtypes.RegisterAccountTypeCodec(ModuleAccount{}, "cosmos-sdk/ModuleAccount") + authtypes.RegisterAccountTypeCodec(ModuleAccount{}, "lbm-sdk/ModuleAccount") } type ModuleAccount struct { diff --git a/docs/architecture/adr-028-public-key-addresses.md b/docs/architecture/adr-028-public-key-addresses.md index 00c6dddc0b..d7b3c884a5 100644 --- a/docs/architecture/adr-028-public-key-addresses.md +++ b/docs/architecture/adr-028-public-key-addresses.md @@ -94,7 +94,7 @@ choice given that `0` is an invalid value for a string character and is commonly All public key types will have a unique protobuf message type such as: ```proto -package cosmos.crypto.sr25519; +package lbm.crypto.sr25519; message PubKey { bytes key = 1; @@ -119,7 +119,7 @@ address by sorting child public keys first. First we define a proto message for multisig public keys: ```proto -package cosmos.crypto.multisig; +package lbm.crypto.multisig; message PubKey { uint32 threshold = 1; diff --git a/docs/architecture/adr-029-fee-grant-module.md b/docs/architecture/adr-029-fee-grant-module.md index 8ef0f722fa..253a1dc038 100644 --- a/docs/architecture/adr-029-fee-grant-module.md +++ b/docs/architecture/adr-029-fee-grant-module.md @@ -126,10 +126,10 @@ message MsgGrantFeeAllowance { In order to use allowances in transactions, we add a new field `granter` to the transaction `Fee` type: ```proto -package cosmos.tx.v1beta1; +package lbm.tx.v1beta1; message Fee { - repeated cosmos.base.v1beta1.Coin amount = 1; + repeated lbm.base.v1beta1.Coin amount = 1; uint64 gas_limit = 2; string payer = 3; string granter = 4; diff --git a/docs/architecture/adr-031-msg-service.md b/docs/architecture/adr-031-msg-service.md index a36d86c431..be78405ed9 100644 --- a/docs/architecture/adr-031-msg-service.md +++ b/docs/architecture/adr-031-msg-service.md @@ -22,7 +22,7 @@ In early conversations [it was proposed](https://docs.google.com/document/d/1eEg that `Msg` return types be captured using a protobuf extension field, ex: ```protobuf -package cosmos.gov; +package lbm.gov; message MsgSubmitProposal option (cosmos_proto.msg_return) = “uint64”; @@ -57,7 +57,7 @@ Below we define how this will look for the `SubmitProposal` message from `x/gov` We start with a `Msg` `service` definition: ```proto -package cosmos.gov; +package lbm.gov; service Msg { rpc SubmitProposal(MsgSubmitProposal) returns (MsgSubmitProposalResponse); diff --git a/docs/architecture/adr-032-typed-events.md b/docs/architecture/adr-032-typed-events.md index 30d798c2a9..26ce1e8c73 100644 --- a/docs/architecture/adr-032-typed-events.md +++ b/docs/architecture/adr-032-typed-events.md @@ -119,7 +119,7 @@ For example, let's take `MsgSubmitProposal` of `gov` module and implement this e // proto/cosmos/gov/v1beta1/gov.proto // Add typed event definition -package cosmos.gov.v1beta1; +package lbm.gov.v1beta1; message EventSubmitProposal { string from_address = 1; diff --git a/docs/cn/clients/service-providers.md b/docs/cn/clients/service-providers.md index 7350b98d81..482f3d84cb 100644 --- a/docs/cn/clients/service-providers.md +++ b/docs/cn/clients/service-providers.md @@ -158,7 +158,7 @@ sequence numbers and it will mostly do the correct thing. ```json { - "type": "cosmos-sdk/StdTx", + "type": "lbm-sdk/StdTx", "value": { "msg": [...], "signatures": [ diff --git a/docs/core/proto-docs.md b/docs/core/proto-docs.md index 65a0fc2e40..61130d69b2 100644 --- a/docs/core/proto-docs.md +++ b/docs/core/proto-docs.md @@ -4,478 +4,6 @@ ## Table of Contents -- [cosmos/auth/v1beta1/auth.proto](#cosmos/auth/v1beta1/auth.proto) - - [BaseAccount](#cosmos.auth.v1beta1.BaseAccount) - - [ModuleAccount](#cosmos.auth.v1beta1.ModuleAccount) - - [Params](#cosmos.auth.v1beta1.Params) - -- [cosmos/auth/v1beta1/genesis.proto](#cosmos/auth/v1beta1/genesis.proto) - - [GenesisState](#cosmos.auth.v1beta1.GenesisState) - -- [cosmos/auth/v1beta1/query.proto](#cosmos/auth/v1beta1/query.proto) - - [QueryAccountRequest](#cosmos.auth.v1beta1.QueryAccountRequest) - - [QueryAccountResponse](#cosmos.auth.v1beta1.QueryAccountResponse) - - [QueryParamsRequest](#cosmos.auth.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.auth.v1beta1.QueryParamsResponse) - - - [Query](#cosmos.auth.v1beta1.Query) - -- [cosmos/base/v1beta1/coin.proto](#cosmos/base/v1beta1/coin.proto) - - [Coin](#cosmos.base.v1beta1.Coin) - - [DecCoin](#cosmos.base.v1beta1.DecCoin) - - [DecProto](#cosmos.base.v1beta1.DecProto) - - [IntProto](#cosmos.base.v1beta1.IntProto) - -- [cosmos/bank/v1beta1/bank.proto](#cosmos/bank/v1beta1/bank.proto) - - [DenomUnit](#cosmos.bank.v1beta1.DenomUnit) - - [Input](#cosmos.bank.v1beta1.Input) - - [Metadata](#cosmos.bank.v1beta1.Metadata) - - [Output](#cosmos.bank.v1beta1.Output) - - [Params](#cosmos.bank.v1beta1.Params) - - [SendEnabled](#cosmos.bank.v1beta1.SendEnabled) - - [Supply](#cosmos.bank.v1beta1.Supply) - -- [cosmos/bank/v1beta1/genesis.proto](#cosmos/bank/v1beta1/genesis.proto) - - [Balance](#cosmos.bank.v1beta1.Balance) - - [GenesisState](#cosmos.bank.v1beta1.GenesisState) - -- [cosmos/base/query/v1beta1/pagination.proto](#cosmos/base/query/v1beta1/pagination.proto) - - [PageRequest](#cosmos.base.query.v1beta1.PageRequest) - - [PageResponse](#cosmos.base.query.v1beta1.PageResponse) - -- [cosmos/bank/v1beta1/query.proto](#cosmos/bank/v1beta1/query.proto) - - [QueryAllBalancesRequest](#cosmos.bank.v1beta1.QueryAllBalancesRequest) - - [QueryAllBalancesResponse](#cosmos.bank.v1beta1.QueryAllBalancesResponse) - - [QueryBalanceRequest](#cosmos.bank.v1beta1.QueryBalanceRequest) - - [QueryBalanceResponse](#cosmos.bank.v1beta1.QueryBalanceResponse) - - [QueryDenomMetadataRequest](#cosmos.bank.v1beta1.QueryDenomMetadataRequest) - - [QueryDenomMetadataResponse](#cosmos.bank.v1beta1.QueryDenomMetadataResponse) - - [QueryDenomsMetadataRequest](#cosmos.bank.v1beta1.QueryDenomsMetadataRequest) - - [QueryDenomsMetadataResponse](#cosmos.bank.v1beta1.QueryDenomsMetadataResponse) - - [QueryParamsRequest](#cosmos.bank.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.bank.v1beta1.QueryParamsResponse) - - [QuerySupplyOfRequest](#cosmos.bank.v1beta1.QuerySupplyOfRequest) - - [QuerySupplyOfResponse](#cosmos.bank.v1beta1.QuerySupplyOfResponse) - - [QueryTotalSupplyRequest](#cosmos.bank.v1beta1.QueryTotalSupplyRequest) - - [QueryTotalSupplyResponse](#cosmos.bank.v1beta1.QueryTotalSupplyResponse) - - - [Query](#cosmos.bank.v1beta1.Query) - -- [cosmos/bank/v1beta1/tx.proto](#cosmos/bank/v1beta1/tx.proto) - - [MsgMultiSend](#cosmos.bank.v1beta1.MsgMultiSend) - - [MsgMultiSendResponse](#cosmos.bank.v1beta1.MsgMultiSendResponse) - - [MsgSend](#cosmos.bank.v1beta1.MsgSend) - - [MsgSendResponse](#cosmos.bank.v1beta1.MsgSendResponse) - - - [Msg](#cosmos.bank.v1beta1.Msg) - -- [cosmos/base/abci/v1beta1/abci.proto](#cosmos/base/abci/v1beta1/abci.proto) - - [ABCIMessageLog](#cosmos.base.abci.v1beta1.ABCIMessageLog) - - [Attribute](#cosmos.base.abci.v1beta1.Attribute) - - [GasInfo](#cosmos.base.abci.v1beta1.GasInfo) - - [MsgData](#cosmos.base.abci.v1beta1.MsgData) - - [Result](#cosmos.base.abci.v1beta1.Result) - - [SearchTxsResult](#cosmos.base.abci.v1beta1.SearchTxsResult) - - [SimulationResponse](#cosmos.base.abci.v1beta1.SimulationResponse) - - [StringEvent](#cosmos.base.abci.v1beta1.StringEvent) - - [TxMsgData](#cosmos.base.abci.v1beta1.TxMsgData) - - [TxResponse](#cosmos.base.abci.v1beta1.TxResponse) - -- [cosmos/base/kv/v1beta1/kv.proto](#cosmos/base/kv/v1beta1/kv.proto) - - [Pair](#cosmos.base.kv.v1beta1.Pair) - - [Pairs](#cosmos.base.kv.v1beta1.Pairs) - -- [cosmos/base/ostracon/v1beta1/query.proto](#cosmos/base/ostracon/v1beta1/query.proto) - - [GetBlockByHeightRequest](#cosmos.base.ostracon.v1beta1.GetBlockByHeightRequest) - - [GetBlockByHeightResponse](#cosmos.base.ostracon.v1beta1.GetBlockByHeightResponse) - - [GetLatestBlockRequest](#cosmos.base.ostracon.v1beta1.GetLatestBlockRequest) - - [GetLatestBlockResponse](#cosmos.base.ostracon.v1beta1.GetLatestBlockResponse) - - [GetLatestValidatorSetRequest](#cosmos.base.ostracon.v1beta1.GetLatestValidatorSetRequest) - - [GetLatestValidatorSetResponse](#cosmos.base.ostracon.v1beta1.GetLatestValidatorSetResponse) - - [GetNodeInfoRequest](#cosmos.base.ostracon.v1beta1.GetNodeInfoRequest) - - [GetNodeInfoResponse](#cosmos.base.ostracon.v1beta1.GetNodeInfoResponse) - - [GetSyncingRequest](#cosmos.base.ostracon.v1beta1.GetSyncingRequest) - - [GetSyncingResponse](#cosmos.base.ostracon.v1beta1.GetSyncingResponse) - - [GetValidatorSetByHeightRequest](#cosmos.base.ostracon.v1beta1.GetValidatorSetByHeightRequest) - - [GetValidatorSetByHeightResponse](#cosmos.base.ostracon.v1beta1.GetValidatorSetByHeightResponse) - - [Module](#cosmos.base.ostracon.v1beta1.Module) - - [Validator](#cosmos.base.ostracon.v1beta1.Validator) - - [VersionInfo](#cosmos.base.ostracon.v1beta1.VersionInfo) - - - [Service](#cosmos.base.ostracon.v1beta1.Service) - -- [cosmos/base/reflection/v1beta1/reflection.proto](#cosmos/base/reflection/v1beta1/reflection.proto) - - [ListAllInterfacesRequest](#cosmos.base.reflection.v1beta1.ListAllInterfacesRequest) - - [ListAllInterfacesResponse](#cosmos.base.reflection.v1beta1.ListAllInterfacesResponse) - - [ListImplementationsRequest](#cosmos.base.reflection.v1beta1.ListImplementationsRequest) - - [ListImplementationsResponse](#cosmos.base.reflection.v1beta1.ListImplementationsResponse) - - - [ReflectionService](#cosmos.base.reflection.v1beta1.ReflectionService) - -- [cosmos/base/snapshots/v1beta1/snapshot.proto](#cosmos/base/snapshots/v1beta1/snapshot.proto) - - [Metadata](#cosmos.base.snapshots.v1beta1.Metadata) - - [Snapshot](#cosmos.base.snapshots.v1beta1.Snapshot) - -- [cosmos/base/store/v1beta1/commit_info.proto](#cosmos/base/store/v1beta1/commit_info.proto) - - [CommitID](#cosmos.base.store.v1beta1.CommitID) - - [CommitInfo](#cosmos.base.store.v1beta1.CommitInfo) - - [StoreInfo](#cosmos.base.store.v1beta1.StoreInfo) - -- [cosmos/base/store/v1beta1/snapshot.proto](#cosmos/base/store/v1beta1/snapshot.proto) - - [SnapshotIAVLItem](#cosmos.base.store.v1beta1.SnapshotIAVLItem) - - [SnapshotItem](#cosmos.base.store.v1beta1.SnapshotItem) - - [SnapshotStoreItem](#cosmos.base.store.v1beta1.SnapshotStoreItem) - -- [cosmos/capability/v1beta1/capability.proto](#cosmos/capability/v1beta1/capability.proto) - - [Capability](#cosmos.capability.v1beta1.Capability) - - [CapabilityOwners](#cosmos.capability.v1beta1.CapabilityOwners) - - [Owner](#cosmos.capability.v1beta1.Owner) - -- [cosmos/capability/v1beta1/genesis.proto](#cosmos/capability/v1beta1/genesis.proto) - - [GenesisOwners](#cosmos.capability.v1beta1.GenesisOwners) - - [GenesisState](#cosmos.capability.v1beta1.GenesisState) - -- [cosmos/crisis/v1beta1/genesis.proto](#cosmos/crisis/v1beta1/genesis.proto) - - [GenesisState](#cosmos.crisis.v1beta1.GenesisState) - -- [cosmos/crisis/v1beta1/tx.proto](#cosmos/crisis/v1beta1/tx.proto) - - [MsgVerifyInvariant](#cosmos.crisis.v1beta1.MsgVerifyInvariant) - - [MsgVerifyInvariantResponse](#cosmos.crisis.v1beta1.MsgVerifyInvariantResponse) - - - [Msg](#cosmos.crisis.v1beta1.Msg) - -- [cosmos/crypto/ed25519/keys.proto](#cosmos/crypto/ed25519/keys.proto) - - [PrivKey](#cosmos.crypto.ed25519.PrivKey) - - [PubKey](#cosmos.crypto.ed25519.PubKey) - -- [cosmos/crypto/multisig/keys.proto](#cosmos/crypto/multisig/keys.proto) - - [LegacyAminoPubKey](#cosmos.crypto.multisig.LegacyAminoPubKey) - -- [cosmos/crypto/multisig/v1beta1/multisig.proto](#cosmos/crypto/multisig/v1beta1/multisig.proto) - - [CompactBitArray](#cosmos.crypto.multisig.v1beta1.CompactBitArray) - - [MultiSignature](#cosmos.crypto.multisig.v1beta1.MultiSignature) - -- [cosmos/crypto/secp256k1/keys.proto](#cosmos/crypto/secp256k1/keys.proto) - - [PrivKey](#cosmos.crypto.secp256k1.PrivKey) - - [PubKey](#cosmos.crypto.secp256k1.PubKey) - -- [cosmos/distribution/v1beta1/distribution.proto](#cosmos/distribution/v1beta1/distribution.proto) - - [CommunityPoolSpendProposal](#cosmos.distribution.v1beta1.CommunityPoolSpendProposal) - - [CommunityPoolSpendProposalWithDeposit](#cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit) - - [DelegationDelegatorReward](#cosmos.distribution.v1beta1.DelegationDelegatorReward) - - [DelegatorStartingInfo](#cosmos.distribution.v1beta1.DelegatorStartingInfo) - - [FeePool](#cosmos.distribution.v1beta1.FeePool) - - [Params](#cosmos.distribution.v1beta1.Params) - - [ValidatorAccumulatedCommission](#cosmos.distribution.v1beta1.ValidatorAccumulatedCommission) - - [ValidatorCurrentRewards](#cosmos.distribution.v1beta1.ValidatorCurrentRewards) - - [ValidatorHistoricalRewards](#cosmos.distribution.v1beta1.ValidatorHistoricalRewards) - - [ValidatorOutstandingRewards](#cosmos.distribution.v1beta1.ValidatorOutstandingRewards) - - [ValidatorSlashEvent](#cosmos.distribution.v1beta1.ValidatorSlashEvent) - - [ValidatorSlashEvents](#cosmos.distribution.v1beta1.ValidatorSlashEvents) - -- [cosmos/distribution/v1beta1/genesis.proto](#cosmos/distribution/v1beta1/genesis.proto) - - [DelegatorStartingInfoRecord](#cosmos.distribution.v1beta1.DelegatorStartingInfoRecord) - - [DelegatorWithdrawInfo](#cosmos.distribution.v1beta1.DelegatorWithdrawInfo) - - [GenesisState](#cosmos.distribution.v1beta1.GenesisState) - - [ValidatorAccumulatedCommissionRecord](#cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord) - - [ValidatorCurrentRewardsRecord](#cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord) - - [ValidatorHistoricalRewardsRecord](#cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord) - - [ValidatorOutstandingRewardsRecord](#cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord) - - [ValidatorSlashEventRecord](#cosmos.distribution.v1beta1.ValidatorSlashEventRecord) - -- [cosmos/distribution/v1beta1/query.proto](#cosmos/distribution/v1beta1/query.proto) - - [QueryCommunityPoolRequest](#cosmos.distribution.v1beta1.QueryCommunityPoolRequest) - - [QueryCommunityPoolResponse](#cosmos.distribution.v1beta1.QueryCommunityPoolResponse) - - [QueryDelegationRewardsRequest](#cosmos.distribution.v1beta1.QueryDelegationRewardsRequest) - - [QueryDelegationRewardsResponse](#cosmos.distribution.v1beta1.QueryDelegationRewardsResponse) - - [QueryDelegationTotalRewardsRequest](#cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest) - - [QueryDelegationTotalRewardsResponse](#cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse) - - [QueryDelegatorValidatorsRequest](#cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest) - - [QueryDelegatorValidatorsResponse](#cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse) - - [QueryDelegatorWithdrawAddressRequest](#cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest) - - [QueryDelegatorWithdrawAddressResponse](#cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse) - - [QueryParamsRequest](#cosmos.distribution.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.distribution.v1beta1.QueryParamsResponse) - - [QueryValidatorCommissionRequest](#cosmos.distribution.v1beta1.QueryValidatorCommissionRequest) - - [QueryValidatorCommissionResponse](#cosmos.distribution.v1beta1.QueryValidatorCommissionResponse) - - [QueryValidatorOutstandingRewardsRequest](#cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest) - - [QueryValidatorOutstandingRewardsResponse](#cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse) - - [QueryValidatorSlashesRequest](#cosmos.distribution.v1beta1.QueryValidatorSlashesRequest) - - [QueryValidatorSlashesResponse](#cosmos.distribution.v1beta1.QueryValidatorSlashesResponse) - - - [Query](#cosmos.distribution.v1beta1.Query) - -- [cosmos/distribution/v1beta1/tx.proto](#cosmos/distribution/v1beta1/tx.proto) - - [MsgFundCommunityPool](#cosmos.distribution.v1beta1.MsgFundCommunityPool) - - [MsgFundCommunityPoolResponse](#cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse) - - [MsgSetWithdrawAddress](#cosmos.distribution.v1beta1.MsgSetWithdrawAddress) - - [MsgSetWithdrawAddressResponse](#cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse) - - [MsgWithdrawDelegatorReward](#cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward) - - [MsgWithdrawDelegatorRewardResponse](#cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse) - - [MsgWithdrawValidatorCommission](#cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission) - - [MsgWithdrawValidatorCommissionResponse](#cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse) - - - [Msg](#cosmos.distribution.v1beta1.Msg) - -- [cosmos/evidence/v1beta1/evidence.proto](#cosmos/evidence/v1beta1/evidence.proto) - - [Equivocation](#cosmos.evidence.v1beta1.Equivocation) - -- [cosmos/evidence/v1beta1/genesis.proto](#cosmos/evidence/v1beta1/genesis.proto) - - [GenesisState](#cosmos.evidence.v1beta1.GenesisState) - -- [cosmos/evidence/v1beta1/query.proto](#cosmos/evidence/v1beta1/query.proto) - - [QueryAllEvidenceRequest](#cosmos.evidence.v1beta1.QueryAllEvidenceRequest) - - [QueryAllEvidenceResponse](#cosmos.evidence.v1beta1.QueryAllEvidenceResponse) - - [QueryEvidenceRequest](#cosmos.evidence.v1beta1.QueryEvidenceRequest) - - [QueryEvidenceResponse](#cosmos.evidence.v1beta1.QueryEvidenceResponse) - - - [Query](#cosmos.evidence.v1beta1.Query) - -- [cosmos/evidence/v1beta1/tx.proto](#cosmos/evidence/v1beta1/tx.proto) - - [MsgSubmitEvidence](#cosmos.evidence.v1beta1.MsgSubmitEvidence) - - [MsgSubmitEvidenceResponse](#cosmos.evidence.v1beta1.MsgSubmitEvidenceResponse) - - - [Msg](#cosmos.evidence.v1beta1.Msg) - -- [cosmos/genutil/v1beta1/genesis.proto](#cosmos/genutil/v1beta1/genesis.proto) - - [GenesisState](#cosmos.genutil.v1beta1.GenesisState) - -- [cosmos/gov/v1beta1/gov.proto](#cosmos/gov/v1beta1/gov.proto) - - [Deposit](#cosmos.gov.v1beta1.Deposit) - - [DepositParams](#cosmos.gov.v1beta1.DepositParams) - - [Proposal](#cosmos.gov.v1beta1.Proposal) - - [TallyParams](#cosmos.gov.v1beta1.TallyParams) - - [TallyResult](#cosmos.gov.v1beta1.TallyResult) - - [TextProposal](#cosmos.gov.v1beta1.TextProposal) - - [Vote](#cosmos.gov.v1beta1.Vote) - - [VotingParams](#cosmos.gov.v1beta1.VotingParams) - - - [ProposalStatus](#cosmos.gov.v1beta1.ProposalStatus) - - [VoteOption](#cosmos.gov.v1beta1.VoteOption) - -- [cosmos/gov/v1beta1/genesis.proto](#cosmos/gov/v1beta1/genesis.proto) - - [GenesisState](#cosmos.gov.v1beta1.GenesisState) - -- [cosmos/gov/v1beta1/query.proto](#cosmos/gov/v1beta1/query.proto) - - [QueryDepositRequest](#cosmos.gov.v1beta1.QueryDepositRequest) - - [QueryDepositResponse](#cosmos.gov.v1beta1.QueryDepositResponse) - - [QueryDepositsRequest](#cosmos.gov.v1beta1.QueryDepositsRequest) - - [QueryDepositsResponse](#cosmos.gov.v1beta1.QueryDepositsResponse) - - [QueryParamsRequest](#cosmos.gov.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.gov.v1beta1.QueryParamsResponse) - - [QueryProposalRequest](#cosmos.gov.v1beta1.QueryProposalRequest) - - [QueryProposalResponse](#cosmos.gov.v1beta1.QueryProposalResponse) - - [QueryProposalsRequest](#cosmos.gov.v1beta1.QueryProposalsRequest) - - [QueryProposalsResponse](#cosmos.gov.v1beta1.QueryProposalsResponse) - - [QueryTallyResultRequest](#cosmos.gov.v1beta1.QueryTallyResultRequest) - - [QueryTallyResultResponse](#cosmos.gov.v1beta1.QueryTallyResultResponse) - - [QueryVoteRequest](#cosmos.gov.v1beta1.QueryVoteRequest) - - [QueryVoteResponse](#cosmos.gov.v1beta1.QueryVoteResponse) - - [QueryVotesRequest](#cosmos.gov.v1beta1.QueryVotesRequest) - - [QueryVotesResponse](#cosmos.gov.v1beta1.QueryVotesResponse) - - - [Query](#cosmos.gov.v1beta1.Query) - -- [cosmos/gov/v1beta1/tx.proto](#cosmos/gov/v1beta1/tx.proto) - - [MsgDeposit](#cosmos.gov.v1beta1.MsgDeposit) - - [MsgDepositResponse](#cosmos.gov.v1beta1.MsgDepositResponse) - - [MsgSubmitProposal](#cosmos.gov.v1beta1.MsgSubmitProposal) - - [MsgSubmitProposalResponse](#cosmos.gov.v1beta1.MsgSubmitProposalResponse) - - [MsgVote](#cosmos.gov.v1beta1.MsgVote) - - [MsgVoteResponse](#cosmos.gov.v1beta1.MsgVoteResponse) - - - [Msg](#cosmos.gov.v1beta1.Msg) - -- [cosmos/mint/v1beta1/mint.proto](#cosmos/mint/v1beta1/mint.proto) - - [Minter](#cosmos.mint.v1beta1.Minter) - - [Params](#cosmos.mint.v1beta1.Params) - -- [cosmos/mint/v1beta1/genesis.proto](#cosmos/mint/v1beta1/genesis.proto) - - [GenesisState](#cosmos.mint.v1beta1.GenesisState) - -- [cosmos/mint/v1beta1/query.proto](#cosmos/mint/v1beta1/query.proto) - - [QueryAnnualProvisionsRequest](#cosmos.mint.v1beta1.QueryAnnualProvisionsRequest) - - [QueryAnnualProvisionsResponse](#cosmos.mint.v1beta1.QueryAnnualProvisionsResponse) - - [QueryInflationRequest](#cosmos.mint.v1beta1.QueryInflationRequest) - - [QueryInflationResponse](#cosmos.mint.v1beta1.QueryInflationResponse) - - [QueryParamsRequest](#cosmos.mint.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.mint.v1beta1.QueryParamsResponse) - - - [Query](#cosmos.mint.v1beta1.Query) - -- [cosmos/params/v1beta1/params.proto](#cosmos/params/v1beta1/params.proto) - - [ParamChange](#cosmos.params.v1beta1.ParamChange) - - [ParameterChangeProposal](#cosmos.params.v1beta1.ParameterChangeProposal) - -- [cosmos/params/v1beta1/query.proto](#cosmos/params/v1beta1/query.proto) - - [QueryParamsRequest](#cosmos.params.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.params.v1beta1.QueryParamsResponse) - - - [Query](#cosmos.params.v1beta1.Query) - -- [cosmos/slashing/v1beta1/slashing.proto](#cosmos/slashing/v1beta1/slashing.proto) - - [Params](#cosmos.slashing.v1beta1.Params) - - [ValidatorSigningInfo](#cosmos.slashing.v1beta1.ValidatorSigningInfo) - -- [cosmos/slashing/v1beta1/genesis.proto](#cosmos/slashing/v1beta1/genesis.proto) - - [GenesisState](#cosmos.slashing.v1beta1.GenesisState) - - [MissedBlock](#cosmos.slashing.v1beta1.MissedBlock) - - [SigningInfo](#cosmos.slashing.v1beta1.SigningInfo) - - [ValidatorMissedBlocks](#cosmos.slashing.v1beta1.ValidatorMissedBlocks) - -- [cosmos/slashing/v1beta1/query.proto](#cosmos/slashing/v1beta1/query.proto) - - [QueryParamsRequest](#cosmos.slashing.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.slashing.v1beta1.QueryParamsResponse) - - [QuerySigningInfoRequest](#cosmos.slashing.v1beta1.QuerySigningInfoRequest) - - [QuerySigningInfoResponse](#cosmos.slashing.v1beta1.QuerySigningInfoResponse) - - [QuerySigningInfosRequest](#cosmos.slashing.v1beta1.QuerySigningInfosRequest) - - [QuerySigningInfosResponse](#cosmos.slashing.v1beta1.QuerySigningInfosResponse) - - - [Query](#cosmos.slashing.v1beta1.Query) - -- [cosmos/slashing/v1beta1/tx.proto](#cosmos/slashing/v1beta1/tx.proto) - - [MsgUnjail](#cosmos.slashing.v1beta1.MsgUnjail) - - [MsgUnjailResponse](#cosmos.slashing.v1beta1.MsgUnjailResponse) - - - [Msg](#cosmos.slashing.v1beta1.Msg) - -- [cosmos/staking/v1beta1/staking.proto](#cosmos/staking/v1beta1/staking.proto) - - [Commission](#cosmos.staking.v1beta1.Commission) - - [CommissionRates](#cosmos.staking.v1beta1.CommissionRates) - - [DVPair](#cosmos.staking.v1beta1.DVPair) - - [DVPairs](#cosmos.staking.v1beta1.DVPairs) - - [DVVTriplet](#cosmos.staking.v1beta1.DVVTriplet) - - [DVVTriplets](#cosmos.staking.v1beta1.DVVTriplets) - - [Delegation](#cosmos.staking.v1beta1.Delegation) - - [DelegationResponse](#cosmos.staking.v1beta1.DelegationResponse) - - [Description](#cosmos.staking.v1beta1.Description) - - [HistoricalInfo](#cosmos.staking.v1beta1.HistoricalInfo) - - [Params](#cosmos.staking.v1beta1.Params) - - [Pool](#cosmos.staking.v1beta1.Pool) - - [Redelegation](#cosmos.staking.v1beta1.Redelegation) - - [RedelegationEntry](#cosmos.staking.v1beta1.RedelegationEntry) - - [RedelegationEntryResponse](#cosmos.staking.v1beta1.RedelegationEntryResponse) - - [RedelegationResponse](#cosmos.staking.v1beta1.RedelegationResponse) - - [UnbondingDelegation](#cosmos.staking.v1beta1.UnbondingDelegation) - - [UnbondingDelegationEntry](#cosmos.staking.v1beta1.UnbondingDelegationEntry) - - [ValAddresses](#cosmos.staking.v1beta1.ValAddresses) - - [Validator](#cosmos.staking.v1beta1.Validator) - - - [BondStatus](#cosmos.staking.v1beta1.BondStatus) - -- [cosmos/staking/v1beta1/genesis.proto](#cosmos/staking/v1beta1/genesis.proto) - - [GenesisState](#cosmos.staking.v1beta1.GenesisState) - - [LastValidatorPower](#cosmos.staking.v1beta1.LastValidatorPower) - -- [cosmos/staking/v1beta1/query.proto](#cosmos/staking/v1beta1/query.proto) - - [QueryDelegationRequest](#cosmos.staking.v1beta1.QueryDelegationRequest) - - [QueryDelegationResponse](#cosmos.staking.v1beta1.QueryDelegationResponse) - - [QueryDelegatorDelegationsRequest](#cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest) - - [QueryDelegatorDelegationsResponse](#cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse) - - [QueryDelegatorUnbondingDelegationsRequest](#cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest) - - [QueryDelegatorUnbondingDelegationsResponse](#cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse) - - [QueryDelegatorValidatorRequest](#cosmos.staking.v1beta1.QueryDelegatorValidatorRequest) - - [QueryDelegatorValidatorResponse](#cosmos.staking.v1beta1.QueryDelegatorValidatorResponse) - - [QueryDelegatorValidatorsRequest](#cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest) - - [QueryDelegatorValidatorsResponse](#cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse) - - [QueryHistoricalInfoRequest](#cosmos.staking.v1beta1.QueryHistoricalInfoRequest) - - [QueryHistoricalInfoResponse](#cosmos.staking.v1beta1.QueryHistoricalInfoResponse) - - [QueryParamsRequest](#cosmos.staking.v1beta1.QueryParamsRequest) - - [QueryParamsResponse](#cosmos.staking.v1beta1.QueryParamsResponse) - - [QueryPoolRequest](#cosmos.staking.v1beta1.QueryPoolRequest) - - [QueryPoolResponse](#cosmos.staking.v1beta1.QueryPoolResponse) - - [QueryRedelegationsRequest](#cosmos.staking.v1beta1.QueryRedelegationsRequest) - - [QueryRedelegationsResponse](#cosmos.staking.v1beta1.QueryRedelegationsResponse) - - [QueryUnbondingDelegationRequest](#cosmos.staking.v1beta1.QueryUnbondingDelegationRequest) - - [QueryUnbondingDelegationResponse](#cosmos.staking.v1beta1.QueryUnbondingDelegationResponse) - - [QueryValidatorDelegationsRequest](#cosmos.staking.v1beta1.QueryValidatorDelegationsRequest) - - [QueryValidatorDelegationsResponse](#cosmos.staking.v1beta1.QueryValidatorDelegationsResponse) - - [QueryValidatorRequest](#cosmos.staking.v1beta1.QueryValidatorRequest) - - [QueryValidatorResponse](#cosmos.staking.v1beta1.QueryValidatorResponse) - - [QueryValidatorUnbondingDelegationsRequest](#cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest) - - [QueryValidatorUnbondingDelegationsResponse](#cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse) - - [QueryValidatorsRequest](#cosmos.staking.v1beta1.QueryValidatorsRequest) - - [QueryValidatorsResponse](#cosmos.staking.v1beta1.QueryValidatorsResponse) - - - [Query](#cosmos.staking.v1beta1.Query) - -- [cosmos/staking/v1beta1/tx.proto](#cosmos/staking/v1beta1/tx.proto) - - [MsgBeginRedelegate](#cosmos.staking.v1beta1.MsgBeginRedelegate) - - [MsgBeginRedelegateResponse](#cosmos.staking.v1beta1.MsgBeginRedelegateResponse) - - [MsgCreateValidator](#cosmos.staking.v1beta1.MsgCreateValidator) - - [MsgCreateValidatorResponse](#cosmos.staking.v1beta1.MsgCreateValidatorResponse) - - [MsgDelegate](#cosmos.staking.v1beta1.MsgDelegate) - - [MsgDelegateResponse](#cosmos.staking.v1beta1.MsgDelegateResponse) - - [MsgEditValidator](#cosmos.staking.v1beta1.MsgEditValidator) - - [MsgEditValidatorResponse](#cosmos.staking.v1beta1.MsgEditValidatorResponse) - - [MsgUndelegate](#cosmos.staking.v1beta1.MsgUndelegate) - - [MsgUndelegateResponse](#cosmos.staking.v1beta1.MsgUndelegateResponse) - - - [Msg](#cosmos.staking.v1beta1.Msg) - -- [cosmos/tx/signing/v1beta1/signing.proto](#cosmos/tx/signing/v1beta1/signing.proto) - - [SignatureDescriptor](#cosmos.tx.signing.v1beta1.SignatureDescriptor) - - [SignatureDescriptor.Data](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data) - - [SignatureDescriptor.Data.Multi](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Multi) - - [SignatureDescriptor.Data.Single](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Single) - - [SignatureDescriptors](#cosmos.tx.signing.v1beta1.SignatureDescriptors) - - - [SignMode](#cosmos.tx.signing.v1beta1.SignMode) - -- [cosmos/tx/v1beta1/tx.proto](#cosmos/tx/v1beta1/tx.proto) - - [AuthInfo](#cosmos.tx.v1beta1.AuthInfo) - - [Fee](#cosmos.tx.v1beta1.Fee) - - [ModeInfo](#cosmos.tx.v1beta1.ModeInfo) - - [ModeInfo.Multi](#cosmos.tx.v1beta1.ModeInfo.Multi) - - [ModeInfo.Single](#cosmos.tx.v1beta1.ModeInfo.Single) - - [SignDoc](#cosmos.tx.v1beta1.SignDoc) - - [SignerInfo](#cosmos.tx.v1beta1.SignerInfo) - - [Tx](#cosmos.tx.v1beta1.Tx) - - [TxBody](#cosmos.tx.v1beta1.TxBody) - - [TxRaw](#cosmos.tx.v1beta1.TxRaw) - -- [cosmos/tx/v1beta1/service.proto](#cosmos/tx/v1beta1/service.proto) - - [BroadcastTxRequest](#cosmos.tx.v1beta1.BroadcastTxRequest) - - [BroadcastTxResponse](#cosmos.tx.v1beta1.BroadcastTxResponse) - - [GetTxRequest](#cosmos.tx.v1beta1.GetTxRequest) - - [GetTxResponse](#cosmos.tx.v1beta1.GetTxResponse) - - [GetTxsEventRequest](#cosmos.tx.v1beta1.GetTxsEventRequest) - - [GetTxsEventResponse](#cosmos.tx.v1beta1.GetTxsEventResponse) - - [SimulateRequest](#cosmos.tx.v1beta1.SimulateRequest) - - [SimulateResponse](#cosmos.tx.v1beta1.SimulateResponse) - - - [BroadcastMode](#cosmos.tx.v1beta1.BroadcastMode) - - - [Service](#cosmos.tx.v1beta1.Service) - -- [cosmos/upgrade/v1beta1/upgrade.proto](#cosmos/upgrade/v1beta1/upgrade.proto) - - [CancelSoftwareUpgradeProposal](#cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal) - - [Plan](#cosmos.upgrade.v1beta1.Plan) - - [SoftwareUpgradeProposal](#cosmos.upgrade.v1beta1.SoftwareUpgradeProposal) - -- [cosmos/upgrade/v1beta1/query.proto](#cosmos/upgrade/v1beta1/query.proto) - - [QueryAppliedPlanRequest](#cosmos.upgrade.v1beta1.QueryAppliedPlanRequest) - - [QueryAppliedPlanResponse](#cosmos.upgrade.v1beta1.QueryAppliedPlanResponse) - - [QueryCurrentPlanRequest](#cosmos.upgrade.v1beta1.QueryCurrentPlanRequest) - - [QueryCurrentPlanResponse](#cosmos.upgrade.v1beta1.QueryCurrentPlanResponse) - - [QueryUpgradedConsensusStateRequest](#cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateRequest) - - [QueryUpgradedConsensusStateResponse](#cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse) - - - [Query](#cosmos.upgrade.v1beta1.Query) - -- [cosmos/vesting/v1beta1/tx.proto](#cosmos/vesting/v1beta1/tx.proto) - - [MsgCreateVestingAccount](#cosmos.vesting.v1beta1.MsgCreateVestingAccount) - - [MsgCreateVestingAccountResponse](#cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse) - - - [Msg](#cosmos.vesting.v1beta1.Msg) - -- [cosmos/vesting/v1beta1/vesting.proto](#cosmos/vesting/v1beta1/vesting.proto) - - [BaseVestingAccount](#cosmos.vesting.v1beta1.BaseVestingAccount) - - [ContinuousVestingAccount](#cosmos.vesting.v1beta1.ContinuousVestingAccount) - - [DelayedVestingAccount](#cosmos.vesting.v1beta1.DelayedVestingAccount) - - [Period](#cosmos.vesting.v1beta1.Period) - - [PeriodicVestingAccount](#cosmos.vesting.v1beta1.PeriodicVestingAccount) - - [ibc/applications/transfer/v1/transfer.proto](#ibc/applications/transfer/v1/transfer.proto) - [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) - [FungibleTokenPacketData](#ibc.applications.transfer.v1.FungibleTokenPacketData) @@ -484,6 +12,10 @@ - [ibc/applications/transfer/v1/genesis.proto](#ibc/applications/transfer/v1/genesis.proto) - [GenesisState](#ibc.applications.transfer.v1.GenesisState) +- [lbm/base/query/v1beta1/pagination.proto](#lbm/base/query/v1beta1/pagination.proto) + - [PageRequest](#lbm.base.query.v1beta1.PageRequest) + - [PageResponse](#lbm.base.query.v1beta1.PageResponse) + - [ibc/applications/transfer/v1/query.proto](#ibc/applications/transfer/v1/query.proto) - [QueryDenomTraceRequest](#ibc.applications.transfer.v1.QueryDenomTraceRequest) - [QueryDenomTraceResponse](#ibc.applications.transfer.v1.QueryDenomTraceResponse) @@ -494,6 +26,12 @@ - [Query](#ibc.applications.transfer.v1.Query) +- [lbm/base/v1beta1/coin.proto](#lbm/base/v1beta1/coin.proto) + - [Coin](#lbm.base.v1beta1.Coin) + - [DecCoin](#lbm.base.v1beta1.DecCoin) + - [DecProto](#lbm.base.v1beta1.DecProto) + - [IntProto](#lbm.base.v1beta1.IntProto) + - [ibc/core/client/v1/client.proto](#ibc/core/client/v1/client.proto) - [ClientConsensusStates](#ibc.core.client.v1.ClientConsensusStates) - [ClientUpdateProposal](#ibc.core.client.v1.ClientUpdateProposal) @@ -686,67 +224,529 @@ - [Header](#ibc.lightclients.tendermint.v1.Header) - [Misbehaviour](#ibc.lightclients.tendermint.v1.Misbehaviour) +- [lbm/auth/v1beta1/auth.proto](#lbm/auth/v1beta1/auth.proto) + - [BaseAccount](#lbm.auth.v1beta1.BaseAccount) + - [ModuleAccount](#lbm.auth.v1beta1.ModuleAccount) + - [Params](#lbm.auth.v1beta1.Params) + +- [lbm/auth/v1beta1/genesis.proto](#lbm/auth/v1beta1/genesis.proto) + - [GenesisState](#lbm.auth.v1beta1.GenesisState) + +- [lbm/auth/v1beta1/query.proto](#lbm/auth/v1beta1/query.proto) + - [QueryAccountRequest](#lbm.auth.v1beta1.QueryAccountRequest) + - [QueryAccountResponse](#lbm.auth.v1beta1.QueryAccountResponse) + - [QueryParamsRequest](#lbm.auth.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.auth.v1beta1.QueryParamsResponse) + + - [Query](#lbm.auth.v1beta1.Query) + +- [lbm/bank/v1beta1/bank.proto](#lbm/bank/v1beta1/bank.proto) + - [DenomUnit](#lbm.bank.v1beta1.DenomUnit) + - [Input](#lbm.bank.v1beta1.Input) + - [Metadata](#lbm.bank.v1beta1.Metadata) + - [Output](#lbm.bank.v1beta1.Output) + - [Params](#lbm.bank.v1beta1.Params) + - [SendEnabled](#lbm.bank.v1beta1.SendEnabled) + - [Supply](#lbm.bank.v1beta1.Supply) + +- [lbm/bank/v1beta1/genesis.proto](#lbm/bank/v1beta1/genesis.proto) + - [Balance](#lbm.bank.v1beta1.Balance) + - [GenesisState](#lbm.bank.v1beta1.GenesisState) + +- [lbm/bank/v1beta1/query.proto](#lbm/bank/v1beta1/query.proto) + - [QueryAllBalancesRequest](#lbm.bank.v1beta1.QueryAllBalancesRequest) + - [QueryAllBalancesResponse](#lbm.bank.v1beta1.QueryAllBalancesResponse) + - [QueryBalanceRequest](#lbm.bank.v1beta1.QueryBalanceRequest) + - [QueryBalanceResponse](#lbm.bank.v1beta1.QueryBalanceResponse) + - [QueryDenomMetadataRequest](#lbm.bank.v1beta1.QueryDenomMetadataRequest) + - [QueryDenomMetadataResponse](#lbm.bank.v1beta1.QueryDenomMetadataResponse) + - [QueryDenomsMetadataRequest](#lbm.bank.v1beta1.QueryDenomsMetadataRequest) + - [QueryDenomsMetadataResponse](#lbm.bank.v1beta1.QueryDenomsMetadataResponse) + - [QueryParamsRequest](#lbm.bank.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.bank.v1beta1.QueryParamsResponse) + - [QuerySupplyOfRequest](#lbm.bank.v1beta1.QuerySupplyOfRequest) + - [QuerySupplyOfResponse](#lbm.bank.v1beta1.QuerySupplyOfResponse) + - [QueryTotalSupplyRequest](#lbm.bank.v1beta1.QueryTotalSupplyRequest) + - [QueryTotalSupplyResponse](#lbm.bank.v1beta1.QueryTotalSupplyResponse) + + - [Query](#lbm.bank.v1beta1.Query) + +- [lbm/bank/v1beta1/tx.proto](#lbm/bank/v1beta1/tx.proto) + - [MsgMultiSend](#lbm.bank.v1beta1.MsgMultiSend) + - [MsgMultiSendResponse](#lbm.bank.v1beta1.MsgMultiSendResponse) + - [MsgSend](#lbm.bank.v1beta1.MsgSend) + - [MsgSendResponse](#lbm.bank.v1beta1.MsgSendResponse) + + - [Msg](#lbm.bank.v1beta1.Msg) + +- [lbm/base/abci/v1beta1/abci.proto](#lbm/base/abci/v1beta1/abci.proto) + - [ABCIMessageLog](#lbm.base.abci.v1beta1.ABCIMessageLog) + - [Attribute](#lbm.base.abci.v1beta1.Attribute) + - [GasInfo](#lbm.base.abci.v1beta1.GasInfo) + - [MsgData](#lbm.base.abci.v1beta1.MsgData) + - [Result](#lbm.base.abci.v1beta1.Result) + - [SearchTxsResult](#lbm.base.abci.v1beta1.SearchTxsResult) + - [SimulationResponse](#lbm.base.abci.v1beta1.SimulationResponse) + - [StringEvent](#lbm.base.abci.v1beta1.StringEvent) + - [TxMsgData](#lbm.base.abci.v1beta1.TxMsgData) + - [TxResponse](#lbm.base.abci.v1beta1.TxResponse) + +- [lbm/base/kv/v1beta1/kv.proto](#lbm/base/kv/v1beta1/kv.proto) + - [Pair](#lbm.base.kv.v1beta1.Pair) + - [Pairs](#lbm.base.kv.v1beta1.Pairs) + +- [lbm/base/ostracon/v1beta1/query.proto](#lbm/base/ostracon/v1beta1/query.proto) + - [GetBlockByHeightRequest](#lbm.base.ostracon.v1beta1.GetBlockByHeightRequest) + - [GetBlockByHeightResponse](#lbm.base.ostracon.v1beta1.GetBlockByHeightResponse) + - [GetLatestBlockRequest](#lbm.base.ostracon.v1beta1.GetLatestBlockRequest) + - [GetLatestBlockResponse](#lbm.base.ostracon.v1beta1.GetLatestBlockResponse) + - [GetLatestValidatorSetRequest](#lbm.base.ostracon.v1beta1.GetLatestValidatorSetRequest) + - [GetLatestValidatorSetResponse](#lbm.base.ostracon.v1beta1.GetLatestValidatorSetResponse) + - [GetNodeInfoRequest](#lbm.base.ostracon.v1beta1.GetNodeInfoRequest) + - [GetNodeInfoResponse](#lbm.base.ostracon.v1beta1.GetNodeInfoResponse) + - [GetSyncingRequest](#lbm.base.ostracon.v1beta1.GetSyncingRequest) + - [GetSyncingResponse](#lbm.base.ostracon.v1beta1.GetSyncingResponse) + - [GetValidatorSetByHeightRequest](#lbm.base.ostracon.v1beta1.GetValidatorSetByHeightRequest) + - [GetValidatorSetByHeightResponse](#lbm.base.ostracon.v1beta1.GetValidatorSetByHeightResponse) + - [Module](#lbm.base.ostracon.v1beta1.Module) + - [Validator](#lbm.base.ostracon.v1beta1.Validator) + - [VersionInfo](#lbm.base.ostracon.v1beta1.VersionInfo) + + - [Service](#lbm.base.ostracon.v1beta1.Service) + +- [lbm/base/reflection/v1beta1/reflection.proto](#lbm/base/reflection/v1beta1/reflection.proto) + - [ListAllInterfacesRequest](#lbm.base.reflection.v1beta1.ListAllInterfacesRequest) + - [ListAllInterfacesResponse](#lbm.base.reflection.v1beta1.ListAllInterfacesResponse) + - [ListImplementationsRequest](#lbm.base.reflection.v1beta1.ListImplementationsRequest) + - [ListImplementationsResponse](#lbm.base.reflection.v1beta1.ListImplementationsResponse) + + - [ReflectionService](#lbm.base.reflection.v1beta1.ReflectionService) + +- [lbm/base/snapshots/v1beta1/snapshot.proto](#lbm/base/snapshots/v1beta1/snapshot.proto) + - [Metadata](#lbm.base.snapshots.v1beta1.Metadata) + - [Snapshot](#lbm.base.snapshots.v1beta1.Snapshot) + +- [lbm/base/store/v1beta1/commit_info.proto](#lbm/base/store/v1beta1/commit_info.proto) + - [CommitID](#lbm.base.store.v1beta1.CommitID) + - [CommitInfo](#lbm.base.store.v1beta1.CommitInfo) + - [StoreInfo](#lbm.base.store.v1beta1.StoreInfo) + +- [lbm/base/store/v1beta1/snapshot.proto](#lbm/base/store/v1beta1/snapshot.proto) + - [SnapshotIAVLItem](#lbm.base.store.v1beta1.SnapshotIAVLItem) + - [SnapshotItem](#lbm.base.store.v1beta1.SnapshotItem) + - [SnapshotStoreItem](#lbm.base.store.v1beta1.SnapshotStoreItem) + +- [lbm/capability/v1beta1/capability.proto](#lbm/capability/v1beta1/capability.proto) + - [Capability](#lbm.capability.v1beta1.Capability) + - [CapabilityOwners](#lbm.capability.v1beta1.CapabilityOwners) + - [Owner](#lbm.capability.v1beta1.Owner) + +- [lbm/capability/v1beta1/genesis.proto](#lbm/capability/v1beta1/genesis.proto) + - [GenesisOwners](#lbm.capability.v1beta1.GenesisOwners) + - [GenesisState](#lbm.capability.v1beta1.GenesisState) + +- [lbm/crisis/v1beta1/genesis.proto](#lbm/crisis/v1beta1/genesis.proto) + - [GenesisState](#lbm.crisis.v1beta1.GenesisState) + +- [lbm/crisis/v1beta1/tx.proto](#lbm/crisis/v1beta1/tx.proto) + - [MsgVerifyInvariant](#lbm.crisis.v1beta1.MsgVerifyInvariant) + - [MsgVerifyInvariantResponse](#lbm.crisis.v1beta1.MsgVerifyInvariantResponse) + + - [Msg](#lbm.crisis.v1beta1.Msg) + +- [lbm/crypto/ed25519/keys.proto](#lbm/crypto/ed25519/keys.proto) + - [PrivKey](#lbm.crypto.ed25519.PrivKey) + - [PubKey](#lbm.crypto.ed25519.PubKey) + +- [lbm/crypto/multisig/keys.proto](#lbm/crypto/multisig/keys.proto) + - [LegacyAminoPubKey](#lbm.crypto.multisig.LegacyAminoPubKey) + +- [lbm/crypto/multisig/v1beta1/multisig.proto](#lbm/crypto/multisig/v1beta1/multisig.proto) + - [CompactBitArray](#lbm.crypto.multisig.v1beta1.CompactBitArray) + - [MultiSignature](#lbm.crypto.multisig.v1beta1.MultiSignature) + +- [lbm/crypto/secp256k1/keys.proto](#lbm/crypto/secp256k1/keys.proto) + - [PrivKey](#lbm.crypto.secp256k1.PrivKey) + - [PubKey](#lbm.crypto.secp256k1.PubKey) + +- [lbm/distribution/v1beta1/distribution.proto](#lbm/distribution/v1beta1/distribution.proto) + - [CommunityPoolSpendProposal](#lbm.distribution.v1beta1.CommunityPoolSpendProposal) + - [CommunityPoolSpendProposalWithDeposit](#lbm.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit) + - [DelegationDelegatorReward](#lbm.distribution.v1beta1.DelegationDelegatorReward) + - [DelegatorStartingInfo](#lbm.distribution.v1beta1.DelegatorStartingInfo) + - [FeePool](#lbm.distribution.v1beta1.FeePool) + - [Params](#lbm.distribution.v1beta1.Params) + - [ValidatorAccumulatedCommission](#lbm.distribution.v1beta1.ValidatorAccumulatedCommission) + - [ValidatorCurrentRewards](#lbm.distribution.v1beta1.ValidatorCurrentRewards) + - [ValidatorHistoricalRewards](#lbm.distribution.v1beta1.ValidatorHistoricalRewards) + - [ValidatorOutstandingRewards](#lbm.distribution.v1beta1.ValidatorOutstandingRewards) + - [ValidatorSlashEvent](#lbm.distribution.v1beta1.ValidatorSlashEvent) + - [ValidatorSlashEvents](#lbm.distribution.v1beta1.ValidatorSlashEvents) + +- [lbm/distribution/v1beta1/genesis.proto](#lbm/distribution/v1beta1/genesis.proto) + - [DelegatorStartingInfoRecord](#lbm.distribution.v1beta1.DelegatorStartingInfoRecord) + - [DelegatorWithdrawInfo](#lbm.distribution.v1beta1.DelegatorWithdrawInfo) + - [GenesisState](#lbm.distribution.v1beta1.GenesisState) + - [ValidatorAccumulatedCommissionRecord](#lbm.distribution.v1beta1.ValidatorAccumulatedCommissionRecord) + - [ValidatorCurrentRewardsRecord](#lbm.distribution.v1beta1.ValidatorCurrentRewardsRecord) + - [ValidatorHistoricalRewardsRecord](#lbm.distribution.v1beta1.ValidatorHistoricalRewardsRecord) + - [ValidatorOutstandingRewardsRecord](#lbm.distribution.v1beta1.ValidatorOutstandingRewardsRecord) + - [ValidatorSlashEventRecord](#lbm.distribution.v1beta1.ValidatorSlashEventRecord) + +- [lbm/distribution/v1beta1/query.proto](#lbm/distribution/v1beta1/query.proto) + - [QueryCommunityPoolRequest](#lbm.distribution.v1beta1.QueryCommunityPoolRequest) + - [QueryCommunityPoolResponse](#lbm.distribution.v1beta1.QueryCommunityPoolResponse) + - [QueryDelegationRewardsRequest](#lbm.distribution.v1beta1.QueryDelegationRewardsRequest) + - [QueryDelegationRewardsResponse](#lbm.distribution.v1beta1.QueryDelegationRewardsResponse) + - [QueryDelegationTotalRewardsRequest](#lbm.distribution.v1beta1.QueryDelegationTotalRewardsRequest) + - [QueryDelegationTotalRewardsResponse](#lbm.distribution.v1beta1.QueryDelegationTotalRewardsResponse) + - [QueryDelegatorValidatorsRequest](#lbm.distribution.v1beta1.QueryDelegatorValidatorsRequest) + - [QueryDelegatorValidatorsResponse](#lbm.distribution.v1beta1.QueryDelegatorValidatorsResponse) + - [QueryDelegatorWithdrawAddressRequest](#lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest) + - [QueryDelegatorWithdrawAddressResponse](#lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse) + - [QueryParamsRequest](#lbm.distribution.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.distribution.v1beta1.QueryParamsResponse) + - [QueryValidatorCommissionRequest](#lbm.distribution.v1beta1.QueryValidatorCommissionRequest) + - [QueryValidatorCommissionResponse](#lbm.distribution.v1beta1.QueryValidatorCommissionResponse) + - [QueryValidatorOutstandingRewardsRequest](#lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest) + - [QueryValidatorOutstandingRewardsResponse](#lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse) + - [QueryValidatorSlashesRequest](#lbm.distribution.v1beta1.QueryValidatorSlashesRequest) + - [QueryValidatorSlashesResponse](#lbm.distribution.v1beta1.QueryValidatorSlashesResponse) + + - [Query](#lbm.distribution.v1beta1.Query) + +- [lbm/distribution/v1beta1/tx.proto](#lbm/distribution/v1beta1/tx.proto) + - [MsgFundCommunityPool](#lbm.distribution.v1beta1.MsgFundCommunityPool) + - [MsgFundCommunityPoolResponse](#lbm.distribution.v1beta1.MsgFundCommunityPoolResponse) + - [MsgSetWithdrawAddress](#lbm.distribution.v1beta1.MsgSetWithdrawAddress) + - [MsgSetWithdrawAddressResponse](#lbm.distribution.v1beta1.MsgSetWithdrawAddressResponse) + - [MsgWithdrawDelegatorReward](#lbm.distribution.v1beta1.MsgWithdrawDelegatorReward) + - [MsgWithdrawDelegatorRewardResponse](#lbm.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse) + - [MsgWithdrawValidatorCommission](#lbm.distribution.v1beta1.MsgWithdrawValidatorCommission) + - [MsgWithdrawValidatorCommissionResponse](#lbm.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse) + + - [Msg](#lbm.distribution.v1beta1.Msg) + +- [lbm/evidence/v1beta1/evidence.proto](#lbm/evidence/v1beta1/evidence.proto) + - [Equivocation](#lbm.evidence.v1beta1.Equivocation) + +- [lbm/evidence/v1beta1/genesis.proto](#lbm/evidence/v1beta1/genesis.proto) + - [GenesisState](#lbm.evidence.v1beta1.GenesisState) + +- [lbm/evidence/v1beta1/query.proto](#lbm/evidence/v1beta1/query.proto) + - [QueryAllEvidenceRequest](#lbm.evidence.v1beta1.QueryAllEvidenceRequest) + - [QueryAllEvidenceResponse](#lbm.evidence.v1beta1.QueryAllEvidenceResponse) + - [QueryEvidenceRequest](#lbm.evidence.v1beta1.QueryEvidenceRequest) + - [QueryEvidenceResponse](#lbm.evidence.v1beta1.QueryEvidenceResponse) + + - [Query](#lbm.evidence.v1beta1.Query) + +- [lbm/evidence/v1beta1/tx.proto](#lbm/evidence/v1beta1/tx.proto) + - [MsgSubmitEvidence](#lbm.evidence.v1beta1.MsgSubmitEvidence) + - [MsgSubmitEvidenceResponse](#lbm.evidence.v1beta1.MsgSubmitEvidenceResponse) + + - [Msg](#lbm.evidence.v1beta1.Msg) + +- [lbm/genutil/v1beta1/genesis.proto](#lbm/genutil/v1beta1/genesis.proto) + - [GenesisState](#lbm.genutil.v1beta1.GenesisState) + +- [lbm/gov/v1beta1/gov.proto](#lbm/gov/v1beta1/gov.proto) + - [Deposit](#lbm.gov.v1beta1.Deposit) + - [DepositParams](#lbm.gov.v1beta1.DepositParams) + - [Proposal](#lbm.gov.v1beta1.Proposal) + - [TallyParams](#lbm.gov.v1beta1.TallyParams) + - [TallyResult](#lbm.gov.v1beta1.TallyResult) + - [TextProposal](#lbm.gov.v1beta1.TextProposal) + - [Vote](#lbm.gov.v1beta1.Vote) + - [VotingParams](#lbm.gov.v1beta1.VotingParams) + + - [ProposalStatus](#lbm.gov.v1beta1.ProposalStatus) + - [VoteOption](#lbm.gov.v1beta1.VoteOption) + +- [lbm/gov/v1beta1/genesis.proto](#lbm/gov/v1beta1/genesis.proto) + - [GenesisState](#lbm.gov.v1beta1.GenesisState) + +- [lbm/gov/v1beta1/query.proto](#lbm/gov/v1beta1/query.proto) + - [QueryDepositRequest](#lbm.gov.v1beta1.QueryDepositRequest) + - [QueryDepositResponse](#lbm.gov.v1beta1.QueryDepositResponse) + - [QueryDepositsRequest](#lbm.gov.v1beta1.QueryDepositsRequest) + - [QueryDepositsResponse](#lbm.gov.v1beta1.QueryDepositsResponse) + - [QueryParamsRequest](#lbm.gov.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.gov.v1beta1.QueryParamsResponse) + - [QueryProposalRequest](#lbm.gov.v1beta1.QueryProposalRequest) + - [QueryProposalResponse](#lbm.gov.v1beta1.QueryProposalResponse) + - [QueryProposalsRequest](#lbm.gov.v1beta1.QueryProposalsRequest) + - [QueryProposalsResponse](#lbm.gov.v1beta1.QueryProposalsResponse) + - [QueryTallyResultRequest](#lbm.gov.v1beta1.QueryTallyResultRequest) + - [QueryTallyResultResponse](#lbm.gov.v1beta1.QueryTallyResultResponse) + - [QueryVoteRequest](#lbm.gov.v1beta1.QueryVoteRequest) + - [QueryVoteResponse](#lbm.gov.v1beta1.QueryVoteResponse) + - [QueryVotesRequest](#lbm.gov.v1beta1.QueryVotesRequest) + - [QueryVotesResponse](#lbm.gov.v1beta1.QueryVotesResponse) + + - [Query](#lbm.gov.v1beta1.Query) + +- [lbm/gov/v1beta1/tx.proto](#lbm/gov/v1beta1/tx.proto) + - [MsgDeposit](#lbm.gov.v1beta1.MsgDeposit) + - [MsgDepositResponse](#lbm.gov.v1beta1.MsgDepositResponse) + - [MsgSubmitProposal](#lbm.gov.v1beta1.MsgSubmitProposal) + - [MsgSubmitProposalResponse](#lbm.gov.v1beta1.MsgSubmitProposalResponse) + - [MsgVote](#lbm.gov.v1beta1.MsgVote) + - [MsgVoteResponse](#lbm.gov.v1beta1.MsgVoteResponse) + + - [Msg](#lbm.gov.v1beta1.Msg) + +- [lbm/mint/v1beta1/mint.proto](#lbm/mint/v1beta1/mint.proto) + - [Minter](#lbm.mint.v1beta1.Minter) + - [Params](#lbm.mint.v1beta1.Params) + +- [lbm/mint/v1beta1/genesis.proto](#lbm/mint/v1beta1/genesis.proto) + - [GenesisState](#lbm.mint.v1beta1.GenesisState) + +- [lbm/mint/v1beta1/query.proto](#lbm/mint/v1beta1/query.proto) + - [QueryAnnualProvisionsRequest](#lbm.mint.v1beta1.QueryAnnualProvisionsRequest) + - [QueryAnnualProvisionsResponse](#lbm.mint.v1beta1.QueryAnnualProvisionsResponse) + - [QueryInflationRequest](#lbm.mint.v1beta1.QueryInflationRequest) + - [QueryInflationResponse](#lbm.mint.v1beta1.QueryInflationResponse) + - [QueryParamsRequest](#lbm.mint.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.mint.v1beta1.QueryParamsResponse) + + - [Query](#lbm.mint.v1beta1.Query) + +- [lbm/params/v1beta1/params.proto](#lbm/params/v1beta1/params.proto) + - [ParamChange](#lbm.params.v1beta1.ParamChange) + - [ParameterChangeProposal](#lbm.params.v1beta1.ParameterChangeProposal) + +- [lbm/params/v1beta1/query.proto](#lbm/params/v1beta1/query.proto) + - [QueryParamsRequest](#lbm.params.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.params.v1beta1.QueryParamsResponse) + + - [Query](#lbm.params.v1beta1.Query) + +- [lbm/slashing/v1beta1/slashing.proto](#lbm/slashing/v1beta1/slashing.proto) + - [Params](#lbm.slashing.v1beta1.Params) + - [ValidatorSigningInfo](#lbm.slashing.v1beta1.ValidatorSigningInfo) + +- [lbm/slashing/v1beta1/genesis.proto](#lbm/slashing/v1beta1/genesis.proto) + - [GenesisState](#lbm.slashing.v1beta1.GenesisState) + - [MissedBlock](#lbm.slashing.v1beta1.MissedBlock) + - [SigningInfo](#lbm.slashing.v1beta1.SigningInfo) + - [ValidatorMissedBlocks](#lbm.slashing.v1beta1.ValidatorMissedBlocks) + +- [lbm/slashing/v1beta1/query.proto](#lbm/slashing/v1beta1/query.proto) + - [QueryParamsRequest](#lbm.slashing.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.slashing.v1beta1.QueryParamsResponse) + - [QuerySigningInfoRequest](#lbm.slashing.v1beta1.QuerySigningInfoRequest) + - [QuerySigningInfoResponse](#lbm.slashing.v1beta1.QuerySigningInfoResponse) + - [QuerySigningInfosRequest](#lbm.slashing.v1beta1.QuerySigningInfosRequest) + - [QuerySigningInfosResponse](#lbm.slashing.v1beta1.QuerySigningInfosResponse) + + - [Query](#lbm.slashing.v1beta1.Query) + +- [lbm/slashing/v1beta1/tx.proto](#lbm/slashing/v1beta1/tx.proto) + - [MsgUnjail](#lbm.slashing.v1beta1.MsgUnjail) + - [MsgUnjailResponse](#lbm.slashing.v1beta1.MsgUnjailResponse) + + - [Msg](#lbm.slashing.v1beta1.Msg) + +- [lbm/staking/v1beta1/staking.proto](#lbm/staking/v1beta1/staking.proto) + - [Commission](#lbm.staking.v1beta1.Commission) + - [CommissionRates](#lbm.staking.v1beta1.CommissionRates) + - [DVPair](#lbm.staking.v1beta1.DVPair) + - [DVPairs](#lbm.staking.v1beta1.DVPairs) + - [DVVTriplet](#lbm.staking.v1beta1.DVVTriplet) + - [DVVTriplets](#lbm.staking.v1beta1.DVVTriplets) + - [Delegation](#lbm.staking.v1beta1.Delegation) + - [DelegationResponse](#lbm.staking.v1beta1.DelegationResponse) + - [Description](#lbm.staking.v1beta1.Description) + - [HistoricalInfo](#lbm.staking.v1beta1.HistoricalInfo) + - [Params](#lbm.staking.v1beta1.Params) + - [Pool](#lbm.staking.v1beta1.Pool) + - [Redelegation](#lbm.staking.v1beta1.Redelegation) + - [RedelegationEntry](#lbm.staking.v1beta1.RedelegationEntry) + - [RedelegationEntryResponse](#lbm.staking.v1beta1.RedelegationEntryResponse) + - [RedelegationResponse](#lbm.staking.v1beta1.RedelegationResponse) + - [UnbondingDelegation](#lbm.staking.v1beta1.UnbondingDelegation) + - [UnbondingDelegationEntry](#lbm.staking.v1beta1.UnbondingDelegationEntry) + - [ValAddresses](#lbm.staking.v1beta1.ValAddresses) + - [Validator](#lbm.staking.v1beta1.Validator) + + - [BondStatus](#lbm.staking.v1beta1.BondStatus) + +- [lbm/staking/v1beta1/genesis.proto](#lbm/staking/v1beta1/genesis.proto) + - [GenesisState](#lbm.staking.v1beta1.GenesisState) + - [LastValidatorPower](#lbm.staking.v1beta1.LastValidatorPower) + +- [lbm/staking/v1beta1/query.proto](#lbm/staking/v1beta1/query.proto) + - [QueryDelegationRequest](#lbm.staking.v1beta1.QueryDelegationRequest) + - [QueryDelegationResponse](#lbm.staking.v1beta1.QueryDelegationResponse) + - [QueryDelegatorDelegationsRequest](#lbm.staking.v1beta1.QueryDelegatorDelegationsRequest) + - [QueryDelegatorDelegationsResponse](#lbm.staking.v1beta1.QueryDelegatorDelegationsResponse) + - [QueryDelegatorUnbondingDelegationsRequest](#lbm.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest) + - [QueryDelegatorUnbondingDelegationsResponse](#lbm.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse) + - [QueryDelegatorValidatorRequest](#lbm.staking.v1beta1.QueryDelegatorValidatorRequest) + - [QueryDelegatorValidatorResponse](#lbm.staking.v1beta1.QueryDelegatorValidatorResponse) + - [QueryDelegatorValidatorsRequest](#lbm.staking.v1beta1.QueryDelegatorValidatorsRequest) + - [QueryDelegatorValidatorsResponse](#lbm.staking.v1beta1.QueryDelegatorValidatorsResponse) + - [QueryHistoricalInfoRequest](#lbm.staking.v1beta1.QueryHistoricalInfoRequest) + - [QueryHistoricalInfoResponse](#lbm.staking.v1beta1.QueryHistoricalInfoResponse) + - [QueryParamsRequest](#lbm.staking.v1beta1.QueryParamsRequest) + - [QueryParamsResponse](#lbm.staking.v1beta1.QueryParamsResponse) + - [QueryPoolRequest](#lbm.staking.v1beta1.QueryPoolRequest) + - [QueryPoolResponse](#lbm.staking.v1beta1.QueryPoolResponse) + - [QueryRedelegationsRequest](#lbm.staking.v1beta1.QueryRedelegationsRequest) + - [QueryRedelegationsResponse](#lbm.staking.v1beta1.QueryRedelegationsResponse) + - [QueryUnbondingDelegationRequest](#lbm.staking.v1beta1.QueryUnbondingDelegationRequest) + - [QueryUnbondingDelegationResponse](#lbm.staking.v1beta1.QueryUnbondingDelegationResponse) + - [QueryValidatorDelegationsRequest](#lbm.staking.v1beta1.QueryValidatorDelegationsRequest) + - [QueryValidatorDelegationsResponse](#lbm.staking.v1beta1.QueryValidatorDelegationsResponse) + - [QueryValidatorRequest](#lbm.staking.v1beta1.QueryValidatorRequest) + - [QueryValidatorResponse](#lbm.staking.v1beta1.QueryValidatorResponse) + - [QueryValidatorUnbondingDelegationsRequest](#lbm.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest) + - [QueryValidatorUnbondingDelegationsResponse](#lbm.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse) + - [QueryValidatorsRequest](#lbm.staking.v1beta1.QueryValidatorsRequest) + - [QueryValidatorsResponse](#lbm.staking.v1beta1.QueryValidatorsResponse) + + - [Query](#lbm.staking.v1beta1.Query) + +- [lbm/staking/v1beta1/tx.proto](#lbm/staking/v1beta1/tx.proto) + - [MsgBeginRedelegate](#lbm.staking.v1beta1.MsgBeginRedelegate) + - [MsgBeginRedelegateResponse](#lbm.staking.v1beta1.MsgBeginRedelegateResponse) + - [MsgCreateValidator](#lbm.staking.v1beta1.MsgCreateValidator) + - [MsgCreateValidatorResponse](#lbm.staking.v1beta1.MsgCreateValidatorResponse) + - [MsgDelegate](#lbm.staking.v1beta1.MsgDelegate) + - [MsgDelegateResponse](#lbm.staking.v1beta1.MsgDelegateResponse) + - [MsgEditValidator](#lbm.staking.v1beta1.MsgEditValidator) + - [MsgEditValidatorResponse](#lbm.staking.v1beta1.MsgEditValidatorResponse) + - [MsgUndelegate](#lbm.staking.v1beta1.MsgUndelegate) + - [MsgUndelegateResponse](#lbm.staking.v1beta1.MsgUndelegateResponse) + + - [Msg](#lbm.staking.v1beta1.Msg) + +- [lbm/tx/signing/v1beta1/signing.proto](#lbm/tx/signing/v1beta1/signing.proto) + - [SignatureDescriptor](#lbm.tx.signing.v1beta1.SignatureDescriptor) + - [SignatureDescriptor.Data](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data) + - [SignatureDescriptor.Data.Multi](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data.Multi) + - [SignatureDescriptor.Data.Single](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data.Single) + - [SignatureDescriptors](#lbm.tx.signing.v1beta1.SignatureDescriptors) + + - [SignMode](#lbm.tx.signing.v1beta1.SignMode) + +- [lbm/tx/v1beta1/tx.proto](#lbm/tx/v1beta1/tx.proto) + - [AuthInfo](#lbm.tx.v1beta1.AuthInfo) + - [Fee](#lbm.tx.v1beta1.Fee) + - [ModeInfo](#lbm.tx.v1beta1.ModeInfo) + - [ModeInfo.Multi](#lbm.tx.v1beta1.ModeInfo.Multi) + - [ModeInfo.Single](#lbm.tx.v1beta1.ModeInfo.Single) + - [SignDoc](#lbm.tx.v1beta1.SignDoc) + - [SignerInfo](#lbm.tx.v1beta1.SignerInfo) + - [Tx](#lbm.tx.v1beta1.Tx) + - [TxBody](#lbm.tx.v1beta1.TxBody) + - [TxRaw](#lbm.tx.v1beta1.TxRaw) + +- [lbm/tx/v1beta1/service.proto](#lbm/tx/v1beta1/service.proto) + - [BroadcastTxRequest](#lbm.tx.v1beta1.BroadcastTxRequest) + - [BroadcastTxResponse](#lbm.tx.v1beta1.BroadcastTxResponse) + - [GetTxRequest](#lbm.tx.v1beta1.GetTxRequest) + - [GetTxResponse](#lbm.tx.v1beta1.GetTxResponse) + - [GetTxsEventRequest](#lbm.tx.v1beta1.GetTxsEventRequest) + - [GetTxsEventResponse](#lbm.tx.v1beta1.GetTxsEventResponse) + - [SimulateRequest](#lbm.tx.v1beta1.SimulateRequest) + - [SimulateResponse](#lbm.tx.v1beta1.SimulateResponse) + + - [BroadcastMode](#lbm.tx.v1beta1.BroadcastMode) + + - [Service](#lbm.tx.v1beta1.Service) + +- [lbm/upgrade/v1beta1/upgrade.proto](#lbm/upgrade/v1beta1/upgrade.proto) + - [CancelSoftwareUpgradeProposal](#lbm.upgrade.v1beta1.CancelSoftwareUpgradeProposal) + - [Plan](#lbm.upgrade.v1beta1.Plan) + - [SoftwareUpgradeProposal](#lbm.upgrade.v1beta1.SoftwareUpgradeProposal) + +- [lbm/upgrade/v1beta1/query.proto](#lbm/upgrade/v1beta1/query.proto) + - [QueryAppliedPlanRequest](#lbm.upgrade.v1beta1.QueryAppliedPlanRequest) + - [QueryAppliedPlanResponse](#lbm.upgrade.v1beta1.QueryAppliedPlanResponse) + - [QueryCurrentPlanRequest](#lbm.upgrade.v1beta1.QueryCurrentPlanRequest) + - [QueryCurrentPlanResponse](#lbm.upgrade.v1beta1.QueryCurrentPlanResponse) + - [QueryUpgradedConsensusStateRequest](#lbm.upgrade.v1beta1.QueryUpgradedConsensusStateRequest) + - [QueryUpgradedConsensusStateResponse](#lbm.upgrade.v1beta1.QueryUpgradedConsensusStateResponse) + + - [Query](#lbm.upgrade.v1beta1.Query) + +- [lbm/vesting/v1beta1/tx.proto](#lbm/vesting/v1beta1/tx.proto) + - [MsgCreateVestingAccount](#lbm.vesting.v1beta1.MsgCreateVestingAccount) + - [MsgCreateVestingAccountResponse](#lbm.vesting.v1beta1.MsgCreateVestingAccountResponse) + + - [Msg](#lbm.vesting.v1beta1.Msg) + +- [lbm/vesting/v1beta1/vesting.proto](#lbm/vesting/v1beta1/vesting.proto) + - [BaseVestingAccount](#lbm.vesting.v1beta1.BaseVestingAccount) + - [ContinuousVestingAccount](#lbm.vesting.v1beta1.ContinuousVestingAccount) + - [DelayedVestingAccount](#lbm.vesting.v1beta1.DelayedVestingAccount) + - [Period](#lbm.vesting.v1beta1.Period) + - [PeriodicVestingAccount](#lbm.vesting.v1beta1.PeriodicVestingAccount) + - [Scalar Value Types](#scalar-value-types) - +
-## cosmos/auth/v1beta1/auth.proto +## ibc/applications/transfer/v1/transfer.proto - + -### BaseAccount -BaseAccount defines a base account type. It contains all the necessary fields -for basic account functionality. Any custom account type should extend this -type for additional functionality (e.g. vesting). +### DenomTrace +DenomTrace contains the base denomination for ICS20 fungible tokens and the +source tracing information path. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | | -| `pub_key` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `account_number` | [uint64](#uint64) | | | -| `sequence` | [uint64](#uint64) | | | +| `path` | [string](#string) | | path defines the chain of port/channel identifiers used for tracing the source of the fungible token. | +| `base_denom` | [string](#string) | | base denomination of the relayed fungible token. | - + -### ModuleAccount -ModuleAccount defines an account for modules that holds coins on a pool. +### FungibleTokenPacketData +FungibleTokenPacketData defines a struct for the packet payload +See FungibleTokenPacketData spec: +https://github.com/cosmos/ics/tree/master/spec/ics-020-fungible-token-transfer#data-structures | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `base_account` | [BaseAccount](#cosmos.auth.v1beta1.BaseAccount) | | | -| `name` | [string](#string) | | | -| `permissions` | [string](#string) | repeated | | +| `denom` | [string](#string) | | the token denomination to be transferred | +| `amount` | [uint64](#uint64) | | the token amount to be transferred | +| `sender` | [string](#string) | | the sender address | +| `receiver` | [string](#string) | | the recipient address on the destination chain | - + ### Params -Params defines the parameters for the auth module. +Params defines the set of IBC transfer parameters. +NOTE: To prevent a single token from being transferred, set the +TransfersEnabled parameter to true and then set the bank module's SendEnabled +parameter for the denomination to false. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `max_memo_characters` | [uint64](#uint64) | | | -| `tx_sig_limit` | [uint64](#uint64) | | | -| `tx_size_cost_per_byte` | [uint64](#uint64) | | | -| `sig_verify_cost_ed25519` | [uint64](#uint64) | | | -| `sig_verify_cost_secp256k1` | [uint64](#uint64) | | | +| `send_enabled` | [bool](#bool) | | send_enabled enables or disables all cross-chain token transfers from this chain. | +| `receive_enabled` | [bool](#bool) | | receive_enabled enables or disables all cross-chain token transfers to this chain. | @@ -762,23 +762,24 @@ Params defines the parameters for the auth module. - + -## cosmos/auth/v1beta1/genesis.proto +## ibc/applications/transfer/v1/genesis.proto - + ### GenesisState -GenesisState defines the auth module's genesis state. +GenesisState defines the ibc-transfer genesis state | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.auth.v1beta1.Params) | | params defines all the paramaters of the module. | -| `accounts` | [google.protobuf.Any](#google.protobuf.Any) | repeated | accounts are the accounts present at genesis. | +| `port_id` | [string](#string) | | | +| `denom_traces` | [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) | repeated | | +| `params` | [Params](#ibc.applications.transfer.v1.Params) | | | @@ -794,62 +795,159 @@ GenesisState defines the auth module's genesis state. - + -## cosmos/auth/v1beta1/query.proto +## lbm/base/query/v1beta1/pagination.proto - + -### QueryAccountRequest -QueryAccountRequest is the request type for the Query/Account RPC method. +### PageRequest +PageRequest is to be embedded in gRPC request messages for efficient +pagination. Ex: + + message SomeRequest { + Foo some_parameter = 1; + PageRequest pagination = 2; + } | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address defines the address to query for. | +| `key` | [bytes](#bytes) | | key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set. | +| `offset` | [uint64](#uint64) | | offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set. | +| `limit` | [uint64](#uint64) | | limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app. | +| `count_total` | [bool](#bool) | | count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set. | - + -### QueryAccountResponse -QueryAccountResponse is the response type for the Query/Account RPC method. +### PageResponse +PageResponse is to be embedded in gRPC response messages where the +corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `account` | [google.protobuf.Any](#google.protobuf.Any) | | account defines the account of the corresponding address. | +| `next_key` | [bytes](#bytes) | | next_key is the key to be passed to PageRequest.key to query the next page most efficiently | +| `total` | [uint64](#uint64) | | total is total number of results available if PageRequest.count_total was set, its value is undefined otherwise | + - + -### QueryParamsRequest -QueryParamsRequest is the request type for the Query/Params RPC method. + + + + +## ibc/applications/transfer/v1/query.proto - -### QueryParamsResponse -QueryParamsResponse is the response type for the Query/Params RPC method. + -| Field | Type | Label | Description | +### QueryDenomTraceRequest +QueryDenomTraceRequest is the request type for the Query/DenomTrace RPC +method + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `hash` | [string](#string) | | hash (in hex format) of the denomination trace information. | + + + + + + + + +### QueryDenomTraceResponse +QueryDenomTraceResponse is the response type for the Query/DenomTrace RPC +method. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `denom_trace` | [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) | | denom_trace returns the requested denomination trace information. | + + + + + + + + +### QueryDenomTracesRequest +QueryConnectionsRequest is the request type for the Query/DenomTraces RPC +method + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | + + + + + + + + +### QueryDenomTracesResponse +QueryConnectionsResponse is the response type for the Query/DenomTraces RPC +method. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `denom_traces` | [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) | repeated | denom_traces returns all denominations trace information. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | + + + + + + + + +### QueryParamsRequest +QueryParamsRequest is the request type for the Query/Params RPC method. + + + + + + + + +### QueryParamsResponse +QueryParamsResponse is the response type for the Query/Params RPC method. + + +| Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.auth.v1beta1.Params) | | params defines the parameters of the module. | +| `params` | [Params](#ibc.applications.transfer.v1.Params) | | params defines the parameters of the module. | @@ -862,28 +960,29 @@ QueryParamsResponse is the response type for the Query/Params RPC method. - + ### Query -Query defines the gRPC querier service. +Query provides defines the gRPC querier service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Account` | [QueryAccountRequest](#cosmos.auth.v1beta1.QueryAccountRequest) | [QueryAccountResponse](#cosmos.auth.v1beta1.QueryAccountResponse) | Account returns account details based on address. | GET|/cosmos/auth/v1beta1/accounts/{address}| -| `Params` | [QueryParamsRequest](#cosmos.auth.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.auth.v1beta1.QueryParamsResponse) | Params queries all parameters. | GET|/cosmos/auth/v1beta1/params| +| `DenomTrace` | [QueryDenomTraceRequest](#ibc.applications.transfer.v1.QueryDenomTraceRequest) | [QueryDenomTraceResponse](#ibc.applications.transfer.v1.QueryDenomTraceResponse) | DenomTrace queries a denomination trace information. | GET|/ibc/applications/transfer/v1beta1/denom_traces/{hash}| +| `DenomTraces` | [QueryDenomTracesRequest](#ibc.applications.transfer.v1.QueryDenomTracesRequest) | [QueryDenomTracesResponse](#ibc.applications.transfer.v1.QueryDenomTracesResponse) | DenomTraces queries all denomination traces. | GET|/ibc/applications/transfer/v1beta1/denom_traces| +| `Params` | [QueryParamsRequest](#ibc.applications.transfer.v1.QueryParamsRequest) | [QueryParamsResponse](#ibc.applications.transfer.v1.QueryParamsResponse) | Params queries all parameters of the ibc-transfer module. | GET|/ibc/applications/transfer/v1beta1/params| - + -## cosmos/base/v1beta1/coin.proto +## lbm/base/v1beta1/coin.proto - + ### Coin Coin defines a token with a denomination and an amount. @@ -902,7 +1001,7 @@ signatures required by gogoproto. - + ### DecCoin DecCoin defines a token with a denomination and a decimal amount. @@ -921,7 +1020,7 @@ signatures required by gogoproto. - + ### DecProto DecProto defines a Protobuf wrapper around a Dec object. @@ -936,7 +1035,7 @@ DecProto defines a Protobuf wrapper around a Dec object. - + ### IntProto IntProto defines a Protobuf wrapper around an Int object. @@ -960,125 +1059,116 @@ IntProto defines a Protobuf wrapper around an Int object. - + -## cosmos/bank/v1beta1/bank.proto +## ibc/core/client/v1/client.proto - + -### DenomUnit -DenomUnit represents a struct that describes a given -denomination unit of the basic token. +### ClientConsensusStates +ClientConsensusStates defines all the stored consensus states for a given +client. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `denom` | [string](#string) | | denom represents the string name of the given denom unit (e.g uatom). | -| `exponent` | [uint32](#uint32) | | exponent represents power of 10 exponent that one must raise the base_denom to in order to equal the given DenomUnit's denom 1 denom = 1^exponent base_denom (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with exponent = 6, thus: 1 atom = 10^6 uatom). | -| `aliases` | [string](#string) | repeated | aliases is a list of string aliases for the given denom | +| `client_id` | [string](#string) | | client identifier | +| `consensus_states` | [ConsensusStateWithHeight](#ibc.core.client.v1.ConsensusStateWithHeight) | repeated | consensus states and their heights associated with the client | - + -### Input -Input models transaction input. +### ClientUpdateProposal +ClientUpdateProposal is a governance proposal. If it passes, the client is +updated with the provided header. The update may fail if the header is not +valid given certain conditions specified by the client implementation. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | | -| `coins` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `title` | [string](#string) | | the title of the update proposal | +| `description` | [string](#string) | | the description of the proposal | +| `client_id` | [string](#string) | | the client identifier for the client to be updated if the proposal passes | +| `header` | [google.protobuf.Any](#google.protobuf.Any) | | the header used to update the client if the proposal passes | - + -### Metadata -Metadata represents a struct that describes -a basic token. +### ConsensusStateWithHeight +ConsensusStateWithHeight defines a consensus state with an additional height field. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `description` | [string](#string) | | | -| `denom_units` | [DenomUnit](#cosmos.bank.v1beta1.DenomUnit) | repeated | denom_units represents the list of DenomUnit's for a given coin | -| `base` | [string](#string) | | base represents the base denom (should be the DenomUnit with exponent = 0). | -| `display` | [string](#string) | | display indicates the suggested denom that should be displayed in clients. | - - - - - - - - -### Output -Output models transaction outputs. - +| `height` | [Height](#ibc.core.client.v1.Height) | | consensus state height | +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state | -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | | -| `coins` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | + - +### Height +Height is a monotonically increasing data type +that can be compared against another Height for the purposes of updating and +freezing clients -### Params -Params defines the parameters for the bank module. +Normally the RevisionHeight is incremented at each height while keeping RevisionNumber +the same. However some consensus algorithms may choose to reset the +height in certain conditions e.g. hard forks, state-machine breaking changes +In these cases, the RevisionNumber is incremented so that height continues to +be monitonically increasing even as the RevisionHeight gets reset | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `send_enabled` | [SendEnabled](#cosmos.bank.v1beta1.SendEnabled) | repeated | | -| `default_send_enabled` | [bool](#bool) | | | +| `revision_number` | [uint64](#uint64) | | the revision that the client is currently on | +| `revision_height` | [uint64](#uint64) | | the height within the given revision | - + -### SendEnabled -SendEnabled maps coin denom to a send_enabled status (whether a denom is -sendable). +### IdentifiedClientState +IdentifiedClientState defines a client state with an additional client +identifier field. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `denom` | [string](#string) | | | -| `enabled` | [bool](#bool) | | | +| `client_id` | [string](#string) | | client identifier | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | client state | - + -### Supply -Supply represents a struct that passively keeps track of the total supply -amounts in the network. +### Params +Params defines the set of IBC light client parameters. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `total` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `allowed_clients` | [string](#string) | repeated | allowed_clients defines the list of allowed client state types. | @@ -1094,42 +1184,40 @@ amounts in the network. - + -## cosmos/bank/v1beta1/genesis.proto +## ibc/applications/transfer/v1/tx.proto - + -### Balance -Balance defines an account address and balance pair used in the bank module's -genesis state. +### MsgTransfer +MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between +ICS20 enabled chains. See ICS Spec here: +https://github.com/cosmos/ics/tree/master/spec/ics-020-fungible-token-transfer#data-structures | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address is the address of the balance holder. | -| `coins` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | coins defines the different coins this balance holds. | - - +| `source_port` | [string](#string) | | the port on which the packet will be sent | +| `source_channel` | [string](#string) | | the channel by which the packet will be sent | +| `token` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | the tokens to be transferred | +| `sender` | [string](#string) | | the sender address | +| `receiver` | [string](#string) | | the recipient address on the destination chain | +| `timeout_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | Timeout height relative to the current block height. The timeout is disabled when set to 0. | +| `timeout_timestamp` | [uint64](#uint64) | | Timeout timestamp (in nanoseconds) relative to the current block timestamp. The timeout is disabled when set to 0. | - -### GenesisState -GenesisState defines the bank module's genesis state. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.bank.v1beta1.Params) | | params defines all the paramaters of the module. | -| `balances` | [Balance](#cosmos.bank.v1beta1.Balance) | repeated | balances is an array containing the balances of all the accounts. | -| `supply` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | supply represents the total supply. | -| `denom_metadata` | [Metadata](#cosmos.bank.v1beta1.Metadata) | repeated | denom_metadata defines the metadata of the differents coins. | +### MsgTransferResponse +MsgTransferResponse defines the Msg/Transfer response type. @@ -1141,955 +1229,1043 @@ GenesisState defines the bank module's genesis state. + + + +### Msg +Msg defines the ibc/transfer Msg service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Transfer` | [MsgTransfer](#ibc.applications.transfer.v1.MsgTransfer) | [MsgTransferResponse](#ibc.applications.transfer.v1.MsgTransferResponse) | Transfer defines a rpc handler method for MsgTransfer. | | + - + -## cosmos/base/query/v1beta1/pagination.proto - +## ibc/core/channel/v1/channel.proto - -### PageRequest -PageRequest is to be embedded in gRPC request messages for efficient -pagination. Ex: + - message SomeRequest { - Foo some_parameter = 1; - PageRequest pagination = 2; - } +### Acknowledgement +Acknowledgement is the recommended acknowledgement format to be used by +app-specific protocols. +NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental +conflicts with other protobuf message formats used for acknowledgements. +The first byte of any message with this format will be the non-ASCII values +`0xaa` (result) or `0xb2` (error). Implemented as defined by ICS: +https://github.com/cosmos/ics/tree/master/spec/ics-004-channel-and-packet-semantics#acknowledgement-envelope | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set. | -| `offset` | [uint64](#uint64) | | offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set. | -| `limit` | [uint64](#uint64) | | limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app. | -| `count_total` | [bool](#bool) | | count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set. | - +| `result` | [bytes](#bytes) | | | +| `error` | [string](#string) | | | - -### PageResponse -PageResponse is to be embedded in gRPC response messages where the -corresponding request message has used PageRequest. + - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } +### Channel +Channel defines pipeline for exactly-once packet delivery between specific +modules on separate blockchains, which has at least one end capable of +sending packets and one end capable of receiving packets. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `next_key` | [bytes](#bytes) | | next_key is the key to be passed to PageRequest.key to query the next page most efficiently | -| `total` | [uint64](#uint64) | | total is total number of results available if PageRequest.count_total was set, its value is undefined otherwise | +| `state` | [State](#ibc.core.channel.v1.State) | | current state of the channel end | +| `ordering` | [Order](#ibc.core.channel.v1.Order) | | whether the channel is ordered or unordered | +| `counterparty` | [Counterparty](#ibc.core.channel.v1.Counterparty) | | counterparty channel end | +| `connection_hops` | [string](#string) | repeated | list of connection identifiers, in order, along which packets sent on this channel will travel | +| `version` | [string](#string) | | opaque channel version, which is agreed upon during the handshake | - - + - +### Counterparty +Counterparty defines a channel end counterparty - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `port_id` | [string](#string) | | port on the counterparty chain which owns the other end of the channel. | +| `channel_id` | [string](#string) | | channel end on the counterparty chain | - - -## cosmos/bank/v1beta1/query.proto - + -### QueryAllBalancesRequest -QueryBalanceRequest is the request type for the Query/AllBalances RPC method. +### IdentifiedChannel +IdentifiedChannel defines a channel with additional port and channel +identifier fields. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address is the address to query balances for. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `state` | [State](#ibc.core.channel.v1.State) | | current state of the channel end | +| `ordering` | [Order](#ibc.core.channel.v1.Order) | | whether the channel is ordered or unordered | +| `counterparty` | [Counterparty](#ibc.core.channel.v1.Counterparty) | | counterparty channel end | +| `connection_hops` | [string](#string) | repeated | list of connection identifiers, in order, along which packets sent on this channel will travel | +| `version` | [string](#string) | | opaque channel version, which is agreed upon during the handshake | +| `port_id` | [string](#string) | | port identifier | +| `channel_id` | [string](#string) | | channel identifier | - + -### QueryAllBalancesResponse -QueryAllBalancesResponse is the response type for the Query/AllBalances RPC -method. +### Packet +Packet defines a type that carries data across different chains through IBC | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `balances` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | balances is the balances of all the coins. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `sequence` | [uint64](#uint64) | | number corresponds to the order of sends and receives, where a Packet with an earlier sequence number must be sent and received before a Packet with a later sequence number. | +| `source_port` | [string](#string) | | identifies the port on the sending chain. | +| `source_channel` | [string](#string) | | identifies the channel end on the sending chain. | +| `destination_port` | [string](#string) | | identifies the port on the receiving chain. | +| `destination_channel` | [string](#string) | | identifies the channel end on the receiving chain. | +| `data` | [bytes](#bytes) | | actual opaque bytes transferred directly to the application module | +| `timeout_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | block height after which the packet times out | +| `timeout_timestamp` | [uint64](#uint64) | | block timestamp (in nanoseconds) after which the packet times out | - + -### QueryBalanceRequest -QueryBalanceRequest is the request type for the Query/Balance RPC method. +### PacketState +PacketState defines the generic type necessary to retrieve and store +packet commitments, acknowledgements, and receipts. +Caller is responsible for knowing the context necessary to interpret this +state as a commitment, acknowledgement, or a receipt. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address is the address to query balances for. | -| `denom` | [string](#string) | | denom is the coin denom to query balances for. | +| `port_id` | [string](#string) | | channel port identifier. | +| `channel_id` | [string](#string) | | channel unique identifier. | +| `sequence` | [uint64](#uint64) | | packet sequence. | +| `data` | [bytes](#bytes) | | embedded data that represents packet state. | + + - + -### QueryBalanceResponse -QueryBalanceResponse is the response type for the Query/Balance RPC method. +### Order +Order defines if a channel is ORDERED or UNORDERED +| Name | Number | Description | +| ---- | ------ | ----------- | +| ORDER_NONE_UNSPECIFIED | 0 | zero-value for channel ordering | +| ORDER_UNORDERED | 1 | packets can be delivered in any order, which may differ from the order in which they were sent. | +| ORDER_ORDERED | 2 | packets are delivered exactly in the order which they were sent | -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `balance` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | balance is the balance of the coin. | + +### State +State defines if a channel is in one of the following states: +CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. +| Name | Number | Description | +| ---- | ------ | ----------- | +| STATE_UNINITIALIZED_UNSPECIFIED | 0 | Default State | +| STATE_INIT | 1 | A channel has just started the opening handshake. | +| STATE_TRYOPEN | 2 | A channel has acknowledged the handshake step on the counterparty chain. | +| STATE_OPEN | 3 | A channel has completed the handshake. Open channels are ready to send and receive packets. | +| STATE_CLOSED | 4 | A channel has been closed and can no longer be used to send or receive packets. | - + -### QueryDenomMetadataRequest -QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `denom` | [string](#string) | | denom is the coin denom to query the metadata for. | + + +## ibc/core/channel/v1/genesis.proto - + -### QueryDenomMetadataResponse -QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC -method. +### GenesisState +GenesisState defines the ibc channel submodule's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `metadata` | [Metadata](#cosmos.bank.v1beta1.Metadata) | | metadata describes and provides all the client information for the requested token. | +| `channels` | [IdentifiedChannel](#ibc.core.channel.v1.IdentifiedChannel) | repeated | | +| `acknowledgements` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | +| `commitments` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | +| `receipts` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | +| `send_sequences` | [PacketSequence](#ibc.core.channel.v1.PacketSequence) | repeated | | +| `recv_sequences` | [PacketSequence](#ibc.core.channel.v1.PacketSequence) | repeated | | +| `ack_sequences` | [PacketSequence](#ibc.core.channel.v1.PacketSequence) | repeated | | +| `next_channel_sequence` | [uint64](#uint64) | | the sequence for the next generated channel identifier | - + -### QueryDenomsMetadataRequest -QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. +### PacketSequence +PacketSequence defines the genesis type necessary to retrieve and store +next send and receive sequences. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `port_id` | [string](#string) | | | +| `channel_id` | [string](#string) | | | +| `sequence` | [uint64](#uint64) | | | + - + -### QueryDenomsMetadataResponse -QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC -method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `metadatas` | [Metadata](#cosmos.bank.v1beta1.Metadata) | repeated | metadata provides the client information for all the registered tokens. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | + + +## ibc/core/channel/v1/query.proto - + -### QueryParamsRequest -QueryParamsRequest defines the request type for querying x/bank parameters. +### QueryChannelClientStateRequest +QueryChannelClientStateRequest is the request type for the Query/ClientState +RPC method + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | - + -### QueryParamsResponse -QueryParamsResponse defines the response type for querying x/bank parameters. +### QueryChannelClientStateResponse +QueryChannelClientStateResponse is the Response type for the +Query/QueryChannelClientState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.bank.v1beta1.Params) | | | +| `identified_client_state` | [ibc.core.client.v1.IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | | client state associated with the channel | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### QuerySupplyOfRequest -QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method. +### QueryChannelConsensusStateRequest +QueryChannelConsensusStateRequest is the request type for the +Query/ConsensusState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `denom` | [string](#string) | | denom is the coin denom to query balances for. | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `revision_number` | [uint64](#uint64) | | revision number of the consensus state | +| `revision_height` | [uint64](#uint64) | | revision height of the consensus state | - + -### QuerySupplyOfResponse -QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. +### QueryChannelConsensusStateResponse +QueryChannelClientStateResponse is the Response type for the +Query/QueryChannelClientState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | amount is the supply of the coin. | - - +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the channel | +| `client_id` | [string](#string) | | client ID associated with the consensus state | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - -### QueryTotalSupplyRequest -QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC -method. + +### QueryChannelRequest +QueryChannelRequest is the request type for the Query/Channel RPC method +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | - -### QueryTotalSupplyResponse -QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC -method -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `supply` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | supply is the supply of the coins | + +### QueryChannelResponse +QueryChannelResponse is the response type for the Query/Channel RPC method. +Besides the Channel end, it includes a proof and the height from which the +proof was retrieved. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `channel` | [Channel](#ibc.core.channel.v1.Channel) | | channel associated with the request identifiers | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - - - - -### Query -Query defines the gRPC querier service. + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Balance` | [QueryBalanceRequest](#cosmos.bank.v1beta1.QueryBalanceRequest) | [QueryBalanceResponse](#cosmos.bank.v1beta1.QueryBalanceResponse) | Balance queries the balance of a single coin for a single account. | GET|/cosmos/bank/v1beta1/balances/{address}/{denom}| -| `AllBalances` | [QueryAllBalancesRequest](#cosmos.bank.v1beta1.QueryAllBalancesRequest) | [QueryAllBalancesResponse](#cosmos.bank.v1beta1.QueryAllBalancesResponse) | AllBalances queries the balance of all coins for a single account. | GET|/cosmos/bank/v1beta1/balances/{address}| -| `TotalSupply` | [QueryTotalSupplyRequest](#cosmos.bank.v1beta1.QueryTotalSupplyRequest) | [QueryTotalSupplyResponse](#cosmos.bank.v1beta1.QueryTotalSupplyResponse) | TotalSupply queries the total supply of all coins. | GET|/cosmos/bank/v1beta1/supply| -| `SupplyOf` | [QuerySupplyOfRequest](#cosmos.bank.v1beta1.QuerySupplyOfRequest) | [QuerySupplyOfResponse](#cosmos.bank.v1beta1.QuerySupplyOfResponse) | SupplyOf queries the supply of a single coin. | GET|/cosmos/bank/v1beta1/supply/{denom}| -| `Params` | [QueryParamsRequest](#cosmos.bank.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.bank.v1beta1.QueryParamsResponse) | Params queries the parameters of x/bank module. | GET|/cosmos/bank/v1beta1/params| -| `DenomMetadata` | [QueryDenomMetadataRequest](#cosmos.bank.v1beta1.QueryDenomMetadataRequest) | [QueryDenomMetadataResponse](#cosmos.bank.v1beta1.QueryDenomMetadataResponse) | DenomsMetadata queries the client metadata of a given coin denomination. | GET|/cosmos/bank/v1beta1/denoms_metadata/{denom}| -| `DenomsMetadata` | [QueryDenomsMetadataRequest](#cosmos.bank.v1beta1.QueryDenomsMetadataRequest) | [QueryDenomsMetadataResponse](#cosmos.bank.v1beta1.QueryDenomsMetadataResponse) | DenomsMetadata queries the client metadata for all registered coin denominations. | GET|/cosmos/bank/v1beta1/denoms_metadata| +### QueryChannelsRequest +QueryChannelsRequest is the request type for the Query/Channels RPC method - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination request | - - -## cosmos/bank/v1beta1/tx.proto - + -### MsgMultiSend -MsgMultiSend represents an arbitrary multi-in, multi-out send message. +### QueryChannelsResponse +QueryChannelsResponse is the response type for the Query/Channels RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `inputs` | [Input](#cosmos.bank.v1beta1.Input) | repeated | | -| `outputs` | [Output](#cosmos.bank.v1beta1.Output) | repeated | | +| `channels` | [IdentifiedChannel](#ibc.core.channel.v1.IdentifiedChannel) | repeated | list of stored channels of the chain. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - + -### MsgMultiSendResponse -MsgMultiSendResponse defines the Msg/MultiSend response type. +### QueryConnectionChannelsRequest +QueryConnectionChannelsRequest is the request type for the +Query/QueryConnectionChannels RPC method + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `connection` | [string](#string) | | connection unique identifier | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination request | - + -### MsgSend -MsgSend represents a message to send coins from one account to another. +### QueryConnectionChannelsResponse +QueryConnectionChannelsResponse is the Response type for the +Query/QueryConnectionChannels RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `from_address` | [string](#string) | | | -| `to_address` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `channels` | [IdentifiedChannel](#ibc.core.channel.v1.IdentifiedChannel) | repeated | list of channels associated with a connection. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - + -### MsgSendResponse -MsgSendResponse defines the Msg/Send response type. +### QueryNextSequenceReceiveRequest +QueryNextSequenceReceiveRequest is the request type for the +Query/QueryNextSequenceReceiveRequest RPC method +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | - - - + - +### QueryNextSequenceReceiveResponse +QuerySequenceResponse is the request type for the +Query/QueryNextSequenceReceiveResponse RPC method -### Msg -Msg defines the bank Msg service. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Send` | [MsgSend](#cosmos.bank.v1beta1.MsgSend) | [MsgSendResponse](#cosmos.bank.v1beta1.MsgSendResponse) | Send defines a method for sending coins from one account to another account. | | -| `MultiSend` | [MsgMultiSend](#cosmos.bank.v1beta1.MsgMultiSend) | [MsgMultiSendResponse](#cosmos.bank.v1beta1.MsgMultiSendResponse) | MultiSend defines a method for sending coins from some accounts to other accounts. | | +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `next_sequence_receive` | [uint64](#uint64) | | next sequence receive number | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - - - - -## cosmos/base/abci/v1beta1/abci.proto + - - -### ABCIMessageLog -ABCIMessageLog defines a structure containing an indexed tx ABCI message log. +### QueryPacketAcknowledgementRequest +QueryPacketAcknowledgementRequest is the request type for the +Query/PacketAcknowledgement RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `msg_index` | [uint32](#uint32) | | | -| `log` | [string](#string) | | | -| `events` | [StringEvent](#cosmos.base.abci.v1beta1.StringEvent) | repeated | Events contains a slice of Event objects that were emitted during some execution. | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `sequence` | [uint64](#uint64) | | packet sequence | - + -### Attribute -Attribute defines an attribute wrapper where the key and value are -strings instead of raw bytes. +### QueryPacketAcknowledgementResponse +QueryPacketAcknowledgementResponse defines the client query response for a +packet which also includes a proof and the height from which the +proof was retrieved | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [string](#string) | | | -| `value` | [string](#string) | | | +| `acknowledgement` | [bytes](#bytes) | | packet associated with the request fields | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### GasInfo -GasInfo defines tx execution gas context. +### QueryPacketAcknowledgementsRequest +QueryPacketAcknowledgementsRequest is the request type for the +Query/QueryPacketCommitments RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `gas_wanted` | [uint64](#uint64) | | GasWanted is the maximum units of work we allow this tx to perform. | -| `gas_used` | [uint64](#uint64) | | GasUsed is the amount of gas actually consumed. | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination request | - + -### MsgData -MsgData defines the data returned in a Result object during message -execution. +### QueryPacketAcknowledgementsResponse +QueryPacketAcknowledgemetsResponse is the request type for the +Query/QueryPacketAcknowledgements RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `msg_type` | [string](#string) | | | -| `data` | [bytes](#bytes) | | | +| `acknowledgements` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - + -### Result -Result is the union of ResponseFormat and ResponseCheckTx. +### QueryPacketCommitmentRequest +QueryPacketCommitmentRequest is the request type for the +Query/PacketCommitment RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `data` | [bytes](#bytes) | | Data is any data returned from message or handler execution. It MUST be length prefixed in order to separate data from multiple message executions. | -| `log` | [string](#string) | | Log contains the log information from message or handler execution. | -| `events` | [ostracon.abci.Event](#ostracon.abci.Event) | repeated | Events contains a slice of Event objects that were emitted during message or handler execution. | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `sequence` | [uint64](#uint64) | | packet sequence | - + -### SearchTxsResult -SearchTxsResult defines a structure for querying txs pageable +### QueryPacketCommitmentResponse +QueryPacketCommitmentResponse defines the client query response for a packet +which also includes a proof and the height from which the proof was +retrieved | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `total_count` | [uint64](#uint64) | | Count of all txs | -| `count` | [uint64](#uint64) | | Count of txs in current page | -| `page_number` | [uint64](#uint64) | | Index of current page, start from 1 | -| `page_total` | [uint64](#uint64) | | Count of total pages | -| `limit` | [uint64](#uint64) | | Max count txs per page | -| `txs` | [TxResponse](#cosmos.base.abci.v1beta1.TxResponse) | repeated | List of txs in current page | +| `commitment` | [bytes](#bytes) | | packet associated with the request fields | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### SimulationResponse -SimulationResponse defines the response generated when a transaction is -successfully simulated. +### QueryPacketCommitmentsRequest +QueryPacketCommitmentsRequest is the request type for the +Query/QueryPacketCommitments RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `gas_info` | [GasInfo](#cosmos.base.abci.v1beta1.GasInfo) | | | -| `result` | [Result](#cosmos.base.abci.v1beta1.Result) | | | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination request | - + -### StringEvent -StringEvent defines en Event object wrapper where all the attributes -contain key/value pairs that are strings instead of raw bytes. +### QueryPacketCommitmentsResponse +QueryPacketCommitmentsResponse is the request type for the +Query/QueryPacketCommitments RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `type` | [string](#string) | | | -| `attributes` | [Attribute](#cosmos.base.abci.v1beta1.Attribute) | repeated | | +| `commitments` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - + -### TxMsgData -TxMsgData defines a list of MsgData. A transaction will have a MsgData object -for each message. +### QueryPacketReceiptRequest +QueryPacketReceiptRequest is the request type for the +Query/PacketReceipt RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `data` | [MsgData](#cosmos.base.abci.v1beta1.MsgData) | repeated | | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `sequence` | [uint64](#uint64) | | packet sequence | - + -### TxResponse -TxResponse defines a structure containing relevant tx data and metadata. The -tags are stringified and the log is JSON decoded. +### QueryPacketReceiptResponse +QueryPacketReceiptResponse defines the client query response for a packet receipt +which also includes a proof, and the height from which the proof was +retrieved | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `height` | [int64](#int64) | | The block height | -| `txhash` | [string](#string) | | The transaction hash. | -| `codespace` | [string](#string) | | Namespace for the Code | -| `code` | [uint32](#uint32) | | Response code. | -| `data` | [string](#string) | | Result bytes, if any. | -| `raw_log` | [string](#string) | | The output of the application's logger (raw string). May be non-deterministic. | -| `logs` | [ABCIMessageLog](#cosmos.base.abci.v1beta1.ABCIMessageLog) | repeated | The output of the application's logger (typed). May be non-deterministic. | -| `info` | [string](#string) | | Additional information. May be non-deterministic. | -| `gas_wanted` | [int64](#int64) | | Amount of gas requested for transaction. | -| `gas_used` | [int64](#int64) | | Amount of gas consumed by transaction. | -| `tx` | [google.protobuf.Any](#google.protobuf.Any) | | The request transaction bytes. | -| `timestamp` | [string](#string) | | Time of the previous block. For heights > 1, it's the weighted median of the timestamps of the valid votes in the block.LastCommit. For height == 1, it's genesis time. | +| `received` | [bool](#bool) | | success flag for if receipt exists | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - - + - +### QueryUnreceivedAcksRequest +QueryUnreceivedAcks is the request type for the +Query/UnreceivedAcks RPC method - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `packet_ack_sequences` | [uint64](#uint64) | repeated | list of acknowledgement sequences | - - -## cosmos/base/kv/v1beta1/kv.proto - + -### Pair -Pair defines a key/value bytes tuple. +### QueryUnreceivedAcksResponse +QueryUnreceivedAcksResponse is the response type for the +Query/UnreceivedAcks RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | | -| `value` | [bytes](#bytes) | | | +| `sequences` | [uint64](#uint64) | repeated | list of unreceived acknowledgement sequences | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - + -### Pairs -Pairs defines a repeated slice of Pair objects. +### QueryUnreceivedPacketsRequest +QueryUnreceivedPacketsRequest is the request type for the +Query/UnreceivedPackets RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pairs` | [Pair](#cosmos.base.kv.v1beta1.Pair) | repeated | | +| `port_id` | [string](#string) | | port unique identifier | +| `channel_id` | [string](#string) | | channel unique identifier | +| `packet_commitment_sequences` | [uint64](#uint64) | repeated | list of packet sequences | - - + - +### QueryUnreceivedPacketsResponse +QueryUnreceivedPacketsResponse is the response type for the +Query/UnreceivedPacketCommitments RPC method - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `sequences` | [uint64](#uint64) | repeated | list of unreceived packet sequences | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - - -## cosmos/base/ostracon/v1beta1/query.proto + - + -### GetBlockByHeightRequest -GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `height` | [int64](#int64) | | | + + +### Query +Query provides defines the gRPC querier service + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Channel` | [QueryChannelRequest](#ibc.core.channel.v1.QueryChannelRequest) | [QueryChannelResponse](#ibc.core.channel.v1.QueryChannelResponse) | Channel queries an IBC Channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}| +| `Channels` | [QueryChannelsRequest](#ibc.core.channel.v1.QueryChannelsRequest) | [QueryChannelsResponse](#ibc.core.channel.v1.QueryChannelsResponse) | Channels queries all the IBC channels of a chain. | GET|/ibc/core/channel/v1beta1/channels| +| `ConnectionChannels` | [QueryConnectionChannelsRequest](#ibc.core.channel.v1.QueryConnectionChannelsRequest) | [QueryConnectionChannelsResponse](#ibc.core.channel.v1.QueryConnectionChannelsResponse) | ConnectionChannels queries all the channels associated with a connection end. | GET|/ibc/core/channel/v1beta1/connections/{connection}/channels| +| `ChannelClientState` | [QueryChannelClientStateRequest](#ibc.core.channel.v1.QueryChannelClientStateRequest) | [QueryChannelClientStateResponse](#ibc.core.channel.v1.QueryChannelClientStateResponse) | ChannelClientState queries for the client state for the channel associated with the provided channel identifiers. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/client_state| +| `ChannelConsensusState` | [QueryChannelConsensusStateRequest](#ibc.core.channel.v1.QueryChannelConsensusStateRequest) | [QueryChannelConsensusStateResponse](#ibc.core.channel.v1.QueryChannelConsensusStateResponse) | ChannelConsensusState queries for the consensus state for the channel associated with the provided channel identifiers. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/consensus_state/revision/{revision_number}/height/{revision_height}| +| `PacketCommitment` | [QueryPacketCommitmentRequest](#ibc.core.channel.v1.QueryPacketCommitmentRequest) | [QueryPacketCommitmentResponse](#ibc.core.channel.v1.QueryPacketCommitmentResponse) | PacketCommitment queries a stored packet commitment hash. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments/{sequence}| +| `PacketCommitments` | [QueryPacketCommitmentsRequest](#ibc.core.channel.v1.QueryPacketCommitmentsRequest) | [QueryPacketCommitmentsResponse](#ibc.core.channel.v1.QueryPacketCommitmentsResponse) | PacketCommitments returns all the packet commitments hashes associated with a channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments| +| `PacketReceipt` | [QueryPacketReceiptRequest](#ibc.core.channel.v1.QueryPacketReceiptRequest) | [QueryPacketReceiptResponse](#ibc.core.channel.v1.QueryPacketReceiptResponse) | PacketReceipt queries if a given packet sequence has been received on the queried chain | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_receipts/{sequence}| +| `PacketAcknowledgement` | [QueryPacketAcknowledgementRequest](#ibc.core.channel.v1.QueryPacketAcknowledgementRequest) | [QueryPacketAcknowledgementResponse](#ibc.core.channel.v1.QueryPacketAcknowledgementResponse) | PacketAcknowledgement queries a stored packet acknowledgement hash. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_acks/{sequence}| +| `PacketAcknowledgements` | [QueryPacketAcknowledgementsRequest](#ibc.core.channel.v1.QueryPacketAcknowledgementsRequest) | [QueryPacketAcknowledgementsResponse](#ibc.core.channel.v1.QueryPacketAcknowledgementsResponse) | PacketAcknowledgements returns all the packet acknowledgements associated with a channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_acknowledgements| +| `UnreceivedPackets` | [QueryUnreceivedPacketsRequest](#ibc.core.channel.v1.QueryUnreceivedPacketsRequest) | [QueryUnreceivedPacketsResponse](#ibc.core.channel.v1.QueryUnreceivedPacketsResponse) | UnreceivedPackets returns all the unreceived IBC packets associated with a channel and sequences. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_commitment_sequences}/unreceived_packets| +| `UnreceivedAcks` | [QueryUnreceivedAcksRequest](#ibc.core.channel.v1.QueryUnreceivedAcksRequest) | [QueryUnreceivedAcksResponse](#ibc.core.channel.v1.QueryUnreceivedAcksResponse) | UnreceivedAcks returns all the unreceived IBC acknowledgements associated with a channel and sequences. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_ack_sequences}/unreceived_acks| +| `NextSequenceReceive` | [QueryNextSequenceReceiveRequest](#ibc.core.channel.v1.QueryNextSequenceReceiveRequest) | [QueryNextSequenceReceiveResponse](#ibc.core.channel.v1.QueryNextSequenceReceiveResponse) | NextSequenceReceive returns the next receive sequence for a given channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/next_sequence| + + + + +## ibc/core/channel/v1/tx.proto - -### GetBlockByHeightResponse -GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. + + +### MsgAcknowledgement +MsgAcknowledgement receives incoming IBC acknowledgement | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `block_id` | [ostracon.types.BlockID](#ostracon.types.BlockID) | | | -| `block` | [ostracon.types.Block](#ostracon.types.Block) | | | +| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | +| `acknowledgement` | [bytes](#bytes) | | | +| `proof_acked` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - + -### GetLatestBlockRequest -GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method. +### MsgAcknowledgementResponse +MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. - + -### GetLatestBlockResponse -GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method. +### MsgChannelCloseConfirm +MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B +to acknowledge the change of channel state to CLOSED on Chain A. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `block_id` | [ostracon.types.BlockID](#ostracon.types.BlockID) | | | -| `block` | [ostracon.types.Block](#ostracon.types.Block) | | | - - +| `port_id` | [string](#string) | | | +| `channel_id` | [string](#string) | | | +| `proof_init` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - -### GetLatestValidatorSetRequest -GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | +### MsgChannelCloseConfirmResponse +MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response type. - + -### GetLatestValidatorSetResponse -GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. +### MsgChannelCloseInit +MsgChannelCloseInit defines a msg sent by a Relayer to Chain A +to close a channel with Chain B. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `block_height` | [int64](#int64) | | | -| `validators` | [Validator](#cosmos.base.ostracon.v1beta1.Validator) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines an pagination for the response. | +| `port_id` | [string](#string) | | | +| `channel_id` | [string](#string) | | | +| `signer` | [string](#string) | | | - + -### GetNodeInfoRequest -GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method. +### MsgChannelCloseInitResponse +MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. - + -### GetNodeInfoResponse -GetNodeInfoResponse is the request type for the Query/GetNodeInfo RPC method. +### MsgChannelOpenAck +MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge +the change of channel state to TRYOPEN on Chain B. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `default_node_info` | [ostracon.p2p.DefaultNodeInfo](#ostracon.p2p.DefaultNodeInfo) | | | -| `application_version` | [VersionInfo](#cosmos.base.ostracon.v1beta1.VersionInfo) | | | +| `port_id` | [string](#string) | | | +| `channel_id` | [string](#string) | | | +| `counterparty_channel_id` | [string](#string) | | | +| `counterparty_version` | [string](#string) | | | +| `proof_try` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - + -### GetSyncingRequest -GetSyncingRequest is the request type for the Query/GetSyncing RPC method. +### MsgChannelOpenAckResponse +MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. - + -### GetSyncingResponse -GetSyncingResponse is the response type for the Query/GetSyncing RPC method. +### MsgChannelOpenConfirm +MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to +acknowledge the change of channel state to OPEN on Chain A. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `syncing` | [bool](#bool) | | | - - +| `port_id` | [string](#string) | | | +| `channel_id` | [string](#string) | | | +| `proof_ack` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - -### GetValidatorSetByHeightRequest -GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `height` | [int64](#int64) | | | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | +### MsgChannelOpenConfirmResponse +MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response type. - + -### GetValidatorSetByHeightResponse -GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. +### MsgChannelOpenInit +MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It +is called by a relayer on Chain A. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `block_height` | [int64](#int64) | | | -| `validators` | [Validator](#cosmos.base.ostracon.v1beta1.Validator) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines an pagination for the response. | - - +| `port_id` | [string](#string) | | | +| `channel` | [Channel](#ibc.core.channel.v1.Channel) | | | +| `signer` | [string](#string) | | | - -### Module -Module is the type for VersionInfo + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `path` | [string](#string) | | module path | -| `version` | [string](#string) | | module version | -| `sum` | [string](#string) | | checksum | +### MsgChannelOpenInitResponse +MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. - + -### Validator -Validator is the type for the validator-set. +### MsgChannelOpenTry +MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel +on Chain B. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | | -| `pub_key` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `voting_power` | [int64](#int64) | | | -| `proposer_priority` | [int64](#int64) | | | - +| `port_id` | [string](#string) | | | +| `previous_channel_id` | [string](#string) | | in the case of crossing hello's, when both chains call OpenInit, we need the channel identifier of the previous channel in state INIT | +| `channel` | [Channel](#ibc.core.channel.v1.Channel) | | | +| `counterparty_version` | [string](#string) | | | +| `proof_init` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - -### VersionInfo -VersionInfo is the type for the GetNodeInfoResponse message. + +### MsgChannelOpenTryResponse +MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `name` | [string](#string) | | | -| `app_name` | [string](#string) | | | -| `version` | [string](#string) | | | -| `git_commit` | [string](#string) | | | -| `build_tags` | [string](#string) | | | -| `go_version` | [string](#string) | | | -| `build_deps` | [Module](#cosmos.base.ostracon.v1beta1.Module) | repeated | | - + - +### MsgRecvPacket +MsgRecvPacket receives incoming IBC packet - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | +| `proof_commitment` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - -### Service -Service defines the gRPC querier service for ostracon queries. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `GetNodeInfo` | [GetNodeInfoRequest](#cosmos.base.ostracon.v1beta1.GetNodeInfoRequest) | [GetNodeInfoResponse](#cosmos.base.ostracon.v1beta1.GetNodeInfoResponse) | GetNodeInfo queries the current node info. | GET|/cosmos/base/ostracon/v1beta1/node_info| -| `GetSyncing` | [GetSyncingRequest](#cosmos.base.ostracon.v1beta1.GetSyncingRequest) | [GetSyncingResponse](#cosmos.base.ostracon.v1beta1.GetSyncingResponse) | GetSyncing queries node syncing. | GET|/cosmos/base/ostracon/v1beta1/syncing| -| `GetLatestBlock` | [GetLatestBlockRequest](#cosmos.base.ostracon.v1beta1.GetLatestBlockRequest) | [GetLatestBlockResponse](#cosmos.base.ostracon.v1beta1.GetLatestBlockResponse) | GetLatestBlock returns the latest block. | GET|/cosmos/base/ostracon/v1beta1/blocks/latest| -| `GetBlockByHeight` | [GetBlockByHeightRequest](#cosmos.base.ostracon.v1beta1.GetBlockByHeightRequest) | [GetBlockByHeightResponse](#cosmos.base.ostracon.v1beta1.GetBlockByHeightResponse) | GetBlockByHeight queries block for given height. | GET|/cosmos/base/ostracon/v1beta1/blocks/{height}| -| `GetLatestValidatorSet` | [GetLatestValidatorSetRequest](#cosmos.base.ostracon.v1beta1.GetLatestValidatorSetRequest) | [GetLatestValidatorSetResponse](#cosmos.base.ostracon.v1beta1.GetLatestValidatorSetResponse) | GetLatestValidatorSet queries latest validator-set. | GET|/cosmos/base/ostracon/v1beta1/validatorsets/latest| -| `GetValidatorSetByHeight` | [GetValidatorSetByHeightRequest](#cosmos.base.ostracon.v1beta1.GetValidatorSetByHeightRequest) | [GetValidatorSetByHeightResponse](#cosmos.base.ostracon.v1beta1.GetValidatorSetByHeightResponse) | GetValidatorSetByHeight queries validator-set at a given height. | GET|/cosmos/base/ostracon/v1beta1/validatorsets/{height}| - + - - +### MsgRecvPacketResponse +MsgRecvPacketResponse defines the Msg/RecvPacket response type. -## cosmos/base/reflection/v1beta1/reflection.proto - -### ListAllInterfacesRequest -ListAllInterfacesRequest is the request type of the ListAllInterfaces RPC. + +### MsgTimeout +MsgTimeout receives timed-out packet +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | +| `proof_unreceived` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `next_sequence_recv` | [uint64](#uint64) | | | +| `signer` | [string](#string) | | | - -### ListAllInterfacesResponse -ListAllInterfacesResponse is the response type of the ListAllInterfaces RPC. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `interface_names` | [string](#string) | repeated | interface_names is an array of all the registered interfaces. | + +### MsgTimeoutOnClose +MsgTimeoutOnClose timed-out packet upon counterparty channel closure. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | +| `proof_unreceived` | [bytes](#bytes) | | | +| `proof_close` | [bytes](#bytes) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `next_sequence_recv` | [uint64](#uint64) | | | +| `signer` | [string](#string) | | | - -### ListImplementationsRequest -ListImplementationsRequest is the request type of the ListImplementations -RPC. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `interface_name` | [string](#string) | | interface_name defines the interface to query the implementations for. | + +### MsgTimeoutOnCloseResponse +MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. - -### ListImplementationsResponse -ListImplementationsResponse is the response type of the ListImplementations -RPC. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `implementation_message_names` | [string](#string) | repeated | | +### MsgTimeoutResponse +MsgTimeoutResponse defines the Msg/Timeout response type. @@ -2102,55 +2278,82 @@ RPC. - + -### ReflectionService -ReflectionService defines a service for interface reflection. +### Msg +Msg defines the ibc/channel Msg service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `ListAllInterfaces` | [ListAllInterfacesRequest](#cosmos.base.reflection.v1beta1.ListAllInterfacesRequest) | [ListAllInterfacesResponse](#cosmos.base.reflection.v1beta1.ListAllInterfacesResponse) | ListAllInterfaces lists all the interfaces registered in the interface registry. | GET|/cosmos/base/reflection/v1beta1/interfaces| -| `ListImplementations` | [ListImplementationsRequest](#cosmos.base.reflection.v1beta1.ListImplementationsRequest) | [ListImplementationsResponse](#cosmos.base.reflection.v1beta1.ListImplementationsResponse) | ListImplementations list all the concrete types that implement a given interface. | GET|/cosmos/base/reflection/v1beta1/interfaces/{interface_name}/implementations| +| `ChannelOpenInit` | [MsgChannelOpenInit](#ibc.core.channel.v1.MsgChannelOpenInit) | [MsgChannelOpenInitResponse](#ibc.core.channel.v1.MsgChannelOpenInitResponse) | ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit. | | +| `ChannelOpenTry` | [MsgChannelOpenTry](#ibc.core.channel.v1.MsgChannelOpenTry) | [MsgChannelOpenTryResponse](#ibc.core.channel.v1.MsgChannelOpenTryResponse) | ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry. | | +| `ChannelOpenAck` | [MsgChannelOpenAck](#ibc.core.channel.v1.MsgChannelOpenAck) | [MsgChannelOpenAckResponse](#ibc.core.channel.v1.MsgChannelOpenAckResponse) | ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck. | | +| `ChannelOpenConfirm` | [MsgChannelOpenConfirm](#ibc.core.channel.v1.MsgChannelOpenConfirm) | [MsgChannelOpenConfirmResponse](#ibc.core.channel.v1.MsgChannelOpenConfirmResponse) | ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm. | | +| `ChannelCloseInit` | [MsgChannelCloseInit](#ibc.core.channel.v1.MsgChannelCloseInit) | [MsgChannelCloseInitResponse](#ibc.core.channel.v1.MsgChannelCloseInitResponse) | ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit. | | +| `ChannelCloseConfirm` | [MsgChannelCloseConfirm](#ibc.core.channel.v1.MsgChannelCloseConfirm) | [MsgChannelCloseConfirmResponse](#ibc.core.channel.v1.MsgChannelCloseConfirmResponse) | ChannelCloseConfirm defines a rpc handler method for MsgChannelCloseConfirm. | | +| `RecvPacket` | [MsgRecvPacket](#ibc.core.channel.v1.MsgRecvPacket) | [MsgRecvPacketResponse](#ibc.core.channel.v1.MsgRecvPacketResponse) | RecvPacket defines a rpc handler method for MsgRecvPacket. | | +| `Timeout` | [MsgTimeout](#ibc.core.channel.v1.MsgTimeout) | [MsgTimeoutResponse](#ibc.core.channel.v1.MsgTimeoutResponse) | Timeout defines a rpc handler method for MsgTimeout. | | +| `TimeoutOnClose` | [MsgTimeoutOnClose](#ibc.core.channel.v1.MsgTimeoutOnClose) | [MsgTimeoutOnCloseResponse](#ibc.core.channel.v1.MsgTimeoutOnCloseResponse) | TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose. | | +| `Acknowledgement` | [MsgAcknowledgement](#ibc.core.channel.v1.MsgAcknowledgement) | [MsgAcknowledgementResponse](#ibc.core.channel.v1.MsgAcknowledgementResponse) | Acknowledgement defines a rpc handler method for MsgAcknowledgement. | | - + -## cosmos/base/snapshots/v1beta1/snapshot.proto +## ibc/core/client/v1/genesis.proto - + -### Metadata -Metadata contains SDK-specific snapshot metadata. +### GenesisMetadata +GenesisMetadata defines the genesis type for metadata that clients may return +with ExportMetadata | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `chunk_hashes` | [bytes](#bytes) | repeated | SHA-256 chunk hashes | +| `key` | [bytes](#bytes) | | store key of metadata without clientID-prefix | +| `value` | [bytes](#bytes) | | metadata value | + + + +### GenesisState +GenesisState defines the ibc client submodule's genesis state. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `clients` | [IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | repeated | client states with their corresponding identifiers | +| `clients_consensus` | [ClientConsensusStates](#ibc.core.client.v1.ClientConsensusStates) | repeated | consensus states from each client | +| `clients_metadata` | [IdentifiedGenesisMetadata](#ibc.core.client.v1.IdentifiedGenesisMetadata) | repeated | metadata from each client | +| `params` | [Params](#ibc.core.client.v1.Params) | | | +| `create_localhost` | [bool](#bool) | | create localhost on initialization | +| `next_client_sequence` | [uint64](#uint64) | | the sequence for the next generated client identifier | - -### Snapshot -Snapshot contains Tendermint state sync snapshot info. + + + + + + +### IdentifiedGenesisMetadata +IdentifiedGenesisMetadata has the client metadata with the corresponding client id. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `height` | [uint64](#uint64) | | | -| `format` | [uint32](#uint32) | | | -| `chunks` | [uint32](#uint32) | | | -| `hash` | [bytes](#bytes) | | | -| `metadata` | [Metadata](#cosmos.base.snapshots.v1beta1.Metadata) | | | +| `client_id` | [string](#string) | | | +| `client_metadata` | [GenesisMetadata](#ibc.core.client.v1.GenesisMetadata) | repeated | | @@ -2166,188 +2369,172 @@ Snapshot contains Tendermint state sync snapshot info. - + -## cosmos/base/store/v1beta1/commit_info.proto - - +## ibc/core/client/v1/query.proto - -### CommitID -CommitID defines the committment information when a specific store is -committed. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `version` | [int64](#int64) | | | -| `hash` | [bytes](#bytes) | | | +### QueryClientParamsRequest +QueryClientParamsRequest is the request type for the Query/ClientParams RPC method. - + -### CommitInfo -CommitInfo defines commit information used by the multi-store when committing -a version/height. +### QueryClientParamsResponse +QueryClientParamsResponse is the response type for the Query/ClientParams RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `version` | [int64](#int64) | | | -| `store_infos` | [StoreInfo](#cosmos.base.store.v1beta1.StoreInfo) | repeated | | +| `params` | [Params](#ibc.core.client.v1.Params) | | params defines the parameters of the module. | - + -### StoreInfo -StoreInfo defines store-specific commit information. It contains a reference -between a store name and the commit ID. +### QueryClientStateRequest +QueryClientStateRequest is the request type for the Query/ClientState RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `name` | [string](#string) | | | -| `commit_id` | [CommitID](#cosmos.base.store.v1beta1.CommitID) | | | +| `client_id` | [string](#string) | | client state unique identifier | - - + - - - - - - - - - -## cosmos/base/store/v1beta1/snapshot.proto - - - - - -### SnapshotIAVLItem -SnapshotIAVLItem is an exported IAVL node. +### QueryClientStateResponse +QueryClientStateResponse is the response type for the Query/ClientState RPC +method. Besides the client state, it includes a proof and the height from +which the proof was retrieved. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | | -| `value` | [bytes](#bytes) | | | -| `version` | [int64](#int64) | | | -| `height` | [int32](#int32) | | | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | client state associated with the request identifier | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### SnapshotItem -SnapshotItem is an item contained in a rootmulti.Store snapshot. +### QueryClientStatesRequest +QueryClientStatesRequest is the request type for the Query/ClientStates RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `store` | [SnapshotStoreItem](#cosmos.base.store.v1beta1.SnapshotStoreItem) | | | -| `iavl` | [SnapshotIAVLItem](#cosmos.base.store.v1beta1.SnapshotIAVLItem) | | | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination request | - + -### SnapshotStoreItem -SnapshotStoreItem contains metadata about a snapshotted store. +### QueryClientStatesResponse +QueryClientStatesResponse is the response type for the Query/ClientStates RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `name` | [string](#string) | | | +| `client_states` | [IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | repeated | list of stored ClientStates of the chain. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | - - + - +### QueryConsensusStateRequest +QueryConsensusStateRequest is the request type for the Query/ConsensusState +RPC method. Besides the consensus state, it includes a proof and the height +from which the proof was retrieved. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `client_id` | [string](#string) | | client identifier | +| `revision_number` | [uint64](#uint64) | | consensus state revision number | +| `revision_height` | [uint64](#uint64) | | consensus state revision height | +| `latest_height` | [bool](#bool) | | latest_height overrrides the height field and queries the latest stored ConsensusState | - - -## cosmos/capability/v1beta1/capability.proto - + -### Capability -Capability defines an implementation of an object capability. The index -provided to a Capability must be globally unique. +### QueryConsensusStateResponse +QueryConsensusStateResponse is the response type for the Query/ConsensusState +RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `index` | [uint64](#uint64) | | | +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the client identifier at the given height | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### CapabilityOwners -CapabilityOwners defines a set of owners of a single Capability. The set of -owners must be unique. +### QueryConsensusStatesRequest +QueryConsensusStatesRequest is the request type for the Query/ConsensusStates +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `owners` | [Owner](#cosmos.capability.v1beta1.Owner) | repeated | | +| `client_id` | [string](#string) | | client identifier | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination request | - + -### Owner -Owner defines a single capability owner. An owner is defined by the name of -capability and the module name. +### QueryConsensusStatesResponse +QueryConsensusStatesResponse is the response type for the +Query/ConsensusStates RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `module` | [string](#string) | | | -| `name` | [string](#string) | | | +| `consensus_states` | [ConsensusStateWithHeight](#ibc.core.client.v1.ConsensusStateWithHeight) | repeated | consensus states associated with the identifier | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | @@ -2359,117 +2546,138 @@ capability and the module name. + + + +### Query +Query provides defines the gRPC querier service + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `ClientState` | [QueryClientStateRequest](#ibc.core.client.v1.QueryClientStateRequest) | [QueryClientStateResponse](#ibc.core.client.v1.QueryClientStateResponse) | ClientState queries an IBC light client. | GET|/ibc/core/client/v1beta1/client_states/{client_id}| +| `ClientStates` | [QueryClientStatesRequest](#ibc.core.client.v1.QueryClientStatesRequest) | [QueryClientStatesResponse](#ibc.core.client.v1.QueryClientStatesResponse) | ClientStates queries all the IBC light clients of a chain. | GET|/ibc/core/client/v1beta1/client_states| +| `ConsensusState` | [QueryConsensusStateRequest](#ibc.core.client.v1.QueryConsensusStateRequest) | [QueryConsensusStateResponse](#ibc.core.client.v1.QueryConsensusStateResponse) | ConsensusState queries a consensus state associated with a client state at a given height. | GET|/ibc/core/client/v1beta1/consensus_states/{client_id}/revision/{revision_number}/height/{revision_height}| +| `ConsensusStates` | [QueryConsensusStatesRequest](#ibc.core.client.v1.QueryConsensusStatesRequest) | [QueryConsensusStatesResponse](#ibc.core.client.v1.QueryConsensusStatesResponse) | ConsensusStates queries all the consensus state associated with a given client. | GET|/ibc/core/client/v1beta1/consensus_states/{client_id}| +| `ClientParams` | [QueryClientParamsRequest](#ibc.core.client.v1.QueryClientParamsRequest) | [QueryClientParamsResponse](#ibc.core.client.v1.QueryClientParamsResponse) | ClientParams queries all parameters of the ibc client. | GET|/ibc/client/v1beta1/params| + - + -## cosmos/capability/v1beta1/genesis.proto +## ibc/core/client/v1/tx.proto - + -### GenesisOwners -GenesisOwners defines the capability owners with their corresponding index. +### MsgCreateClient +MsgCreateClient defines a message to create an IBC client | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `index` | [uint64](#uint64) | | index is the index of the capability owner. | -| `index_owners` | [CapabilityOwners](#cosmos.capability.v1beta1.CapabilityOwners) | | index_owners are the owners at the given index. | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | light client state | +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the client that corresponds to a given height. | +| `signer` | [string](#string) | | signer address | - + -### GenesisState -GenesisState defines the capability module's genesis state. +### MsgCreateClientResponse +MsgCreateClientResponse defines the Msg/CreateClient response type. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `index` | [uint64](#uint64) | | index is the capability global index. | -| `owners` | [GenesisOwners](#cosmos.capability.v1beta1.GenesisOwners) | repeated | owners represents a map from index to owners of the capability index index key is string to allow amino marshalling. | + - +### MsgSubmitMisbehaviour +MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for +light client misbehaviour. - - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `client_id` | [string](#string) | | client unique identifier | +| `misbehaviour` | [google.protobuf.Any](#google.protobuf.Any) | | misbehaviour used for freezing the light client | +| `signer` | [string](#string) | | signer address | - - - -## cosmos/crisis/v1beta1/genesis.proto + +### MsgSubmitMisbehaviourResponse +MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response type. - -### GenesisState -GenesisState defines the crisis module's genesis state. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `constant_fee` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | constant_fee is the fee used to verify the invariant in the crisis module. | + +### MsgUpdateClient +MsgUpdateClient defines an sdk.Msg to update a IBC client state using +the given header. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `client_id` | [string](#string) | | client unique identifier | +| `header` | [google.protobuf.Any](#google.protobuf.Any) | | header to update the light client | +| `signer` | [string](#string) | | signer address | - - - - - + -## cosmos/crisis/v1beta1/tx.proto +### MsgUpdateClientResponse +MsgUpdateClientResponse defines the Msg/UpdateClient response type. - -### MsgVerifyInvariant -MsgVerifyInvariant represents a message to verify a particular invariance. + + + + +### MsgUpgradeClient +MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client state | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sender` | [string](#string) | | | -| `invariant_module_name` | [string](#string) | | | -| `invariant_route` | [string](#string) | | | +| `client_id` | [string](#string) | | client unique identifier | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | upgraded client state | +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | upgraded consensus state, only contains enough information to serve as a basis of trust in update logic | +| `proof_upgrade_client` | [bytes](#bytes) | | proof that old chain committed to new client | +| `proof_upgrade_consensus_state` | [bytes](#bytes) | | proof that old chain committed to new consensus state | +| `signer` | [string](#string) | | signer address | - + -### MsgVerifyInvariantResponse -MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type. +### MsgUpgradeClientResponse +MsgUpgradeClientResponse defines the Msg/UpgradeClient response type. @@ -2482,88 +2690,92 @@ MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type. - + ### Msg -Msg defines the bank Msg service. +Msg defines the ibc/client Msg service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `VerifyInvariant` | [MsgVerifyInvariant](#cosmos.crisis.v1beta1.MsgVerifyInvariant) | [MsgVerifyInvariantResponse](#cosmos.crisis.v1beta1.MsgVerifyInvariantResponse) | VerifyInvariant defines a method to verify a particular invariance. | | +| `CreateClient` | [MsgCreateClient](#ibc.core.client.v1.MsgCreateClient) | [MsgCreateClientResponse](#ibc.core.client.v1.MsgCreateClientResponse) | CreateClient defines a rpc handler method for MsgCreateClient. | | +| `UpdateClient` | [MsgUpdateClient](#ibc.core.client.v1.MsgUpdateClient) | [MsgUpdateClientResponse](#ibc.core.client.v1.MsgUpdateClientResponse) | UpdateClient defines a rpc handler method for MsgUpdateClient. | | +| `UpgradeClient` | [MsgUpgradeClient](#ibc.core.client.v1.MsgUpgradeClient) | [MsgUpgradeClientResponse](#ibc.core.client.v1.MsgUpgradeClientResponse) | UpgradeClient defines a rpc handler method for MsgUpgradeClient. | | +| `SubmitMisbehaviour` | [MsgSubmitMisbehaviour](#ibc.core.client.v1.MsgSubmitMisbehaviour) | [MsgSubmitMisbehaviourResponse](#ibc.core.client.v1.MsgSubmitMisbehaviourResponse) | SubmitMisbehaviour defines a rpc handler method for MsgSubmitMisbehaviour. | | - + -## cosmos/crypto/ed25519/keys.proto +## ibc/core/commitment/v1/commitment.proto - + -### PrivKey -PrivKey defines a ed25519 private key. +### MerklePath +MerklePath is the path used to verify commitment proofs, which can be an +arbitrary structured object (defined by a commitment type). +MerklePath is represented from root-to-leaf | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | | +| `key_path` | [string](#string) | repeated | | - + -### PubKey -PubKey defines a ed25519 public key -Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte -if the y-coordinate is the lexicographically largest of the two associated with -the x-coordinate. Otherwise the first byte is a 0x03. -This prefix is followed with the x-coordinate. +### MerklePrefix +MerklePrefix is merkle path prefixed to the key. +The constructed key from the Path and the key will be append(Path.KeyPath, +append(Path.KeyPrefix, key...)) | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | | +| `key_prefix` | [bytes](#bytes) | | | - - + - +### MerkleProof +MerkleProof is a wrapper type over a chain of CommitmentProofs. +It demonstrates membership or non-membership for an element or set of +elements, verifiable in conjunction with a known commitment root. Proofs +should be succinct. +MerkleProofs are ordered from leaf-to-root - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `proofs` | [ics23.CommitmentProof](#ics23.CommitmentProof) | repeated | | - - -## cosmos/crypto/multisig/keys.proto - + -### LegacyAminoPubKey -LegacyAminoPubKey specifies a public key type -which nests multiple public keys and a threshold, -it uses legacy amino address rules. +### MerkleRoot +MerkleRoot defines a merkle root hash. +In the Cosmos SDK, the AppHash of a block header becomes the root. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `threshold` | [uint32](#uint32) | | | -| `public_keys` | [google.protobuf.Any](#google.protobuf.Any) | repeated | | +| `hash` | [bytes](#bytes) | | | @@ -2579,93 +2791,115 @@ it uses legacy amino address rules. - + -## cosmos/crypto/multisig/v1beta1/multisig.proto +## ibc/core/connection/v1/connection.proto - + -### CompactBitArray -CompactBitArray is an implementation of a space efficient bit array. -This is used to ensure that the encoded data takes up a minimal amount of -space after proto encoding. -This is not thread safe, and is not intended for concurrent usage. +### ClientPaths +ClientPaths define all the connection paths for a client state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `extra_bits_stored` | [uint32](#uint32) | | | -| `elems` | [bytes](#bytes) | | | +| `paths` | [string](#string) | repeated | list of connection paths | - + -### MultiSignature -MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey. -See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers -signed and with which modes. +### ConnectionEnd +ConnectionEnd defines a stateful object on a chain connected to another +separate one. +NOTE: there must only be 2 defined ConnectionEnds to establish +a connection between two chains. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `signatures` | [bytes](#bytes) | repeated | | +| `client_id` | [string](#string) | | client associated with this connection. | +| `versions` | [Version](#ibc.core.connection.v1.Version) | repeated | IBC version which can be utilised to determine encodings or protocols for channels or packets utilising this connection. | +| `state` | [State](#ibc.core.connection.v1.State) | | current state of the connection end. | +| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | counterparty chain associated with this connection. | +| `delay_period` | [uint64](#uint64) | | delay period that must pass before a consensus state can be used for packet-verification NOTE: delay period logic is only implemented by some clients. | - - + - +### ConnectionPaths +ConnectionPaths define all the connection paths for a given client state. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `client_id` | [string](#string) | | client state unique identifier | +| `paths` | [string](#string) | repeated | list of connection paths | - - -## cosmos/crypto/secp256k1/keys.proto - + -### PrivKey -PrivKey defines a secp256k1 private key. +### Counterparty +Counterparty defines the counterparty chain associated with a connection end. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | | +| `client_id` | [string](#string) | | identifies the client on the counterparty chain associated with a given connection. | +| `connection_id` | [string](#string) | | identifies the connection end on the counterparty chain associated with a given connection. | +| `prefix` | [ibc.core.commitment.v1.MerklePrefix](#ibc.core.commitment.v1.MerklePrefix) | | commitment merkle prefix of the counterparty chain. | - + -### PubKey -PubKey defines a secp256k1 public key -Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte -if the y-coordinate is the lexicographically largest of the two associated with -the x-coordinate. Otherwise the first byte is a 0x03. -This prefix is followed with the x-coordinate. +### IdentifiedConnection +IdentifiedConnection defines a connection with additional connection +identifier field. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | | +| `id` | [string](#string) | | connection identifier. | +| `client_id` | [string](#string) | | client associated with this connection. | +| `versions` | [Version](#ibc.core.connection.v1.Version) | repeated | IBC version which can be utilised to determine encodings or protocols for channels or packets utilising this connection | +| `state` | [State](#ibc.core.connection.v1.State) | | current state of the connection end. | +| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | counterparty chain associated with this connection. | +| `delay_period` | [uint64](#uint64) | | delay period associated with this connection. | + + + + + + + + +### Version +Version defines the versioning scheme used to negotiate the IBC verison in +the connection handshake. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `identifier` | [string](#string) | | unique version identifier | +| `features` | [string](#string) | repeated | list of features compatible with the specified identifier | @@ -2673,6 +2907,21 @@ This prefix is followed with the x-coordinate. + + + +### State +State defines if a connection is in one of the following states: +INIT, TRYOPEN, OPEN or UNINITIALIZED. + +| Name | Number | Description | +| ---- | ------ | ----------- | +| STATE_UNINITIALIZED_UNSPECIFIED | 0 | Default State | +| STATE_INIT | 1 | A connection end has just started the opening handshake. | +| STATE_TRYOPEN | 2 | A connection end has acknowledged the handshake step on the counterparty chain. | +| STATE_OPEN | 3 | A connection end has completed the handshake. | + + @@ -2681,230 +2930,214 @@ This prefix is followed with the x-coordinate. - + -## cosmos/distribution/v1beta1/distribution.proto +## ibc/core/connection/v1/genesis.proto - + -### CommunityPoolSpendProposal -CommunityPoolSpendProposal details a proposal for use of community funds, -together with how many coins are proposed to be spent, and to which -recipient account. +### GenesisState +GenesisState defines the ibc connection submodule's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `title` | [string](#string) | | | -| `description` | [string](#string) | | | -| `recipient` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `connections` | [IdentifiedConnection](#ibc.core.connection.v1.IdentifiedConnection) | repeated | | +| `client_connection_paths` | [ConnectionPaths](#ibc.core.connection.v1.ConnectionPaths) | repeated | | +| `next_connection_sequence` | [uint64](#uint64) | | the sequence for the next generated connection identifier | + - + -### CommunityPoolSpendProposalWithDeposit -CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal -with a deposit + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `title` | [string](#string) | | | -| `description` | [string](#string) | | | -| `recipient` | [string](#string) | | | -| `amount` | [string](#string) | | | -| `deposit` | [string](#string) | | | + + +## ibc/core/connection/v1/query.proto - + -### DelegationDelegatorReward -DelegationDelegatorReward represents the properties -of a delegator's delegation reward. +### QueryClientConnectionsRequest +QueryClientConnectionsRequest is the request type for the +Query/ClientConnections RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | | -| `reward` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | +| `client_id` | [string](#string) | | client identifier associated with a connection | - + -### DelegatorStartingInfo -DelegatorStartingInfo represents the starting info for a delegator reward -period. It tracks the previous validator period, the delegation's amount of -staking token, and the creation height (to check later on if any slashes have -occurred). NOTE: Even though validators are slashed to whole staking tokens, -the delegators within the validator may be left with less than a full token, -thus sdk.Dec is used. +### QueryClientConnectionsResponse +QueryClientConnectionsResponse is the response type for the +Query/ClientConnections RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `previous_period` | [uint64](#uint64) | | | -| `stake` | [string](#string) | | | -| `height` | [uint64](#uint64) | | | +| `connection_paths` | [string](#string) | repeated | slice of all the connection paths associated with a client. | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was generated | - + -### FeePool -FeePool is the global fee pool for distribution. +### QueryConnectionClientStateRequest +QueryConnectionClientStateRequest is the request type for the +Query/ConnectionClientState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `community_pool` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | +| `connection_id` | [string](#string) | | connection identifier | - + -### Params -Params defines the set of params for the distribution module. +### QueryConnectionClientStateResponse +QueryConnectionClientStateResponse is the response type for the +Query/ConnectionClientState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `community_tax` | [string](#string) | | | -| `base_proposer_reward` | [string](#string) | | | -| `bonus_proposer_reward` | [string](#string) | | | -| `withdraw_addr_enabled` | [bool](#bool) | | | +| `identified_client_state` | [ibc.core.client.v1.IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | | client state associated with the channel | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### ValidatorAccumulatedCommission -ValidatorAccumulatedCommission represents accumulated commission -for a validator kept as a running counter, can be withdrawn at any time. +### QueryConnectionConsensusStateRequest +QueryConnectionConsensusStateRequest is the request type for the +Query/ConnectionConsensusState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `commission` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | +| `connection_id` | [string](#string) | | connection identifier | +| `revision_number` | [uint64](#uint64) | | | +| `revision_height` | [uint64](#uint64) | | | - + -### ValidatorCurrentRewards -ValidatorCurrentRewards represents current rewards and current -period for a validator kept as a running counter and incremented -each block as long as the validator's tokens remain constant. +### QueryConnectionConsensusStateResponse +QueryConnectionConsensusStateResponse is the response type for the +Query/ConnectionConsensusState RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `rewards` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | -| `period` | [uint64](#uint64) | | | +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the channel | +| `client_id` | [string](#string) | | client ID associated with the consensus state | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### ValidatorHistoricalRewards -ValidatorHistoricalRewards represents historical rewards for a validator. -Height is implicit within the store key. -Cumulative reward ratio is the sum from the zeroeth period -until this period of rewards / tokens, per the spec. -The reference count indicates the number of objects -which might need to reference this historical entry at any point. -ReferenceCount = - number of outstanding delegations which ended the associated period (and - might need to read that record) - + number of slashes which ended the associated period (and might need to - read that record) - + one per validator for the zeroeth period, set on initialization +### QueryConnectionRequest +QueryConnectionRequest is the request type for the Query/Connection RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `cumulative_reward_ratio` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | -| `reference_count` | [uint32](#uint32) | | | +| `connection_id` | [string](#string) | | connection unique identifier | - + -### ValidatorOutstandingRewards -ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards -for a validator inexpensive to track, allows simple sanity checks. +### QueryConnectionResponse +QueryConnectionResponse is the response type for the Query/Connection RPC +method. Besides the connection end, it includes a proof and the height from +which the proof was retrieved. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `rewards` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | +| `connection` | [ConnectionEnd](#ibc.core.connection.v1.ConnectionEnd) | | connection associated with the request identifier | +| `proof` | [bytes](#bytes) | | merkle proof of existence | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - + -### ValidatorSlashEvent -ValidatorSlashEvent represents a validator slash event. -Height is implicit within the store key. -This is needed to calculate appropriate amount of staking tokens -for delegations which are withdrawn after a slash has occurred. +### QueryConnectionsRequest +QueryConnectionsRequest is the request type for the Query/Connections RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_period` | [uint64](#uint64) | | | -| `fraction` | [string](#string) | | | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | | - + -### ValidatorSlashEvents -ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. +### QueryConnectionsResponse +QueryConnectionsResponse is the response type for the Query/Connections RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_slash_events` | [ValidatorSlashEvent](#cosmos.distribution.v1beta1.ValidatorSlashEvent) | repeated | | +| `connections` | [IdentifiedConnection](#ibc.core.connection.v1.IdentifiedConnection) | repeated | list of stored connections of the chain. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination response | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | @@ -2916,594 +3149,674 @@ ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. - - + - - - -## cosmos/distribution/v1beta1/genesis.proto - +### Query +Query provides defines the gRPC querier service +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Connection` | [QueryConnectionRequest](#ibc.core.connection.v1.QueryConnectionRequest) | [QueryConnectionResponse](#ibc.core.connection.v1.QueryConnectionResponse) | Connection queries an IBC connection end. | GET|/ibc/core/connection/v1beta1/connections/{connection_id}| +| `Connections` | [QueryConnectionsRequest](#ibc.core.connection.v1.QueryConnectionsRequest) | [QueryConnectionsResponse](#ibc.core.connection.v1.QueryConnectionsResponse) | Connections queries all the IBC connections of a chain. | GET|/ibc/core/connection/v1beta1/connections| +| `ClientConnections` | [QueryClientConnectionsRequest](#ibc.core.connection.v1.QueryClientConnectionsRequest) | [QueryClientConnectionsResponse](#ibc.core.connection.v1.QueryClientConnectionsResponse) | ClientConnections queries the connection paths associated with a client state. | GET|/ibc/core/connection/v1beta1/client_connections/{client_id}| +| `ConnectionClientState` | [QueryConnectionClientStateRequest](#ibc.core.connection.v1.QueryConnectionClientStateRequest) | [QueryConnectionClientStateResponse](#ibc.core.connection.v1.QueryConnectionClientStateResponse) | ConnectionClientState queries the client state associated with the connection. | GET|/ibc/core/connection/v1beta1/connections/{connection_id}/client_state| +| `ConnectionConsensusState` | [QueryConnectionConsensusStateRequest](#ibc.core.connection.v1.QueryConnectionConsensusStateRequest) | [QueryConnectionConsensusStateResponse](#ibc.core.connection.v1.QueryConnectionConsensusStateResponse) | ConnectionConsensusState queries the consensus state associated with the connection. | GET|/ibc/core/connection/v1beta1/connections/{connection_id}/consensus_state/revision/{revision_number}/height/{revision_height}| - + -### DelegatorStartingInfoRecord -DelegatorStartingInfoRecord used for import / export via genesis json. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address is the address of the delegator. | -| `validator_address` | [string](#string) | | validator_address is the address of the validator. | -| `starting_info` | [DelegatorStartingInfo](#cosmos.distribution.v1beta1.DelegatorStartingInfo) | | starting_info defines the starting info of a delegator. | + + +## ibc/core/connection/v1/tx.proto + - - - -### DelegatorWithdrawInfo -DelegatorWithdrawInfo is the address for where distributions rewards are -withdrawn to by default this struct is only used at genesis to feed in -default withdraw addresses. +### MsgConnectionOpenAck +MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to +acknowledge the change of connection state to TRYOPEN on Chain B. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address is the address of the delegator. | -| `withdraw_address` | [string](#string) | | withdraw_address is the address to withdraw the delegation rewards to. | - - +| `connection_id` | [string](#string) | | | +| `counterparty_connection_id` | [string](#string) | | | +| `version` | [Version](#ibc.core.connection.v1.Version) | | | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `proof_try` | [bytes](#bytes) | | proof of the initialization the connection on Chain B: `UNITIALIZED -> TRYOPEN` | +| `proof_client` | [bytes](#bytes) | | proof of client state included in message | +| `proof_consensus` | [bytes](#bytes) | | proof of client consensus state | +| `consensus_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - -### GenesisState -GenesisState defines the distribution module's genesis state. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.distribution.v1beta1.Params) | | params defines all the paramaters of the module. | -| `fee_pool` | [FeePool](#cosmos.distribution.v1beta1.FeePool) | | fee_pool defines the fee pool at genesis. | -| `delegator_withdraw_infos` | [DelegatorWithdrawInfo](#cosmos.distribution.v1beta1.DelegatorWithdrawInfo) | repeated | fee_pool defines the delegator withdraw infos at genesis. | -| `previous_proposer` | [string](#string) | | fee_pool defines the previous proposer at genesis. | -| `outstanding_rewards` | [ValidatorOutstandingRewardsRecord](#cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord) | repeated | fee_pool defines the outstanding rewards of all validators at genesis. | -| `validator_accumulated_commissions` | [ValidatorAccumulatedCommissionRecord](#cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord) | repeated | fee_pool defines the accumulated commisions of all validators at genesis. | -| `validator_historical_rewards` | [ValidatorHistoricalRewardsRecord](#cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord) | repeated | fee_pool defines the historical rewards of all validators at genesis. | -| `validator_current_rewards` | [ValidatorCurrentRewardsRecord](#cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord) | repeated | fee_pool defines the current rewards of all validators at genesis. | -| `delegator_starting_infos` | [DelegatorStartingInfoRecord](#cosmos.distribution.v1beta1.DelegatorStartingInfoRecord) | repeated | fee_pool defines the delegator starting infos at genesis. | -| `validator_slash_events` | [ValidatorSlashEventRecord](#cosmos.distribution.v1beta1.ValidatorSlashEventRecord) | repeated | fee_pool defines the validator slash events at genesis. | +### MsgConnectionOpenAckResponse +MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type. - + -### ValidatorAccumulatedCommissionRecord -ValidatorAccumulatedCommissionRecord is used for import / export via genesis -json. +### MsgConnectionOpenConfirm +MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to +acknowledge the change of connection state to OPEN on Chain A. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address is the address of the validator. | -| `accumulated` | [ValidatorAccumulatedCommission](#cosmos.distribution.v1beta1.ValidatorAccumulatedCommission) | | accumulated is the accumulated commission of a validator. | - - +| `connection_id` | [string](#string) | | | +| `proof_ack` | [bytes](#bytes) | | proof for the change of the connection state on Chain A: `INIT -> OPEN` | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - -### ValidatorCurrentRewardsRecord -ValidatorCurrentRewardsRecord is used for import / export via genesis json. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address is the address of the validator. | -| `rewards` | [ValidatorCurrentRewards](#cosmos.distribution.v1beta1.ValidatorCurrentRewards) | | rewards defines the current rewards of a validator. | +### MsgConnectionOpenConfirmResponse +MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm response type. - + -### ValidatorHistoricalRewardsRecord -ValidatorHistoricalRewardsRecord is used for import / export via genesis -json. +### MsgConnectionOpenInit +MsgConnectionOpenInit defines the msg sent by an account on Chain A to +initialize a connection with Chain B. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address is the address of the validator. | -| `period` | [uint64](#uint64) | | period defines the period the historical rewards apply to. | -| `rewards` | [ValidatorHistoricalRewards](#cosmos.distribution.v1beta1.ValidatorHistoricalRewards) | | rewards defines the historical rewards of a validator. | - - +| `client_id` | [string](#string) | | | +| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | | +| `version` | [Version](#ibc.core.connection.v1.Version) | | | +| `delay_period` | [uint64](#uint64) | | | +| `signer` | [string](#string) | | | - -### ValidatorOutstandingRewardsRecord -ValidatorOutstandingRewardsRecord is used for import/export via genesis json. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address is the address of the validator. | -| `outstanding_rewards` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | outstanding_rewards represents the oustanding rewards of a validator. | +### MsgConnectionOpenInitResponse +MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response type. - + -### ValidatorSlashEventRecord -ValidatorSlashEventRecord is used for import / export via genesis json. +### MsgConnectionOpenTry +MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a +connection on Chain B. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address is the address of the validator. | -| `height` | [uint64](#uint64) | | height defines the block height at which the slash event occured. | -| `period` | [uint64](#uint64) | | period is the period of the slash event. | -| `validator_slash_event` | [ValidatorSlashEvent](#cosmos.distribution.v1beta1.ValidatorSlashEvent) | | validator_slash_event describes the slash event. | +| `client_id` | [string](#string) | | | +| `previous_connection_id` | [string](#string) | | in the case of crossing hello's, when both chains call OpenInit, we need the connection identifier of the previous connection in state INIT | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | | +| `delay_period` | [uint64](#uint64) | | | +| `counterparty_versions` | [Version](#ibc.core.connection.v1.Version) | repeated | | +| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `proof_init` | [bytes](#bytes) | | proof of the initialization the connection on Chain A: `UNITIALIZED -> INIT` | +| `proof_client` | [bytes](#bytes) | | proof of client state included in message | +| `proof_consensus` | [bytes](#bytes) | | proof of client consensus state | +| `consensus_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `signer` | [string](#string) | | | - - + - +### MsgConnectionOpenTryResponse +MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type. - - - -## cosmos/distribution/v1beta1/query.proto + + + + - + -### QueryCommunityPoolRequest -QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC -method. +### Msg +Msg defines the ibc/connection Msg service. +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `ConnectionOpenInit` | [MsgConnectionOpenInit](#ibc.core.connection.v1.MsgConnectionOpenInit) | [MsgConnectionOpenInitResponse](#ibc.core.connection.v1.MsgConnectionOpenInitResponse) | ConnectionOpenInit defines a rpc handler method for MsgConnectionOpenInit. | | +| `ConnectionOpenTry` | [MsgConnectionOpenTry](#ibc.core.connection.v1.MsgConnectionOpenTry) | [MsgConnectionOpenTryResponse](#ibc.core.connection.v1.MsgConnectionOpenTryResponse) | ConnectionOpenTry defines a rpc handler method for MsgConnectionOpenTry. | | +| `ConnectionOpenAck` | [MsgConnectionOpenAck](#ibc.core.connection.v1.MsgConnectionOpenAck) | [MsgConnectionOpenAckResponse](#ibc.core.connection.v1.MsgConnectionOpenAckResponse) | ConnectionOpenAck defines a rpc handler method for MsgConnectionOpenAck. | | +| `ConnectionOpenConfirm` | [MsgConnectionOpenConfirm](#ibc.core.connection.v1.MsgConnectionOpenConfirm) | [MsgConnectionOpenConfirmResponse](#ibc.core.connection.v1.MsgConnectionOpenConfirmResponse) | ConnectionOpenConfirm defines a rpc handler method for MsgConnectionOpenConfirm. | | + + + + +## ibc/core/types/v1/genesis.proto - -### QueryCommunityPoolResponse -QueryCommunityPoolResponse is the response type for the Query/CommunityPool -RPC method. + + + +### GenesisState +GenesisState defines the ibc module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pool` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | pool defines community pool's coins. | +| `client_genesis` | [ibc.core.client.v1.GenesisState](#ibc.core.client.v1.GenesisState) | | ICS002 - Clients genesis state | +| `connection_genesis` | [ibc.core.connection.v1.GenesisState](#ibc.core.connection.v1.GenesisState) | | ICS003 - Connections genesis state | +| `channel_genesis` | [ibc.core.channel.v1.GenesisState](#ibc.core.channel.v1.GenesisState) | | ICS004 - Channel genesis state | + - + -### QueryDelegationRewardsRequest -QueryDelegationRewardsRequest is the request type for the -Query/DelegationRewards RPC method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | -| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | + + +## ibc/lightclients/localhost/v1/localhost.proto - + -### QueryDelegationRewardsResponse -QueryDelegationRewardsResponse is the response type for the -Query/DelegationRewards RPC method. +### ClientState +ClientState defines a loopback (localhost) client. It requires (read-only) +access to keys outside the client prefix. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `rewards` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | rewards defines the rewards accrued by a delegation. | +| `chain_id` | [string](#string) | | self chain ID | +| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | self latest block height | + - + -### QueryDelegationTotalRewardsRequest -QueryDelegationTotalRewardsRequest is the request type for the -Query/DelegationTotalRewards RPC method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | + + +## ibc/lightclients/solomachine/v1/solomachine.proto - + -### QueryDelegationTotalRewardsResponse -QueryDelegationTotalRewardsResponse is the response type for the -Query/DelegationTotalRewards RPC method. +### ChannelStateData +ChannelStateData returns the SignBytes data for channel state +verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `rewards` | [DelegationDelegatorReward](#cosmos.distribution.v1beta1.DelegationDelegatorReward) | repeated | rewards defines all the rewards accrued by a delegator. | -| `total` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | total defines the sum of all the rewards. | +| `path` | [bytes](#bytes) | | | +| `channel` | [ibc.core.channel.v1.Channel](#ibc.core.channel.v1.Channel) | | | - + -### QueryDelegatorValidatorsRequest -QueryDelegatorValidatorsRequest is the request type for the -Query/DelegatorValidators RPC method. +### ClientState +ClientState defines a solo machine client that tracks the current consensus +state and if the client is frozen. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | +| `sequence` | [uint64](#uint64) | | latest sequence of the client state | +| `frozen_sequence` | [uint64](#uint64) | | frozen sequence of the solo machine | +| `consensus_state` | [ConsensusState](#ibc.lightclients.solomachine.v1.ConsensusState) | | | +| `allow_update_after_proposal` | [bool](#bool) | | when set to true, will allow governance to update a solo machine client. The client will be unfrozen if it is frozen. | - + -### QueryDelegatorValidatorsResponse -QueryDelegatorValidatorsResponse is the response type for the -Query/DelegatorValidators RPC method. +### ClientStateData +ClientStateData returns the SignBytes data for client state verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validators` | [string](#string) | repeated | validators defines the validators a delegator is delegating for. | +| `path` | [bytes](#bytes) | | | +| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | | - + -### QueryDelegatorWithdrawAddressRequest -QueryDelegatorWithdrawAddressRequest is the request type for the -Query/DelegatorWithdrawAddress RPC method. +### ConnectionStateData +ConnectionStateData returns the SignBytes data for connection state +verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | +| `path` | [bytes](#bytes) | | | +| `connection` | [ibc.core.connection.v1.ConnectionEnd](#ibc.core.connection.v1.ConnectionEnd) | | | - + -### QueryDelegatorWithdrawAddressResponse -QueryDelegatorWithdrawAddressResponse is the response type for the -Query/DelegatorWithdrawAddress RPC method. +### ConsensusState +ConsensusState defines a solo machine consensus state. The sequence of a consensus state +is contained in the "height" key used in storing the consensus state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `withdraw_address` | [string](#string) | | withdraw_address defines the delegator address to query for. | +| `public_key` | [google.protobuf.Any](#google.protobuf.Any) | | public key of the solo machine | +| `diversifier` | [string](#string) | | diversifier allows the same public key to be re-used across different solo machine clients (potentially on different chains) without being considered misbehaviour. | +| `timestamp` | [uint64](#uint64) | | | - + -### QueryParamsRequest -QueryParamsRequest is the request type for the Query/Params RPC method. +### ConsensusStateData +ConsensusStateData returns the SignBytes data for consensus state +verification. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `path` | [bytes](#bytes) | | | +| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | | - -### QueryParamsResponse -QueryParamsResponse is the response type for the Query/Params RPC method. + + + +### Header +Header defines a solo machine consensus header | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.distribution.v1beta1.Params) | | params defines the parameters of the module. | +| `sequence` | [uint64](#uint64) | | sequence to update solo machine public key at | +| `timestamp` | [uint64](#uint64) | | | +| `signature` | [bytes](#bytes) | | | +| `new_public_key` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `new_diversifier` | [string](#string) | | | - + -### QueryValidatorCommissionRequest -QueryValidatorCommissionRequest is the request type for the -Query/ValidatorCommission RPC method +### HeaderData +HeaderData returns the SignBytes data for update verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | +| `new_pub_key` | [google.protobuf.Any](#google.protobuf.Any) | | header public key | +| `new_diversifier` | [string](#string) | | header diversifier | - + -### QueryValidatorCommissionResponse -QueryValidatorCommissionResponse is the response type for the -Query/ValidatorCommission RPC method +### Misbehaviour +Misbehaviour defines misbehaviour for a solo machine which consists +of a sequence and two signatures over different messages at that sequence. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `commission` | [ValidatorAccumulatedCommission](#cosmos.distribution.v1beta1.ValidatorAccumulatedCommission) | | commission defines the commision the validator received. | +| `client_id` | [string](#string) | | | +| `sequence` | [uint64](#uint64) | | | +| `signature_one` | [SignatureAndData](#ibc.lightclients.solomachine.v1.SignatureAndData) | | | +| `signature_two` | [SignatureAndData](#ibc.lightclients.solomachine.v1.SignatureAndData) | | | - + -### QueryValidatorOutstandingRewardsRequest -QueryValidatorOutstandingRewardsRequest is the request type for the -Query/ValidatorOutstandingRewards RPC method. +### NextSequenceRecvData +NextSequenceRecvData returns the SignBytes data for verification of the next +sequence to be received. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | +| `path` | [bytes](#bytes) | | | +| `next_seq_recv` | [uint64](#uint64) | | | - + -### QueryValidatorOutstandingRewardsResponse -QueryValidatorOutstandingRewardsResponse is the response type for the -Query/ValidatorOutstandingRewards RPC method. +### PacketAcknowledgementData +PacketAcknowledgementData returns the SignBytes data for acknowledgement +verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `rewards` | [ValidatorOutstandingRewards](#cosmos.distribution.v1beta1.ValidatorOutstandingRewards) | | | +| `path` | [bytes](#bytes) | | | +| `acknowledgement` | [bytes](#bytes) | | | - + -### QueryValidatorSlashesRequest -QueryValidatorSlashesRequest is the request type for the -Query/ValidatorSlashes RPC method +### PacketCommitmentData +PacketCommitmentData returns the SignBytes data for packet commitment +verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | -| `starting_height` | [uint64](#uint64) | | starting_height defines the optional starting height to query the slashes. | -| `ending_height` | [uint64](#uint64) | | starting_height defines the optional ending height to query the slashes. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `path` | [bytes](#bytes) | | | +| `commitment` | [bytes](#bytes) | | | - + -### QueryValidatorSlashesResponse -QueryValidatorSlashesResponse is the response type for the -Query/ValidatorSlashes RPC method. +### PacketReceiptAbsenceData +PacketReceiptAbsenceData returns the SignBytes data for +packet receipt absence verification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `slashes` | [ValidatorSlashEvent](#cosmos.distribution.v1beta1.ValidatorSlashEvent) | repeated | slashes defines the slashes the validator received. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `path` | [bytes](#bytes) | | | - - + - +### SignBytes +SignBytes defines the signed bytes used for signature verification. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `sequence` | [uint64](#uint64) | | | +| `timestamp` | [uint64](#uint64) | | | +| `diversifier` | [string](#string) | | | +| `data_type` | [DataType](#ibc.lightclients.solomachine.v1.DataType) | | type of the data used | +| `data` | [bytes](#bytes) | | marshaled data | -### Query -Query defines the gRPC querier service for distribution module. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Params` | [QueryParamsRequest](#cosmos.distribution.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.distribution.v1beta1.QueryParamsResponse) | Params queries params of the distribution module. | GET|/cosmos/distribution/v1beta1/params| -| `ValidatorOutstandingRewards` | [QueryValidatorOutstandingRewardsRequest](#cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest) | [QueryValidatorOutstandingRewardsResponse](#cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse) | ValidatorOutstandingRewards queries rewards of a validator address. | GET|/cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards| -| `ValidatorCommission` | [QueryValidatorCommissionRequest](#cosmos.distribution.v1beta1.QueryValidatorCommissionRequest) | [QueryValidatorCommissionResponse](#cosmos.distribution.v1beta1.QueryValidatorCommissionResponse) | ValidatorCommission queries accumulated commission for a validator. | GET|/cosmos/distribution/v1beta1/validators/{validator_address}/commission| -| `ValidatorSlashes` | [QueryValidatorSlashesRequest](#cosmos.distribution.v1beta1.QueryValidatorSlashesRequest) | [QueryValidatorSlashesResponse](#cosmos.distribution.v1beta1.QueryValidatorSlashesResponse) | ValidatorSlashes queries slash events of a validator. | GET|/cosmos/distribution/v1beta1/validators/{validator_address}/slashes| -| `DelegationRewards` | [QueryDelegationRewardsRequest](#cosmos.distribution.v1beta1.QueryDelegationRewardsRequest) | [QueryDelegationRewardsResponse](#cosmos.distribution.v1beta1.QueryDelegationRewardsResponse) | DelegationRewards queries the total rewards accrued by a delegation. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address}| -| `DelegationTotalRewards` | [QueryDelegationTotalRewardsRequest](#cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest) | [QueryDelegationTotalRewardsResponse](#cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse) | DelegationTotalRewards queries the total rewards accrued by a each validator. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards| -| `DelegatorValidators` | [QueryDelegatorValidatorsRequest](#cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest) | [QueryDelegatorValidatorsResponse](#cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse) | DelegatorValidators queries the validators of a delegator. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/validators| -| `DelegatorWithdrawAddress` | [QueryDelegatorWithdrawAddressRequest](#cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest) | [QueryDelegatorWithdrawAddressResponse](#cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse) | DelegatorWithdrawAddress queries withdraw address of a delegator. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address| -| `CommunityPool` | [QueryCommunityPoolRequest](#cosmos.distribution.v1beta1.QueryCommunityPoolRequest) | [QueryCommunityPoolResponse](#cosmos.distribution.v1beta1.QueryCommunityPoolResponse) | CommunityPool queries the community pool coins. | GET|/cosmos/distribution/v1beta1/community_pool| - - - + + +### SignatureAndData +SignatureAndData contains a signature and the data signed over to create that +signature. -## cosmos/distribution/v1beta1/tx.proto + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `signature` | [bytes](#bytes) | | | +| `data_type` | [DataType](#ibc.lightclients.solomachine.v1.DataType) | | | +| `data` | [bytes](#bytes) | | | +| `timestamp` | [uint64](#uint64) | | | - -### MsgFundCommunityPool -MsgFundCommunityPool allows an account to directly -fund the community pool. + + + + +### TimestampedSignatureData +TimestampedSignatureData contains the signature data and the timestamp of the +signature. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `depositor` | [string](#string) | | | +| `signature_data` | [bytes](#bytes) | | | +| `timestamp` | [uint64](#uint64) | | | + - -### MsgFundCommunityPoolResponse -MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type. + +### DataType +DataType defines the type of solo machine proof being created. This is done to preserve uniqueness of different +data sign byte encodings. +| Name | Number | Description | +| ---- | ------ | ----------- | +| DATA_TYPE_UNINITIALIZED_UNSPECIFIED | 0 | Default State | +| DATA_TYPE_CLIENT_STATE | 1 | Data type for client state verification | +| DATA_TYPE_CONSENSUS_STATE | 2 | Data type for consensus state verification | +| DATA_TYPE_CONNECTION_STATE | 3 | Data type for connection state verification | +| DATA_TYPE_CHANNEL_STATE | 4 | Data type for channel state verification | +| DATA_TYPE_PACKET_COMMITMENT | 5 | Data type for packet commitment verification | +| DATA_TYPE_PACKET_ACKNOWLEDGEMENT | 6 | Data type for packet acknowledgement verification | +| DATA_TYPE_PACKET_RECEIPT_ABSENCE | 7 | Data type for packet receipt absence verification | +| DATA_TYPE_NEXT_SEQUENCE_RECV | 8 | Data type for next sequence recv verification | +| DATA_TYPE_HEADER | 9 | Data type for header verification | + + - + -### MsgSetWithdrawAddress -MsgSetWithdrawAddress sets the withdraw address for -a delegator (or validator self-delegation). -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `withdraw_address` | [string](#string) | | | + + +## ibc/lightclients/tendermint/v1/tendermint.proto + +### ClientState +ClientState from Tendermint tracks the current validator set, latest height, +and a possible frozen height. - -### MsgSetWithdrawAddressResponse -MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response type. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `chain_id` | [string](#string) | | | +| `trust_level` | [Fraction](#ibc.lightclients.tendermint.v1.Fraction) | | | +| `trusting_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | duration of the period since the LastestTimestamp during which the submitted headers are valid for upgrade | +| `unbonding_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | duration of the staking unbonding period | +| `max_clock_drift` | [google.protobuf.Duration](#google.protobuf.Duration) | | defines how much new (untrusted) header's Time can drift into the future. | +| `frozen_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | Block height when the client was frozen due to a misbehaviour | +| `latest_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | Latest height the client was updated to | +| `proof_specs` | [ics23.ProofSpec](#ics23.ProofSpec) | repeated | Proof specifications used in verifying counterparty state | +| `upgrade_path` | [string](#string) | repeated | Path at which next upgraded client will be committed. Each element corresponds to the key for a single CommitmentProof in the chained proof. NOTE: ClientState must stored under `{upgradePath}/{upgradeHeight}/clientState` ConsensusState must be stored under `{upgradepath}/{upgradeHeight}/consensusState` For SDK chains using the default upgrade module, upgrade_path should be []string{"upgrade", "upgradedIBCState"}` | +| `allow_update_after_expiry` | [bool](#bool) | | This flag, when set to true, will allow governance to recover a client which has expired | +| `allow_update_after_misbehaviour` | [bool](#bool) | | This flag, when set to true, will allow governance to unfreeze a client whose chain has experienced a misbehaviour event | - + -### MsgWithdrawDelegatorReward -MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator -from a single validator. +### ConsensusState +ConsensusState defines the consensus state from Tendermint. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `validator_address` | [string](#string) | | | +| `timestamp` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | timestamp that corresponds to the block height in which the ConsensusState was stored. | +| `root` | [ibc.core.commitment.v1.MerkleRoot](#ibc.core.commitment.v1.MerkleRoot) | | commitment root (i.e app hash) | +| `next_validators_hash` | [bytes](#bytes) | | | - + -### MsgWithdrawDelegatorRewardResponse -MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type. +### Fraction +Fraction defines the protobuf message type for tmmath.Fraction that only supports positive values. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `numerator` | [uint64](#uint64) | | | +| `denominator` | [uint64](#uint64) | | | - + -### MsgWithdrawValidatorCommission -MsgWithdrawValidatorCommission withdraws the full commission to the validator -address. +### Header +Header defines the Tendermint client consensus Header. +It encapsulates all the information necessary to update from a trusted +Tendermint ConsensusState. The inclusion of TrustedHeight and +TrustedValidators allows this update to process correctly, so long as the +ConsensusState for the TrustedHeight exists, this removes race conditions +among relayers The SignedHeader and ValidatorSet are the new untrusted update +fields for the client. The TrustedHeight is the height of a stored +ConsensusState on the client that will be used to verify the new untrusted +header. The Trusted ConsensusState must be within the unbonding period of +current time in order to correctly verify, and the TrustedValidators must +hash to TrustedConsensusState.NextValidatorsHash since that is the last +trusted validator set at the TrustedHeight. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_address` | [string](#string) | | | +| `signed_header` | [ostracon.types.SignedHeader](#ostracon.types.SignedHeader) | | | +| `validator_set` | [ostracon.types.ValidatorSet](#ostracon.types.ValidatorSet) | | | +| `trusted_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | +| `trusted_validators` | [ostracon.types.ValidatorSet](#ostracon.types.ValidatorSet) | | | - + + +### Misbehaviour +Misbehaviour is a wrapper over two conflicting Headers +that implements Misbehaviour interface expected by ICS-02 -### MsgWithdrawValidatorCommissionResponse -MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommission response type. + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `client_id` | [string](#string) | | | +| `header_1` | [Header](#ibc.lightclients.tendermint.v1.Header) | | | +| `header_2` | [Header](#ibc.lightclients.tendermint.v1.Header) | | | @@ -3515,74 +3828,67 @@ MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommissi - - - -### Msg -Msg defines the distribution Msg service. - -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `SetWithdrawAddress` | [MsgSetWithdrawAddress](#cosmos.distribution.v1beta1.MsgSetWithdrawAddress) | [MsgSetWithdrawAddressResponse](#cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse) | SetWithdrawAddress defines a method to change the withdraw address for a delegator (or validator self-delegation). | | -| `WithdrawDelegatorReward` | [MsgWithdrawDelegatorReward](#cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward) | [MsgWithdrawDelegatorRewardResponse](#cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse) | WithdrawDelegatorReward defines a method to withdraw rewards of delegator from a single validator. | | -| `WithdrawValidatorCommission` | [MsgWithdrawValidatorCommission](#cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission) | [MsgWithdrawValidatorCommissionResponse](#cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse) | WithdrawValidatorCommission defines a method to withdraw the full commission to the validator address. | | -| `FundCommunityPool` | [MsgFundCommunityPool](#cosmos.distribution.v1beta1.MsgFundCommunityPool) | [MsgFundCommunityPoolResponse](#cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse) | FundCommunityPool defines a method to allow an account to directly fund the community pool. | | - - + -## cosmos/evidence/v1beta1/evidence.proto +## lbm/auth/v1beta1/auth.proto - + -### Equivocation -Equivocation implements the Evidence interface and defines evidence of double -signing misbehavior. +### BaseAccount +BaseAccount defines a base account type. It contains all the necessary fields +for basic account functionality. Any custom account type should extend this +type for additional functionality (e.g. vesting). | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `height` | [int64](#int64) | | | -| `time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | -| `power` | [int64](#int64) | | | -| `consensus_address` | [string](#string) | | | +| `address` | [string](#string) | | | +| `pub_key` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `account_number` | [uint64](#uint64) | | | +| `sequence` | [uint64](#uint64) | | | - - + - +### ModuleAccount +ModuleAccount defines an account for modules that holds coins on a pool. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `base_account` | [BaseAccount](#lbm.auth.v1beta1.BaseAccount) | | | +| `name` | [string](#string) | | | +| `permissions` | [string](#string) | repeated | | - - -## cosmos/evidence/v1beta1/genesis.proto - + -### GenesisState -GenesisState defines the evidence module's genesis state. +### Params +Params defines the parameters for the auth module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | repeated | evidence defines all the evidence at genesis. | +| `max_memo_characters` | [uint64](#uint64) | | | +| `tx_sig_limit` | [uint64](#uint64) | | | +| `tx_size_cost_per_byte` | [uint64](#uint64) | | | +| `sig_verify_cost_ed25519` | [uint64](#uint64) | | | +| `sig_verify_cost_secp256k1` | [uint64](#uint64) | | | @@ -3598,129 +3904,94 @@ GenesisState defines the evidence module's genesis state. - + -## cosmos/evidence/v1beta1/query.proto +## lbm/auth/v1beta1/genesis.proto - + -### QueryAllEvidenceRequest -QueryEvidenceRequest is the request type for the Query/AllEvidence RPC -method. +### GenesisState +GenesisState defines the auth module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `params` | [Params](#lbm.auth.v1beta1.Params) | | params defines all the paramaters of the module. | +| `accounts` | [google.protobuf.Any](#google.protobuf.Any) | repeated | accounts are the accounts present at genesis. | + - + -### QueryAllEvidenceResponse -QueryAllEvidenceResponse is the response type for the Query/AllEvidence RPC -method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | repeated | evidence returns all evidences. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | + + +## lbm/auth/v1beta1/query.proto - + -### QueryEvidenceRequest -QueryEvidenceRequest is the request type for the Query/Evidence RPC method. +### QueryAccountRequest +QueryAccountRequest is the request type for the Query/Account RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `evidence_hash` | [bytes](#bytes) | | evidence_hash defines the hash of the requested evidence. | +| `address` | [string](#string) | | address defines the address to query for. | - + -### QueryEvidenceResponse -QueryEvidenceResponse is the response type for the Query/Evidence RPC method. +### QueryAccountResponse +QueryAccountResponse is the response type for the Query/Account RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | | evidence returns the requested evidence. | - - - - - - - - - - - - - - -### Query -Query defines the gRPC querier service. - -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Evidence` | [QueryEvidenceRequest](#cosmos.evidence.v1beta1.QueryEvidenceRequest) | [QueryEvidenceResponse](#cosmos.evidence.v1beta1.QueryEvidenceResponse) | Evidence queries evidence based on evidence hash. | GET|/cosmos/evidence/v1beta1/evidence/{evidence_hash}| -| `AllEvidence` | [QueryAllEvidenceRequest](#cosmos.evidence.v1beta1.QueryAllEvidenceRequest) | [QueryAllEvidenceResponse](#cosmos.evidence.v1beta1.QueryAllEvidenceResponse) | AllEvidence queries all evidence. | GET|/cosmos/evidence/v1beta1/evidence| - - - - - - - +| `account` | [google.protobuf.Any](#google.protobuf.Any) | | account defines the account of the corresponding address. | -## cosmos/evidence/v1beta1/tx.proto - -### MsgSubmitEvidence -MsgSubmitEvidence represents a message that supports submitting arbitrary -Evidence of misbehavior such as equivocation or counterfactual signing. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `submitter` | [string](#string) | | | -| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | | | +### QueryParamsRequest +QueryParamsRequest is the request type for the Query/Params RPC method. - + -### MsgSubmitEvidenceResponse -MsgSubmitEvidenceResponse defines the Msg/SubmitEvidence response type. +### QueryParamsResponse +QueryParamsResponse is the response type for the Query/Params RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `hash` | [bytes](#bytes) | | hash defines the hash of the evidence. | +| `params` | [Params](#lbm.auth.v1beta1.Params) | | params defines the parameters of the module. | @@ -3733,193 +4004,190 @@ MsgSubmitEvidenceResponse defines the Msg/SubmitEvidence response type. - + -### Msg -Msg defines the evidence Msg service. +### Query +Query defines the gRPC querier service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `SubmitEvidence` | [MsgSubmitEvidence](#cosmos.evidence.v1beta1.MsgSubmitEvidence) | [MsgSubmitEvidenceResponse](#cosmos.evidence.v1beta1.MsgSubmitEvidenceResponse) | SubmitEvidence submits an arbitrary Evidence of misbehavior such as equivocation or counterfactual signing. | | +| `Account` | [QueryAccountRequest](#lbm.auth.v1beta1.QueryAccountRequest) | [QueryAccountResponse](#lbm.auth.v1beta1.QueryAccountResponse) | Account returns account details based on address. | GET|/cosmos/auth/v1beta1/accounts/{address}| +| `Params` | [QueryParamsRequest](#lbm.auth.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.auth.v1beta1.QueryParamsResponse) | Params queries all parameters. | GET|/cosmos/auth/v1beta1/params| - + -## cosmos/genutil/v1beta1/genesis.proto +## lbm/bank/v1beta1/bank.proto - + -### GenesisState -GenesisState defines the raw genesis transaction in JSON. +### DenomUnit +DenomUnit represents a struct that describes a given +denomination unit of the basic token. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `gen_txs` | [bytes](#bytes) | repeated | gen_txs defines the genesis transactions. | +| `denom` | [string](#string) | | denom represents the string name of the given denom unit (e.g uatom). | +| `exponent` | [uint32](#uint32) | | exponent represents power of 10 exponent that one must raise the base_denom to in order to equal the given DenomUnit's denom 1 denom = 1^exponent base_denom (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with exponent = 6, thus: 1 atom = 10^6 uatom). | +| `aliases` | [string](#string) | repeated | aliases is a list of string aliases for the given denom | - - + - +### Input +Input models transaction input. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `address` | [string](#string) | | | +| `coins` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - - -## cosmos/gov/v1beta1/gov.proto - + -### Deposit -Deposit defines an amount deposited by an account address to an active -proposal. +### Metadata +Metadata represents a struct that describes +a basic token. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | | -| `depositor` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `description` | [string](#string) | | | +| `denom_units` | [DenomUnit](#lbm.bank.v1beta1.DenomUnit) | repeated | denom_units represents the list of DenomUnit's for a given coin | +| `base` | [string](#string) | | base represents the base denom (should be the DenomUnit with exponent = 0). | +| `display` | [string](#string) | | display indicates the suggested denom that should be displayed in clients. | - + -### DepositParams -DepositParams defines the params for deposits on governance proposals. +### Output +Output models transaction outputs. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `min_deposit` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | Minimum deposit for a proposal to enter voting period. | -| `max_deposit_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | Maximum period for Atom holders to deposit on a proposal. Initial value: 2 months. | +| `address` | [string](#string) | | | +| `coins` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - + -### Proposal -Proposal defines the core field members of a governance proposal. +### Params +Params defines the parameters for the bank module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | | -| `content` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `status` | [ProposalStatus](#cosmos.gov.v1beta1.ProposalStatus) | | | -| `final_tally_result` | [TallyResult](#cosmos.gov.v1beta1.TallyResult) | | | -| `submit_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | -| `deposit_end_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | -| `total_deposit` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `voting_start_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | -| `voting_end_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `send_enabled` | [SendEnabled](#lbm.bank.v1beta1.SendEnabled) | repeated | | +| `default_send_enabled` | [bool](#bool) | | | - + -### TallyParams -TallyParams defines the params for tallying votes on governance proposals. +### SendEnabled +SendEnabled maps coin denom to a send_enabled status (whether a denom is +sendable). | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `quorum` | [bytes](#bytes) | | Minimum percentage of total stake needed to vote for a result to be considered valid. | -| `threshold` | [bytes](#bytes) | | Minimum proportion of Yes votes for proposal to pass. Default value: 0.5. | -| `veto_threshold` | [bytes](#bytes) | | Minimum value of Veto votes to Total votes ratio for proposal to be vetoed. Default value: 1/3. | +| `denom` | [string](#string) | | | +| `enabled` | [bool](#bool) | | | - + -### TallyResult -TallyResult defines a standard tally for a governance proposal. +### Supply +Supply represents a struct that passively keeps track of the total supply +amounts in the network. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `yes` | [string](#string) | | | -| `abstain` | [string](#string) | | | -| `no` | [string](#string) | | | -| `no_with_veto` | [string](#string) | | | +| `total` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | + - + -### TextProposal -TextProposal defines a standard text proposal whose changes need to be -manually updated in case of approval. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `title` | [string](#string) | | | -| `description` | [string](#string) | | | + + +## lbm/bank/v1beta1/genesis.proto - + -### Vote -Vote defines a vote on a governance proposal. -A Vote consists of a proposal ID, the voter, and the vote option. +### Balance +Balance defines an account address and balance pair used in the bank module's +genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | | -| `voter` | [string](#string) | | | -| `option` | [VoteOption](#cosmos.gov.v1beta1.VoteOption) | | | +| `address` | [string](#string) | | address is the address of the balance holder. | +| `coins` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | coins defines the different coins this balance holds. | - + -### VotingParams -VotingParams defines the params for voting on governance proposals. +### GenesisState +GenesisState defines the bank module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `voting_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | Length of the voting period. | +| `params` | [Params](#lbm.bank.v1beta1.Params) | | params defines all the paramaters of the module. | +| `balances` | [Balance](#lbm.bank.v1beta1.Balance) | repeated | balances is an array containing the balances of all the accounts. | +| `supply` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | supply represents the total supply. | +| `denom_metadata` | [Metadata](#lbm.bank.v1beta1.Metadata) | repeated | denom_metadata defines the metadata of the differents coins. | @@ -3927,336 +4195,309 @@ VotingParams defines the params for voting on governance proposals. + - - -### ProposalStatus -ProposalStatus enumerates the valid statuses of a proposal. + -| Name | Number | Description | -| ---- | ------ | ----------- | -| PROPOSAL_STATUS_UNSPECIFIED | 0 | PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal status. | -| PROPOSAL_STATUS_DEPOSIT_PERIOD | 1 | PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit period. | -| PROPOSAL_STATUS_VOTING_PERIOD | 2 | PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting period. | -| PROPOSAL_STATUS_PASSED | 3 | PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has passed. | -| PROPOSAL_STATUS_REJECTED | 4 | PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has been rejected. | -| PROPOSAL_STATUS_FAILED | 5 | PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has failed. | + - + + -### VoteOption -VoteOption enumerates the valid vote options for a given governance proposal. +## lbm/bank/v1beta1/query.proto -| Name | Number | Description | -| ---- | ------ | ----------- | -| VOTE_OPTION_UNSPECIFIED | 0 | VOTE_OPTION_UNSPECIFIED defines a no-op vote option. | -| VOTE_OPTION_YES | 1 | VOTE_OPTION_YES defines a yes vote option. | -| VOTE_OPTION_ABSTAIN | 2 | VOTE_OPTION_ABSTAIN defines an abstain vote option. | -| VOTE_OPTION_NO | 3 | VOTE_OPTION_NO defines a no vote option. | -| VOTE_OPTION_NO_WITH_VETO | 4 | VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. | - + - +### QueryAllBalancesRequest +QueryBalanceRequest is the request type for the Query/AllBalances RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `address` | [string](#string) | | address is the address to query balances for. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - - -## cosmos/gov/v1beta1/genesis.proto - + -### GenesisState -GenesisState defines the gov module's genesis state. +### QueryAllBalancesResponse +QueryAllBalancesResponse is the response type for the Query/AllBalances RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `starting_proposal_id` | [uint64](#uint64) | | starting_proposal_id is the ID of the starting proposal. | -| `deposits` | [Deposit](#cosmos.gov.v1beta1.Deposit) | repeated | deposits defines all the deposits present at genesis. | -| `votes` | [Vote](#cosmos.gov.v1beta1.Vote) | repeated | votes defines all the votes present at genesis. | -| `proposals` | [Proposal](#cosmos.gov.v1beta1.Proposal) | repeated | proposals defines all the proposals present at genesis. | -| `deposit_params` | [DepositParams](#cosmos.gov.v1beta1.DepositParams) | | params defines all the paramaters of related to deposit. | -| `voting_params` | [VotingParams](#cosmos.gov.v1beta1.VotingParams) | | params defines all the paramaters of related to voting. | -| `tally_params` | [TallyParams](#cosmos.gov.v1beta1.TallyParams) | | params defines all the paramaters of related to tally. | +| `balances` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | balances is the balances of all the coins. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - - + - +### QueryBalanceRequest +QueryBalanceRequest is the request type for the Query/Balance RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `address` | [string](#string) | | address is the address to query balances for. | +| `denom` | [string](#string) | | denom is the coin denom to query balances for. | - - -## cosmos/gov/v1beta1/query.proto - + -### QueryDepositRequest -QueryDepositRequest is the request type for the Query/Deposit RPC method. +### QueryBalanceResponse +QueryBalanceResponse is the response type for the Query/Balance RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | -| `depositor` | [string](#string) | | depositor defines the deposit addresses from the proposals. | +| `balance` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | balance is the balance of the coin. | - + -### QueryDepositResponse -QueryDepositResponse is the response type for the Query/Deposit RPC method. +### QueryDenomMetadataRequest +QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `deposit` | [Deposit](#cosmos.gov.v1beta1.Deposit) | | deposit defines the requested deposit. | +| `denom` | [string](#string) | | denom is the coin denom to query the metadata for. | - + -### QueryDepositsRequest -QueryDepositsRequest is the request type for the Query/Deposits RPC method. +### QueryDenomMetadataResponse +QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `metadata` | [Metadata](#lbm.bank.v1beta1.Metadata) | | metadata describes and provides all the client information for the requested token. | - + -### QueryDepositsResponse -QueryDepositsResponse is the response type for the Query/Deposits RPC method. +### QueryDenomsMetadataRequest +QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `deposits` | [Deposit](#cosmos.gov.v1beta1.Deposit) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### QueryParamsRequest -QueryParamsRequest is the request type for the Query/Params RPC method. +### QueryDenomsMetadataResponse +QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params_type` | [string](#string) | | params_type defines which parameters to query for, can be one of "voting", "tallying" or "deposit". | - - +| `metadatas` | [Metadata](#lbm.bank.v1beta1.Metadata) | repeated | metadata provides the client information for all the registered tokens. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - -### QueryParamsResponse -QueryParamsResponse is the response type for the Query/Params RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `voting_params` | [VotingParams](#cosmos.gov.v1beta1.VotingParams) | | voting_params defines the parameters related to voting. | -| `deposit_params` | [DepositParams](#cosmos.gov.v1beta1.DepositParams) | | deposit_params defines the parameters related to deposit. | -| `tally_params` | [TallyParams](#cosmos.gov.v1beta1.TallyParams) | | tally_params defines the parameters related to tally. | +### QueryParamsRequest +QueryParamsRequest defines the request type for querying x/bank parameters. - + -### QueryProposalRequest -QueryProposalRequest is the request type for the Query/Proposal RPC method. +### QueryParamsResponse +QueryParamsResponse defines the response type for querying x/bank parameters. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | +| `params` | [Params](#lbm.bank.v1beta1.Params) | | | - + -### QueryProposalResponse -QueryProposalResponse is the response type for the Query/Proposal RPC method. +### QuerySupplyOfRequest +QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal` | [Proposal](#cosmos.gov.v1beta1.Proposal) | | | +| `denom` | [string](#string) | | denom is the coin denom to query balances for. | - + -### QueryProposalsRequest -QueryProposalsRequest is the request type for the Query/Proposals RPC method. +### QuerySupplyOfResponse +QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_status` | [ProposalStatus](#cosmos.gov.v1beta1.ProposalStatus) | | proposal_status defines the status of the proposals. | -| `voter` | [string](#string) | | voter defines the voter address for the proposals. | -| `depositor` | [string](#string) | | depositor defines the deposit addresses from the proposals. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | amount is the supply of the coin. | - + -### QueryProposalsResponse -QueryProposalsResponse is the response type for the Query/Proposals RPC +### QueryTotalSupplyRequest +QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC method. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `proposals` | [Proposal](#cosmos.gov.v1beta1.Proposal) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | + - - - -### QueryTallyResultRequest -QueryTallyResultRequest is the request type for the Query/Tally RPC method. +### QueryTotalSupplyResponse +QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | +| `supply` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | supply is the supply of the coins | + - + -### QueryTallyResultResponse -QueryTallyResultResponse is the response type for the Query/Tally RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `tally` | [TallyResult](#cosmos.gov.v1beta1.TallyResult) | | tally defines the requested tally. | + +### Query +Query defines the gRPC querier service. +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Balance` | [QueryBalanceRequest](#lbm.bank.v1beta1.QueryBalanceRequest) | [QueryBalanceResponse](#lbm.bank.v1beta1.QueryBalanceResponse) | Balance queries the balance of a single coin for a single account. | GET|/cosmos/bank/v1beta1/balances/{address}/{denom}| +| `AllBalances` | [QueryAllBalancesRequest](#lbm.bank.v1beta1.QueryAllBalancesRequest) | [QueryAllBalancesResponse](#lbm.bank.v1beta1.QueryAllBalancesResponse) | AllBalances queries the balance of all coins for a single account. | GET|/cosmos/bank/v1beta1/balances/{address}| +| `TotalSupply` | [QueryTotalSupplyRequest](#lbm.bank.v1beta1.QueryTotalSupplyRequest) | [QueryTotalSupplyResponse](#lbm.bank.v1beta1.QueryTotalSupplyResponse) | TotalSupply queries the total supply of all coins. | GET|/cosmos/bank/v1beta1/supply| +| `SupplyOf` | [QuerySupplyOfRequest](#lbm.bank.v1beta1.QuerySupplyOfRequest) | [QuerySupplyOfResponse](#lbm.bank.v1beta1.QuerySupplyOfResponse) | SupplyOf queries the supply of a single coin. | GET|/cosmos/bank/v1beta1/supply/{denom}| +| `Params` | [QueryParamsRequest](#lbm.bank.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.bank.v1beta1.QueryParamsResponse) | Params queries the parameters of x/bank module. | GET|/cosmos/bank/v1beta1/params| +| `DenomMetadata` | [QueryDenomMetadataRequest](#lbm.bank.v1beta1.QueryDenomMetadataRequest) | [QueryDenomMetadataResponse](#lbm.bank.v1beta1.QueryDenomMetadataResponse) | DenomsMetadata queries the client metadata of a given coin denomination. | GET|/cosmos/bank/v1beta1/denoms_metadata/{denom}| +| `DenomsMetadata` | [QueryDenomsMetadataRequest](#lbm.bank.v1beta1.QueryDenomsMetadataRequest) | [QueryDenomsMetadataResponse](#lbm.bank.v1beta1.QueryDenomsMetadataResponse) | DenomsMetadata queries the client metadata for all registered coin denominations. | GET|/cosmos/bank/v1beta1/denoms_metadata| + - + + -### QueryVoteRequest -QueryVoteRequest is the request type for the Query/Vote RPC method. +## lbm/bank/v1beta1/tx.proto -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | -| `voter` | [string](#string) | | voter defines the oter address for the proposals. | + +### MsgMultiSend +MsgMultiSend represents an arbitrary multi-in, multi-out send message. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `inputs` | [Input](#lbm.bank.v1beta1.Input) | repeated | | +| `outputs` | [Output](#lbm.bank.v1beta1.Output) | repeated | | - -### QueryVoteResponse -QueryVoteResponse is the response type for the Query/Vote RPC method. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `vote` | [Vote](#cosmos.gov.v1beta1.Vote) | | vote defined the queried vote. | + +### MsgMultiSendResponse +MsgMultiSendResponse defines the Msg/MultiSend response type. - -### QueryVotesRequest -QueryVotesRequest is the request type for the Query/Votes RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +### MsgSend +MsgSend represents a message to send coins from one account to another. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `from_address` | [string](#string) | | | +| `to_address` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - -### QueryVotesResponse -QueryVotesResponse is the response type for the Query/Votes RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `votes` | [Vote](#cosmos.gov.v1beta1.Vote) | repeated | votes defined the queried votes. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +### MsgSendResponse +MsgSendResponse defines the Msg/Send response type. @@ -4269,178 +4510,202 @@ QueryVotesResponse is the response type for the Query/Votes RPC method. - + -### Query -Query defines the gRPC querier service for gov module +### Msg +Msg defines the bank Msg service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Proposal` | [QueryProposalRequest](#cosmos.gov.v1beta1.QueryProposalRequest) | [QueryProposalResponse](#cosmos.gov.v1beta1.QueryProposalResponse) | Proposal queries proposal details based on ProposalID. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}| -| `Proposals` | [QueryProposalsRequest](#cosmos.gov.v1beta1.QueryProposalsRequest) | [QueryProposalsResponse](#cosmos.gov.v1beta1.QueryProposalsResponse) | Proposals queries all proposals based on given status. | GET|/cosmos/gov/v1beta1/proposals| -| `Vote` | [QueryVoteRequest](#cosmos.gov.v1beta1.QueryVoteRequest) | [QueryVoteResponse](#cosmos.gov.v1beta1.QueryVoteResponse) | Vote queries voted information based on proposalID, voterAddr. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/votes/{voter}| -| `Votes` | [QueryVotesRequest](#cosmos.gov.v1beta1.QueryVotesRequest) | [QueryVotesResponse](#cosmos.gov.v1beta1.QueryVotesResponse) | Votes queries votes of a given proposal. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/votes| -| `Params` | [QueryParamsRequest](#cosmos.gov.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.gov.v1beta1.QueryParamsResponse) | Params queries all parameters of the gov module. | GET|/cosmos/gov/v1beta1/params/{params_type}| -| `Deposit` | [QueryDepositRequest](#cosmos.gov.v1beta1.QueryDepositRequest) | [QueryDepositResponse](#cosmos.gov.v1beta1.QueryDepositResponse) | Deposit queries single deposit information based proposalID, depositAddr. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/deposits/{depositor}| -| `Deposits` | [QueryDepositsRequest](#cosmos.gov.v1beta1.QueryDepositsRequest) | [QueryDepositsResponse](#cosmos.gov.v1beta1.QueryDepositsResponse) | Deposits queries all deposits of a single proposal. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/deposits| -| `TallyResult` | [QueryTallyResultRequest](#cosmos.gov.v1beta1.QueryTallyResultRequest) | [QueryTallyResultResponse](#cosmos.gov.v1beta1.QueryTallyResultResponse) | TallyResult queries the tally of a proposal vote. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/tally| +| `Send` | [MsgSend](#lbm.bank.v1beta1.MsgSend) | [MsgSendResponse](#lbm.bank.v1beta1.MsgSendResponse) | Send defines a method for sending coins from one account to another account. | | +| `MultiSend` | [MsgMultiSend](#lbm.bank.v1beta1.MsgMultiSend) | [MsgMultiSendResponse](#lbm.bank.v1beta1.MsgMultiSendResponse) | MultiSend defines a method for sending coins from some accounts to other accounts. | | - + -## cosmos/gov/v1beta1/tx.proto +## lbm/base/abci/v1beta1/abci.proto - + -### MsgDeposit -MsgDeposit defines a message to submit a deposit to an existing proposal. +### ABCIMessageLog +ABCIMessageLog defines a structure containing an indexed tx ABCI message log. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | | -| `depositor` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `msg_index` | [uint32](#uint32) | | | +| `log` | [string](#string) | | | +| `events` | [StringEvent](#lbm.base.abci.v1beta1.StringEvent) | repeated | Events contains a slice of Event objects that were emitted during some execution. | - + + +### Attribute +Attribute defines an attribute wrapper where the key and value are +strings instead of raw bytes. -### MsgDepositResponse -MsgDepositResponse defines the Msg/Deposit response type. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `key` | [string](#string) | | | +| `value` | [string](#string) | | | - -### MsgSubmitProposal -MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary -proposal Content. + + +### GasInfo +GasInfo defines tx execution gas context. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `content` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `initial_deposit` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `proposer` | [string](#string) | | | +| `gas_wanted` | [uint64](#uint64) | | GasWanted is the maximum units of work we allow this tx to perform. | +| `gas_used` | [uint64](#uint64) | | GasUsed is the amount of gas actually consumed. | - + -### MsgSubmitProposalResponse -MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. +### MsgData +MsgData defines the data returned in a Result object during message +execution. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | | +| `msg_type` | [string](#string) | | | +| `data` | [bytes](#bytes) | | | - + -### MsgVote -MsgVote defines a message to cast a vote. +### Result +Result is the union of ResponseFormat and ResponseCheckTx. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proposal_id` | [uint64](#uint64) | | | -| `voter` | [string](#string) | | | -| `option` | [VoteOption](#cosmos.gov.v1beta1.VoteOption) | | | +| `data` | [bytes](#bytes) | | Data is any data returned from message or handler execution. It MUST be length prefixed in order to separate data from multiple message executions. | +| `log` | [string](#string) | | Log contains the log information from message or handler execution. | +| `events` | [ostracon.abci.Event](#ostracon.abci.Event) | repeated | Events contains a slice of Event objects that were emitted during message or handler execution. | - + -### MsgVoteResponse -MsgVoteResponse defines the Msg/Vote response type. +### SearchTxsResult +SearchTxsResult defines a structure for querying txs pageable +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `total_count` | [uint64](#uint64) | | Count of all txs | +| `count` | [uint64](#uint64) | | Count of txs in current page | +| `page_number` | [uint64](#uint64) | | Index of current page, start from 1 | +| `page_total` | [uint64](#uint64) | | Count of total pages | +| `limit` | [uint64](#uint64) | | Max count txs per page | +| `txs` | [TxResponse](#lbm.base.abci.v1beta1.TxResponse) | repeated | List of txs in current page | - - - + - +### SimulationResponse +SimulationResponse defines the response generated when a transaction is +successfully simulated. -### Msg -Msg defines the bank Msg service. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `SubmitProposal` | [MsgSubmitProposal](#cosmos.gov.v1beta1.MsgSubmitProposal) | [MsgSubmitProposalResponse](#cosmos.gov.v1beta1.MsgSubmitProposalResponse) | SubmitProposal defines a method to create new proposal given a content. | | -| `Vote` | [MsgVote](#cosmos.gov.v1beta1.MsgVote) | [MsgVoteResponse](#cosmos.gov.v1beta1.MsgVoteResponse) | Vote defines a method to add a vote on a specific proposal. | | -| `Deposit` | [MsgDeposit](#cosmos.gov.v1beta1.MsgDeposit) | [MsgDepositResponse](#cosmos.gov.v1beta1.MsgDepositResponse) | Deposit defines a method to add deposit on a specific proposal. | | +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `gas_info` | [GasInfo](#lbm.base.abci.v1beta1.GasInfo) | | | +| `result` | [Result](#lbm.base.abci.v1beta1.Result) | | | - - - -## cosmos/mint/v1beta1/mint.proto + +### StringEvent +StringEvent defines en Event object wrapper where all the attributes +contain key/value pairs that are strings instead of raw bytes. - -### Minter -Minter represents the minting state. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `type` | [string](#string) | | | +| `attributes` | [Attribute](#lbm.base.abci.v1beta1.Attribute) | repeated | | + + + + + + + + +### TxMsgData +TxMsgData defines a list of MsgData. A transaction will have a MsgData object +for each message. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `inflation` | [string](#string) | | current annual inflation rate | -| `annual_provisions` | [string](#string) | | current annual expected provisions | +| `data` | [MsgData](#lbm.base.abci.v1beta1.MsgData) | repeated | | - + -### Params -Params holds parameters for the mint module. +### TxResponse +TxResponse defines a structure containing relevant tx data and metadata. The +tags are stringified and the log is JSON decoded. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `mint_denom` | [string](#string) | | type of coin to mint | -| `inflation_rate_change` | [string](#string) | | maximum annual change in inflation rate | -| `inflation_max` | [string](#string) | | maximum inflation rate | -| `inflation_min` | [string](#string) | | minimum inflation rate | -| `goal_bonded` | [string](#string) | | goal of percent bonded atoms | -| `blocks_per_year` | [uint64](#uint64) | | expected blocks per year | +| `height` | [int64](#int64) | | The block height | +| `txhash` | [string](#string) | | The transaction hash. | +| `codespace` | [string](#string) | | Namespace for the Code | +| `code` | [uint32](#uint32) | | Response code. | +| `data` | [string](#string) | | Result bytes, if any. | +| `raw_log` | [string](#string) | | The output of the application's logger (raw string). May be non-deterministic. | +| `logs` | [ABCIMessageLog](#lbm.base.abci.v1beta1.ABCIMessageLog) | repeated | The output of the application's logger (typed). May be non-deterministic. | +| `info` | [string](#string) | | Additional information. May be non-deterministic. | +| `gas_wanted` | [int64](#int64) | | Amount of gas requested for transaction. | +| `gas_used` | [int64](#int64) | | Amount of gas consumed by transaction. | +| `tx` | [google.protobuf.Any](#google.protobuf.Any) | | The request transaction bytes. | +| `timestamp` | [string](#string) | | Time of the previous block. For heights > 1, it's the weighted median of the timestamps of the valid votes in the block.LastCommit. For height == 1, it's genesis time. | @@ -4456,23 +4721,38 @@ Params holds parameters for the mint module. - + -## cosmos/mint/v1beta1/genesis.proto +## lbm/base/kv/v1beta1/kv.proto + + + + + +### Pair +Pair defines a key/value bytes tuple. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `key` | [bytes](#bytes) | | | +| `value` | [bytes](#bytes) | | | - -### GenesisState -GenesisState defines the mint module's genesis state. + + + + +### Pairs +Pairs defines a repeated slice of Pair objects. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `minter` | [Minter](#cosmos.mint.v1beta1.Minter) | | minter is a space for holding current inflation information. | -| `params` | [Params](#cosmos.mint.v1beta1.Params) | | params defines all the paramaters of the module. | +| `pairs` | [Pair](#lbm.base.kv.v1beta1.Pair) | repeated | | @@ -4488,261 +4768,236 @@ GenesisState defines the mint module's genesis state. - + -## cosmos/mint/v1beta1/query.proto +## lbm/base/ostracon/v1beta1/query.proto - + -### QueryAnnualProvisionsRequest -QueryAnnualProvisionsRequest is the request type for the -Query/AnnualProvisions RPC method. +### GetBlockByHeightRequest +GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `height` | [int64](#int64) | | | - -### QueryAnnualProvisionsResponse -QueryAnnualProvisionsResponse is the response type for the -Query/AnnualProvisions RPC method. + + + +### GetBlockByHeightResponse +GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `annual_provisions` | [bytes](#bytes) | | annual_provisions is the current minting annual provisions value. | +| `block_id` | [ostracon.types.BlockID](#ostracon.types.BlockID) | | | +| `block` | [ostracon.types.Block](#ostracon.types.Block) | | | - + -### QueryInflationRequest -QueryInflationRequest is the request type for the Query/Inflation RPC method. +### GetLatestBlockRequest +GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method. - + -### QueryInflationResponse -QueryInflationResponse is the response type for the Query/Inflation RPC -method. +### GetLatestBlockResponse +GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `inflation` | [bytes](#bytes) | | inflation is the current minting inflation value. | +| `block_id` | [ostracon.types.BlockID](#ostracon.types.BlockID) | | | +| `block` | [ostracon.types.Block](#ostracon.types.Block) | | | - + + +### GetLatestValidatorSetRequest +GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method. -### QueryParamsRequest -QueryParamsRequest is the request type for the Query/Params RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | - -### QueryParamsResponse -QueryParamsResponse is the response type for the Query/Params RPC method. + + +### GetLatestValidatorSetResponse +GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.mint.v1beta1.Params) | | params defines the parameters of the module. | +| `block_height` | [int64](#int64) | | | +| `validators` | [Validator](#lbm.base.ostracon.v1beta1.Validator) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines an pagination for the response. | - - + - +### GetNodeInfoRequest +GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method. - -### Query -Query provides defines the gRPC querier service. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Params` | [QueryParamsRequest](#cosmos.mint.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.mint.v1beta1.QueryParamsResponse) | Params returns the total set of minting parameters. | GET|/cosmos/mint/v1beta1/params| -| `Inflation` | [QueryInflationRequest](#cosmos.mint.v1beta1.QueryInflationRequest) | [QueryInflationResponse](#cosmos.mint.v1beta1.QueryInflationResponse) | Inflation returns the current minting inflation value. | GET|/cosmos/mint/v1beta1/inflation| -| `AnnualProvisions` | [QueryAnnualProvisionsRequest](#cosmos.mint.v1beta1.QueryAnnualProvisionsRequest) | [QueryAnnualProvisionsResponse](#cosmos.mint.v1beta1.QueryAnnualProvisionsResponse) | AnnualProvisions current minting annual provisions value. | GET|/cosmos/mint/v1beta1/annual_provisions| - + +### GetNodeInfoResponse +GetNodeInfoResponse is the request type for the Query/GetNodeInfo RPC method. - - -## cosmos/params/v1beta1/params.proto +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `default_node_info` | [ostracon.p2p.DefaultNodeInfo](#ostracon.p2p.DefaultNodeInfo) | | | +| `application_version` | [VersionInfo](#lbm.base.ostracon.v1beta1.VersionInfo) | | | - -### ParamChange -ParamChange defines an individual parameter change, for use in -ParameterChangeProposal. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `subspace` | [string](#string) | | | -| `key` | [string](#string) | | | -| `value` | [string](#string) | | | + +### GetSyncingRequest +GetSyncingRequest is the request type for the Query/GetSyncing RPC method. - -### ParameterChangeProposal -ParameterChangeProposal defines a proposal to change one or more parameters. + + +### GetSyncingResponse +GetSyncingResponse is the response type for the Query/GetSyncing RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `title` | [string](#string) | | | -| `description` | [string](#string) | | | -| `changes` | [ParamChange](#cosmos.params.v1beta1.ParamChange) | repeated | | - - - - - - - - - - - - - +| `syncing` | [bool](#bool) | | | - - -## cosmos/params/v1beta1/query.proto - + -### QueryParamsRequest -QueryParamsRequest is request type for the Query/Params RPC method. +### GetValidatorSetByHeightRequest +GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `subspace` | [string](#string) | | subspace defines the module to query the parameter for. | -| `key` | [string](#string) | | key defines the key of the parameter in the subspace. | +| `height` | [int64](#int64) | | | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | - + -### QueryParamsResponse -QueryParamsResponse is response type for the Query/Params RPC method. +### GetValidatorSetByHeightResponse +GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `param` | [ParamChange](#cosmos.params.v1beta1.ParamChange) | | param defines the queried parameter. | - - - - +| `block_height` | [int64](#int64) | | | +| `validators` | [Validator](#lbm.base.ostracon.v1beta1.Validator) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines an pagination for the response. | - - - - -### Query -Query defines the gRPC querier service. + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Params` | [QueryParamsRequest](#cosmos.params.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.params.v1beta1.QueryParamsResponse) | Params queries a specific parameter of a module, given its subspace and key. | GET|/cosmos/params/v1beta1/params| +### Module +Module is the type for VersionInfo - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `path` | [string](#string) | | module path | +| `version` | [string](#string) | | module version | +| `sum` | [string](#string) | | checksum | - - -## cosmos/slashing/v1beta1/slashing.proto - + -### Params -Params represents the parameters used for by the slashing module. +### Validator +Validator is the type for the validator-set. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `signed_blocks_window` | [int64](#int64) | | | -| `min_signed_per_window` | [bytes](#bytes) | | | -| `downtime_jail_duration` | [google.protobuf.Duration](#google.protobuf.Duration) | | | -| `slash_fraction_double_sign` | [bytes](#bytes) | | | -| `slash_fraction_downtime` | [bytes](#bytes) | | | +| `address` | [string](#string) | | | +| `pub_key` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `voting_power` | [int64](#int64) | | | +| `proposer_priority` | [int64](#int64) | | | - + -### ValidatorSigningInfo -ValidatorSigningInfo defines a validator's signing info for monitoring their -liveness activity. +### VersionInfo +VersionInfo is the type for the GetNodeInfoResponse message. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | | -| `start_height` | [int64](#int64) | | height at which validator was first a candidate OR was unjailed | -| `index_offset` | [int64](#int64) | | index offset into signed block bit array | -| `jailed_until` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | timestamp validator cannot be unjailed until | -| `tombstoned` | [bool](#bool) | | whether or not a validator has been tombstoned (killed out of validator set) | -| `missed_blocks_counter` | [int64](#int64) | | missed blocks counter (to avoid scanning the array every time) | +| `name` | [string](#string) | | | +| `app_name` | [string](#string) | | | +| `version` | [string](#string) | | | +| `git_commit` | [string](#string) | | | +| `build_tags` | [string](#string) | | | +| `go_version` | [string](#string) | | | +| `build_deps` | [Module](#lbm.base.ostracon.v1beta1.Module) | repeated | | @@ -4754,77 +5009,83 @@ liveness activity. - + +### Service +Service defines the gRPC querier service for ostracon queries. - - +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `GetNodeInfo` | [GetNodeInfoRequest](#lbm.base.ostracon.v1beta1.GetNodeInfoRequest) | [GetNodeInfoResponse](#lbm.base.ostracon.v1beta1.GetNodeInfoResponse) | GetNodeInfo queries the current node info. | GET|/cosmos/base/ostracon/v1beta1/node_info| +| `GetSyncing` | [GetSyncingRequest](#lbm.base.ostracon.v1beta1.GetSyncingRequest) | [GetSyncingResponse](#lbm.base.ostracon.v1beta1.GetSyncingResponse) | GetSyncing queries node syncing. | GET|/cosmos/base/ostracon/v1beta1/syncing| +| `GetLatestBlock` | [GetLatestBlockRequest](#lbm.base.ostracon.v1beta1.GetLatestBlockRequest) | [GetLatestBlockResponse](#lbm.base.ostracon.v1beta1.GetLatestBlockResponse) | GetLatestBlock returns the latest block. | GET|/cosmos/base/ostracon/v1beta1/blocks/latest| +| `GetBlockByHeight` | [GetBlockByHeightRequest](#lbm.base.ostracon.v1beta1.GetBlockByHeightRequest) | [GetBlockByHeightResponse](#lbm.base.ostracon.v1beta1.GetBlockByHeightResponse) | GetBlockByHeight queries block for given height. | GET|/cosmos/base/ostracon/v1beta1/blocks/{height}| +| `GetLatestValidatorSet` | [GetLatestValidatorSetRequest](#lbm.base.ostracon.v1beta1.GetLatestValidatorSetRequest) | [GetLatestValidatorSetResponse](#lbm.base.ostracon.v1beta1.GetLatestValidatorSetResponse) | GetLatestValidatorSet queries latest validator-set. | GET|/cosmos/base/ostracon/v1beta1/validatorsets/latest| +| `GetValidatorSetByHeight` | [GetValidatorSetByHeightRequest](#lbm.base.ostracon.v1beta1.GetValidatorSetByHeightRequest) | [GetValidatorSetByHeightResponse](#lbm.base.ostracon.v1beta1.GetValidatorSetByHeightResponse) | GetValidatorSetByHeight queries validator-set at a given height. | GET|/cosmos/base/ostracon/v1beta1/validatorsets/{height}| -## cosmos/slashing/v1beta1/genesis.proto + - + + -### GenesisState -GenesisState defines the slashing module's genesis state. +## lbm/base/reflection/v1beta1/reflection.proto -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.slashing.v1beta1.Params) | | params defines all the paramaters of related to deposit. | -| `signing_infos` | [SigningInfo](#cosmos.slashing.v1beta1.SigningInfo) | repeated | signing_infos represents a map between validator addresses and their signing infos. | -| `missed_blocks` | [ValidatorMissedBlocks](#cosmos.slashing.v1beta1.ValidatorMissedBlocks) | repeated | signing_infos represents a map between validator addresses and their missed blocks. | + + + +### ListAllInterfacesRequest +ListAllInterfacesRequest is the request type of the ListAllInterfaces RPC. - + -### MissedBlock -MissedBlock contains height and missed status as boolean. +### ListAllInterfacesResponse +ListAllInterfacesResponse is the response type of the ListAllInterfaces RPC. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `index` | [int64](#int64) | | index is the height at which the block was missed. | -| `missed` | [bool](#bool) | | missed is the missed status. | +| `interface_names` | [string](#string) | repeated | interface_names is an array of all the registered interfaces. | - + -### SigningInfo -SigningInfo stores validator signing info of corresponding address. +### ListImplementationsRequest +ListImplementationsRequest is the request type of the ListImplementations +RPC. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address is the validator address. | -| `validator_signing_info` | [ValidatorSigningInfo](#cosmos.slashing.v1beta1.ValidatorSigningInfo) | | validator_signing_info represents the signing info of this validator. | +| `interface_name` | [string](#string) | | interface_name defines the interface to query the implementations for. | - + -### ValidatorMissedBlocks -ValidatorMissedBlocks contains array of missed blocks of corresponding -address. +### ListImplementationsResponse +ListImplementationsResponse is the response type of the ListImplementations +RPC. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address is the validator address. | -| `missed_blocks` | [MissedBlock](#cosmos.slashing.v1beta1.MissedBlock) | repeated | missed_blocks is an array of missed blocks by the validator. | +| `implementation_message_names` | [string](#string) | repeated | | @@ -4836,101 +5097,123 @@ address. + + + +### ReflectionService +ReflectionService defines a service for interface reflection. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `ListAllInterfaces` | [ListAllInterfacesRequest](#lbm.base.reflection.v1beta1.ListAllInterfacesRequest) | [ListAllInterfacesResponse](#lbm.base.reflection.v1beta1.ListAllInterfacesResponse) | ListAllInterfaces lists all the interfaces registered in the interface registry. | GET|/lbm/base/reflection/v1beta1/interfaces| +| `ListImplementations` | [ListImplementationsRequest](#lbm.base.reflection.v1beta1.ListImplementationsRequest) | [ListImplementationsResponse](#lbm.base.reflection.v1beta1.ListImplementationsResponse) | ListImplementations list all the concrete types that implement a given interface. | GET|/lbm/base/reflection/v1beta1/interfaces/{interface_name}/implementations| + - + -## cosmos/slashing/v1beta1/query.proto +## lbm/base/snapshots/v1beta1/snapshot.proto - + -### QueryParamsRequest -QueryParamsRequest is the request type for the Query/Params RPC method +### Metadata +Metadata contains SDK-specific snapshot metadata. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `chunk_hashes` | [bytes](#bytes) | repeated | SHA-256 chunk hashes | - -### QueryParamsResponse -QueryParamsResponse is the response type for the Query/Params RPC method + + + +### Snapshot +Snapshot contains Tendermint state sync snapshot info. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.slashing.v1beta1.Params) | | | +| `height` | [uint64](#uint64) | | | +| `format` | [uint32](#uint32) | | | +| `chunks` | [uint32](#uint32) | | | +| `hash` | [bytes](#bytes) | | | +| `metadata` | [Metadata](#lbm.base.snapshots.v1beta1.Metadata) | | | + - + -### QuerySigningInfoRequest -QuerySigningInfoRequest is the request type for the Query/SigningInfo RPC -method + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `cons_address` | [string](#string) | | cons_address is the address to query signing info of | + + +## lbm/base/store/v1beta1/commit_info.proto - + -### QuerySigningInfoResponse -QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC -method +### CommitID +CommitID defines the committment information when a specific store is +committed. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `val_signing_info` | [ValidatorSigningInfo](#cosmos.slashing.v1beta1.ValidatorSigningInfo) | | val_signing_info is the signing info of requested val cons address | +| `version` | [int64](#int64) | | | +| `hash` | [bytes](#bytes) | | | - + -### QuerySigningInfosRequest -QuerySigningInfosRequest is the request type for the Query/SigningInfos RPC -method +### CommitInfo +CommitInfo defines commit information used by the multi-store when committing +a version/height. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | | +| `version` | [int64](#int64) | | | +| `store_infos` | [StoreInfo](#lbm.base.store.v1beta1.StoreInfo) | repeated | | - + -### QuerySigningInfosResponse -QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC -method +### StoreInfo +StoreInfo defines store-specific commit information. It contains a reference +between a store name and the commit ID. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `info` | [ValidatorSigningInfo](#cosmos.slashing.v1beta1.ValidatorSigningInfo) | repeated | info is the signing info of all validators | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | | +| `name` | [string](#string) | | | +| `commit_id` | [CommitID](#lbm.base.store.v1beta1.CommitID) | | | @@ -4942,48 +5225,60 @@ method + - -### Query -Query provides defines the gRPC querier service -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Params` | [QueryParamsRequest](#cosmos.slashing.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.slashing.v1beta1.QueryParamsResponse) | Params queries the parameters of slashing module | GET|/cosmos/slashing/v1beta1/params| -| `SigningInfo` | [QuerySigningInfoRequest](#cosmos.slashing.v1beta1.QuerySigningInfoRequest) | [QuerySigningInfoResponse](#cosmos.slashing.v1beta1.QuerySigningInfoResponse) | SigningInfo queries the signing info of given cons address | GET|/cosmos/slashing/v1beta1/signing_infos/{cons_address}| -| `SigningInfos` | [QuerySigningInfosRequest](#cosmos.slashing.v1beta1.QuerySigningInfosRequest) | [QuerySigningInfosResponse](#cosmos.slashing.v1beta1.QuerySigningInfosResponse) | SigningInfos queries signing info of all validators | GET|/cosmos/slashing/v1beta1/signing_infos| + + - +## lbm/base/store/v1beta1/snapshot.proto - - + + +### SnapshotIAVLItem +SnapshotIAVLItem is an exported IAVL node. -## cosmos/slashing/v1beta1/tx.proto +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `key` | [bytes](#bytes) | | | +| `value` | [bytes](#bytes) | | | +| `version` | [int64](#int64) | | | +| `height` | [int32](#int32) | | | - -### MsgUnjail -MsgUnjail defines the Msg/Unjail request type + + + + + +### SnapshotItem +SnapshotItem is an item contained in a rootmulti.Store snapshot. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_addr` | [string](#string) | | | +| `store` | [SnapshotStoreItem](#lbm.base.store.v1beta1.SnapshotStoreItem) | | | +| `iavl` | [SnapshotIAVLItem](#lbm.base.store.v1beta1.SnapshotIAVLItem) | | | - + -### MsgUnjailResponse -MsgUnjailResponse defines the Msg/Unjail response type +### SnapshotStoreItem +SnapshotStoreItem contains metadata about a snapshotted store. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `name` | [string](#string) | | | @@ -4995,393 +5290,328 @@ MsgUnjailResponse defines the Msg/Unjail response type - - - -### Msg -Msg defines the slashing Msg service. - -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Unjail` | [MsgUnjail](#cosmos.slashing.v1beta1.MsgUnjail) | [MsgUnjailResponse](#cosmos.slashing.v1beta1.MsgUnjailResponse) | Unjail defines a method for unjailing a jailed validator, thus returning them into the bonded validator set, so they can begin receiving provisions and rewards again. | | - - + -## cosmos/staking/v1beta1/staking.proto +## lbm/capability/v1beta1/capability.proto - + -### Commission -Commission defines commission parameters for a given validator. +### Capability +Capability defines an implementation of an object capability. The index +provided to a Capability must be globally unique. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `commission_rates` | [CommissionRates](#cosmos.staking.v1beta1.CommissionRates) | | commission_rates defines the initial commission rates to be used for creating a validator. | -| `update_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | update_time is the last time the commission rate was changed. | +| `index` | [uint64](#uint64) | | | - + -### CommissionRates -CommissionRates defines the initial commission rates to be used for creating -a validator. +### CapabilityOwners +CapabilityOwners defines a set of owners of a single Capability. The set of +owners must be unique. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `rate` | [string](#string) | | rate is the commission rate charged to delegators, as a fraction. | -| `max_rate` | [string](#string) | | max_rate defines the maximum commission rate which validator can ever charge, as a fraction. | -| `max_change_rate` | [string](#string) | | max_change_rate defines the maximum daily increase of the validator commission, as a fraction. | +| `owners` | [Owner](#lbm.capability.v1beta1.Owner) | repeated | | - + -### DVPair -DVPair is struct that just has a delegator-validator pair with no other data. -It is intended to be used as a marshalable pointer. For example, a DVPair can -be used to construct the key to getting an UnbondingDelegation from state. +### Owner +Owner defines a single capability owner. An owner is defined by the name of +capability and the module name. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `validator_address` | [string](#string) | | | +| `module` | [string](#string) | | | +| `name` | [string](#string) | | | + - + -### DVPairs -DVPairs defines an array of DVPair objects. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `pairs` | [DVPair](#cosmos.staking.v1beta1.DVPair) | repeated | | + + +## lbm/capability/v1beta1/genesis.proto - + -### DVVTriplet -DVVTriplet is struct that just has a delegator-validator-validator triplet -with no other data. It is intended to be used as a marshalable pointer. For -example, a DVVTriplet can be used to construct the key to getting a -Redelegation from state. +### GenesisOwners +GenesisOwners defines the capability owners with their corresponding index. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `validator_src_address` | [string](#string) | | | -| `validator_dst_address` | [string](#string) | | | +| `index` | [uint64](#uint64) | | index is the index of the capability owner. | +| `index_owners` | [CapabilityOwners](#lbm.capability.v1beta1.CapabilityOwners) | | index_owners are the owners at the given index. | - + -### DVVTriplets -DVVTriplets defines an array of DVVTriplet objects. +### GenesisState +GenesisState defines the capability module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `triplets` | [DVVTriplet](#cosmos.staking.v1beta1.DVVTriplet) | repeated | | +| `index` | [uint64](#uint64) | | index is the capability global index. | +| `owners` | [GenesisOwners](#lbm.capability.v1beta1.GenesisOwners) | repeated | owners represents a map from index to owners of the capability index index key is string to allow amino marshalling. | + - + -### Delegation -Delegation represents the bond with tokens held by an account. It is -owned by one delegator, and is associated with the voting power of one -validator. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address is the bech32-encoded address of the delegator. | -| `validator_address` | [string](#string) | | validator_address is the bech32-encoded address of the validator. | -| `shares` | [string](#string) | | shares define the delegation shares received. | + + +## lbm/crisis/v1beta1/genesis.proto - + -### DelegationResponse -DelegationResponse is equivalent to Delegation except that it contains a -balance in addition to shares which is more suitable for client responses. +### GenesisState +GenesisState defines the crisis module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegation` | [Delegation](#cosmos.staking.v1beta1.Delegation) | | | -| `balance` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `constant_fee` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | constant_fee is the fee used to verify the invariant in the crisis module. | + - + -### Description -Description defines a validator description. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `moniker` | [string](#string) | | moniker defines a human-readable name for the validator. | -| `identity` | [string](#string) | | identity defines an optional identity signature (ex. UPort or Keybase). | -| `website` | [string](#string) | | website defines an optional website link. | -| `security_contact` | [string](#string) | | security_contact defines an optional email for security contact. | -| `details` | [string](#string) | | details define other optional details. | + + +## lbm/crisis/v1beta1/tx.proto - + -### HistoricalInfo -HistoricalInfo contains header and validator information for a given block. -It is stored as part of staking module's state, which persists the `n` most -recent HistoricalInfo -(`n` is set by the staking module's `historical_entries` parameter). +### MsgVerifyInvariant +MsgVerifyInvariant represents a message to verify a particular invariance. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `header` | [ostracon.types.Header](#ostracon.types.Header) | | | -| `valset` | [Validator](#cosmos.staking.v1beta1.Validator) | repeated | | - - - - - - - - -### Params -Params defines the parameters for the staking module. - +| `sender` | [string](#string) | | | +| `invariant_module_name` | [string](#string) | | | +| `invariant_route` | [string](#string) | | | -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `unbonding_time` | [google.protobuf.Duration](#google.protobuf.Duration) | | unbonding_time is the time duration of unbonding. | -| `max_validators` | [uint32](#uint32) | | max_validators is the maximum number of validators. | -| `max_entries` | [uint32](#uint32) | | max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). | -| `historical_entries` | [uint32](#uint32) | | historical_entries is the number of historical entries to persist. | -| `bond_denom` | [string](#string) | | bond_denom defines the bondable coin denomination. | + - +### MsgVerifyInvariantResponse +MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type. -### Pool -Pool is used for tracking bonded and not-bonded token supply of the bond -denomination. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `not_bonded_tokens` | [string](#string) | | | -| `bonded_tokens` | [string](#string) | | | + + + - + -### Redelegation -Redelegation contains the list of a particular delegator's redelegating bonds -from a particular source validator to a particular destination validator. +### Msg +Msg defines the bank Msg service. +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `VerifyInvariant` | [MsgVerifyInvariant](#lbm.crisis.v1beta1.MsgVerifyInvariant) | [MsgVerifyInvariantResponse](#lbm.crisis.v1beta1.MsgVerifyInvariantResponse) | VerifyInvariant defines a method to verify a particular invariance. | | -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address is the bech32-encoded address of the delegator. | -| `validator_src_address` | [string](#string) | | validator_src_address is the validator redelegation source operator address. | -| `validator_dst_address` | [string](#string) | | validator_dst_address is the validator redelegation destination operator address. | -| `entries` | [RedelegationEntry](#cosmos.staking.v1beta1.RedelegationEntry) | repeated | entries are the redelegation entries. + -redelegation entries | + + +## lbm/crypto/ed25519/keys.proto - + -### RedelegationEntry -RedelegationEntry defines a redelegation object with relevant metadata. +### PrivKey +PrivKey defines a ed25519 private key. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `creation_height` | [int64](#int64) | | creation_height defines the height which the redelegation took place. | -| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | completion_time defines the unix time for redelegation completion. | -| `initial_balance` | [string](#string) | | initial_balance defines the initial balance when redelegation started. | -| `shares_dst` | [string](#string) | | shares_dst is the amount of destination-validator shares created by redelegation. | +| `key` | [bytes](#bytes) | | | - + -### RedelegationEntryResponse -RedelegationEntryResponse is equivalent to a RedelegationEntry except that it -contains a balance in addition to shares which is more suitable for client -responses. +### PubKey +PubKey defines a ed25519 public key +Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte +if the y-coordinate is the lexicographically largest of the two associated with +the x-coordinate. Otherwise the first byte is a 0x03. +This prefix is followed with the x-coordinate. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `redelegation_entry` | [RedelegationEntry](#cosmos.staking.v1beta1.RedelegationEntry) | | | -| `balance` | [string](#string) | | | +| `key` | [bytes](#bytes) | | | + - + -### RedelegationResponse -RedelegationResponse is equivalent to a Redelegation except that its entries -contain a balance in addition to shares which is more suitable for client -responses. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `redelegation` | [Redelegation](#cosmos.staking.v1beta1.Redelegation) | | | -| `entries` | [RedelegationEntryResponse](#cosmos.staking.v1beta1.RedelegationEntryResponse) | repeated | | + + +## lbm/crypto/multisig/keys.proto - + -### UnbondingDelegation -UnbondingDelegation stores all of a single delegator's unbonding bonds -for a single validator in an time-ordered list. +### LegacyAminoPubKey +LegacyAminoPubKey specifies a public key type +which nests multiple public keys and a threshold, +it uses legacy amino address rules. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | delegator_address is the bech32-encoded address of the delegator. | -| `validator_address` | [string](#string) | | validator_address is the bech32-encoded address of the validator. | -| `entries` | [UnbondingDelegationEntry](#cosmos.staking.v1beta1.UnbondingDelegationEntry) | repeated | entries are the unbonding delegation entries. - -unbonding delegation entries | +| `threshold` | [uint32](#uint32) | | | +| `public_keys` | [google.protobuf.Any](#google.protobuf.Any) | repeated | | + - + -### UnbondingDelegationEntry -UnbondingDelegationEntry defines an unbonding object with relevant metadata. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `creation_height` | [int64](#int64) | | creation_height is the height which the unbonding took place. | -| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | completion_time is the unix time for unbonding completion. | -| `initial_balance` | [string](#string) | | initial_balance defines the tokens initially scheduled to receive at completion. | -| `balance` | [string](#string) | | balance defines the tokens to receive at completion. | + + +## lbm/crypto/multisig/v1beta1/multisig.proto - + -### ValAddresses -ValAddresses defines a repeated set of validator addresses. +### CompactBitArray +CompactBitArray is an implementation of a space efficient bit array. +This is used to ensure that the encoded data takes up a minimal amount of +space after proto encoding. +This is not thread safe, and is not intended for concurrent usage. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `addresses` | [string](#string) | repeated | | +| `extra_bits_stored` | [uint32](#uint32) | | | +| `elems` | [bytes](#bytes) | | | - + -### Validator -Validator defines a validator, together with the total amount of the -Validator's bond shares and their exchange rate to coins. Slashing results in -a decrease in the exchange rate, allowing correct calculation of future -undelegations without iterating over delegators. When coins are delegated to -this validator, the validator is credited with a delegation whose number of -bond shares is based on the amount of coins delegated divided by the current -exchange rate. Voting power can be calculated as total bonded shares -multiplied by exchange rate. +### MultiSignature +MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey. +See lbm.tx.v1betata1.ModeInfo.Multi for how to specify which signers +signed and with which modes. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `operator_address` | [string](#string) | | operator_address defines the address of the validator's operator; bech encoded in JSON. | -| `consensus_pubkey` | [google.protobuf.Any](#google.protobuf.Any) | | consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. | -| `jailed` | [bool](#bool) | | jailed defined whether the validator has been jailed from bonded status or not. | -| `status` | [BondStatus](#cosmos.staking.v1beta1.BondStatus) | | status is the validator status (bonded/unbonding/unbonded). | -| `tokens` | [string](#string) | | tokens define the delegated tokens (incl. self-delegation). | -| `delegator_shares` | [string](#string) | | delegator_shares defines total shares issued to a validator's delegators. | -| `description` | [Description](#cosmos.staking.v1beta1.Description) | | description defines the description terms for the validator. | -| `unbonding_height` | [int64](#int64) | | unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. | -| `unbonding_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. | -| `commission` | [Commission](#cosmos.staking.v1beta1.Commission) | | commission defines the commission parameters. | -| `min_self_delegation` | [string](#string) | | min_self_delegation is the validator's self declared minimum self delegation. | +| `signatures` | [bytes](#bytes) | repeated | | @@ -5389,20 +5619,6 @@ multiplied by exchange rate. - - - -### BondStatus -BondStatus is the status of a validator. - -| Name | Number | Description | -| ---- | ------ | ----------- | -| BOND_STATUS_UNSPECIFIED | 0 | UNSPECIFIED defines an invalid validator status. | -| BOND_STATUS_UNBONDED | 1 | UNBONDED defines a validator that is not bonded. | -| BOND_STATUS_UNBONDING | 2 | UNBONDING defines a validator that is unbonding. | -| BOND_STATUS_BONDED | 3 | BONDED defines a validator that is bonded. | - - @@ -5411,45 +5627,41 @@ BondStatus is the status of a validator. - + -## cosmos/staking/v1beta1/genesis.proto +## lbm/crypto/secp256k1/keys.proto - + -### GenesisState -GenesisState defines the staking module's genesis state. +### PrivKey +PrivKey defines a secp256k1 private key. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.staking.v1beta1.Params) | | params defines all the paramaters of related to deposit. | -| `last_total_power` | [bytes](#bytes) | | last_total_power tracks the total amounts of bonded tokens recorded during the previous end block. | -| `last_validator_powers` | [LastValidatorPower](#cosmos.staking.v1beta1.LastValidatorPower) | repeated | last_validator_powers is a special index that provides a historical list of the last-block's bonded validators. | -| `validators` | [Validator](#cosmos.staking.v1beta1.Validator) | repeated | delegations defines the validator set at genesis. | -| `delegations` | [Delegation](#cosmos.staking.v1beta1.Delegation) | repeated | delegations defines the delegations active at genesis. | -| `unbonding_delegations` | [UnbondingDelegation](#cosmos.staking.v1beta1.UnbondingDelegation) | repeated | unbonding_delegations defines the unbonding delegations active at genesis. | -| `redelegations` | [Redelegation](#cosmos.staking.v1beta1.Redelegation) | repeated | redelegations defines the redelegations active at genesis. | -| `exported` | [bool](#bool) | | | +| `key` | [bytes](#bytes) | | | - + -### LastValidatorPower -LastValidatorPower required for validator set update logic. +### PubKey +PubKey defines a secp256k1 public key +Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte +if the y-coordinate is the lexicographically largest of the two associated with +the x-coordinate. Otherwise the first byte is a 0x03. +This prefix is followed with the x-coordinate. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `address` | [string](#string) | | address is the address of the validator. | -| `power` | [int64](#int64) | | power defines the power of the validator. | +| `key` | [bytes](#bytes) | | | @@ -5465,647 +5677,688 @@ LastValidatorPower required for validator set update logic. - + -## cosmos/staking/v1beta1/query.proto +## lbm/distribution/v1beta1/distribution.proto - + -### QueryDelegationRequest -QueryDelegationRequest is request type for the Query/Delegation RPC method. +### CommunityPoolSpendProposal +CommunityPoolSpendProposal details a proposal for use of community funds, +together with how many coins are proposed to be spent, and to which +recipient account. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | +| `title` | [string](#string) | | | +| `description` | [string](#string) | | | +| `recipient` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - + -### QueryDelegationResponse -QueryDelegationResponse is response type for the Query/Delegation RPC method. +### CommunityPoolSpendProposalWithDeposit +CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal +with a deposit | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegation_response` | [DelegationResponse](#cosmos.staking.v1beta1.DelegationResponse) | | delegation_responses defines the delegation info of a delegation. | +| `title` | [string](#string) | | | +| `description` | [string](#string) | | | +| `recipient` | [string](#string) | | | +| `amount` | [string](#string) | | | +| `deposit` | [string](#string) | | | - + -### QueryDelegatorDelegationsRequest -QueryDelegatorDelegationsRequest is request type for the -Query/DelegatorDelegations RPC method. +### DelegationDelegatorReward +DelegationDelegatorReward represents the properties +of a delegator's delegation reward. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `validator_address` | [string](#string) | | | +| `reward` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | | - + -### QueryDelegatorDelegationsResponse -QueryDelegatorDelegationsResponse is response type for the -Query/DelegatorDelegations RPC method. +### DelegatorStartingInfo +DelegatorStartingInfo represents the starting info for a delegator reward +period. It tracks the previous validator period, the delegation's amount of +staking token, and the creation height (to check later on if any slashes have +occurred). NOTE: Even though validators are slashed to whole staking tokens, +the delegators within the validator may be left with less than a full token, +thus sdk.Dec is used. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegation_responses` | [DelegationResponse](#cosmos.staking.v1beta1.DelegationResponse) | repeated | delegation_responses defines all the delegations' info of a delegator. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `previous_period` | [uint64](#uint64) | | | +| `stake` | [string](#string) | | | +| `height` | [uint64](#uint64) | | | - + -### QueryDelegatorUnbondingDelegationsRequest -QueryDelegatorUnbondingDelegationsRequest is request type for the -Query/DelegatorUnbondingDelegations RPC method. +### FeePool +FeePool is the global fee pool for distribution. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `community_pool` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | | - + -### QueryDelegatorUnbondingDelegationsResponse -QueryUnbondingDelegatorDelegationsResponse is response type for the -Query/UnbondingDelegatorDelegations RPC method. +### Params +Params defines the set of params for the distribution module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `unbonding_responses` | [UnbondingDelegation](#cosmos.staking.v1beta1.UnbondingDelegation) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `community_tax` | [string](#string) | | | +| `base_proposer_reward` | [string](#string) | | | +| `bonus_proposer_reward` | [string](#string) | | | +| `withdraw_addr_enabled` | [bool](#bool) | | | - + -### QueryDelegatorValidatorRequest -QueryDelegatorValidatorRequest is request type for the -Query/DelegatorValidator RPC method. +### ValidatorAccumulatedCommission +ValidatorAccumulatedCommission represents accumulated commission +for a validator kept as a running counter, can be withdrawn at any time. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | +| `commission` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | | - + -### QueryDelegatorValidatorResponse -QueryDelegatorValidatorResponse response type for the -Query/DelegatorValidator RPC method. +### ValidatorCurrentRewards +ValidatorCurrentRewards represents current rewards and current +period for a validator kept as a running counter and incremented +each block as long as the validator's tokens remain constant. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator` | [Validator](#cosmos.staking.v1beta1.Validator) | | validator defines the the validator info. | +| `rewards` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | | +| `period` | [uint64](#uint64) | | | - + -### QueryDelegatorValidatorsRequest -QueryDelegatorValidatorsRequest is request type for the -Query/DelegatorValidators RPC method. +### ValidatorHistoricalRewards +ValidatorHistoricalRewards represents historical rewards for a validator. +Height is implicit within the store key. +Cumulative reward ratio is the sum from the zeroeth period +until this period of rewards / tokens, per the spec. +The reference count indicates the number of objects +which might need to reference this historical entry at any point. +ReferenceCount = + number of outstanding delegations which ended the associated period (and + might need to read that record) + + number of slashes which ended the associated period (and might need to + read that record) + + one per validator for the zeroeth period, set on initialization | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `cumulative_reward_ratio` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | | +| `reference_count` | [uint32](#uint32) | | | - + -### QueryDelegatorValidatorsResponse -QueryDelegatorValidatorsResponse is response type for the -Query/DelegatorValidators RPC method. +### ValidatorOutstandingRewards +ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards +for a validator inexpensive to track, allows simple sanity checks. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validators` | [Validator](#cosmos.staking.v1beta1.Validator) | repeated | validators defines the the validators' info of a delegator. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `rewards` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | | - + -### QueryHistoricalInfoRequest -QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC -method. +### ValidatorSlashEvent +ValidatorSlashEvent represents a validator slash event. +Height is implicit within the store key. +This is needed to calculate appropriate amount of staking tokens +for delegations which are withdrawn after a slash has occurred. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `height` | [int64](#int64) | | height defines at which height to query the historical info. | +| `validator_period` | [uint64](#uint64) | | | +| `fraction` | [string](#string) | | | - + -### QueryHistoricalInfoResponse -QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC -method. +### ValidatorSlashEvents +ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `hist` | [HistoricalInfo](#cosmos.staking.v1beta1.HistoricalInfo) | | hist defines the historical info at the given height. | - - +| `validator_slash_events` | [ValidatorSlashEvent](#lbm.distribution.v1beta1.ValidatorSlashEvent) | repeated | | - - -### QueryParamsRequest -QueryParamsRequest is request type for the Query/Params RPC method. - - + + + - + -### QueryParamsResponse -QueryParamsResponse is response type for the Query/Params RPC method. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `params` | [Params](#cosmos.staking.v1beta1.Params) | | params holds all the parameters of this module. | + + +## lbm/distribution/v1beta1/genesis.proto + +### DelegatorStartingInfoRecord +DelegatorStartingInfoRecord used for import / export via genesis json. - -### QueryPoolRequest -QueryPoolRequest is request type for the Query/Pool RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `delegator_address` | [string](#string) | | delegator_address is the address of the delegator. | +| `validator_address` | [string](#string) | | validator_address is the address of the validator. | +| `starting_info` | [DelegatorStartingInfo](#lbm.distribution.v1beta1.DelegatorStartingInfo) | | starting_info defines the starting info of a delegator. | - + -### QueryPoolResponse -QueryPoolResponse is response type for the Query/Pool RPC method. +### DelegatorWithdrawInfo +DelegatorWithdrawInfo is the address for where distributions rewards are +withdrawn to by default this struct is only used at genesis to feed in +default withdraw addresses. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pool` | [Pool](#cosmos.staking.v1beta1.Pool) | | pool defines the pool info. | +| `delegator_address` | [string](#string) | | delegator_address is the address of the delegator. | +| `withdraw_address` | [string](#string) | | withdraw_address is the address to withdraw the delegation rewards to. | - + -### QueryRedelegationsRequest -QueryRedelegationsRequest is request type for the Query/Redelegations RPC -method. +### GenesisState +GenesisState defines the distribution module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `src_validator_addr` | [string](#string) | | src_validator_addr defines the validator address to redelegate from. | -| `dst_validator_addr` | [string](#string) | | dst_validator_addr defines the validator address to redelegate to. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `params` | [Params](#lbm.distribution.v1beta1.Params) | | params defines all the paramaters of the module. | +| `fee_pool` | [FeePool](#lbm.distribution.v1beta1.FeePool) | | fee_pool defines the fee pool at genesis. | +| `delegator_withdraw_infos` | [DelegatorWithdrawInfo](#lbm.distribution.v1beta1.DelegatorWithdrawInfo) | repeated | fee_pool defines the delegator withdraw infos at genesis. | +| `previous_proposer` | [string](#string) | | fee_pool defines the previous proposer at genesis. | +| `outstanding_rewards` | [ValidatorOutstandingRewardsRecord](#lbm.distribution.v1beta1.ValidatorOutstandingRewardsRecord) | repeated | fee_pool defines the outstanding rewards of all validators at genesis. | +| `validator_accumulated_commissions` | [ValidatorAccumulatedCommissionRecord](#lbm.distribution.v1beta1.ValidatorAccumulatedCommissionRecord) | repeated | fee_pool defines the accumulated commisions of all validators at genesis. | +| `validator_historical_rewards` | [ValidatorHistoricalRewardsRecord](#lbm.distribution.v1beta1.ValidatorHistoricalRewardsRecord) | repeated | fee_pool defines the historical rewards of all validators at genesis. | +| `validator_current_rewards` | [ValidatorCurrentRewardsRecord](#lbm.distribution.v1beta1.ValidatorCurrentRewardsRecord) | repeated | fee_pool defines the current rewards of all validators at genesis. | +| `delegator_starting_infos` | [DelegatorStartingInfoRecord](#lbm.distribution.v1beta1.DelegatorStartingInfoRecord) | repeated | fee_pool defines the delegator starting infos at genesis. | +| `validator_slash_events` | [ValidatorSlashEventRecord](#lbm.distribution.v1beta1.ValidatorSlashEventRecord) | repeated | fee_pool defines the validator slash events at genesis. | - + -### QueryRedelegationsResponse -QueryRedelegationsResponse is response type for the Query/Redelegations RPC -method. +### ValidatorAccumulatedCommissionRecord +ValidatorAccumulatedCommissionRecord is used for import / export via genesis +json. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `redelegation_responses` | [RedelegationResponse](#cosmos.staking.v1beta1.RedelegationResponse) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `validator_address` | [string](#string) | | validator_address is the address of the validator. | +| `accumulated` | [ValidatorAccumulatedCommission](#lbm.distribution.v1beta1.ValidatorAccumulatedCommission) | | accumulated is the accumulated commission of a validator. | - + -### QueryUnbondingDelegationRequest -QueryUnbondingDelegationRequest is request type for the -Query/UnbondingDelegation RPC method. +### ValidatorCurrentRewardsRecord +ValidatorCurrentRewardsRecord is used for import / export via genesis json. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | -| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | +| `validator_address` | [string](#string) | | validator_address is the address of the validator. | +| `rewards` | [ValidatorCurrentRewards](#lbm.distribution.v1beta1.ValidatorCurrentRewards) | | rewards defines the current rewards of a validator. | - + -### QueryUnbondingDelegationResponse -QueryDelegationResponse is response type for the Query/UnbondingDelegation -RPC method. +### ValidatorHistoricalRewardsRecord +ValidatorHistoricalRewardsRecord is used for import / export via genesis +json. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `unbond` | [UnbondingDelegation](#cosmos.staking.v1beta1.UnbondingDelegation) | | unbond defines the unbonding information of a delegation. | +| `validator_address` | [string](#string) | | validator_address is the address of the validator. | +| `period` | [uint64](#uint64) | | period defines the period the historical rewards apply to. | +| `rewards` | [ValidatorHistoricalRewards](#lbm.distribution.v1beta1.ValidatorHistoricalRewards) | | rewards defines the historical rewards of a validator. | - + -### QueryValidatorDelegationsRequest -QueryValidatorDelegationsRequest is request type for the -Query/ValidatorDelegations RPC method +### ValidatorOutstandingRewardsRecord +ValidatorOutstandingRewardsRecord is used for import/export via genesis json. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `validator_address` | [string](#string) | | validator_address is the address of the validator. | +| `outstanding_rewards` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | outstanding_rewards represents the oustanding rewards of a validator. | - + -### QueryValidatorDelegationsResponse -QueryValidatorDelegationsResponse is response type for the -Query/ValidatorDelegations RPC method +### ValidatorSlashEventRecord +ValidatorSlashEventRecord is used for import / export via genesis json. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegation_responses` | [DelegationResponse](#cosmos.staking.v1beta1.DelegationResponse) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - - +| `validator_address` | [string](#string) | | validator_address is the address of the validator. | +| `height` | [uint64](#uint64) | | height defines the block height at which the slash event occured. | +| `period` | [uint64](#uint64) | | period is the period of the slash event. | +| `validator_slash_event` | [ValidatorSlashEvent](#lbm.distribution.v1beta1.ValidatorSlashEvent) | | validator_slash_event describes the slash event. | - -### QueryValidatorRequest -QueryValidatorRequest is response type for the Query/Validator RPC method + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | + + + + +## lbm/distribution/v1beta1/query.proto - -### QueryValidatorResponse -QueryValidatorResponse is response type for the Query/Validator RPC method + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `validator` | [Validator](#cosmos.staking.v1beta1.Validator) | | validator defines the the validator info. | +### QueryCommunityPoolRequest +QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC +method. - + -### QueryValidatorUnbondingDelegationsRequest -QueryValidatorUnbondingDelegationsRequest is required type for the -Query/ValidatorUnbondingDelegations RPC method +### QueryCommunityPoolResponse +QueryCommunityPoolResponse is the response type for the Query/CommunityPool +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `pool` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | pool defines community pool's coins. | - + -### QueryValidatorUnbondingDelegationsResponse -QueryValidatorUnbondingDelegationsResponse is response type for the -Query/ValidatorUnbondingDelegations RPC method. +### QueryDelegationRewardsRequest +QueryDelegationRewardsRequest is the request type for the +Query/DelegationRewards RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `unbonding_responses` | [UnbondingDelegation](#cosmos.staking.v1beta1.UnbondingDelegation) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | +| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | - + -### QueryValidatorsRequest -QueryValidatorsRequest is request type for Query/Validators RPC method. +### QueryDelegationRewardsResponse +QueryDelegationRewardsResponse is the response type for the +Query/DelegationRewards RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `status` | [string](#string) | | status enables to query for validators matching a given status. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `rewards` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | rewards defines the rewards accrued by a delegation. | - + -### QueryValidatorsResponse -QueryValidatorsResponse is response type for the Query/Validators RPC method +### QueryDelegationTotalRewardsRequest +QueryDelegationTotalRewardsRequest is the request type for the +Query/DelegationTotalRewards RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validators` | [Validator](#cosmos.staking.v1beta1.Validator) | repeated | validators contains all the queried validators. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - - - - +| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | - - - - -### Query -Query defines the gRPC querier service. + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Validators` | [QueryValidatorsRequest](#cosmos.staking.v1beta1.QueryValidatorsRequest) | [QueryValidatorsResponse](#cosmos.staking.v1beta1.QueryValidatorsResponse) | Validators queries all validators that match the given status. | GET|/cosmos/staking/v1beta1/validators| -| `Validator` | [QueryValidatorRequest](#cosmos.staking.v1beta1.QueryValidatorRequest) | [QueryValidatorResponse](#cosmos.staking.v1beta1.QueryValidatorResponse) | Validator queries validator info for given validator address. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}| -| `ValidatorDelegations` | [QueryValidatorDelegationsRequest](#cosmos.staking.v1beta1.QueryValidatorDelegationsRequest) | [QueryValidatorDelegationsResponse](#cosmos.staking.v1beta1.QueryValidatorDelegationsResponse) | ValidatorDelegations queries delegate info for given validator. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/delegations| -| `ValidatorUnbondingDelegations` | [QueryValidatorUnbondingDelegationsRequest](#cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest) | [QueryValidatorUnbondingDelegationsResponse](#cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse) | ValidatorUnbondingDelegations queries unbonding delegations of a validator. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations| -| `Delegation` | [QueryDelegationRequest](#cosmos.staking.v1beta1.QueryDelegationRequest) | [QueryDelegationResponse](#cosmos.staking.v1beta1.QueryDelegationResponse) | Delegation queries delegate info for given validator delegator pair. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}| -| `UnbondingDelegation` | [QueryUnbondingDelegationRequest](#cosmos.staking.v1beta1.QueryUnbondingDelegationRequest) | [QueryUnbondingDelegationResponse](#cosmos.staking.v1beta1.QueryUnbondingDelegationResponse) | UnbondingDelegation queries unbonding info for given validator delegator pair. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}/unbonding_delegation| -| `DelegatorDelegations` | [QueryDelegatorDelegationsRequest](#cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest) | [QueryDelegatorDelegationsResponse](#cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse) | DelegatorDelegations queries all delegations of a given delegator address. | GET|/cosmos/staking/v1beta1/delegations/{delegator_addr}| -| `DelegatorUnbondingDelegations` | [QueryDelegatorUnbondingDelegationsRequest](#cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest) | [QueryDelegatorUnbondingDelegationsResponse](#cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse) | DelegatorUnbondingDelegations queries all unbonding delegations of a given delegator address. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/unbonding_delegations| -| `Redelegations` | [QueryRedelegationsRequest](#cosmos.staking.v1beta1.QueryRedelegationsRequest) | [QueryRedelegationsResponse](#cosmos.staking.v1beta1.QueryRedelegationsResponse) | Redelegations queries redelegations of given address. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/redelegations| -| `DelegatorValidators` | [QueryDelegatorValidatorsRequest](#cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest) | [QueryDelegatorValidatorsResponse](#cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse) | DelegatorValidators queries all validators info for given delegator address. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/validators| -| `DelegatorValidator` | [QueryDelegatorValidatorRequest](#cosmos.staking.v1beta1.QueryDelegatorValidatorRequest) | [QueryDelegatorValidatorResponse](#cosmos.staking.v1beta1.QueryDelegatorValidatorResponse) | DelegatorValidator queries validator info for given delegator validator pair. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/validators/{validator_addr}| -| `HistoricalInfo` | [QueryHistoricalInfoRequest](#cosmos.staking.v1beta1.QueryHistoricalInfoRequest) | [QueryHistoricalInfoResponse](#cosmos.staking.v1beta1.QueryHistoricalInfoResponse) | HistoricalInfo queries the historical info for given height. | GET|/cosmos/staking/v1beta1/historical_info/{height}| -| `Pool` | [QueryPoolRequest](#cosmos.staking.v1beta1.QueryPoolRequest) | [QueryPoolResponse](#cosmos.staking.v1beta1.QueryPoolResponse) | Pool queries the pool info. | GET|/cosmos/staking/v1beta1/pool| -| `Params` | [QueryParamsRequest](#cosmos.staking.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#cosmos.staking.v1beta1.QueryParamsResponse) | Parameters queries the staking parameters. | GET|/cosmos/staking/v1beta1/params| +### QueryDelegationTotalRewardsResponse +QueryDelegationTotalRewardsResponse is the response type for the +Query/DelegationTotalRewards RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `rewards` | [DelegationDelegatorReward](#lbm.distribution.v1beta1.DelegationDelegatorReward) | repeated | rewards defines all the rewards accrued by a delegator. | +| `total` | [lbm.base.v1beta1.DecCoin](#lbm.base.v1beta1.DecCoin) | repeated | total defines the sum of all the rewards. | - - -## cosmos/staking/v1beta1/tx.proto - + -### MsgBeginRedelegate -MsgBeginRedelegate defines a SDK message for performing a redelegation -of coins from a delegator and source validator to a destination validator. +### QueryDelegatorValidatorsRequest +QueryDelegatorValidatorsRequest is the request type for the +Query/DelegatorValidators RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `validator_src_address` | [string](#string) | | | -| `validator_dst_address` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | - + -### MsgBeginRedelegateResponse -MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type. +### QueryDelegatorValidatorsResponse +QueryDelegatorValidatorsResponse is the response type for the +Query/DelegatorValidators RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `validators` | [string](#string) | repeated | validators defines the validators a delegator is delegating for. | - + -### MsgCreateValidator -MsgCreateValidator defines a SDK message for creating a new validator. +### QueryDelegatorWithdrawAddressRequest +QueryDelegatorWithdrawAddressRequest is the request type for the +Query/DelegatorWithdrawAddress RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `description` | [Description](#cosmos.staking.v1beta1.Description) | | | -| `commission` | [CommissionRates](#cosmos.staking.v1beta1.CommissionRates) | | | -| `min_self_delegation` | [string](#string) | | | -| `delegator_address` | [string](#string) | | | -| `validator_address` | [string](#string) | | | -| `pubkey` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `value` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `delegator_address` | [string](#string) | | delegator_address defines the delegator address to query for. | - + -### MsgCreateValidatorResponse -MsgCreateValidatorResponse defines the Msg/CreateValidator response type. +### QueryDelegatorWithdrawAddressResponse +QueryDelegatorWithdrawAddressResponse is the response type for the +Query/DelegatorWithdrawAddress RPC method. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `withdraw_address` | [string](#string) | | withdraw_address defines the delegator address to query for. | - + + +### QueryParamsRequest +QueryParamsRequest is the request type for the Query/Params RPC method. -### MsgDelegate -MsgDelegate defines a SDK message for performing a delegation of coins -from a delegator to a validator. + + + + + + + +### QueryParamsResponse +QueryParamsResponse is the response type for the Query/Params RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `validator_address` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `params` | [Params](#lbm.distribution.v1beta1.Params) | | params defines the parameters of the module. | - + + +### QueryValidatorCommissionRequest +QueryValidatorCommissionRequest is the request type for the +Query/ValidatorCommission RPC method -### MsgDelegateResponse -MsgDelegateResponse defines the Msg/Delegate response type. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | - -### MsgEditValidator -MsgEditValidator defines a SDK message for editing an existing validator. + + +### QueryValidatorCommissionResponse +QueryValidatorCommissionResponse is the response type for the +Query/ValidatorCommission RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `description` | [Description](#cosmos.staking.v1beta1.Description) | | | -| `validator_address` | [string](#string) | | | -| `commission_rate` | [string](#string) | | We pass a reference to the new commission rate and min self delegation as it's not mandatory to update. If not updated, the deserialized rate will be zero with no way to distinguish if an update was intended. REF: #2373 | -| `min_self_delegation` | [string](#string) | | | +| `commission` | [ValidatorAccumulatedCommission](#lbm.distribution.v1beta1.ValidatorAccumulatedCommission) | | commission defines the commision the validator received. | - + + +### QueryValidatorOutstandingRewardsRequest +QueryValidatorOutstandingRewardsRequest is the request type for the +Query/ValidatorOutstandingRewards RPC method. -### MsgEditValidatorResponse -MsgEditValidatorResponse defines the Msg/EditValidator response type. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | - -### MsgUndelegate -MsgUndelegate defines a SDK message for performing an undelegation from a -delegate and a validator. + + +### QueryValidatorOutstandingRewardsResponse +QueryValidatorOutstandingRewardsResponse is the response type for the +Query/ValidatorOutstandingRewards RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegator_address` | [string](#string) | | | -| `validator_address` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `rewards` | [ValidatorOutstandingRewards](#lbm.distribution.v1beta1.ValidatorOutstandingRewards) | | | - + -### MsgUndelegateResponse -MsgUndelegateResponse defines the Msg/Undelegate response type. +### QueryValidatorSlashesRequest +QueryValidatorSlashesRequest is the request type for the +Query/ValidatorSlashes RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `validator_address` | [string](#string) | | validator_address defines the validator address to query for. | +| `starting_height` | [uint64](#uint64) | | starting_height defines the optional starting height to query the slashes. | +| `ending_height` | [uint64](#uint64) | | starting_height defines the optional ending height to query the slashes. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | + + + + + + + + +### QueryValidatorSlashesResponse +QueryValidatorSlashesResponse is the response type for the +Query/ValidatorSlashes RPC method. + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `slashes` | [ValidatorSlashEvent](#lbm.distribution.v1beta1.ValidatorSlashEvent) | repeated | slashes defines the slashes the validator received. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | @@ -6118,316 +6371,293 @@ MsgUndelegateResponse defines the Msg/Undelegate response type. - + -### Msg -Msg defines the staking Msg service. +### Query +Query defines the gRPC querier service for distribution module. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `CreateValidator` | [MsgCreateValidator](#cosmos.staking.v1beta1.MsgCreateValidator) | [MsgCreateValidatorResponse](#cosmos.staking.v1beta1.MsgCreateValidatorResponse) | CreateValidator defines a method for creating a new validator. | | -| `EditValidator` | [MsgEditValidator](#cosmos.staking.v1beta1.MsgEditValidator) | [MsgEditValidatorResponse](#cosmos.staking.v1beta1.MsgEditValidatorResponse) | EditValidator defines a method for editing an existing validator. | | -| `Delegate` | [MsgDelegate](#cosmos.staking.v1beta1.MsgDelegate) | [MsgDelegateResponse](#cosmos.staking.v1beta1.MsgDelegateResponse) | Delegate defines a method for performing a delegation of coins from a delegator to a validator. | | -| `BeginRedelegate` | [MsgBeginRedelegate](#cosmos.staking.v1beta1.MsgBeginRedelegate) | [MsgBeginRedelegateResponse](#cosmos.staking.v1beta1.MsgBeginRedelegateResponse) | BeginRedelegate defines a method for performing a redelegation of coins from a delegator and source validator to a destination validator. | | -| `Undelegate` | [MsgUndelegate](#cosmos.staking.v1beta1.MsgUndelegate) | [MsgUndelegateResponse](#cosmos.staking.v1beta1.MsgUndelegateResponse) | Undelegate defines a method for performing an undelegation from a delegate and a validator. | | +| `Params` | [QueryParamsRequest](#lbm.distribution.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.distribution.v1beta1.QueryParamsResponse) | Params queries params of the distribution module. | GET|/cosmos/distribution/v1beta1/params| +| `ValidatorOutstandingRewards` | [QueryValidatorOutstandingRewardsRequest](#lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest) | [QueryValidatorOutstandingRewardsResponse](#lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse) | ValidatorOutstandingRewards queries rewards of a validator address. | GET|/cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards| +| `ValidatorCommission` | [QueryValidatorCommissionRequest](#lbm.distribution.v1beta1.QueryValidatorCommissionRequest) | [QueryValidatorCommissionResponse](#lbm.distribution.v1beta1.QueryValidatorCommissionResponse) | ValidatorCommission queries accumulated commission for a validator. | GET|/cosmos/distribution/v1beta1/validators/{validator_address}/commission| +| `ValidatorSlashes` | [QueryValidatorSlashesRequest](#lbm.distribution.v1beta1.QueryValidatorSlashesRequest) | [QueryValidatorSlashesResponse](#lbm.distribution.v1beta1.QueryValidatorSlashesResponse) | ValidatorSlashes queries slash events of a validator. | GET|/cosmos/distribution/v1beta1/validators/{validator_address}/slashes| +| `DelegationRewards` | [QueryDelegationRewardsRequest](#lbm.distribution.v1beta1.QueryDelegationRewardsRequest) | [QueryDelegationRewardsResponse](#lbm.distribution.v1beta1.QueryDelegationRewardsResponse) | DelegationRewards queries the total rewards accrued by a delegation. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address}| +| `DelegationTotalRewards` | [QueryDelegationTotalRewardsRequest](#lbm.distribution.v1beta1.QueryDelegationTotalRewardsRequest) | [QueryDelegationTotalRewardsResponse](#lbm.distribution.v1beta1.QueryDelegationTotalRewardsResponse) | DelegationTotalRewards queries the total rewards accrued by a each validator. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards| +| `DelegatorValidators` | [QueryDelegatorValidatorsRequest](#lbm.distribution.v1beta1.QueryDelegatorValidatorsRequest) | [QueryDelegatorValidatorsResponse](#lbm.distribution.v1beta1.QueryDelegatorValidatorsResponse) | DelegatorValidators queries the validators of a delegator. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/validators| +| `DelegatorWithdrawAddress` | [QueryDelegatorWithdrawAddressRequest](#lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest) | [QueryDelegatorWithdrawAddressResponse](#lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse) | DelegatorWithdrawAddress queries withdraw address of a delegator. | GET|/cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address| +| `CommunityPool` | [QueryCommunityPoolRequest](#lbm.distribution.v1beta1.QueryCommunityPoolRequest) | [QueryCommunityPoolResponse](#lbm.distribution.v1beta1.QueryCommunityPoolResponse) | CommunityPool queries the community pool coins. | GET|/cosmos/distribution/v1beta1/community_pool| - + -## cosmos/tx/signing/v1beta1/signing.proto +## lbm/distribution/v1beta1/tx.proto - + -### SignatureDescriptor -SignatureDescriptor is a convenience type which represents the full data for -a signature including the public key of the signer, signing modes and the -signature itself. It is primarily used for coordinating signatures between -clients. +### MsgFundCommunityPool +MsgFundCommunityPool allows an account to directly +fund the community pool. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `public_key` | [google.protobuf.Any](#google.protobuf.Any) | | public_key is the public key of the signer | -| `data` | [SignatureDescriptor.Data](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data) | | | -| `sequence` | [uint64](#uint64) | | sequence is the sequence of the account, which describes the number of committed transactions signed by a given address. It is used to prevent replay attacks. | - - +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `depositor` | [string](#string) | | | - -### SignatureDescriptor.Data -Data represents signature data + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `single` | [SignatureDescriptor.Data.Single](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Single) | | single represents a single signer | -| `multi` | [SignatureDescriptor.Data.Multi](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Multi) | | multi represents a multisig signer | +### MsgFundCommunityPoolResponse +MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type. - + -### SignatureDescriptor.Data.Multi -Multi is the signature data for a multisig public key +### MsgSetWithdrawAddress +MsgSetWithdrawAddress sets the withdraw address for +a delegator (or validator self-delegation). | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `bitarray` | [cosmos.crypto.multisig.v1beta1.CompactBitArray](#cosmos.crypto.multisig.v1beta1.CompactBitArray) | | bitarray specifies which keys within the multisig are signing | -| `signatures` | [SignatureDescriptor.Data](#cosmos.tx.signing.v1beta1.SignatureDescriptor.Data) | repeated | signatures is the signatures of the multi-signature | - - +| `delegator_address` | [string](#string) | | | +| `withdraw_address` | [string](#string) | | | - -### SignatureDescriptor.Data.Single -Single is the signature data for a single signer + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `mode` | [SignMode](#cosmos.tx.signing.v1beta1.SignMode) | | mode is the signing mode of the single signer | -| `signature` | [bytes](#bytes) | | signature is the raw signature bytes | +### MsgSetWithdrawAddressResponse +MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response type. - + -### SignatureDescriptors -SignatureDescriptors wraps multiple SignatureDescriptor's. +### MsgWithdrawDelegatorReward +MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator +from a single validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `signatures` | [SignatureDescriptor](#cosmos.tx.signing.v1beta1.SignatureDescriptor) | repeated | signatures are the signature descriptors | +| `delegator_address` | [string](#string) | | | +| `validator_address` | [string](#string) | | | - + - +### MsgWithdrawDelegatorRewardResponse +MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward response type. -### SignMode -SignMode represents a signing mode with its own security guarantees. -| Name | Number | Description | -| ---- | ------ | ----------- | -| SIGN_MODE_UNSPECIFIED | 0 | SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be rejected | -| SIGN_MODE_DIRECT | 1 | SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is verified with raw bytes from Tx | -| SIGN_MODE_TEXTUAL | 2 | SIGN_MODE_TEXTUAL is a future signing mode that will verify some human-readable textual representation on top of the binary representation from SIGN_MODE_DIRECT | -| SIGN_MODE_LEGACY_AMINO_JSON | 127 | SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses Amino JSON and will be removed in the future | - - - + +### MsgWithdrawValidatorCommission +MsgWithdrawValidatorCommission withdraws the full commission to the validator +address. - - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `validator_address` | [string](#string) | | | -## cosmos/tx/v1beta1/tx.proto - -### AuthInfo -AuthInfo describes the fee and signer modes that are used to sign a -transaction. + + +### MsgWithdrawValidatorCommissionResponse +MsgWithdrawValidatorCommissionResponse defines the Msg/WithdrawValidatorCommission response type. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `signer_infos` | [SignerInfo](#cosmos.tx.v1beta1.SignerInfo) | repeated | signer_infos defines the signing modes for the required signers. The number and order of elements must match the required signers from TxBody's messages. The first element is the primary signer and the one which pays the fee. | -| `fee` | [Fee](#cosmos.tx.v1beta1.Fee) | | Fee is the fee and gas limit for the transaction. The first signer is the primary signer and the one which pays the fee. The fee can be calculated based on the cost of evaluating the body and doing signature verification of the signers. This can be estimated via simulation. | + + - + -### Fee -Fee includes the amount of coins paid in fees and the maximum -gas to be used by the transaction. The ratio yields an effective "gasprice", -which must be above some miminum to be accepted into the mempool. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | amount is the amount of coins to be paid as a fee | -| `gas_limit` | [uint64](#uint64) | | gas_limit is the maximum gas that can be used in transaction processing before an out of gas error occurs | -| `payer` | [string](#string) | | if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees. the payer must be a tx signer (and thus have signed this field in AuthInfo). setting this field does *not* change the ordering of required signers for the transaction. | -| `granter` | [string](#string) | | if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used to pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does not support fee grants, this will fail | +### Msg +Msg defines the distribution Msg service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `SetWithdrawAddress` | [MsgSetWithdrawAddress](#lbm.distribution.v1beta1.MsgSetWithdrawAddress) | [MsgSetWithdrawAddressResponse](#lbm.distribution.v1beta1.MsgSetWithdrawAddressResponse) | SetWithdrawAddress defines a method to change the withdraw address for a delegator (or validator self-delegation). | | +| `WithdrawDelegatorReward` | [MsgWithdrawDelegatorReward](#lbm.distribution.v1beta1.MsgWithdrawDelegatorReward) | [MsgWithdrawDelegatorRewardResponse](#lbm.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse) | WithdrawDelegatorReward defines a method to withdraw rewards of delegator from a single validator. | | +| `WithdrawValidatorCommission` | [MsgWithdrawValidatorCommission](#lbm.distribution.v1beta1.MsgWithdrawValidatorCommission) | [MsgWithdrawValidatorCommissionResponse](#lbm.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse) | WithdrawValidatorCommission defines a method to withdraw the full commission to the validator address. | | +| `FundCommunityPool` | [MsgFundCommunityPool](#lbm.distribution.v1beta1.MsgFundCommunityPool) | [MsgFundCommunityPoolResponse](#lbm.distribution.v1beta1.MsgFundCommunityPoolResponse) | FundCommunityPool defines a method to allow an account to directly fund the community pool. | | + + + +## lbm/evidence/v1beta1/evidence.proto - -### ModeInfo -ModeInfo describes the signing mode of a single or nested multisig signer. + + + +### Equivocation +Equivocation implements the Evidence interface and defines evidence of double +signing misbehavior. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `single` | [ModeInfo.Single](#cosmos.tx.v1beta1.ModeInfo.Single) | | single represents a single signer | -| `multi` | [ModeInfo.Multi](#cosmos.tx.v1beta1.ModeInfo.Multi) | | multi represents a nested multisig signer | +| `height` | [int64](#int64) | | | +| `time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `power` | [int64](#int64) | | | +| `consensus_address` | [string](#string) | | | + - + -### ModeInfo.Multi -Multi is the mode info for a multisig public key + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `bitarray` | [cosmos.crypto.multisig.v1beta1.CompactBitArray](#cosmos.crypto.multisig.v1beta1.CompactBitArray) | | bitarray specifies which keys within the multisig are signing | -| `mode_infos` | [ModeInfo](#cosmos.tx.v1beta1.ModeInfo) | repeated | mode_infos is the corresponding modes of the signers of the multisig which could include nested multisig public keys | + + +## lbm/evidence/v1beta1/genesis.proto - + -### ModeInfo.Single -Single is the mode info for a single signer. It is structured as a message -to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the -future +### GenesisState +GenesisState defines the evidence module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `mode` | [cosmos.tx.signing.v1beta1.SignMode](#cosmos.tx.signing.v1beta1.SignMode) | | mode is the signing mode of the single signer | +| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | repeated | evidence defines all the evidence at genesis. | + - + -### SignDoc -SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `body_bytes` | [bytes](#bytes) | | body_bytes is protobuf serialization of a TxBody that matches the representation in TxRaw. | -| `auth_info_bytes` | [bytes](#bytes) | | auth_info_bytes is a protobuf serialization of an AuthInfo that matches the representation in TxRaw. | -| `chain_id` | [string](#string) | | chain_id is the unique identifier of the chain this transaction targets. It prevents signed transactions from being used on another chain by an attacker | -| `account_number` | [uint64](#uint64) | | account_number is the account number of the account in state | + + +## lbm/evidence/v1beta1/query.proto - + -### SignerInfo -SignerInfo describes the public key and signing mode of a single top-level -signer. +### QueryAllEvidenceRequest +QueryEvidenceRequest is the request type for the Query/AllEvidence RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `public_key` | [google.protobuf.Any](#google.protobuf.Any) | | public_key is the public key of the signer. It is optional for accounts that already exist in state. If unset, the verifier can use the required \ signer address for this position and lookup the public key. | -| `mode_info` | [ModeInfo](#cosmos.tx.v1beta1.ModeInfo) | | mode_info describes the signing mode of the signer and is a nested structure to support nested multisig pubkey's | -| `sequence` | [uint64](#uint64) | | sequence is the sequence of the account, which describes the number of committed transactions signed by a given address. It is used to prevent replay attacks. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### Tx -Tx is the standard type used for broadcasting transactions. +### QueryAllEvidenceResponse +QueryAllEvidenceResponse is the response type for the Query/AllEvidence RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `body` | [TxBody](#cosmos.tx.v1beta1.TxBody) | | body is the processable content of the transaction | -| `auth_info` | [AuthInfo](#cosmos.tx.v1beta1.AuthInfo) | | auth_info is the authorization related content of the transaction, specifically signers, signer modes and fee | -| `signatures` | [bytes](#bytes) | repeated | signatures is a list of signatures that matches the length and order of AuthInfo's signer_infos to allow connecting signature meta information like public key and signing mode by position. | +| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | repeated | evidence returns all evidences. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### TxBody -TxBody is the body of a transaction that all signers sign over. +### QueryEvidenceRequest +QueryEvidenceRequest is the request type for the Query/Evidence RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `messages` | [google.protobuf.Any](#google.protobuf.Any) | repeated | messages is a list of messages to be executed. The required signers of those messages define the number and order of elements in AuthInfo's signer_infos and Tx's signatures. Each required signer address is added to the list only the first time it occurs. By convention, the first required signer (usually from the first message) is referred to as the primary signer and pays the fee for the whole transaction. | -| `memo` | [string](#string) | | memo is any arbitrary memo to be added to the transaction | -| `timeout_height` | [uint64](#uint64) | | timeout is the block height after which this transaction will not be processed by the chain | -| `extension_options` | [google.protobuf.Any](#google.protobuf.Any) | repeated | extension_options are arbitrary options that can be added by chains when the default options are not sufficient. If any of these are present and can't be handled, the transaction will be rejected | -| `non_critical_extension_options` | [google.protobuf.Any](#google.protobuf.Any) | repeated | extension_options are arbitrary options that can be added by chains when the default options are not sufficient. If any of these are present and can't be handled, they will be ignored | +| `evidence_hash` | [bytes](#bytes) | | evidence_hash defines the hash of the requested evidence. | - + -### TxRaw -TxRaw is a variant of Tx that pins the signer's exact binary representation -of body and auth_info. This is used for signing, broadcasting and -verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and -the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used -as the transaction ID. +### QueryEvidenceResponse +QueryEvidenceResponse is the response type for the Query/Evidence RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `body_bytes` | [bytes](#bytes) | | body_bytes is a protobuf serialization of a TxBody that matches the representation in SignDoc. | -| `auth_info_bytes` | [bytes](#bytes) | | auth_info_bytes is a protobuf serialization of an AuthInfo that matches the representation in SignDoc. | -| `signatures` | [bytes](#bytes) | repeated | signatures is a list of signatures that matches the length and order of AuthInfo's signer_infos to allow connecting signature meta information like public key and signing mode by position. | +| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | | evidence returns the requested evidence. | @@ -6439,198 +6669,214 @@ as the transaction ID. + + + +### Query +Query defines the gRPC querier service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Evidence` | [QueryEvidenceRequest](#lbm.evidence.v1beta1.QueryEvidenceRequest) | [QueryEvidenceResponse](#lbm.evidence.v1beta1.QueryEvidenceResponse) | Evidence queries evidence based on evidence hash. | GET|/cosmos/evidence/v1beta1/evidence/{evidence_hash}| +| `AllEvidence` | [QueryAllEvidenceRequest](#lbm.evidence.v1beta1.QueryAllEvidenceRequest) | [QueryAllEvidenceResponse](#lbm.evidence.v1beta1.QueryAllEvidenceResponse) | AllEvidence queries all evidence. | GET|/cosmos/evidence/v1beta1/evidence| + - + -## cosmos/tx/v1beta1/service.proto +## lbm/evidence/v1beta1/tx.proto - + -### BroadcastTxRequest -BroadcastTxRequest is the request type for the Service.BroadcastTxRequest -RPC method. +### MsgSubmitEvidence +MsgSubmitEvidence represents a message that supports submitting arbitrary +Evidence of misbehavior such as equivocation or counterfactual signing. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `tx_bytes` | [bytes](#bytes) | | tx_bytes is the raw transaction. | -| `mode` | [BroadcastMode](#cosmos.tx.v1beta1.BroadcastMode) | | | +| `submitter` | [string](#string) | | | +| `evidence` | [google.protobuf.Any](#google.protobuf.Any) | | | - + -### BroadcastTxResponse -BroadcastTxResponse is the response type for the -Service.BroadcastTx method. +### MsgSubmitEvidenceResponse +MsgSubmitEvidenceResponse defines the Msg/SubmitEvidence response type. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `tx_response` | [cosmos.base.abci.v1beta1.TxResponse](#cosmos.base.abci.v1beta1.TxResponse) | | tx_response is the queried TxResponses. | +| `hash` | [bytes](#bytes) | | hash defines the hash of the evidence. | + - + -### GetTxRequest -GetTxRequest is the request type for the Service.GetTx -RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `hash` | [string](#string) | | hash is the tx hash to query, encoded as a hex string. | + +### Msg +Msg defines the evidence Msg service. +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `SubmitEvidence` | [MsgSubmitEvidence](#lbm.evidence.v1beta1.MsgSubmitEvidence) | [MsgSubmitEvidenceResponse](#lbm.evidence.v1beta1.MsgSubmitEvidenceResponse) | SubmitEvidence submits an arbitrary Evidence of misbehavior such as equivocation or counterfactual signing. | | + - + + -### GetTxResponse -GetTxResponse is the response type for the Service.GetTx method. +## lbm/genutil/v1beta1/genesis.proto + + + + + +### GenesisState +GenesisState defines the raw genesis transaction in JSON. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `tx` | [Tx](#cosmos.tx.v1beta1.Tx) | | tx is the queried transaction. | -| `tx_response` | [cosmos.base.abci.v1beta1.TxResponse](#cosmos.base.abci.v1beta1.TxResponse) | | tx_response is the queried TxResponses. | +| `gen_txs` | [bytes](#bytes) | repeated | gen_txs defines the genesis transactions. | + - + -### GetTxsEventRequest -GetTxsEventRequest is the request type for the Service.TxsByEvents -RPC method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `events` | [string](#string) | repeated | events is the list of transaction event type. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | + + +## lbm/gov/v1beta1/gov.proto - + -### GetTxsEventResponse -GetTxsEventResponse is the response type for the Service.TxsByEvents -RPC method. +### Deposit +Deposit defines an amount deposited by an account address to an active +proposal. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `txs` | [Tx](#cosmos.tx.v1beta1.Tx) | repeated | txs is the list of queried transactions. | -| `tx_responses` | [cosmos.base.abci.v1beta1.TxResponse](#cosmos.base.abci.v1beta1.TxResponse) | repeated | tx_responses is the list of queried TxResponses. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines an pagination for the response. | +| `proposal_id` | [uint64](#uint64) | | | +| `depositor` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - + -### SimulateRequest -SimulateRequest is the request type for the Service.Simulate -RPC method. +### DepositParams +DepositParams defines the params for deposits on governance proposals. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `tx` | [Tx](#cosmos.tx.v1beta1.Tx) | | tx is the transaction to simulate. | +| `min_deposit` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | Minimum deposit for a proposal to enter voting period. | +| `max_deposit_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | Maximum period for Atom holders to deposit on a proposal. Initial value: 2 months. | - + -### SimulateResponse -SimulateResponse is the response type for the -Service.SimulateRPC method. +### Proposal +Proposal defines the core field members of a governance proposal. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `gas_info` | [cosmos.base.abci.v1beta1.GasInfo](#cosmos.base.abci.v1beta1.GasInfo) | | gas_info is the information about gas used in the simulation. | -| `result` | [cosmos.base.abci.v1beta1.Result](#cosmos.base.abci.v1beta1.Result) | | result is the result of the simulation. | +| `proposal_id` | [uint64](#uint64) | | | +| `content` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `status` | [ProposalStatus](#lbm.gov.v1beta1.ProposalStatus) | | | +| `final_tally_result` | [TallyResult](#lbm.gov.v1beta1.TallyResult) | | | +| `submit_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `deposit_end_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `total_deposit` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `voting_start_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `voting_end_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | - + - +### TallyParams +TallyParams defines the params for tallying votes on governance proposals. -### BroadcastMode -BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC method. -| Name | Number | Description | -| ---- | ------ | ----------- | -| BROADCAST_MODE_UNSPECIFIED | 0 | zero-value for mode ordering | -| BROADCAST_MODE_BLOCK | 1 | BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for the tx to be committed in a block. | -| BROADCAST_MODE_SYNC | 2 | BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for a CheckTx execution response only. | -| BROADCAST_MODE_ASYNC | 3 | BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns immediately. | +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `quorum` | [bytes](#bytes) | | Minimum percentage of total stake needed to vote for a result to be considered valid. | +| `threshold` | [bytes](#bytes) | | Minimum proportion of Yes votes for proposal to pass. Default value: 0.5. | +| `veto_threshold` | [bytes](#bytes) | | Minimum value of Veto votes to Total votes ratio for proposal to be vetoed. Default value: 1/3. | - - - -### Service -Service defines a gRPC service for interacting with transactions. + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Simulate` | [SimulateRequest](#cosmos.tx.v1beta1.SimulateRequest) | [SimulateResponse](#cosmos.tx.v1beta1.SimulateResponse) | Simulate simulates executing a transaction for estimating gas usage. | POST|/cosmos/tx/v1beta1/simulate| -| `GetTx` | [GetTxRequest](#cosmos.tx.v1beta1.GetTxRequest) | [GetTxResponse](#cosmos.tx.v1beta1.GetTxResponse) | GetTx fetches a tx by hash. | GET|/cosmos/tx/v1beta1/txs/{hash}| -| `BroadcastTx` | [BroadcastTxRequest](#cosmos.tx.v1beta1.BroadcastTxRequest) | [BroadcastTxResponse](#cosmos.tx.v1beta1.BroadcastTxResponse) | BroadcastTx broadcast transaction. | POST|/cosmos/tx/v1beta1/txs| -| `GetTxsEvent` | [GetTxsEventRequest](#cosmos.tx.v1beta1.GetTxsEventRequest) | [GetTxsEventResponse](#cosmos.tx.v1beta1.GetTxsEventResponse) | GetTxsEvent fetches txs by event. | GET|/cosmos/tx/v1beta1/txs| +### TallyResult +TallyResult defines a standard tally for a governance proposal. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `yes` | [string](#string) | | | +| `abstain` | [string](#string) | | | +| `no` | [string](#string) | | | +| `no_with_veto` | [string](#string) | | | - - -## cosmos/upgrade/v1beta1/upgrade.proto - + -### CancelSoftwareUpgradeProposal -CancelSoftwareUpgradeProposal is a gov Content type for cancelling a software -upgrade. +### TextProposal +TextProposal defines a standard text proposal whose changes need to be +manually updated in case of approval. | Field | Type | Label | Description | @@ -6643,37 +6889,33 @@ upgrade. - + -### Plan -Plan specifies information about a planned upgrade and when it should occur. +### Vote +Vote defines a vote on a governance proposal. +A Vote consists of a proposal ID, the voter, and the vote option. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `name` | [string](#string) | | Sets the name for the upgrade. This name will be used by the upgraded version of the software to apply any special "on-upgrade" commands during the first BeginBlock method after the upgrade is applied. It is also used to detect whether a software version can handle a given upgrade. If no upgrade handler with this name has been set in the software, it will be assumed that the software is out-of-date when the upgrade Time or Height is reached and the software will exit. | -| `time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | The time after which the upgrade must be performed. Leave set to its zero value to use a pre-defined Height instead. | -| `height` | [int64](#int64) | | The height at which the upgrade must be performed. Only used if Time is not set. | -| `info` | [string](#string) | | Any application specific upgrade info to be included on-chain such as a git commit that validators could automatically upgrade to | -| `upgraded_client_state` | [google.protobuf.Any](#google.protobuf.Any) | | IBC-enabled chains can opt-in to including the upgraded client state in its upgrade plan This will make the chain commit to the correct upgraded (self) client state before the upgrade occurs, so that connecting chains can verify that the new upgraded client is valid by verifying a proof on the previous version of the chain. This will allow IBC connections to persist smoothly across planned chain upgrades | +| `proposal_id` | [uint64](#uint64) | | | +| `voter` | [string](#string) | | | +| `option` | [VoteOption](#lbm.gov.v1beta1.VoteOption) | | | - + -### SoftwareUpgradeProposal -SoftwareUpgradeProposal is a gov Content type for initiating a software -upgrade. +### VotingParams +VotingParams defines the params for voting on governance proposals. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `title` | [string](#string) | | | -| `description` | [string](#string) | | | -| `plan` | [Plan](#cosmos.upgrade.v1beta1.Plan) | | | +| `voting_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | Length of the voting period. | @@ -6681,350 +6923,336 @@ upgrade. - - + - +### ProposalStatus +ProposalStatus enumerates the valid statuses of a proposal. + +| Name | Number | Description | +| ---- | ------ | ----------- | +| PROPOSAL_STATUS_UNSPECIFIED | 0 | PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal status. | +| PROPOSAL_STATUS_DEPOSIT_PERIOD | 1 | PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit period. | +| PROPOSAL_STATUS_VOTING_PERIOD | 2 | PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting period. | +| PROPOSAL_STATUS_PASSED | 3 | PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has passed. | +| PROPOSAL_STATUS_REJECTED | 4 | PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has been rejected. | +| PROPOSAL_STATUS_FAILED | 5 | PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has failed. | - - + -## cosmos/upgrade/v1beta1/query.proto +### VoteOption +VoteOption enumerates the valid vote options for a given governance proposal. +| Name | Number | Description | +| ---- | ------ | ----------- | +| VOTE_OPTION_UNSPECIFIED | 0 | VOTE_OPTION_UNSPECIFIED defines a no-op vote option. | +| VOTE_OPTION_YES | 1 | VOTE_OPTION_YES defines a yes vote option. | +| VOTE_OPTION_ABSTAIN | 2 | VOTE_OPTION_ABSTAIN defines an abstain vote option. | +| VOTE_OPTION_NO | 3 | VOTE_OPTION_NO defines a no vote option. | +| VOTE_OPTION_NO_WITH_VETO | 4 | VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option. | - + -### QueryAppliedPlanRequest -QueryCurrentPlanRequest is the request type for the Query/AppliedPlan RPC -method. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `name` | [string](#string) | | name is the name of the applied plan to query for. | + + +## lbm/gov/v1beta1/genesis.proto - + -### QueryAppliedPlanResponse -QueryAppliedPlanResponse is the response type for the Query/AppliedPlan RPC -method. +### GenesisState +GenesisState defines the gov module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `height` | [int64](#int64) | | height is the block height at which the plan was applied. | +| `starting_proposal_id` | [uint64](#uint64) | | starting_proposal_id is the ID of the starting proposal. | +| `deposits` | [Deposit](#lbm.gov.v1beta1.Deposit) | repeated | deposits defines all the deposits present at genesis. | +| `votes` | [Vote](#lbm.gov.v1beta1.Vote) | repeated | votes defines all the votes present at genesis. | +| `proposals` | [Proposal](#lbm.gov.v1beta1.Proposal) | repeated | proposals defines all the proposals present at genesis. | +| `deposit_params` | [DepositParams](#lbm.gov.v1beta1.DepositParams) | | params defines all the paramaters of related to deposit. | +| `voting_params` | [VotingParams](#lbm.gov.v1beta1.VotingParams) | | params defines all the paramaters of related to voting. | +| `tally_params` | [TallyParams](#lbm.gov.v1beta1.TallyParams) | | params defines all the paramaters of related to tally. | + - + -### QueryCurrentPlanRequest -QueryCurrentPlanRequest is the request type for the Query/CurrentPlan RPC -method. + + + + +## lbm/gov/v1beta1/query.proto - -### QueryCurrentPlanResponse -QueryCurrentPlanResponse is the response type for the Query/CurrentPlan RPC -method. + + + +### QueryDepositRequest +QueryDepositRequest is the request type for the Query/Deposit RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `plan` | [Plan](#cosmos.upgrade.v1beta1.Plan) | | plan is the current upgrade plan. | +| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | +| `depositor` | [string](#string) | | depositor defines the deposit addresses from the proposals. | - + -### QueryUpgradedConsensusStateRequest -QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState -RPC method. +### QueryDepositResponse +QueryDepositResponse is the response type for the Query/Deposit RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `last_height` | [int64](#int64) | | last height of the current chain must be sent in request as this is the height under which next consensus state is stored | +| `deposit` | [Deposit](#lbm.gov.v1beta1.Deposit) | | deposit defines the requested deposit. | - + -### QueryUpgradedConsensusStateResponse -QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState -RPC method. +### QueryDepositsRequest +QueryDepositsRequest is the request type for the Query/Deposits RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `upgraded_consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - - + - +### QueryDepositsResponse +QueryDepositsResponse is the response type for the Query/Deposits RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `deposits` | [Deposit](#lbm.gov.v1beta1.Deposit) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | -### Query -Query defines the gRPC upgrade querier service. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `CurrentPlan` | [QueryCurrentPlanRequest](#cosmos.upgrade.v1beta1.QueryCurrentPlanRequest) | [QueryCurrentPlanResponse](#cosmos.upgrade.v1beta1.QueryCurrentPlanResponse) | CurrentPlan queries the current upgrade plan. | GET|/cosmos/upgrade/v1beta1/current_plan| -| `AppliedPlan` | [QueryAppliedPlanRequest](#cosmos.upgrade.v1beta1.QueryAppliedPlanRequest) | [QueryAppliedPlanResponse](#cosmos.upgrade.v1beta1.QueryAppliedPlanResponse) | AppliedPlan queries a previously applied upgrade plan by its name. | GET|/cosmos/upgrade/v1beta1/applied_plan/{name}| -| `UpgradedConsensusState` | [QueryUpgradedConsensusStateRequest](#cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateRequest) | [QueryUpgradedConsensusStateResponse](#cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse) | UpgradedConsensusState queries the consensus state that will serve as a trusted kernel for the next version of this chain. It will only be stored at the last height of this chain. UpgradedConsensusState RPC not supported with legacy querier | GET|/cosmos/upgrade/v1beta1/upgraded_consensus_state/{last_height}| - - - + -## cosmos/vesting/v1beta1/tx.proto +### QueryParamsRequest +QueryParamsRequest is the request type for the Query/Params RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `params_type` | [string](#string) | | params_type defines which parameters to query for, can be one of "voting", "tallying" or "deposit". | - -### MsgCreateVestingAccount -MsgCreateVestingAccount defines a message that enables creating a vesting -account. + + + + + + +### QueryParamsResponse +QueryParamsResponse is the response type for the Query/Params RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `from_address` | [string](#string) | | | -| `to_address` | [string](#string) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `end_time` | [int64](#int64) | | | -| `delayed` | [bool](#bool) | | | +| `voting_params` | [VotingParams](#lbm.gov.v1beta1.VotingParams) | | voting_params defines the parameters related to voting. | +| `deposit_params` | [DepositParams](#lbm.gov.v1beta1.DepositParams) | | deposit_params defines the parameters related to deposit. | +| `tally_params` | [TallyParams](#lbm.gov.v1beta1.TallyParams) | | tally_params defines the parameters related to tally. | - + -### MsgCreateVestingAccountResponse -MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. +### QueryProposalRequest +QueryProposalRequest is the request type for the Query/Proposal RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | - - - + - - -### Msg -Msg defines the bank Msg service. - -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `CreateVestingAccount` | [MsgCreateVestingAccount](#cosmos.vesting.v1beta1.MsgCreateVestingAccount) | [MsgCreateVestingAccountResponse](#cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse) | CreateVestingAccount defines a method that enables creating a vesting account. | | - - - - - - - - -## cosmos/vesting/v1beta1/vesting.proto - - - - - -### BaseVestingAccount -BaseVestingAccount implements the VestingAccount interface. It contains all -the necessary fields needed for any vesting account implementation. +### QueryProposalResponse +QueryProposalResponse is the response type for the Query/Proposal RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `base_account` | [cosmos.auth.v1beta1.BaseAccount](#cosmos.auth.v1beta1.BaseAccount) | | | -| `original_vesting` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `delegated_free` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `delegated_vesting` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | -| `end_time` | [int64](#int64) | | | +| `proposal` | [Proposal](#lbm.gov.v1beta1.Proposal) | | | - + -### ContinuousVestingAccount -ContinuousVestingAccount implements the VestingAccount interface. It -continuously vests by unlocking coins linearly with respect to time. +### QueryProposalsRequest +QueryProposalsRequest is the request type for the Query/Proposals RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `base_vesting_account` | [BaseVestingAccount](#cosmos.vesting.v1beta1.BaseVestingAccount) | | | -| `start_time` | [int64](#int64) | | | +| `proposal_status` | [ProposalStatus](#lbm.gov.v1beta1.ProposalStatus) | | proposal_status defines the status of the proposals. | +| `voter` | [string](#string) | | voter defines the voter address for the proposals. | +| `depositor` | [string](#string) | | depositor defines the deposit addresses from the proposals. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### DelayedVestingAccount -DelayedVestingAccount implements the VestingAccount interface. It vests all -coins after a specific time, but non prior. In other words, it keeps them -locked until a specified time. +### QueryProposalsResponse +QueryProposalsResponse is the response type for the Query/Proposals RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `base_vesting_account` | [BaseVestingAccount](#cosmos.vesting.v1beta1.BaseVestingAccount) | | | +| `proposals` | [Proposal](#lbm.gov.v1beta1.Proposal) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### Period -Period defines a length of time and amount of coins that will vest. +### QueryTallyResultRequest +QueryTallyResultRequest is the request type for the Query/Tally RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `length` | [int64](#int64) | | | -| `amount` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | +| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | - + -### PeriodicVestingAccount -PeriodicVestingAccount implements the VestingAccount interface. It -periodically vests by unlocking coins during each specified period. +### QueryTallyResultResponse +QueryTallyResultResponse is the response type for the Query/Tally RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `base_vesting_account` | [BaseVestingAccount](#cosmos.vesting.v1beta1.BaseVestingAccount) | | | -| `start_time` | [int64](#int64) | | | -| `vesting_periods` | [Period](#cosmos.vesting.v1beta1.Period) | repeated | | +| `tally` | [TallyResult](#lbm.gov.v1beta1.TallyResult) | | tally defines the requested tally. | - - + - +### QueryVoteRequest +QueryVoteRequest is the request type for the Query/Vote RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | +| `voter` | [string](#string) | | voter defines the oter address for the proposals. | - - -## ibc/applications/transfer/v1/transfer.proto - + -### DenomTrace -DenomTrace contains the base denomination for ICS20 fungible tokens and the -source tracing information path. +### QueryVoteResponse +QueryVoteResponse is the response type for the Query/Vote RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `path` | [string](#string) | | path defines the chain of port/channel identifiers used for tracing the source of the fungible token. | -| `base_denom` | [string](#string) | | base denomination of the relayed fungible token. | +| `vote` | [Vote](#lbm.gov.v1beta1.Vote) | | vote defined the queried vote. | - + -### FungibleTokenPacketData -FungibleTokenPacketData defines a struct for the packet payload -See FungibleTokenPacketData spec: -https://github.com/cosmos/ics/tree/master/spec/ics-020-fungible-token-transfer#data-structures +### QueryVotesRequest +QueryVotesRequest is the request type for the Query/Votes RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `denom` | [string](#string) | | the token denomination to be transferred | -| `amount` | [uint64](#uint64) | | the token amount to be transferred | -| `sender` | [string](#string) | | the sender address | -| `receiver` | [string](#string) | | the recipient address on the destination chain | +| `proposal_id` | [uint64](#uint64) | | proposal_id defines the unique id of the proposal. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### Params -Params defines the set of IBC transfer parameters. -NOTE: To prevent a single token from being transferred, set the -TransfersEnabled parameter to true and then set the bank module's SendEnabled -parameter for the denomination to false. +### QueryVotesResponse +QueryVotesResponse is the response type for the Query/Votes RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `send_enabled` | [bool](#bool) | | send_enabled enables or disables all cross-chain token transfers from this chain. | -| `receive_enabled` | [bool](#bool) | | receive_enabled enables or disables all cross-chain token transfers to this chain. | +| `votes` | [Vote](#lbm.gov.v1beta1.Vote) | repeated | votes defined the queried votes. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | @@ -7036,134 +7264,115 @@ parameter for the denomination to false. - - - - - - - -## ibc/applications/transfer/v1/genesis.proto - - - - - -### GenesisState -GenesisState defines the ibc-transfer genesis state - - -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `denom_traces` | [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) | repeated | | -| `params` | [Params](#ibc.applications.transfer.v1.Params) | | | - - - + - - - +### Query +Query defines the gRPC querier service for gov module - +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Proposal` | [QueryProposalRequest](#lbm.gov.v1beta1.QueryProposalRequest) | [QueryProposalResponse](#lbm.gov.v1beta1.QueryProposalResponse) | Proposal queries proposal details based on ProposalID. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}| +| `Proposals` | [QueryProposalsRequest](#lbm.gov.v1beta1.QueryProposalsRequest) | [QueryProposalsResponse](#lbm.gov.v1beta1.QueryProposalsResponse) | Proposals queries all proposals based on given status. | GET|/cosmos/gov/v1beta1/proposals| +| `Vote` | [QueryVoteRequest](#lbm.gov.v1beta1.QueryVoteRequest) | [QueryVoteResponse](#lbm.gov.v1beta1.QueryVoteResponse) | Vote queries voted information based on proposalID, voterAddr. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/votes/{voter}| +| `Votes` | [QueryVotesRequest](#lbm.gov.v1beta1.QueryVotesRequest) | [QueryVotesResponse](#lbm.gov.v1beta1.QueryVotesResponse) | Votes queries votes of a given proposal. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/votes| +| `Params` | [QueryParamsRequest](#lbm.gov.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.gov.v1beta1.QueryParamsResponse) | Params queries all parameters of the gov module. | GET|/cosmos/gov/v1beta1/params/{params_type}| +| `Deposit` | [QueryDepositRequest](#lbm.gov.v1beta1.QueryDepositRequest) | [QueryDepositResponse](#lbm.gov.v1beta1.QueryDepositResponse) | Deposit queries single deposit information based proposalID, depositAddr. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/deposits/{depositor}| +| `Deposits` | [QueryDepositsRequest](#lbm.gov.v1beta1.QueryDepositsRequest) | [QueryDepositsResponse](#lbm.gov.v1beta1.QueryDepositsResponse) | Deposits queries all deposits of a single proposal. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/deposits| +| `TallyResult` | [QueryTallyResultRequest](#lbm.gov.v1beta1.QueryTallyResultRequest) | [QueryTallyResultResponse](#lbm.gov.v1beta1.QueryTallyResultResponse) | TallyResult queries the tally of a proposal vote. | GET|/cosmos/gov/v1beta1/proposals/{proposal_id}/tally| - + -## ibc/applications/transfer/v1/query.proto +## lbm/gov/v1beta1/tx.proto - + -### QueryDenomTraceRequest -QueryDenomTraceRequest is the request type for the Query/DenomTrace RPC -method +### MsgDeposit +MsgDeposit defines a message to submit a deposit to an existing proposal. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `hash` | [string](#string) | | hash (in hex format) of the denomination trace information. | - - +| `proposal_id` | [uint64](#uint64) | | | +| `depositor` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - -### QueryDenomTraceResponse -QueryDenomTraceResponse is the response type for the Query/DenomTrace RPC -method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `denom_trace` | [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) | | denom_trace returns the requested denomination trace information. | +### MsgDepositResponse +MsgDepositResponse defines the Msg/Deposit response type. - + -### QueryDenomTracesRequest -QueryConnectionsRequest is the request type for the Query/DenomTraces RPC -method +### MsgSubmitProposal +MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary +proposal Content. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | +| `content` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `initial_deposit` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `proposer` | [string](#string) | | | - + -### QueryDenomTracesResponse -QueryConnectionsResponse is the response type for the Query/DenomTraces RPC -method. +### MsgSubmitProposalResponse +MsgSubmitProposalResponse defines the Msg/SubmitProposal response type. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `denom_traces` | [DenomTrace](#ibc.applications.transfer.v1.DenomTrace) | repeated | denom_traces returns all denominations trace information. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | +| `proposal_id` | [uint64](#uint64) | | | - + -### QueryParamsRequest -QueryParamsRequest is the request type for the Query/Params RPC method. +### MsgVote +MsgVote defines a message to cast a vote. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `proposal_id` | [uint64](#uint64) | | | +| `voter` | [string](#string) | | | +| `option` | [VoteOption](#lbm.gov.v1beta1.VoteOption) | | | - -### QueryParamsResponse -QueryParamsResponse is the response type for the Query/Params RPC method. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `params` | [Params](#ibc.applications.transfer.v1.Params) | | params defines the parameters of the module. | +### MsgVoteResponse +MsgVoteResponse defines the Msg/Vote response type. @@ -7176,330 +7385,294 @@ QueryParamsResponse is the response type for the Query/Params RPC method. - + -### Query -Query provides defines the gRPC querier service. +### Msg +Msg defines the bank Msg service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `DenomTrace` | [QueryDenomTraceRequest](#ibc.applications.transfer.v1.QueryDenomTraceRequest) | [QueryDenomTraceResponse](#ibc.applications.transfer.v1.QueryDenomTraceResponse) | DenomTrace queries a denomination trace information. | GET|/ibc/applications/transfer/v1beta1/denom_traces/{hash}| -| `DenomTraces` | [QueryDenomTracesRequest](#ibc.applications.transfer.v1.QueryDenomTracesRequest) | [QueryDenomTracesResponse](#ibc.applications.transfer.v1.QueryDenomTracesResponse) | DenomTraces queries all denomination traces. | GET|/ibc/applications/transfer/v1beta1/denom_traces| -| `Params` | [QueryParamsRequest](#ibc.applications.transfer.v1.QueryParamsRequest) | [QueryParamsResponse](#ibc.applications.transfer.v1.QueryParamsResponse) | Params queries all parameters of the ibc-transfer module. | GET|/ibc/applications/transfer/v1beta1/params| +| `SubmitProposal` | [MsgSubmitProposal](#lbm.gov.v1beta1.MsgSubmitProposal) | [MsgSubmitProposalResponse](#lbm.gov.v1beta1.MsgSubmitProposalResponse) | SubmitProposal defines a method to create new proposal given a content. | | +| `Vote` | [MsgVote](#lbm.gov.v1beta1.MsgVote) | [MsgVoteResponse](#lbm.gov.v1beta1.MsgVoteResponse) | Vote defines a method to add a vote on a specific proposal. | | +| `Deposit` | [MsgDeposit](#lbm.gov.v1beta1.MsgDeposit) | [MsgDepositResponse](#lbm.gov.v1beta1.MsgDepositResponse) | Deposit defines a method to add deposit on a specific proposal. | | - + -## ibc/core/client/v1/client.proto +## lbm/mint/v1beta1/mint.proto - + -### ClientConsensusStates -ClientConsensusStates defines all the stored consensus states for a given -client. +### Minter +Minter represents the minting state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client identifier | -| `consensus_states` | [ConsensusStateWithHeight](#ibc.core.client.v1.ConsensusStateWithHeight) | repeated | consensus states and their heights associated with the client | +| `inflation` | [string](#string) | | current annual inflation rate | +| `annual_provisions` | [string](#string) | | current annual expected provisions | - + -### ClientUpdateProposal -ClientUpdateProposal is a governance proposal. If it passes, the client is -updated with the provided header. The update may fail if the header is not -valid given certain conditions specified by the client implementation. +### Params +Params holds parameters for the mint module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `title` | [string](#string) | | the title of the update proposal | -| `description` | [string](#string) | | the description of the proposal | -| `client_id` | [string](#string) | | the client identifier for the client to be updated if the proposal passes | -| `header` | [google.protobuf.Any](#google.protobuf.Any) | | the header used to update the client if the proposal passes | - +| `mint_denom` | [string](#string) | | type of coin to mint | +| `inflation_rate_change` | [string](#string) | | maximum annual change in inflation rate | +| `inflation_max` | [string](#string) | | maximum inflation rate | +| `inflation_min` | [string](#string) | | minimum inflation rate | +| `goal_bonded` | [string](#string) | | goal of percent bonded atoms | +| `blocks_per_year` | [uint64](#uint64) | | expected blocks per year | - + -### ConsensusStateWithHeight -ConsensusStateWithHeight defines a consensus state with an additional height field. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `height` | [Height](#ibc.core.client.v1.Height) | | consensus state height | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state | + + + +## lbm/mint/v1beta1/genesis.proto - -### Height -Height is a monotonically increasing data type -that can be compared against another Height for the purposes of updating and -freezing clients + -Normally the RevisionHeight is incremented at each height while keeping RevisionNumber -the same. However some consensus algorithms may choose to reset the -height in certain conditions e.g. hard forks, state-machine breaking changes -In these cases, the RevisionNumber is incremented so that height continues to -be monitonically increasing even as the RevisionHeight gets reset +### GenesisState +GenesisState defines the mint module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `revision_number` | [uint64](#uint64) | | the revision that the client is currently on | -| `revision_height` | [uint64](#uint64) | | the height within the given revision | +| `minter` | [Minter](#lbm.mint.v1beta1.Minter) | | minter is a space for holding current inflation information. | +| `params` | [Params](#lbm.mint.v1beta1.Params) | | params defines all the paramaters of the module. | + - + -### IdentifiedClientState -IdentifiedClientState defines a client state with an additional client -identifier field. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client identifier | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | client state | + + +## lbm/mint/v1beta1/query.proto - + -### Params -Params defines the set of IBC light client parameters. +### QueryAnnualProvisionsRequest +QueryAnnualProvisionsRequest is the request type for the +Query/AnnualProvisions RPC method. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `allowed_clients` | [string](#string) | repeated | allowed_clients defines the list of allowed client state types. | + - +### QueryAnnualProvisionsResponse +QueryAnnualProvisionsResponse is the response type for the +Query/AnnualProvisions RPC method. - - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `annual_provisions` | [bytes](#bytes) | | annual_provisions is the current minting annual provisions value. | - - - -## ibc/applications/transfer/v1/tx.proto + + + +### QueryInflationRequest +QueryInflationRequest is the request type for the Query/Inflation RPC method. - -### MsgTransfer -MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between -ICS20 enabled chains. See ICS Spec here: -https://github.com/cosmos/ics/tree/master/spec/ics-020-fungible-token-transfer#data-structures + + + + +### QueryInflationResponse +QueryInflationResponse is the response type for the Query/Inflation RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `source_port` | [string](#string) | | the port on which the packet will be sent | -| `source_channel` | [string](#string) | | the channel by which the packet will be sent | -| `token` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | the tokens to be transferred | -| `sender` | [string](#string) | | the sender address | -| `receiver` | [string](#string) | | the recipient address on the destination chain | -| `timeout_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | Timeout height relative to the current block height. The timeout is disabled when set to 0. | -| `timeout_timestamp` | [uint64](#uint64) | | Timeout timestamp (in nanoseconds) relative to the current block timestamp. The timeout is disabled when set to 0. | +| `inflation` | [bytes](#bytes) | | inflation is the current minting inflation value. | - + -### MsgTransferResponse -MsgTransferResponse defines the Msg/Transfer response type. +### QueryParamsRequest +QueryParamsRequest is the request type for the Query/Params RPC method. - - + - +### QueryParamsResponse +QueryParamsResponse is the response type for the Query/Params RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `params` | [Params](#lbm.mint.v1beta1.Params) | | params defines the parameters of the module. | -### Msg -Msg defines the ibc/transfer Msg service. -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Transfer` | [MsgTransfer](#ibc.applications.transfer.v1.MsgTransfer) | [MsgTransferResponse](#ibc.applications.transfer.v1.MsgTransferResponse) | Transfer defines a rpc handler method for MsgTransfer. | | - + - - + -## ibc/core/channel/v1/channel.proto + + - +### Query +Query provides defines the gRPC querier service. -### Acknowledgement -Acknowledgement is the recommended acknowledgement format to be used by -app-specific protocols. -NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental -conflicts with other protobuf message formats used for acknowledgements. -The first byte of any message with this format will be the non-ASCII values -`0xaa` (result) or `0xb2` (error). Implemented as defined by ICS: -https://github.com/cosmos/ics/tree/master/spec/ics-004-channel-and-packet-semantics#acknowledgement-envelope +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Params` | [QueryParamsRequest](#lbm.mint.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.mint.v1beta1.QueryParamsResponse) | Params returns the total set of minting parameters. | GET|/cosmos/mint/v1beta1/params| +| `Inflation` | [QueryInflationRequest](#lbm.mint.v1beta1.QueryInflationRequest) | [QueryInflationResponse](#lbm.mint.v1beta1.QueryInflationResponse) | Inflation returns the current minting inflation value. | GET|/cosmos/mint/v1beta1/inflation| +| `AnnualProvisions` | [QueryAnnualProvisionsRequest](#lbm.mint.v1beta1.QueryAnnualProvisionsRequest) | [QueryAnnualProvisionsResponse](#lbm.mint.v1beta1.QueryAnnualProvisionsResponse) | AnnualProvisions current minting annual provisions value. | GET|/cosmos/mint/v1beta1/annual_provisions| + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `result` | [bytes](#bytes) | | | -| `error` | [string](#string) | | | + + +## lbm/params/v1beta1/params.proto - + -### Channel -Channel defines pipeline for exactly-once packet delivery between specific -modules on separate blockchains, which has at least one end capable of -sending packets and one end capable of receiving packets. +### ParamChange +ParamChange defines an individual parameter change, for use in +ParameterChangeProposal. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `state` | [State](#ibc.core.channel.v1.State) | | current state of the channel end | -| `ordering` | [Order](#ibc.core.channel.v1.Order) | | whether the channel is ordered or unordered | -| `counterparty` | [Counterparty](#ibc.core.channel.v1.Counterparty) | | counterparty channel end | -| `connection_hops` | [string](#string) | repeated | list of connection identifiers, in order, along which packets sent on this channel will travel | -| `version` | [string](#string) | | opaque channel version, which is agreed upon during the handshake | +| `subspace` | [string](#string) | | | +| `key` | [string](#string) | | | +| `value` | [string](#string) | | | - + -### Counterparty -Counterparty defines a channel end counterparty +### ParameterChangeProposal +ParameterChangeProposal defines a proposal to change one or more parameters. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port on the counterparty chain which owns the other end of the channel. | -| `channel_id` | [string](#string) | | channel end on the counterparty chain | +| `title` | [string](#string) | | | +| `description` | [string](#string) | | | +| `changes` | [ParamChange](#lbm.params.v1beta1.ParamChange) | repeated | | + - + -### IdentifiedChannel -IdentifiedChannel defines a channel with additional port and channel -identifier fields. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `state` | [State](#ibc.core.channel.v1.State) | | current state of the channel end | -| `ordering` | [Order](#ibc.core.channel.v1.Order) | | whether the channel is ordered or unordered | -| `counterparty` | [Counterparty](#ibc.core.channel.v1.Counterparty) | | counterparty channel end | -| `connection_hops` | [string](#string) | repeated | list of connection identifiers, in order, along which packets sent on this channel will travel | -| `version` | [string](#string) | | opaque channel version, which is agreed upon during the handshake | -| `port_id` | [string](#string) | | port identifier | -| `channel_id` | [string](#string) | | channel identifier | + + +## lbm/params/v1beta1/query.proto - + -### Packet -Packet defines a type that carries data across different chains through IBC +### QueryParamsRequest +QueryParamsRequest is request type for the Query/Params RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sequence` | [uint64](#uint64) | | number corresponds to the order of sends and receives, where a Packet with an earlier sequence number must be sent and received before a Packet with a later sequence number. | -| `source_port` | [string](#string) | | identifies the port on the sending chain. | -| `source_channel` | [string](#string) | | identifies the channel end on the sending chain. | -| `destination_port` | [string](#string) | | identifies the port on the receiving chain. | -| `destination_channel` | [string](#string) | | identifies the channel end on the receiving chain. | -| `data` | [bytes](#bytes) | | actual opaque bytes transferred directly to the application module | -| `timeout_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | block height after which the packet times out | -| `timeout_timestamp` | [uint64](#uint64) | | block timestamp (in nanoseconds) after which the packet times out | +| `subspace` | [string](#string) | | subspace defines the module to query the parameter for. | +| `key` | [string](#string) | | key defines the key of the parameter in the subspace. | - + -### PacketState -PacketState defines the generic type necessary to retrieve and store -packet commitments, acknowledgements, and receipts. -Caller is responsible for knowing the context necessary to interpret this -state as a commitment, acknowledgement, or a receipt. +### QueryParamsResponse +QueryParamsResponse is response type for the Query/Params RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | channel port identifier. | -| `channel_id` | [string](#string) | | channel unique identifier. | -| `sequence` | [uint64](#uint64) | | packet sequence. | -| `data` | [bytes](#bytes) | | embedded data that represents packet state. | +| `param` | [ParamChange](#lbm.params.v1beta1.ParamChange) | | param defines the queried parameter. | @@ -7507,84 +7680,65 @@ state as a commitment, acknowledgement, or a receipt. + - - -### Order -Order defines if a channel is ORDERED or UNORDERED - -| Name | Number | Description | -| ---- | ------ | ----------- | -| ORDER_NONE_UNSPECIFIED | 0 | zero-value for channel ordering | -| ORDER_UNORDERED | 1 | packets can be delivered in any order, which may differ from the order in which they were sent. | -| ORDER_ORDERED | 2 | packets are delivered exactly in the order which they were sent | - - - - - -### State -State defines if a channel is in one of the following states: -CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + -| Name | Number | Description | -| ---- | ------ | ----------- | -| STATE_UNINITIALIZED_UNSPECIFIED | 0 | Default State | -| STATE_INIT | 1 | A channel has just started the opening handshake. | -| STATE_TRYOPEN | 2 | A channel has acknowledged the handshake step on the counterparty chain. | -| STATE_OPEN | 3 | A channel has completed the handshake. Open channels are ready to send and receive packets. | -| STATE_CLOSED | 4 | A channel has been closed and can no longer be used to send or receive packets. | + - +### Query +Query defines the gRPC querier service. - +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Params` | [QueryParamsRequest](#lbm.params.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.params.v1beta1.QueryParamsResponse) | Params queries a specific parameter of a module, given its subspace and key. | GET|/cosmos/params/v1beta1/params| - + -## ibc/core/channel/v1/genesis.proto +## lbm/slashing/v1beta1/slashing.proto - + -### GenesisState -GenesisState defines the ibc channel submodule's genesis state. +### Params +Params represents the parameters used for by the slashing module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `channels` | [IdentifiedChannel](#ibc.core.channel.v1.IdentifiedChannel) | repeated | | -| `acknowledgements` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | -| `commitments` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | -| `receipts` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | -| `send_sequences` | [PacketSequence](#ibc.core.channel.v1.PacketSequence) | repeated | | -| `recv_sequences` | [PacketSequence](#ibc.core.channel.v1.PacketSequence) | repeated | | -| `ack_sequences` | [PacketSequence](#ibc.core.channel.v1.PacketSequence) | repeated | | -| `next_channel_sequence` | [uint64](#uint64) | | the sequence for the next generated channel identifier | +| `signed_blocks_window` | [int64](#int64) | | | +| `min_signed_per_window` | [bytes](#bytes) | | | +| `downtime_jail_duration` | [google.protobuf.Duration](#google.protobuf.Duration) | | | +| `slash_fraction_double_sign` | [bytes](#bytes) | | | +| `slash_fraction_downtime` | [bytes](#bytes) | | | - + -### PacketSequence -PacketSequence defines the genesis type necessary to retrieve and store -next send and receive sequences. +### ValidatorSigningInfo +ValidatorSigningInfo defines a validator's signing info for monitoring their +liveness activity. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `channel_id` | [string](#string) | | | -| `sequence` | [uint64](#uint64) | | | +| `address` | [string](#string) | | | +| `start_height` | [int64](#int64) | | height at which validator was first a candidate OR was unjailed | +| `index_offset` | [int64](#int64) | | index offset into signed block bit array | +| `jailed_until` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | timestamp validator cannot be unjailed until | +| `tombstoned` | [bool](#bool) | | whether or not a validator has been tombstoned (killed out of validator set) | +| `missed_blocks_counter` | [int64](#int64) | | missed blocks counter (to avoid scanning the array every time) | @@ -7600,804 +7754,698 @@ next send and receive sequences. - + -## ibc/core/channel/v1/query.proto +## lbm/slashing/v1beta1/genesis.proto - + -### QueryChannelClientStateRequest -QueryChannelClientStateRequest is the request type for the Query/ClientState -RPC method +### GenesisState +GenesisState defines the slashing module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | +| `params` | [Params](#lbm.slashing.v1beta1.Params) | | params defines all the paramaters of related to deposit. | +| `signing_infos` | [SigningInfo](#lbm.slashing.v1beta1.SigningInfo) | repeated | signing_infos represents a map between validator addresses and their signing infos. | +| `missed_blocks` | [ValidatorMissedBlocks](#lbm.slashing.v1beta1.ValidatorMissedBlocks) | repeated | signing_infos represents a map between validator addresses and their missed blocks. | - + -### QueryChannelClientStateResponse -QueryChannelClientStateResponse is the Response type for the -Query/QueryChannelClientState RPC method +### MissedBlock +MissedBlock contains height and missed status as boolean. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `identified_client_state` | [ibc.core.client.v1.IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | | client state associated with the channel | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `index` | [int64](#int64) | | index is the height at which the block was missed. | +| `missed` | [bool](#bool) | | missed is the missed status. | - + -### QueryChannelConsensusStateRequest -QueryChannelConsensusStateRequest is the request type for the -Query/ConsensusState RPC method +### SigningInfo +SigningInfo stores validator signing info of corresponding address. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `revision_number` | [uint64](#uint64) | | revision number of the consensus state | -| `revision_height` | [uint64](#uint64) | | revision height of the consensus state | +| `address` | [string](#string) | | address is the validator address. | +| `validator_signing_info` | [ValidatorSigningInfo](#lbm.slashing.v1beta1.ValidatorSigningInfo) | | validator_signing_info represents the signing info of this validator. | - + -### QueryChannelConsensusStateResponse -QueryChannelClientStateResponse is the Response type for the -Query/QueryChannelClientState RPC method +### ValidatorMissedBlocks +ValidatorMissedBlocks contains array of missed blocks of corresponding +address. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the channel | -| `client_id` | [string](#string) | | client ID associated with the consensus state | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | - - +| `address` | [string](#string) | | address is the validator address. | +| `missed_blocks` | [MissedBlock](#lbm.slashing.v1beta1.MissedBlock) | repeated | missed_blocks is an array of missed blocks by the validator. | - -### QueryChannelRequest -QueryChannelRequest is the request type for the Query/Channel RPC method + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | + + + + +## lbm/slashing/v1beta1/query.proto - -### QueryChannelResponse -QueryChannelResponse is the response type for the Query/Channel RPC method. -Besides the Channel end, it includes a proof and the height from which the -proof was retrieved. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `channel` | [Channel](#ibc.core.channel.v1.Channel) | | channel associated with the request identifiers | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +### QueryParamsRequest +QueryParamsRequest is the request type for the Query/Params RPC method - + -### QueryChannelsRequest -QueryChannelsRequest is the request type for the Query/Channels RPC method +### QueryParamsResponse +QueryParamsResponse is the response type for the Query/Params RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination request | +| `params` | [Params](#lbm.slashing.v1beta1.Params) | | | - + -### QueryChannelsResponse -QueryChannelsResponse is the response type for the Query/Channels RPC method. +### QuerySigningInfoRequest +QuerySigningInfoRequest is the request type for the Query/SigningInfo RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `channels` | [IdentifiedChannel](#ibc.core.channel.v1.IdentifiedChannel) | repeated | list of stored channels of the chain. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | +| `cons_address` | [string](#string) | | cons_address is the address to query signing info of | - + -### QueryConnectionChannelsRequest -QueryConnectionChannelsRequest is the request type for the -Query/QueryConnectionChannels RPC method +### QuerySigningInfoResponse +QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection` | [string](#string) | | connection unique identifier | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination request | +| `val_signing_info` | [ValidatorSigningInfo](#lbm.slashing.v1beta1.ValidatorSigningInfo) | | val_signing_info is the signing info of requested val cons address | - + -### QueryConnectionChannelsResponse -QueryConnectionChannelsResponse is the Response type for the -Query/QueryConnectionChannels RPC method +### QuerySigningInfosRequest +QuerySigningInfosRequest is the request type for the Query/SigningInfos RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `channels` | [IdentifiedChannel](#ibc.core.channel.v1.IdentifiedChannel) | repeated | list of channels associated with a connection. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | | - + -### QueryNextSequenceReceiveRequest -QueryNextSequenceReceiveRequest is the request type for the -Query/QueryNextSequenceReceiveRequest RPC method +### QuerySigningInfosResponse +QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC +method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | +| `info` | [ValidatorSigningInfo](#lbm.slashing.v1beta1.ValidatorSigningInfo) | repeated | info is the signing info of all validators | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | | + - + -### QueryNextSequenceReceiveResponse -QuerySequenceResponse is the request type for the -Query/QueryNextSequenceReceiveResponse RPC method + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `next_sequence_receive` | [uint64](#uint64) | | next sequence receive number | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | + + +### Query +Query provides defines the gRPC querier service +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Params` | [QueryParamsRequest](#lbm.slashing.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.slashing.v1beta1.QueryParamsResponse) | Params queries the parameters of slashing module | GET|/cosmos/slashing/v1beta1/params| +| `SigningInfo` | [QuerySigningInfoRequest](#lbm.slashing.v1beta1.QuerySigningInfoRequest) | [QuerySigningInfoResponse](#lbm.slashing.v1beta1.QuerySigningInfoResponse) | SigningInfo queries the signing info of given cons address | GET|/cosmos/slashing/v1beta1/signing_infos/{cons_address}| +| `SigningInfos` | [QuerySigningInfosRequest](#lbm.slashing.v1beta1.QuerySigningInfosRequest) | [QuerySigningInfosResponse](#lbm.slashing.v1beta1.QuerySigningInfosResponse) | SigningInfos queries signing info of all validators | GET|/cosmos/slashing/v1beta1/signing_infos| + + + - +## lbm/slashing/v1beta1/tx.proto -### QueryPacketAcknowledgementRequest -QueryPacketAcknowledgementRequest is the request type for the -Query/PacketAcknowledgement RPC method + + + + +### MsgUnjail +MsgUnjail defines the Msg/Unjail request type | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `sequence` | [uint64](#uint64) | | packet sequence | +| `validator_addr` | [string](#string) | | | - + + +### MsgUnjailResponse +MsgUnjailResponse defines the Msg/Unjail response type + -### QueryPacketAcknowledgementResponse -QueryPacketAcknowledgementResponse defines the client query response for a -packet which also includes a proof and the height from which the -proof was retrieved -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `acknowledgement` | [bytes](#bytes) | | packet associated with the request fields | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | + + + + - +### Msg +Msg defines the slashing Msg service. -### QueryPacketAcknowledgementsRequest -QueryPacketAcknowledgementsRequest is the request type for the -Query/QueryPacketCommitments RPC method +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Unjail` | [MsgUnjail](#lbm.slashing.v1beta1.MsgUnjail) | [MsgUnjailResponse](#lbm.slashing.v1beta1.MsgUnjailResponse) | Unjail defines a method for unjailing a jailed validator, thus returning them into the bonded validator set, so they can begin receiving provisions and rewards again. | | + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination request | + + +## lbm/staking/v1beta1/staking.proto - + -### QueryPacketAcknowledgementsResponse -QueryPacketAcknowledgemetsResponse is the request type for the -Query/QueryPacketAcknowledgements RPC method +### Commission +Commission defines commission parameters for a given validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `acknowledgements` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | +| `commission_rates` | [CommissionRates](#lbm.staking.v1beta1.CommissionRates) | | commission_rates defines the initial commission rates to be used for creating a validator. | +| `update_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | update_time is the last time the commission rate was changed. | - + -### QueryPacketCommitmentRequest -QueryPacketCommitmentRequest is the request type for the -Query/PacketCommitment RPC method +### CommissionRates +CommissionRates defines the initial commission rates to be used for creating +a validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `sequence` | [uint64](#uint64) | | packet sequence | +| `rate` | [string](#string) | | rate is the commission rate charged to delegators, as a fraction. | +| `max_rate` | [string](#string) | | max_rate defines the maximum commission rate which validator can ever charge, as a fraction. | +| `max_change_rate` | [string](#string) | | max_change_rate defines the maximum daily increase of the validator commission, as a fraction. | - + -### QueryPacketCommitmentResponse -QueryPacketCommitmentResponse defines the client query response for a packet -which also includes a proof and the height from which the proof was -retrieved +### DVPair +DVPair is struct that just has a delegator-validator pair with no other data. +It is intended to be used as a marshalable pointer. For example, a DVPair can +be used to construct the key to getting an UnbondingDelegation from state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `commitment` | [bytes](#bytes) | | packet associated with the request fields | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `delegator_address` | [string](#string) | | | +| `validator_address` | [string](#string) | | | - + -### QueryPacketCommitmentsRequest -QueryPacketCommitmentsRequest is the request type for the -Query/QueryPacketCommitments RPC method +### DVPairs +DVPairs defines an array of DVPair objects. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination request | +| `pairs` | [DVPair](#lbm.staking.v1beta1.DVPair) | repeated | | - + -### QueryPacketCommitmentsResponse -QueryPacketCommitmentsResponse is the request type for the -Query/QueryPacketCommitments RPC method +### DVVTriplet +DVVTriplet is struct that just has a delegator-validator-validator triplet +with no other data. It is intended to be used as a marshalable pointer. For +example, a DVVTriplet can be used to construct the key to getting a +Redelegation from state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `commitments` | [PacketState](#ibc.core.channel.v1.PacketState) | repeated | | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | +| `delegator_address` | [string](#string) | | | +| `validator_src_address` | [string](#string) | | | +| `validator_dst_address` | [string](#string) | | | - + -### QueryPacketReceiptRequest -QueryPacketReceiptRequest is the request type for the -Query/PacketReceipt RPC method +### DVVTriplets +DVVTriplets defines an array of DVVTriplet objects. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `sequence` | [uint64](#uint64) | | packet sequence | +| `triplets` | [DVVTriplet](#lbm.staking.v1beta1.DVVTriplet) | repeated | | - + -### QueryPacketReceiptResponse -QueryPacketReceiptResponse defines the client query response for a packet receipt -which also includes a proof, and the height from which the proof was -retrieved +### Delegation +Delegation represents the bond with tokens held by an account. It is +owned by one delegator, and is associated with the voting power of one +validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `received` | [bool](#bool) | | success flag for if receipt exists | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `delegator_address` | [string](#string) | | delegator_address is the bech32-encoded address of the delegator. | +| `validator_address` | [string](#string) | | validator_address is the bech32-encoded address of the validator. | +| `shares` | [string](#string) | | shares define the delegation shares received. | - + -### QueryUnreceivedAcksRequest -QueryUnreceivedAcks is the request type for the -Query/UnreceivedAcks RPC method +### DelegationResponse +DelegationResponse is equivalent to Delegation except that it contains a +balance in addition to shares which is more suitable for client responses. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `packet_ack_sequences` | [uint64](#uint64) | repeated | list of acknowledgement sequences | +| `delegation` | [Delegation](#lbm.staking.v1beta1.Delegation) | | | +| `balance` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | | - + -### QueryUnreceivedAcksResponse -QueryUnreceivedAcksResponse is the response type for the -Query/UnreceivedAcks RPC method +### Description +Description defines a validator description. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sequences` | [uint64](#uint64) | repeated | list of unreceived acknowledgement sequences | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - - +| `moniker` | [string](#string) | | moniker defines a human-readable name for the validator. | +| `identity` | [string](#string) | | identity defines an optional identity signature (ex. UPort or Keybase). | +| `website` | [string](#string) | | website defines an optional website link. | +| `security_contact` | [string](#string) | | security_contact defines an optional email for security contact. | +| `details` | [string](#string) | | details define other optional details. | - -### QueryUnreceivedPacketsRequest -QueryUnreceivedPacketsRequest is the request type for the -Query/UnreceivedPackets RPC method + + + +### HistoricalInfo +HistoricalInfo contains header and validator information for a given block. +It is stored as part of staking module's state, which persists the `n` most +recent HistoricalInfo +(`n` is set by the staking module's `historical_entries` parameter). | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | port unique identifier | -| `channel_id` | [string](#string) | | channel unique identifier | -| `packet_commitment_sequences` | [uint64](#uint64) | repeated | list of packet sequences | +| `header` | [ostracon.types.Header](#ostracon.types.Header) | | | +| `valset` | [Validator](#lbm.staking.v1beta1.Validator) | repeated | | - + -### QueryUnreceivedPacketsResponse -QueryUnreceivedPacketsResponse is the response type for the -Query/UnreceivedPacketCommitments RPC method +### Params +Params defines the parameters for the staking module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sequences` | [uint64](#uint64) | repeated | list of unreceived packet sequences | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | - - - - +| `unbonding_time` | [google.protobuf.Duration](#google.protobuf.Duration) | | unbonding_time is the time duration of unbonding. | +| `max_validators` | [uint32](#uint32) | | max_validators is the maximum number of validators. | +| `max_entries` | [uint32](#uint32) | | max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). | +| `historical_entries` | [uint32](#uint32) | | historical_entries is the number of historical entries to persist. | +| `bond_denom` | [string](#string) | | bond_denom defines the bondable coin denomination. | - - - - -### Query -Query provides defines the gRPC querier service + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Channel` | [QueryChannelRequest](#ibc.core.channel.v1.QueryChannelRequest) | [QueryChannelResponse](#ibc.core.channel.v1.QueryChannelResponse) | Channel queries an IBC Channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}| -| `Channels` | [QueryChannelsRequest](#ibc.core.channel.v1.QueryChannelsRequest) | [QueryChannelsResponse](#ibc.core.channel.v1.QueryChannelsResponse) | Channels queries all the IBC channels of a chain. | GET|/ibc/core/channel/v1beta1/channels| -| `ConnectionChannels` | [QueryConnectionChannelsRequest](#ibc.core.channel.v1.QueryConnectionChannelsRequest) | [QueryConnectionChannelsResponse](#ibc.core.channel.v1.QueryConnectionChannelsResponse) | ConnectionChannels queries all the channels associated with a connection end. | GET|/ibc/core/channel/v1beta1/connections/{connection}/channels| -| `ChannelClientState` | [QueryChannelClientStateRequest](#ibc.core.channel.v1.QueryChannelClientStateRequest) | [QueryChannelClientStateResponse](#ibc.core.channel.v1.QueryChannelClientStateResponse) | ChannelClientState queries for the client state for the channel associated with the provided channel identifiers. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/client_state| -| `ChannelConsensusState` | [QueryChannelConsensusStateRequest](#ibc.core.channel.v1.QueryChannelConsensusStateRequest) | [QueryChannelConsensusStateResponse](#ibc.core.channel.v1.QueryChannelConsensusStateResponse) | ChannelConsensusState queries for the consensus state for the channel associated with the provided channel identifiers. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/consensus_state/revision/{revision_number}/height/{revision_height}| -| `PacketCommitment` | [QueryPacketCommitmentRequest](#ibc.core.channel.v1.QueryPacketCommitmentRequest) | [QueryPacketCommitmentResponse](#ibc.core.channel.v1.QueryPacketCommitmentResponse) | PacketCommitment queries a stored packet commitment hash. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments/{sequence}| -| `PacketCommitments` | [QueryPacketCommitmentsRequest](#ibc.core.channel.v1.QueryPacketCommitmentsRequest) | [QueryPacketCommitmentsResponse](#ibc.core.channel.v1.QueryPacketCommitmentsResponse) | PacketCommitments returns all the packet commitments hashes associated with a channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments| -| `PacketReceipt` | [QueryPacketReceiptRequest](#ibc.core.channel.v1.QueryPacketReceiptRequest) | [QueryPacketReceiptResponse](#ibc.core.channel.v1.QueryPacketReceiptResponse) | PacketReceipt queries if a given packet sequence has been received on the queried chain | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_receipts/{sequence}| -| `PacketAcknowledgement` | [QueryPacketAcknowledgementRequest](#ibc.core.channel.v1.QueryPacketAcknowledgementRequest) | [QueryPacketAcknowledgementResponse](#ibc.core.channel.v1.QueryPacketAcknowledgementResponse) | PacketAcknowledgement queries a stored packet acknowledgement hash. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_acks/{sequence}| -| `PacketAcknowledgements` | [QueryPacketAcknowledgementsRequest](#ibc.core.channel.v1.QueryPacketAcknowledgementsRequest) | [QueryPacketAcknowledgementsResponse](#ibc.core.channel.v1.QueryPacketAcknowledgementsResponse) | PacketAcknowledgements returns all the packet acknowledgements associated with a channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_acknowledgements| -| `UnreceivedPackets` | [QueryUnreceivedPacketsRequest](#ibc.core.channel.v1.QueryUnreceivedPacketsRequest) | [QueryUnreceivedPacketsResponse](#ibc.core.channel.v1.QueryUnreceivedPacketsResponse) | UnreceivedPackets returns all the unreceived IBC packets associated with a channel and sequences. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_commitment_sequences}/unreceived_packets| -| `UnreceivedAcks` | [QueryUnreceivedAcksRequest](#ibc.core.channel.v1.QueryUnreceivedAcksRequest) | [QueryUnreceivedAcksResponse](#ibc.core.channel.v1.QueryUnreceivedAcksResponse) | UnreceivedAcks returns all the unreceived IBC acknowledgements associated with a channel and sequences. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_ack_sequences}/unreceived_acks| -| `NextSequenceReceive` | [QueryNextSequenceReceiveRequest](#ibc.core.channel.v1.QueryNextSequenceReceiveRequest) | [QueryNextSequenceReceiveResponse](#ibc.core.channel.v1.QueryNextSequenceReceiveResponse) | NextSequenceReceive returns the next receive sequence for a given channel. | GET|/ibc/core/channel/v1beta1/channels/{channel_id}/ports/{port_id}/next_sequence| +### Pool +Pool is used for tracking bonded and not-bonded token supply of the bond +denomination. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `not_bonded_tokens` | [string](#string) | | | +| `bonded_tokens` | [string](#string) | | | - - -## ibc/core/channel/v1/tx.proto - + -### MsgAcknowledgement -MsgAcknowledgement receives incoming IBC acknowledgement +### Redelegation +Redelegation contains the list of a particular delegator's redelegating bonds +from a particular source validator to a particular destination validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | -| `acknowledgement` | [bytes](#bytes) | | | -| `proof_acked` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | - - - - - - - +| `delegator_address` | [string](#string) | | delegator_address is the bech32-encoded address of the delegator. | +| `validator_src_address` | [string](#string) | | validator_src_address is the validator redelegation source operator address. | +| `validator_dst_address` | [string](#string) | | validator_dst_address is the validator redelegation destination operator address. | +| `entries` | [RedelegationEntry](#lbm.staking.v1beta1.RedelegationEntry) | repeated | entries are the redelegation entries. -### MsgAcknowledgementResponse -MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. +redelegation entries | - + -### MsgChannelCloseConfirm -MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B -to acknowledge the change of channel state to CLOSED on Chain A. +### RedelegationEntry +RedelegationEntry defines a redelegation object with relevant metadata. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `channel_id` | [string](#string) | | | -| `proof_init` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | - - - - - - - - -### MsgChannelCloseConfirmResponse -MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response type. +| `creation_height` | [int64](#int64) | | creation_height defines the height which the redelegation took place. | +| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | completion_time defines the unix time for redelegation completion. | +| `initial_balance` | [string](#string) | | initial_balance defines the initial balance when redelegation started. | +| `shares_dst` | [string](#string) | | shares_dst is the amount of destination-validator shares created by redelegation. | - + -### MsgChannelCloseInit -MsgChannelCloseInit defines a msg sent by a Relayer to Chain A -to close a channel with Chain B. +### RedelegationEntryResponse +RedelegationEntryResponse is equivalent to a RedelegationEntry except that it +contains a balance in addition to shares which is more suitable for client +responses. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `channel_id` | [string](#string) | | | -| `signer` | [string](#string) | | | - - - - - - - - -### MsgChannelCloseInitResponse -MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. +| `redelegation_entry` | [RedelegationEntry](#lbm.staking.v1beta1.RedelegationEntry) | | | +| `balance` | [string](#string) | | | - + -### MsgChannelOpenAck -MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge -the change of channel state to TRYOPEN on Chain B. +### RedelegationResponse +RedelegationResponse is equivalent to a Redelegation except that its entries +contain a balance in addition to shares which is more suitable for client +responses. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `channel_id` | [string](#string) | | | -| `counterparty_channel_id` | [string](#string) | | | -| `counterparty_version` | [string](#string) | | | -| `proof_try` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | - - - - - - - - -### MsgChannelOpenAckResponse -MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. +| `redelegation` | [Redelegation](#lbm.staking.v1beta1.Redelegation) | | | +| `entries` | [RedelegationEntryResponse](#lbm.staking.v1beta1.RedelegationEntryResponse) | repeated | | - + -### MsgChannelOpenConfirm -MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to -acknowledge the change of channel state to OPEN on Chain A. +### UnbondingDelegation +UnbondingDelegation stores all of a single delegator's unbonding bonds +for a single validator in an time-ordered list. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `channel_id` | [string](#string) | | | -| `proof_ack` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | - - - - - - - +| `delegator_address` | [string](#string) | | delegator_address is the bech32-encoded address of the delegator. | +| `validator_address` | [string](#string) | | validator_address is the bech32-encoded address of the validator. | +| `entries` | [UnbondingDelegationEntry](#lbm.staking.v1beta1.UnbondingDelegationEntry) | repeated | entries are the unbonding delegation entries. -### MsgChannelOpenConfirmResponse -MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response type. +unbonding delegation entries | - + -### MsgChannelOpenInit -MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It -is called by a relayer on Chain A. +### UnbondingDelegationEntry +UnbondingDelegationEntry defines an unbonding object with relevant metadata. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `channel` | [Channel](#ibc.core.channel.v1.Channel) | | | -| `signer` | [string](#string) | | | - - - - - - - - -### MsgChannelOpenInitResponse -MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. +| `creation_height` | [int64](#int64) | | creation_height is the height which the unbonding took place. | +| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | completion_time is the unix time for unbonding completion. | +| `initial_balance` | [string](#string) | | initial_balance defines the tokens initially scheduled to receive at completion. | +| `balance` | [string](#string) | | balance defines the tokens to receive at completion. | - + -### MsgChannelOpenTry -MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel -on Chain B. +### ValAddresses +ValAddresses defines a repeated set of validator addresses. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `port_id` | [string](#string) | | | -| `previous_channel_id` | [string](#string) | | in the case of crossing hello's, when both chains call OpenInit, we need the channel identifier of the previous channel in state INIT | -| `channel` | [Channel](#ibc.core.channel.v1.Channel) | | | -| `counterparty_version` | [string](#string) | | | -| `proof_init` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | - - - - - - - - -### MsgChannelOpenTryResponse -MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. +| `addresses` | [string](#string) | repeated | | - + -### MsgRecvPacket -MsgRecvPacket receives incoming IBC packet +### Validator +Validator defines a validator, together with the total amount of the +Validator's bond shares and their exchange rate to coins. Slashing results in +a decrease in the exchange rate, allowing correct calculation of future +undelegations without iterating over delegators. When coins are delegated to +this validator, the validator is credited with a delegation whose number of +bond shares is based on the amount of coins delegated divided by the current +exchange rate. Voting power can be calculated as total bonded shares +multiplied by exchange rate. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | -| `proof_commitment` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | - - +| `operator_address` | [string](#string) | | operator_address defines the address of the validator's operator; bech encoded in JSON. | +| `consensus_pubkey` | [google.protobuf.Any](#google.protobuf.Any) | | consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. | +| `jailed` | [bool](#bool) | | jailed defined whether the validator has been jailed from bonded status or not. | +| `status` | [BondStatus](#lbm.staking.v1beta1.BondStatus) | | status is the validator status (bonded/unbonding/unbonded). | +| `tokens` | [string](#string) | | tokens define the delegated tokens (incl. self-delegation). | +| `delegator_shares` | [string](#string) | | delegator_shares defines total shares issued to a validator's delegators. | +| `description` | [Description](#lbm.staking.v1beta1.Description) | | description defines the description terms for the validator. | +| `unbonding_height` | [int64](#int64) | | unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. | +| `unbonding_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. | +| `commission` | [Commission](#lbm.staking.v1beta1.Commission) | | commission defines the commission parameters. | +| `min_self_delegation` | [string](#string) | | min_self_delegation is the validator's self declared minimum self delegation. | - -### MsgRecvPacketResponse -MsgRecvPacketResponse defines the Msg/RecvPacket response type. + + +### BondStatus +BondStatus is the status of a validator. +| Name | Number | Description | +| ---- | ------ | ----------- | +| BOND_STATUS_UNSPECIFIED | 0 | UNSPECIFIED defines an invalid validator status. | +| BOND_STATUS_UNBONDED | 1 | UNBONDED defines a validator that is not bonded. | +| BOND_STATUS_UNBONDING | 2 | UNBONDING defines a validator that is unbonding. | +| BOND_STATUS_BONDED | 3 | BONDED defines a validator that is bonded. | - + -### MsgTimeout -MsgTimeout receives timed-out packet + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | -| `proof_unreceived` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `next_sequence_recv` | [uint64](#uint64) | | | -| `signer` | [string](#string) | | | + + +## lbm/staking/v1beta1/genesis.proto - + -### MsgTimeoutOnClose -MsgTimeoutOnClose timed-out packet upon counterparty channel closure. +### GenesisState +GenesisState defines the staking module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `packet` | [Packet](#ibc.core.channel.v1.Packet) | | | -| `proof_unreceived` | [bytes](#bytes) | | | -| `proof_close` | [bytes](#bytes) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `next_sequence_recv` | [uint64](#uint64) | | | -| `signer` | [string](#string) | | | - - - - - +| `params` | [Params](#lbm.staking.v1beta1.Params) | | params defines all the paramaters of related to deposit. | +| `last_total_power` | [bytes](#bytes) | | last_total_power tracks the total amounts of bonded tokens recorded during the previous end block. | +| `last_validator_powers` | [LastValidatorPower](#lbm.staking.v1beta1.LastValidatorPower) | repeated | last_validator_powers is a special index that provides a historical list of the last-block's bonded validators. | +| `validators` | [Validator](#lbm.staking.v1beta1.Validator) | repeated | delegations defines the validator set at genesis. | +| `delegations` | [Delegation](#lbm.staking.v1beta1.Delegation) | repeated | delegations defines the delegations active at genesis. | +| `unbonding_delegations` | [UnbondingDelegation](#lbm.staking.v1beta1.UnbondingDelegation) | repeated | unbonding_delegations defines the unbonding delegations active at genesis. | +| `redelegations` | [Redelegation](#lbm.staking.v1beta1.Redelegation) | repeated | redelegations defines the redelegations active at genesis. | +| `exported` | [bool](#bool) | | | - -### MsgTimeoutOnCloseResponse -MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. + +### LastValidatorPower +LastValidatorPower required for validator set update logic. - -### MsgTimeoutResponse -MsgTimeoutResponse defines the Msg/Timeout response type. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `address` | [string](#string) | | address is the address of the validator. | +| `power` | [int64](#int64) | | power defines the power of the validator. | @@ -8409,505 +8457,458 @@ MsgTimeoutResponse defines the Msg/Timeout response type. - - - -### Msg -Msg defines the ibc/channel Msg service. - -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `ChannelOpenInit` | [MsgChannelOpenInit](#ibc.core.channel.v1.MsgChannelOpenInit) | [MsgChannelOpenInitResponse](#ibc.core.channel.v1.MsgChannelOpenInitResponse) | ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit. | | -| `ChannelOpenTry` | [MsgChannelOpenTry](#ibc.core.channel.v1.MsgChannelOpenTry) | [MsgChannelOpenTryResponse](#ibc.core.channel.v1.MsgChannelOpenTryResponse) | ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry. | | -| `ChannelOpenAck` | [MsgChannelOpenAck](#ibc.core.channel.v1.MsgChannelOpenAck) | [MsgChannelOpenAckResponse](#ibc.core.channel.v1.MsgChannelOpenAckResponse) | ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck. | | -| `ChannelOpenConfirm` | [MsgChannelOpenConfirm](#ibc.core.channel.v1.MsgChannelOpenConfirm) | [MsgChannelOpenConfirmResponse](#ibc.core.channel.v1.MsgChannelOpenConfirmResponse) | ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm. | | -| `ChannelCloseInit` | [MsgChannelCloseInit](#ibc.core.channel.v1.MsgChannelCloseInit) | [MsgChannelCloseInitResponse](#ibc.core.channel.v1.MsgChannelCloseInitResponse) | ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit. | | -| `ChannelCloseConfirm` | [MsgChannelCloseConfirm](#ibc.core.channel.v1.MsgChannelCloseConfirm) | [MsgChannelCloseConfirmResponse](#ibc.core.channel.v1.MsgChannelCloseConfirmResponse) | ChannelCloseConfirm defines a rpc handler method for MsgChannelCloseConfirm. | | -| `RecvPacket` | [MsgRecvPacket](#ibc.core.channel.v1.MsgRecvPacket) | [MsgRecvPacketResponse](#ibc.core.channel.v1.MsgRecvPacketResponse) | RecvPacket defines a rpc handler method for MsgRecvPacket. | | -| `Timeout` | [MsgTimeout](#ibc.core.channel.v1.MsgTimeout) | [MsgTimeoutResponse](#ibc.core.channel.v1.MsgTimeoutResponse) | Timeout defines a rpc handler method for MsgTimeout. | | -| `TimeoutOnClose` | [MsgTimeoutOnClose](#ibc.core.channel.v1.MsgTimeoutOnClose) | [MsgTimeoutOnCloseResponse](#ibc.core.channel.v1.MsgTimeoutOnCloseResponse) | TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose. | | -| `Acknowledgement` | [MsgAcknowledgement](#ibc.core.channel.v1.MsgAcknowledgement) | [MsgAcknowledgementResponse](#ibc.core.channel.v1.MsgAcknowledgementResponse) | Acknowledgement defines a rpc handler method for MsgAcknowledgement. | | - - + -## ibc/core/client/v1/genesis.proto +## lbm/staking/v1beta1/query.proto - + -### GenesisMetadata -GenesisMetadata defines the genesis type for metadata that clients may return -with ExportMetadata +### QueryDelegationRequest +QueryDelegationRequest is request type for the Query/Delegation RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key` | [bytes](#bytes) | | store key of metadata without clientID-prefix | -| `value` | [bytes](#bytes) | | metadata value | +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | - + -### GenesisState -GenesisState defines the ibc client submodule's genesis state. +### QueryDelegationResponse +QueryDelegationResponse is response type for the Query/Delegation RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `clients` | [IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | repeated | client states with their corresponding identifiers | -| `clients_consensus` | [ClientConsensusStates](#ibc.core.client.v1.ClientConsensusStates) | repeated | consensus states from each client | -| `clients_metadata` | [IdentifiedGenesisMetadata](#ibc.core.client.v1.IdentifiedGenesisMetadata) | repeated | metadata from each client | -| `params` | [Params](#ibc.core.client.v1.Params) | | | -| `create_localhost` | [bool](#bool) | | create localhost on initialization | -| `next_client_sequence` | [uint64](#uint64) | | the sequence for the next generated client identifier | +| `delegation_response` | [DelegationResponse](#lbm.staking.v1beta1.DelegationResponse) | | delegation_responses defines the delegation info of a delegation. | - + -### IdentifiedGenesisMetadata -IdentifiedGenesisMetadata has the client metadata with the corresponding client id. +### QueryDelegatorDelegationsRequest +QueryDelegatorDelegationsRequest is request type for the +Query/DelegatorDelegations RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | | -| `client_metadata` | [GenesisMetadata](#ibc.core.client.v1.GenesisMetadata) | repeated | | - - - - - - +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - - - - - - -## ibc/core/client/v1/query.proto - + +### QueryDelegatorDelegationsResponse +QueryDelegatorDelegationsResponse is response type for the +Query/DelegatorDelegations RPC method. - -### QueryClientParamsRequest -QueryClientParamsRequest is the request type for the Query/ClientParams RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `delegation_responses` | [DelegationResponse](#lbm.staking.v1beta1.DelegationResponse) | repeated | delegation_responses defines all the delegations' info of a delegator. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### QueryClientParamsResponse -QueryClientParamsResponse is the response type for the Query/ClientParams RPC method. +### QueryDelegatorUnbondingDelegationsRequest +QueryDelegatorUnbondingDelegationsRequest is request type for the +Query/DelegatorUnbondingDelegations RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#ibc.core.client.v1.Params) | | params defines the parameters of the module. | +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### QueryClientStateRequest -QueryClientStateRequest is the request type for the Query/ClientState RPC -method +### QueryDelegatorUnbondingDelegationsResponse +QueryUnbondingDelegatorDelegationsResponse is response type for the +Query/UnbondingDelegatorDelegations RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client state unique identifier | +| `unbonding_responses` | [UnbondingDelegation](#lbm.staking.v1beta1.UnbondingDelegation) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### QueryClientStateResponse -QueryClientStateResponse is the response type for the Query/ClientState RPC -method. Besides the client state, it includes a proof and the height from -which the proof was retrieved. +### QueryDelegatorValidatorRequest +QueryDelegatorValidatorRequest is request type for the +Query/DelegatorValidator RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | client state associated with the request identifier | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | - + -### QueryClientStatesRequest -QueryClientStatesRequest is the request type for the Query/ClientStates RPC -method +### QueryDelegatorValidatorResponse +QueryDelegatorValidatorResponse response type for the +Query/DelegatorValidator RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination request | +| `validator` | [Validator](#lbm.staking.v1beta1.Validator) | | validator defines the the validator info. | - + -### QueryClientStatesResponse -QueryClientStatesResponse is the response type for the Query/ClientStates RPC -method. +### QueryDelegatorValidatorsRequest +QueryDelegatorValidatorsRequest is request type for the +Query/DelegatorValidators RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_states` | [IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | repeated | list of stored ClientStates of the chain. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### QueryConsensusStateRequest -QueryConsensusStateRequest is the request type for the Query/ConsensusState -RPC method. Besides the consensus state, it includes a proof and the height -from which the proof was retrieved. +### QueryDelegatorValidatorsResponse +QueryDelegatorValidatorsResponse is response type for the +Query/DelegatorValidators RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client identifier | -| `revision_number` | [uint64](#uint64) | | consensus state revision number | -| `revision_height` | [uint64](#uint64) | | consensus state revision height | -| `latest_height` | [bool](#bool) | | latest_height overrrides the height field and queries the latest stored ConsensusState | +| `validators` | [Validator](#lbm.staking.v1beta1.Validator) | repeated | validators defines the the validators' info of a delegator. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### QueryConsensusStateResponse -QueryConsensusStateResponse is the response type for the Query/ConsensusState -RPC method +### QueryHistoricalInfoRequest +QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the client identifier at the given height | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `height` | [int64](#int64) | | height defines at which height to query the historical info. | - + -### QueryConsensusStatesRequest -QueryConsensusStatesRequest is the request type for the Query/ConsensusStates -RPC method. +### QueryHistoricalInfoResponse +QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client identifier | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination request | +| `hist` | [HistoricalInfo](#lbm.staking.v1beta1.HistoricalInfo) | | hist defines the historical info at the given height. | - + -### QueryConsensusStatesResponse -QueryConsensusStatesResponse is the response type for the -Query/ConsensusStates RPC method +### QueryParamsRequest +QueryParamsRequest is request type for the Query/Params RPC method. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `consensus_states` | [ConsensusStateWithHeight](#ibc.core.client.v1.ConsensusStateWithHeight) | repeated | consensus states associated with the identifier | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | + - +### QueryParamsResponse +QueryParamsResponse is response type for the Query/Params RPC method. - - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `params` | [Params](#lbm.staking.v1beta1.Params) | | params holds all the parameters of this module. | - -### Query -Query provides defines the gRPC querier service -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `ClientState` | [QueryClientStateRequest](#ibc.core.client.v1.QueryClientStateRequest) | [QueryClientStateResponse](#ibc.core.client.v1.QueryClientStateResponse) | ClientState queries an IBC light client. | GET|/ibc/core/client/v1beta1/client_states/{client_id}| -| `ClientStates` | [QueryClientStatesRequest](#ibc.core.client.v1.QueryClientStatesRequest) | [QueryClientStatesResponse](#ibc.core.client.v1.QueryClientStatesResponse) | ClientStates queries all the IBC light clients of a chain. | GET|/ibc/core/client/v1beta1/client_states| -| `ConsensusState` | [QueryConsensusStateRequest](#ibc.core.client.v1.QueryConsensusStateRequest) | [QueryConsensusStateResponse](#ibc.core.client.v1.QueryConsensusStateResponse) | ConsensusState queries a consensus state associated with a client state at a given height. | GET|/ibc/core/client/v1beta1/consensus_states/{client_id}/revision/{revision_number}/height/{revision_height}| -| `ConsensusStates` | [QueryConsensusStatesRequest](#ibc.core.client.v1.QueryConsensusStatesRequest) | [QueryConsensusStatesResponse](#ibc.core.client.v1.QueryConsensusStatesResponse) | ConsensusStates queries all the consensus state associated with a given client. | GET|/ibc/core/client/v1beta1/consensus_states/{client_id}| -| `ClientParams` | [QueryClientParamsRequest](#ibc.core.client.v1.QueryClientParamsRequest) | [QueryClientParamsResponse](#ibc.core.client.v1.QueryClientParamsResponse) | ClientParams queries all parameters of the ibc client. | GET|/ibc/client/v1beta1/params| - + +### QueryPoolRequest +QueryPoolRequest is request type for the Query/Pool RPC method. - - -## ibc/core/client/v1/tx.proto - -### MsgCreateClient -MsgCreateClient defines a message to create an IBC client + + +### QueryPoolResponse +QueryPoolResponse is response type for the Query/Pool RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | light client state | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the client that corresponds to a given height. | -| `signer` | [string](#string) | | signer address | +| `pool` | [Pool](#lbm.staking.v1beta1.Pool) | | pool defines the pool info. | - + -### MsgCreateClientResponse -MsgCreateClientResponse defines the Msg/CreateClient response type. +### QueryRedelegationsRequest +QueryRedelegationsRequest is request type for the Query/Redelegations RPC +method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `src_validator_addr` | [string](#string) | | src_validator_addr defines the validator address to redelegate from. | +| `dst_validator_addr` | [string](#string) | | dst_validator_addr defines the validator address to redelegate to. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - -### MsgSubmitMisbehaviour -MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for -light client misbehaviour. + + + +### QueryRedelegationsResponse +QueryRedelegationsResponse is response type for the Query/Redelegations RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client unique identifier | -| `misbehaviour` | [google.protobuf.Any](#google.protobuf.Any) | | misbehaviour used for freezing the light client | -| `signer` | [string](#string) | | signer address | +| `redelegation_responses` | [RedelegationResponse](#lbm.staking.v1beta1.RedelegationResponse) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### MsgSubmitMisbehaviourResponse -MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response type. +### QueryUnbondingDelegationRequest +QueryUnbondingDelegationRequest is request type for the +Query/UnbondingDelegation RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `delegator_addr` | [string](#string) | | delegator_addr defines the delegator address to query for. | +| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | - -### MsgUpdateClient -MsgUpdateClient defines an sdk.Msg to update a IBC client state using -the given header. + + + +### QueryUnbondingDelegationResponse +QueryDelegationResponse is response type for the Query/UnbondingDelegation +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client unique identifier | -| `header` | [google.protobuf.Any](#google.protobuf.Any) | | header to update the light client | -| `signer` | [string](#string) | | signer address | +| `unbond` | [UnbondingDelegation](#lbm.staking.v1beta1.UnbondingDelegation) | | unbond defines the unbonding information of a delegation. | - + -### MsgUpdateClientResponse -MsgUpdateClientResponse defines the Msg/UpdateClient response type. +### QueryValidatorDelegationsRequest +QueryValidatorDelegationsRequest is request type for the +Query/ValidatorDelegations RPC method +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - -### MsgUpgradeClient -MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client state + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client unique identifier | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | upgraded client state | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | upgraded consensus state, only contains enough information to serve as a basis of trust in update logic | -| `proof_upgrade_client` | [bytes](#bytes) | | proof that old chain committed to new client | -| `proof_upgrade_consensus_state` | [bytes](#bytes) | | proof that old chain committed to new consensus state | -| `signer` | [string](#string) | | signer address | +### QueryValidatorDelegationsResponse +QueryValidatorDelegationsResponse is response type for the +Query/ValidatorDelegations RPC method +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `delegation_responses` | [DelegationResponse](#lbm.staking.v1beta1.DelegationResponse) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - -### MsgUpgradeClientResponse -MsgUpgradeClientResponse defines the Msg/UpgradeClient response type. + +### QueryValidatorRequest +QueryValidatorRequest is response type for the Query/Validator RPC method +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | - - - - -### Msg -Msg defines the ibc/client Msg service. + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `CreateClient` | [MsgCreateClient](#ibc.core.client.v1.MsgCreateClient) | [MsgCreateClientResponse](#ibc.core.client.v1.MsgCreateClientResponse) | CreateClient defines a rpc handler method for MsgCreateClient. | | -| `UpdateClient` | [MsgUpdateClient](#ibc.core.client.v1.MsgUpdateClient) | [MsgUpdateClientResponse](#ibc.core.client.v1.MsgUpdateClientResponse) | UpdateClient defines a rpc handler method for MsgUpdateClient. | | -| `UpgradeClient` | [MsgUpgradeClient](#ibc.core.client.v1.MsgUpgradeClient) | [MsgUpgradeClientResponse](#ibc.core.client.v1.MsgUpgradeClientResponse) | UpgradeClient defines a rpc handler method for MsgUpgradeClient. | | -| `SubmitMisbehaviour` | [MsgSubmitMisbehaviour](#ibc.core.client.v1.MsgSubmitMisbehaviour) | [MsgSubmitMisbehaviourResponse](#ibc.core.client.v1.MsgSubmitMisbehaviourResponse) | SubmitMisbehaviour defines a rpc handler method for MsgSubmitMisbehaviour. | | +### QueryValidatorResponse +QueryValidatorResponse is response type for the Query/Validator RPC method - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `validator` | [Validator](#lbm.staking.v1beta1.Validator) | | validator defines the the validator info. | - - -## ibc/core/commitment/v1/commitment.proto - + -### MerklePath -MerklePath is the path used to verify commitment proofs, which can be an -arbitrary structured object (defined by a commitment type). -MerklePath is represented from root-to-leaf +### QueryValidatorUnbondingDelegationsRequest +QueryValidatorUnbondingDelegationsRequest is required type for the +Query/ValidatorUnbondingDelegations RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key_path` | [string](#string) | repeated | | +| `validator_addr` | [string](#string) | | validator_addr defines the validator address to query for. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### MerklePrefix -MerklePrefix is merkle path prefixed to the key. -The constructed key from the Path and the key will be append(Path.KeyPath, -append(Path.KeyPrefix, key...)) +### QueryValidatorUnbondingDelegationsResponse +QueryValidatorUnbondingDelegationsResponse is response type for the +Query/ValidatorUnbondingDelegations RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `key_prefix` | [bytes](#bytes) | | | +| `unbonding_responses` | [UnbondingDelegation](#lbm.staking.v1beta1.UnbondingDelegation) | repeated | | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | - + -### MerkleProof -MerkleProof is a wrapper type over a chain of CommitmentProofs. -It demonstrates membership or non-membership for an element or set of -elements, verifiable in conjunction with a known commitment root. Proofs -should be succinct. -MerkleProofs are ordered from leaf-to-root +### QueryValidatorsRequest +QueryValidatorsRequest is request type for Query/Validators RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `proofs` | [ics23.CommitmentProof](#ics23.CommitmentProof) | repeated | | +| `status` | [string](#string) | | status enables to query for validators matching a given status. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an optional pagination for the request. | - + -### MerkleRoot -MerkleRoot defines a merkle root hash. -In the Cosmos SDK, the AppHash of a block header becomes the root. +### QueryValidatorsResponse +QueryValidatorsResponse is response type for the Query/Validators RPC method | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `hash` | [bytes](#bytes) | | | +| `validators` | [Validator](#lbm.staking.v1beta1.Validator) | repeated | validators contains all the queried validators. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response. | @@ -8919,167 +8920,188 @@ In the Cosmos SDK, the AppHash of a block header becomes the root. + + + +### Query +Query defines the gRPC querier service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Validators` | [QueryValidatorsRequest](#lbm.staking.v1beta1.QueryValidatorsRequest) | [QueryValidatorsResponse](#lbm.staking.v1beta1.QueryValidatorsResponse) | Validators queries all validators that match the given status. | GET|/cosmos/staking/v1beta1/validators| +| `Validator` | [QueryValidatorRequest](#lbm.staking.v1beta1.QueryValidatorRequest) | [QueryValidatorResponse](#lbm.staking.v1beta1.QueryValidatorResponse) | Validator queries validator info for given validator address. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}| +| `ValidatorDelegations` | [QueryValidatorDelegationsRequest](#lbm.staking.v1beta1.QueryValidatorDelegationsRequest) | [QueryValidatorDelegationsResponse](#lbm.staking.v1beta1.QueryValidatorDelegationsResponse) | ValidatorDelegations queries delegate info for given validator. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/delegations| +| `ValidatorUnbondingDelegations` | [QueryValidatorUnbondingDelegationsRequest](#lbm.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest) | [QueryValidatorUnbondingDelegationsResponse](#lbm.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse) | ValidatorUnbondingDelegations queries unbonding delegations of a validator. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations| +| `Delegation` | [QueryDelegationRequest](#lbm.staking.v1beta1.QueryDelegationRequest) | [QueryDelegationResponse](#lbm.staking.v1beta1.QueryDelegationResponse) | Delegation queries delegate info for given validator delegator pair. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}| +| `UnbondingDelegation` | [QueryUnbondingDelegationRequest](#lbm.staking.v1beta1.QueryUnbondingDelegationRequest) | [QueryUnbondingDelegationResponse](#lbm.staking.v1beta1.QueryUnbondingDelegationResponse) | UnbondingDelegation queries unbonding info for given validator delegator pair. | GET|/cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}/unbonding_delegation| +| `DelegatorDelegations` | [QueryDelegatorDelegationsRequest](#lbm.staking.v1beta1.QueryDelegatorDelegationsRequest) | [QueryDelegatorDelegationsResponse](#lbm.staking.v1beta1.QueryDelegatorDelegationsResponse) | DelegatorDelegations queries all delegations of a given delegator address. | GET|/cosmos/staking/v1beta1/delegations/{delegator_addr}| +| `DelegatorUnbondingDelegations` | [QueryDelegatorUnbondingDelegationsRequest](#lbm.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest) | [QueryDelegatorUnbondingDelegationsResponse](#lbm.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse) | DelegatorUnbondingDelegations queries all unbonding delegations of a given delegator address. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/unbonding_delegations| +| `Redelegations` | [QueryRedelegationsRequest](#lbm.staking.v1beta1.QueryRedelegationsRequest) | [QueryRedelegationsResponse](#lbm.staking.v1beta1.QueryRedelegationsResponse) | Redelegations queries redelegations of given address. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/redelegations| +| `DelegatorValidators` | [QueryDelegatorValidatorsRequest](#lbm.staking.v1beta1.QueryDelegatorValidatorsRequest) | [QueryDelegatorValidatorsResponse](#lbm.staking.v1beta1.QueryDelegatorValidatorsResponse) | DelegatorValidators queries all validators info for given delegator address. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/validators| +| `DelegatorValidator` | [QueryDelegatorValidatorRequest](#lbm.staking.v1beta1.QueryDelegatorValidatorRequest) | [QueryDelegatorValidatorResponse](#lbm.staking.v1beta1.QueryDelegatorValidatorResponse) | DelegatorValidator queries validator info for given delegator validator pair. | GET|/cosmos/staking/v1beta1/delegators/{delegator_addr}/validators/{validator_addr}| +| `HistoricalInfo` | [QueryHistoricalInfoRequest](#lbm.staking.v1beta1.QueryHistoricalInfoRequest) | [QueryHistoricalInfoResponse](#lbm.staking.v1beta1.QueryHistoricalInfoResponse) | HistoricalInfo queries the historical info for given height. | GET|/cosmos/staking/v1beta1/historical_info/{height}| +| `Pool` | [QueryPoolRequest](#lbm.staking.v1beta1.QueryPoolRequest) | [QueryPoolResponse](#lbm.staking.v1beta1.QueryPoolResponse) | Pool queries the pool info. | GET|/cosmos/staking/v1beta1/pool| +| `Params` | [QueryParamsRequest](#lbm.staking.v1beta1.QueryParamsRequest) | [QueryParamsResponse](#lbm.staking.v1beta1.QueryParamsResponse) | Parameters queries the staking parameters. | GET|/cosmos/staking/v1beta1/params| + - + -## ibc/core/connection/v1/connection.proto +## lbm/staking/v1beta1/tx.proto - + -### ClientPaths -ClientPaths define all the connection paths for a client state. +### MsgBeginRedelegate +MsgBeginRedelegate defines a SDK message for performing a redelegation +of coins from a delegator and source validator to a destination validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `paths` | [string](#string) | repeated | list of connection paths | +| `delegator_address` | [string](#string) | | | +| `validator_src_address` | [string](#string) | | | +| `validator_dst_address` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | | - + -### ConnectionEnd -ConnectionEnd defines a stateful object on a chain connected to another -separate one. -NOTE: there must only be 2 defined ConnectionEnds to establish -a connection between two chains. +### MsgBeginRedelegateResponse +MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client associated with this connection. | -| `versions` | [Version](#ibc.core.connection.v1.Version) | repeated | IBC version which can be utilised to determine encodings or protocols for channels or packets utilising this connection. | -| `state` | [State](#ibc.core.connection.v1.State) | | current state of the connection end. | -| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | counterparty chain associated with this connection. | -| `delay_period` | [uint64](#uint64) | | delay period that must pass before a consensus state can be used for packet-verification NOTE: delay period logic is only implemented by some clients. | +| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | - + -### ConnectionPaths -ConnectionPaths define all the connection paths for a given client state. +### MsgCreateValidator +MsgCreateValidator defines a SDK message for creating a new validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client state unique identifier | -| `paths` | [string](#string) | repeated | list of connection paths | - - +| `description` | [Description](#lbm.staking.v1beta1.Description) | | | +| `commission` | [CommissionRates](#lbm.staking.v1beta1.CommissionRates) | | | +| `min_self_delegation` | [string](#string) | | | +| `delegator_address` | [string](#string) | | | +| `validator_address` | [string](#string) | | | +| `pubkey` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `value` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | | - -### Counterparty -Counterparty defines the counterparty chain associated with a connection end. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | identifies the client on the counterparty chain associated with a given connection. | -| `connection_id` | [string](#string) | | identifies the connection end on the counterparty chain associated with a given connection. | -| `prefix` | [ibc.core.commitment.v1.MerklePrefix](#ibc.core.commitment.v1.MerklePrefix) | | commitment merkle prefix of the counterparty chain. | +### MsgCreateValidatorResponse +MsgCreateValidatorResponse defines the Msg/CreateValidator response type. - + -### IdentifiedConnection -IdentifiedConnection defines a connection with additional connection -identifier field. +### MsgDelegate +MsgDelegate defines a SDK message for performing a delegation of coins +from a delegator to a validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `id` | [string](#string) | | connection identifier. | -| `client_id` | [string](#string) | | client associated with this connection. | -| `versions` | [Version](#ibc.core.connection.v1.Version) | repeated | IBC version which can be utilised to determine encodings or protocols for channels or packets utilising this connection | -| `state` | [State](#ibc.core.connection.v1.State) | | current state of the connection end. | -| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | counterparty chain associated with this connection. | -| `delay_period` | [uint64](#uint64) | | delay period associated with this connection. | +| `delegator_address` | [string](#string) | | | +| `validator_address` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | | - + -### Version -Version defines the versioning scheme used to negotiate the IBC verison in -the connection handshake. +### MsgDelegateResponse +MsgDelegateResponse defines the Msg/Delegate response type. + + + + + + + + +### MsgEditValidator +MsgEditValidator defines a SDK message for editing an existing validator. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `identifier` | [string](#string) | | unique version identifier | -| `features` | [string](#string) | repeated | list of features compatible with the specified identifier | +| `description` | [Description](#lbm.staking.v1beta1.Description) | | | +| `validator_address` | [string](#string) | | | +| `commission_rate` | [string](#string) | | We pass a reference to the new commission rate and min self delegation as it's not mandatory to update. If not updated, the deserialized rate will be zero with no way to distinguish if an update was intended. REF: #2373 | +| `min_self_delegation` | [string](#string) | | | - + - +### MsgEditValidatorResponse +MsgEditValidatorResponse defines the Msg/EditValidator response type. -### State -State defines if a connection is in one of the following states: -INIT, TRYOPEN, OPEN or UNINITIALIZED. -| Name | Number | Description | -| ---- | ------ | ----------- | -| STATE_UNINITIALIZED_UNSPECIFIED | 0 | Default State | -| STATE_INIT | 1 | A connection end has just started the opening handshake. | -| STATE_TRYOPEN | 2 | A connection end has acknowledged the handshake step on the counterparty chain. | -| STATE_OPEN | 3 | A connection end has completed the handshake. | - - - + + +### MsgUndelegate +MsgUndelegate defines a SDK message for performing an undelegation from a +delegate and a validator. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `delegator_address` | [string](#string) | | | +| `validator_address` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | | | - - -## ibc/core/connection/v1/genesis.proto - -### GenesisState -GenesisState defines the ibc connection submodule's genesis state. + + +### MsgUndelegateResponse +MsgUndelegateResponse defines the Msg/Undelegate response type. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connections` | [IdentifiedConnection](#ibc.core.connection.v1.IdentifiedConnection) | repeated | | -| `client_connection_paths` | [ConnectionPaths](#ibc.core.connection.v1.ConnectionPaths) | repeated | | -| `next_connection_sequence` | [uint64](#uint64) | | the sequence for the next generated connection identifier | +| `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | @@ -9091,864 +9113,842 @@ GenesisState defines the ibc connection submodule's genesis state. + + + +### Msg +Msg defines the staking Msg service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `CreateValidator` | [MsgCreateValidator](#lbm.staking.v1beta1.MsgCreateValidator) | [MsgCreateValidatorResponse](#lbm.staking.v1beta1.MsgCreateValidatorResponse) | CreateValidator defines a method for creating a new validator. | | +| `EditValidator` | [MsgEditValidator](#lbm.staking.v1beta1.MsgEditValidator) | [MsgEditValidatorResponse](#lbm.staking.v1beta1.MsgEditValidatorResponse) | EditValidator defines a method for editing an existing validator. | | +| `Delegate` | [MsgDelegate](#lbm.staking.v1beta1.MsgDelegate) | [MsgDelegateResponse](#lbm.staking.v1beta1.MsgDelegateResponse) | Delegate defines a method for performing a delegation of coins from a delegator to a validator. | | +| `BeginRedelegate` | [MsgBeginRedelegate](#lbm.staking.v1beta1.MsgBeginRedelegate) | [MsgBeginRedelegateResponse](#lbm.staking.v1beta1.MsgBeginRedelegateResponse) | BeginRedelegate defines a method for performing a redelegation of coins from a delegator and source validator to a destination validator. | | +| `Undelegate` | [MsgUndelegate](#lbm.staking.v1beta1.MsgUndelegate) | [MsgUndelegateResponse](#lbm.staking.v1beta1.MsgUndelegateResponse) | Undelegate defines a method for performing an undelegation from a delegate and a validator. | | + - + -## ibc/core/connection/v1/query.proto +## lbm/tx/signing/v1beta1/signing.proto - + -### QueryClientConnectionsRequest -QueryClientConnectionsRequest is the request type for the -Query/ClientConnections RPC method +### SignatureDescriptor +SignatureDescriptor is a convenience type which represents the full data for +a signature including the public key of the signer, signing modes and the +signature itself. It is primarily used for coordinating signatures between +clients. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | client identifier associated with a connection | +| `public_key` | [google.protobuf.Any](#google.protobuf.Any) | | public_key is the public key of the signer | +| `data` | [SignatureDescriptor.Data](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data) | | | +| `sequence` | [uint64](#uint64) | | sequence is the sequence of the account, which describes the number of committed transactions signed by a given address. It is used to prevent replay attacks. | - + -### QueryClientConnectionsResponse -QueryClientConnectionsResponse is the response type for the -Query/ClientConnections RPC method +### SignatureDescriptor.Data +Data represents signature data | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection_paths` | [string](#string) | repeated | slice of all the connection paths associated with a client. | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was generated | +| `single` | [SignatureDescriptor.Data.Single](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data.Single) | | single represents a single signer | +| `multi` | [SignatureDescriptor.Data.Multi](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data.Multi) | | multi represents a multisig signer | - + -### QueryConnectionClientStateRequest -QueryConnectionClientStateRequest is the request type for the -Query/ConnectionClientState RPC method +### SignatureDescriptor.Data.Multi +Multi is the signature data for a multisig public key | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection_id` | [string](#string) | | connection identifier | +| `bitarray` | [lbm.crypto.multisig.v1beta1.CompactBitArray](#lbm.crypto.multisig.v1beta1.CompactBitArray) | | bitarray specifies which keys within the multisig are signing | +| `signatures` | [SignatureDescriptor.Data](#lbm.tx.signing.v1beta1.SignatureDescriptor.Data) | repeated | signatures is the signatures of the multi-signature | - + -### QueryConnectionClientStateResponse -QueryConnectionClientStateResponse is the response type for the -Query/ConnectionClientState RPC method +### SignatureDescriptor.Data.Single +Single is the signature data for a single signer | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `identified_client_state` | [ibc.core.client.v1.IdentifiedClientState](#ibc.core.client.v1.IdentifiedClientState) | | client state associated with the channel | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `mode` | [SignMode](#lbm.tx.signing.v1beta1.SignMode) | | mode is the signing mode of the single signer | +| `signature` | [bytes](#bytes) | | signature is the raw signature bytes | - + -### QueryConnectionConsensusStateRequest -QueryConnectionConsensusStateRequest is the request type for the -Query/ConnectionConsensusState RPC method +### SignatureDescriptors +SignatureDescriptors wraps multiple SignatureDescriptor's. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection_id` | [string](#string) | | connection identifier | -| `revision_number` | [uint64](#uint64) | | | -| `revision_height` | [uint64](#uint64) | | | - - - - +| `signatures` | [SignatureDescriptor](#lbm.tx.signing.v1beta1.SignatureDescriptor) | repeated | signatures are the signature descriptors | - -### QueryConnectionConsensusStateResponse -QueryConnectionConsensusStateResponse is the response type for the -Query/ConnectionConsensusState RPC method -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | consensus state associated with the channel | -| `client_id` | [string](#string) | | client ID associated with the consensus state | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | + + +### SignMode +SignMode represents a signing mode with its own security guarantees. +| Name | Number | Description | +| ---- | ------ | ----------- | +| SIGN_MODE_UNSPECIFIED | 0 | SIGN_MODE_UNSPECIFIED specifies an unknown signing mode and will be rejected | +| SIGN_MODE_DIRECT | 1 | SIGN_MODE_DIRECT specifies a signing mode which uses SignDoc and is verified with raw bytes from Tx | +| SIGN_MODE_TEXTUAL | 2 | SIGN_MODE_TEXTUAL is a future signing mode that will verify some human-readable textual representation on top of the binary representation from SIGN_MODE_DIRECT | +| SIGN_MODE_LEGACY_AMINO_JSON | 127 | SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses Amino JSON and will be removed in the future | - + -### QueryConnectionRequest -QueryConnectionRequest is the request type for the Query/Connection RPC -method + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `connection_id` | [string](#string) | | connection unique identifier | + + +## lbm/tx/v1beta1/tx.proto - + -### QueryConnectionResponse -QueryConnectionResponse is the response type for the Query/Connection RPC -method. Besides the connection end, it includes a proof and the height from -which the proof was retrieved. +### AuthInfo +AuthInfo describes the fee and signer modes that are used to sign a +transaction. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection` | [ConnectionEnd](#ibc.core.connection.v1.ConnectionEnd) | | connection associated with the request identifier | -| `proof` | [bytes](#bytes) | | merkle proof of existence | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | height at which the proof was retrieved | +| `signer_infos` | [SignerInfo](#lbm.tx.v1beta1.SignerInfo) | repeated | signer_infos defines the signing modes for the required signers. The number and order of elements must match the required signers from TxBody's messages. The first element is the primary signer and the one which pays the fee. | +| `fee` | [Fee](#lbm.tx.v1beta1.Fee) | | Fee is the fee and gas limit for the transaction. The first signer is the primary signer and the one which pays the fee. The fee can be calculated based on the cost of evaluating the body and doing signature verification of the signers. This can be estimated via simulation. | - + -### QueryConnectionsRequest -QueryConnectionsRequest is the request type for the Query/Connections RPC -method +### Fee +Fee includes the amount of coins paid in fees and the maximum +gas to be used by the transaction. The ratio yields an effective "gasprice", +which must be above some miminum to be accepted into the mempool. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | | - - - - +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | amount is the amount of coins to be paid as a fee | +| `gas_limit` | [uint64](#uint64) | | gas_limit is the maximum gas that can be used in transaction processing before an out of gas error occurs | +| `payer` | [string](#string) | | if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees. the payer must be a tx signer (and thus have signed this field in AuthInfo). setting this field does *not* change the ordering of required signers for the transaction. | +| `granter` | [string](#string) | | if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used to pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does not support fee grants, this will fail | - -### QueryConnectionsResponse -QueryConnectionsResponse is the response type for the Query/Connections RPC -method. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `connections` | [IdentifiedConnection](#ibc.core.connection.v1.IdentifiedConnection) | repeated | list of stored connections of the chain. | -| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination response | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | query block height | + +### ModeInfo +ModeInfo describes the signing mode of a single or nested multisig signer. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `single` | [ModeInfo.Single](#lbm.tx.v1beta1.ModeInfo.Single) | | single represents a single signer | +| `multi` | [ModeInfo.Multi](#lbm.tx.v1beta1.ModeInfo.Multi) | | multi represents a nested multisig signer | - - - - -### Query -Query provides defines the gRPC querier service + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Connection` | [QueryConnectionRequest](#ibc.core.connection.v1.QueryConnectionRequest) | [QueryConnectionResponse](#ibc.core.connection.v1.QueryConnectionResponse) | Connection queries an IBC connection end. | GET|/ibc/core/connection/v1beta1/connections/{connection_id}| -| `Connections` | [QueryConnectionsRequest](#ibc.core.connection.v1.QueryConnectionsRequest) | [QueryConnectionsResponse](#ibc.core.connection.v1.QueryConnectionsResponse) | Connections queries all the IBC connections of a chain. | GET|/ibc/core/connection/v1beta1/connections| -| `ClientConnections` | [QueryClientConnectionsRequest](#ibc.core.connection.v1.QueryClientConnectionsRequest) | [QueryClientConnectionsResponse](#ibc.core.connection.v1.QueryClientConnectionsResponse) | ClientConnections queries the connection paths associated with a client state. | GET|/ibc/core/connection/v1beta1/client_connections/{client_id}| -| `ConnectionClientState` | [QueryConnectionClientStateRequest](#ibc.core.connection.v1.QueryConnectionClientStateRequest) | [QueryConnectionClientStateResponse](#ibc.core.connection.v1.QueryConnectionClientStateResponse) | ConnectionClientState queries the client state associated with the connection. | GET|/ibc/core/connection/v1beta1/connections/{connection_id}/client_state| -| `ConnectionConsensusState` | [QueryConnectionConsensusStateRequest](#ibc.core.connection.v1.QueryConnectionConsensusStateRequest) | [QueryConnectionConsensusStateResponse](#ibc.core.connection.v1.QueryConnectionConsensusStateResponse) | ConnectionConsensusState queries the consensus state associated with the connection. | GET|/ibc/core/connection/v1beta1/connections/{connection_id}/consensus_state/revision/{revision_number}/height/{revision_height}| +### ModeInfo.Multi +Multi is the mode info for a multisig public key - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `bitarray` | [lbm.crypto.multisig.v1beta1.CompactBitArray](#lbm.crypto.multisig.v1beta1.CompactBitArray) | | bitarray specifies which keys within the multisig are signing | +| `mode_infos` | [ModeInfo](#lbm.tx.v1beta1.ModeInfo) | repeated | mode_infos is the corresponding modes of the signers of the multisig which could include nested multisig public keys | - - -## ibc/core/connection/v1/tx.proto - + -### MsgConnectionOpenAck -MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to -acknowledge the change of connection state to TRYOPEN on Chain B. +### ModeInfo.Single +Single is the mode info for a single signer. It is structured as a message +to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the +future | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection_id` | [string](#string) | | | -| `counterparty_connection_id` | [string](#string) | | | -| `version` | [Version](#ibc.core.connection.v1.Version) | | | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `proof_try` | [bytes](#bytes) | | proof of the initialization the connection on Chain B: `UNITIALIZED -> TRYOPEN` | -| `proof_client` | [bytes](#bytes) | | proof of client state included in message | -| `proof_consensus` | [bytes](#bytes) | | proof of client consensus state | -| `consensus_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | +| `mode` | [lbm.tx.signing.v1beta1.SignMode](#lbm.tx.signing.v1beta1.SignMode) | | mode is the signing mode of the single signer | - + -### MsgConnectionOpenAckResponse -MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type. +### SignDoc +SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `body_bytes` | [bytes](#bytes) | | body_bytes is protobuf serialization of a TxBody that matches the representation in TxRaw. | +| `auth_info_bytes` | [bytes](#bytes) | | auth_info_bytes is a protobuf serialization of an AuthInfo that matches the representation in TxRaw. | +| `chain_id` | [string](#string) | | chain_id is the unique identifier of the chain this transaction targets. It prevents signed transactions from being used on another chain by an attacker | +| `account_number` | [uint64](#uint64) | | account_number is the account number of the account in state | - -### MsgConnectionOpenConfirm -MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to -acknowledge the change of connection state to OPEN on Chain A. + + + +### SignerInfo +SignerInfo describes the public key and signing mode of a single top-level +signer. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `connection_id` | [string](#string) | | | -| `proof_ack` | [bytes](#bytes) | | proof for the change of the connection state on Chain A: `INIT -> OPEN` | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | +| `public_key` | [google.protobuf.Any](#google.protobuf.Any) | | public_key is the public key of the signer. It is optional for accounts that already exist in state. If unset, the verifier can use the required \ signer address for this position and lookup the public key. | +| `mode_info` | [ModeInfo](#lbm.tx.v1beta1.ModeInfo) | | mode_info describes the signing mode of the signer and is a nested structure to support nested multisig pubkey's | +| `sequence` | [uint64](#uint64) | | sequence is the sequence of the account, which describes the number of committed transactions signed by a given address. It is used to prevent replay attacks. | - + -### MsgConnectionOpenConfirmResponse -MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm response type. +### Tx +Tx is the standard type used for broadcasting transactions. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `body` | [TxBody](#lbm.tx.v1beta1.TxBody) | | body is the processable content of the transaction | +| `auth_info` | [AuthInfo](#lbm.tx.v1beta1.AuthInfo) | | auth_info is the authorization related content of the transaction, specifically signers, signer modes and fee | +| `signatures` | [bytes](#bytes) | repeated | signatures is a list of signatures that matches the length and order of AuthInfo's signer_infos to allow connecting signature meta information like public key and signing mode by position. | - -### MsgConnectionOpenInit -MsgConnectionOpenInit defines the msg sent by an account on Chain A to -initialize a connection with Chain B. + + + +### TxBody +TxBody is the body of a transaction that all signers sign over. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | | -| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | | -| `version` | [Version](#ibc.core.connection.v1.Version) | | | -| `delay_period` | [uint64](#uint64) | | | -| `signer` | [string](#string) | | | +| `messages` | [google.protobuf.Any](#google.protobuf.Any) | repeated | messages is a list of messages to be executed. The required signers of those messages define the number and order of elements in AuthInfo's signer_infos and Tx's signatures. Each required signer address is added to the list only the first time it occurs. By convention, the first required signer (usually from the first message) is referred to as the primary signer and pays the fee for the whole transaction. | +| `memo` | [string](#string) | | memo is any arbitrary memo to be added to the transaction | +| `timeout_height` | [uint64](#uint64) | | timeout is the block height after which this transaction will not be processed by the chain | +| `extension_options` | [google.protobuf.Any](#google.protobuf.Any) | repeated | extension_options are arbitrary options that can be added by chains when the default options are not sufficient. If any of these are present and can't be handled, the transaction will be rejected | +| `non_critical_extension_options` | [google.protobuf.Any](#google.protobuf.Any) | repeated | extension_options are arbitrary options that can be added by chains when the default options are not sufficient. If any of these are present and can't be handled, they will be ignored | - + -### MsgConnectionOpenInitResponse -MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response type. +### TxRaw +TxRaw is a variant of Tx that pins the signer's exact binary representation +of body and auth_info. This is used for signing, broadcasting and +verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and +the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used +as the transaction ID. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `body_bytes` | [bytes](#bytes) | | body_bytes is a protobuf serialization of a TxBody that matches the representation in SignDoc. | +| `auth_info_bytes` | [bytes](#bytes) | | auth_info_bytes is a protobuf serialization of an AuthInfo that matches the representation in SignDoc. | +| `signatures` | [bytes](#bytes) | repeated | signatures is a list of signatures that matches the length and order of AuthInfo's signer_infos to allow connecting signature meta information like public key and signing mode by position. | - -### MsgConnectionOpenTry -MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a -connection on Chain B. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | | -| `previous_connection_id` | [string](#string) | | in the case of crossing hello's, when both chains call OpenInit, we need the connection identifier of the previous connection in state INIT | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `counterparty` | [Counterparty](#ibc.core.connection.v1.Counterparty) | | | -| `delay_period` | [uint64](#uint64) | | | -| `counterparty_versions` | [Version](#ibc.core.connection.v1.Version) | repeated | | -| `proof_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `proof_init` | [bytes](#bytes) | | proof of the initialization the connection on Chain A: `UNITIALIZED -> INIT` | -| `proof_client` | [bytes](#bytes) | | proof of client state included in message | -| `proof_consensus` | [bytes](#bytes) | | proof of client consensus state | -| `consensus_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `signer` | [string](#string) | | | + + + + +## lbm/tx/v1beta1/service.proto - -### MsgConnectionOpenTryResponse -MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type. + +### BroadcastTxRequest +BroadcastTxRequest is the request type for the Service.BroadcastTxRequest +RPC method. +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `tx_bytes` | [bytes](#bytes) | | tx_bytes is the raw transaction. | +| `mode` | [BroadcastMode](#lbm.tx.v1beta1.BroadcastMode) | | | - - - - -### Msg -Msg defines the ibc/connection Msg service. + -| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | -| ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `ConnectionOpenInit` | [MsgConnectionOpenInit](#ibc.core.connection.v1.MsgConnectionOpenInit) | [MsgConnectionOpenInitResponse](#ibc.core.connection.v1.MsgConnectionOpenInitResponse) | ConnectionOpenInit defines a rpc handler method for MsgConnectionOpenInit. | | -| `ConnectionOpenTry` | [MsgConnectionOpenTry](#ibc.core.connection.v1.MsgConnectionOpenTry) | [MsgConnectionOpenTryResponse](#ibc.core.connection.v1.MsgConnectionOpenTryResponse) | ConnectionOpenTry defines a rpc handler method for MsgConnectionOpenTry. | | -| `ConnectionOpenAck` | [MsgConnectionOpenAck](#ibc.core.connection.v1.MsgConnectionOpenAck) | [MsgConnectionOpenAckResponse](#ibc.core.connection.v1.MsgConnectionOpenAckResponse) | ConnectionOpenAck defines a rpc handler method for MsgConnectionOpenAck. | | -| `ConnectionOpenConfirm` | [MsgConnectionOpenConfirm](#ibc.core.connection.v1.MsgConnectionOpenConfirm) | [MsgConnectionOpenConfirmResponse](#ibc.core.connection.v1.MsgConnectionOpenConfirmResponse) | ConnectionOpenConfirm defines a rpc handler method for MsgConnectionOpenConfirm. | | +### BroadcastTxResponse +BroadcastTxResponse is the response type for the +Service.BroadcastTx method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `tx_response` | [lbm.base.abci.v1beta1.TxResponse](#lbm.base.abci.v1beta1.TxResponse) | | tx_response is the queried TxResponses. | - - -## ibc/core/types/v1/genesis.proto - + -### GenesisState -GenesisState defines the ibc module's genesis state. +### GetTxRequest +GetTxRequest is the request type for the Service.GetTx +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_genesis` | [ibc.core.client.v1.GenesisState](#ibc.core.client.v1.GenesisState) | | ICS002 - Clients genesis state | -| `connection_genesis` | [ibc.core.connection.v1.GenesisState](#ibc.core.connection.v1.GenesisState) | | ICS003 - Connections genesis state | -| `channel_genesis` | [ibc.core.channel.v1.GenesisState](#ibc.core.channel.v1.GenesisState) | | ICS004 - Channel genesis state | +| `hash` | [string](#string) | | hash is the tx hash to query, encoded as a hex string. | - - + - +### GetTxResponse +GetTxResponse is the response type for the Service.GetTx method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `tx` | [Tx](#lbm.tx.v1beta1.Tx) | | tx is the queried transaction. | +| `tx_response` | [lbm.base.abci.v1beta1.TxResponse](#lbm.base.abci.v1beta1.TxResponse) | | tx_response is the queried TxResponses. | - - -## ibc/lightclients/localhost/v1/localhost.proto - + -### ClientState -ClientState defines a loopback (localhost) client. It requires (read-only) -access to keys outside the client prefix. +### GetTxsEventRequest +GetTxsEventRequest is the request type for the Service.TxsByEvents +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `chain_id` | [string](#string) | | self chain ID | -| `height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | self latest block height | +| `events` | [string](#string) | repeated | events is the list of transaction event type. | +| `pagination` | [lbm.base.query.v1beta1.PageRequest](#lbm.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | - - + - +### GetTxsEventResponse +GetTxsEventResponse is the response type for the Service.TxsByEvents +RPC method. - +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `txs` | [Tx](#lbm.tx.v1beta1.Tx) | repeated | txs is the list of queried transactions. | +| `tx_responses` | [lbm.base.abci.v1beta1.TxResponse](#lbm.base.abci.v1beta1.TxResponse) | repeated | tx_responses is the list of queried TxResponses. | +| `pagination` | [lbm.base.query.v1beta1.PageResponse](#lbm.base.query.v1beta1.PageResponse) | | pagination defines an pagination for the response. | - - -## ibc/lightclients/solomachine/v1/solomachine.proto - + -### ChannelStateData -ChannelStateData returns the SignBytes data for channel state -verification. +### SimulateRequest +SimulateRequest is the request type for the Service.Simulate +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `channel` | [ibc.core.channel.v1.Channel](#ibc.core.channel.v1.Channel) | | | +| `tx` | [Tx](#lbm.tx.v1beta1.Tx) | | tx is the transaction to simulate. | - + -### ClientState -ClientState defines a solo machine client that tracks the current consensus -state and if the client is frozen. +### SimulateResponse +SimulateResponse is the response type for the +Service.SimulateRPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sequence` | [uint64](#uint64) | | latest sequence of the client state | -| `frozen_sequence` | [uint64](#uint64) | | frozen sequence of the solo machine | -| `consensus_state` | [ConsensusState](#ibc.lightclients.solomachine.v1.ConsensusState) | | | -| `allow_update_after_proposal` | [bool](#bool) | | when set to true, will allow governance to update a solo machine client. The client will be unfrozen if it is frozen. | - +| `gas_info` | [lbm.base.abci.v1beta1.GasInfo](#lbm.base.abci.v1beta1.GasInfo) | | gas_info is the information about gas used in the simulation. | +| `result` | [lbm.base.abci.v1beta1.Result](#lbm.base.abci.v1beta1.Result) | | result is the result of the simulation. | - + -### ClientStateData -ClientStateData returns the SignBytes data for client state verification. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `client_state` | [google.protobuf.Any](#google.protobuf.Any) | | | +### BroadcastMode +BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC method. +| Name | Number | Description | +| ---- | ------ | ----------- | +| BROADCAST_MODE_UNSPECIFIED | 0 | zero-value for mode ordering | +| BROADCAST_MODE_BLOCK | 1 | BROADCAST_MODE_BLOCK defines a tx broadcasting mode where the client waits for the tx to be committed in a block. | +| BROADCAST_MODE_SYNC | 2 | BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for a CheckTx execution response only. | +| BROADCAST_MODE_ASYNC | 3 | BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns immediately. | + + - + -### ConnectionStateData -ConnectionStateData returns the SignBytes data for connection state -verification. +### Service +Service defines a gRPC service for interacting with transactions. +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `Simulate` | [SimulateRequest](#lbm.tx.v1beta1.SimulateRequest) | [SimulateResponse](#lbm.tx.v1beta1.SimulateResponse) | Simulate simulates executing a transaction for estimating gas usage. | POST|/cosmos/tx/v1beta1/simulate| +| `GetTx` | [GetTxRequest](#lbm.tx.v1beta1.GetTxRequest) | [GetTxResponse](#lbm.tx.v1beta1.GetTxResponse) | GetTx fetches a tx by hash. | GET|/cosmos/tx/v1beta1/txs/{hash}| +| `BroadcastTx` | [BroadcastTxRequest](#lbm.tx.v1beta1.BroadcastTxRequest) | [BroadcastTxResponse](#lbm.tx.v1beta1.BroadcastTxResponse) | BroadcastTx broadcast transaction. | POST|/cosmos/tx/v1beta1/txs| +| `GetTxsEvent` | [GetTxsEventRequest](#lbm.tx.v1beta1.GetTxsEventRequest) | [GetTxsEventResponse](#lbm.tx.v1beta1.GetTxsEventResponse) | GetTxsEvent fetches txs by event. | GET|/cosmos/tx/v1beta1/txs| -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `connection` | [ibc.core.connection.v1.ConnectionEnd](#ibc.core.connection.v1.ConnectionEnd) | | | + + + +## lbm/upgrade/v1beta1/upgrade.proto - -### ConsensusState -ConsensusState defines a solo machine consensus state. The sequence of a consensus state -is contained in the "height" key used in storing the consensus state. + + +### CancelSoftwareUpgradeProposal +CancelSoftwareUpgradeProposal is a gov Content type for cancelling a software +upgrade. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `public_key` | [google.protobuf.Any](#google.protobuf.Any) | | public key of the solo machine | -| `diversifier` | [string](#string) | | diversifier allows the same public key to be re-used across different solo machine clients (potentially on different chains) without being considered misbehaviour. | -| `timestamp` | [uint64](#uint64) | | | +| `title` | [string](#string) | | | +| `description` | [string](#string) | | | - + -### ConsensusStateData -ConsensusStateData returns the SignBytes data for consensus state -verification. +### Plan +Plan specifies information about a planned upgrade and when it should occur. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | | +| `name` | [string](#string) | | Sets the name for the upgrade. This name will be used by the upgraded version of the software to apply any special "on-upgrade" commands during the first BeginBlock method after the upgrade is applied. It is also used to detect whether a software version can handle a given upgrade. If no upgrade handler with this name has been set in the software, it will be assumed that the software is out-of-date when the upgrade Time or Height is reached and the software will exit. | +| `time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | The time after which the upgrade must be performed. Leave set to its zero value to use a pre-defined Height instead. | +| `height` | [int64](#int64) | | The height at which the upgrade must be performed. Only used if Time is not set. | +| `info` | [string](#string) | | Any application specific upgrade info to be included on-chain such as a git commit that validators could automatically upgrade to | +| `upgraded_client_state` | [google.protobuf.Any](#google.protobuf.Any) | | IBC-enabled chains can opt-in to including the upgraded client state in its upgrade plan This will make the chain commit to the correct upgraded (self) client state before the upgrade occurs, so that connecting chains can verify that the new upgraded client is valid by verifying a proof on the previous version of the chain. This will allow IBC connections to persist smoothly across planned chain upgrades | - + -### Header -Header defines a solo machine consensus header +### SoftwareUpgradeProposal +SoftwareUpgradeProposal is a gov Content type for initiating a software +upgrade. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sequence` | [uint64](#uint64) | | sequence to update solo machine public key at | -| `timestamp` | [uint64](#uint64) | | | -| `signature` | [bytes](#bytes) | | | -| `new_public_key` | [google.protobuf.Any](#google.protobuf.Any) | | | -| `new_diversifier` | [string](#string) | | | +| `title` | [string](#string) | | | +| `description` | [string](#string) | | | +| `plan` | [Plan](#lbm.upgrade.v1beta1.Plan) | | | + - + -### HeaderData -HeaderData returns the SignBytes data for update verification. + + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `new_pub_key` | [google.protobuf.Any](#google.protobuf.Any) | | header public key | -| `new_diversifier` | [string](#string) | | header diversifier | + + +## lbm/upgrade/v1beta1/query.proto - + -### Misbehaviour -Misbehaviour defines misbehaviour for a solo machine which consists -of a sequence and two signatures over different messages at that sequence. +### QueryAppliedPlanRequest +QueryCurrentPlanRequest is the request type for the Query/AppliedPlan RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | | -| `sequence` | [uint64](#uint64) | | | -| `signature_one` | [SignatureAndData](#ibc.lightclients.solomachine.v1.SignatureAndData) | | | -| `signature_two` | [SignatureAndData](#ibc.lightclients.solomachine.v1.SignatureAndData) | | | +| `name` | [string](#string) | | name is the name of the applied plan to query for. | - + -### NextSequenceRecvData -NextSequenceRecvData returns the SignBytes data for verification of the next -sequence to be received. +### QueryAppliedPlanResponse +QueryAppliedPlanResponse is the response type for the Query/AppliedPlan RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `next_seq_recv` | [uint64](#uint64) | | | - - +| `height` | [int64](#int64) | | height is the block height at which the plan was applied. | - -### PacketAcknowledgementData -PacketAcknowledgementData returns the SignBytes data for acknowledgement -verification. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `acknowledgement` | [bytes](#bytes) | | | +### QueryCurrentPlanRequest +QueryCurrentPlanRequest is the request type for the Query/CurrentPlan RPC +method. - + -### PacketCommitmentData -PacketCommitmentData returns the SignBytes data for packet commitment -verification. +### QueryCurrentPlanResponse +QueryCurrentPlanResponse is the response type for the Query/CurrentPlan RPC +method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | -| `commitment` | [bytes](#bytes) | | | +| `plan` | [Plan](#lbm.upgrade.v1beta1.Plan) | | plan is the current upgrade plan. | - + -### PacketReceiptAbsenceData -PacketReceiptAbsenceData returns the SignBytes data for -packet receipt absence verification. +### QueryUpgradedConsensusStateRequest +QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `path` | [bytes](#bytes) | | | +| `last_height` | [int64](#int64) | | last height of the current chain must be sent in request as this is the height under which next consensus state is stored | - + -### SignBytes -SignBytes defines the signed bytes used for signature verification. +### QueryUpgradedConsensusStateResponse +QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState +RPC method. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `sequence` | [uint64](#uint64) | | | -| `timestamp` | [uint64](#uint64) | | | -| `diversifier` | [string](#string) | | | -| `data_type` | [DataType](#ibc.lightclients.solomachine.v1.DataType) | | type of the data used | -| `data` | [bytes](#bytes) | | marshaled data | +| `upgraded_consensus_state` | [google.protobuf.Any](#google.protobuf.Any) | | | + - + -### SignatureAndData -SignatureAndData contains a signature and the data signed over to create that -signature. + -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `signature` | [bytes](#bytes) | | | -| `data_type` | [DataType](#ibc.lightclients.solomachine.v1.DataType) | | | -| `data` | [bytes](#bytes) | | | -| `timestamp` | [uint64](#uint64) | | | + + +### Query +Query defines the gRPC upgrade querier service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `CurrentPlan` | [QueryCurrentPlanRequest](#lbm.upgrade.v1beta1.QueryCurrentPlanRequest) | [QueryCurrentPlanResponse](#lbm.upgrade.v1beta1.QueryCurrentPlanResponse) | CurrentPlan queries the current upgrade plan. | GET|/cosmos/upgrade/v1beta1/current_plan| +| `AppliedPlan` | [QueryAppliedPlanRequest](#lbm.upgrade.v1beta1.QueryAppliedPlanRequest) | [QueryAppliedPlanResponse](#lbm.upgrade.v1beta1.QueryAppliedPlanResponse) | AppliedPlan queries a previously applied upgrade plan by its name. | GET|/cosmos/upgrade/v1beta1/applied_plan/{name}| +| `UpgradedConsensusState` | [QueryUpgradedConsensusStateRequest](#lbm.upgrade.v1beta1.QueryUpgradedConsensusStateRequest) | [QueryUpgradedConsensusStateResponse](#lbm.upgrade.v1beta1.QueryUpgradedConsensusStateResponse) | UpgradedConsensusState queries the consensus state that will serve as a trusted kernel for the next version of this chain. It will only be stored at the last height of this chain. UpgradedConsensusState RPC not supported with legacy querier | GET|/cosmos/upgrade/v1beta1/upgraded_consensus_state/{last_height}| + + + +## lbm/vesting/v1beta1/tx.proto - -### TimestampedSignatureData -TimestampedSignatureData contains the signature data and the timestamp of the -signature. + + + +### MsgCreateVestingAccount +MsgCreateVestingAccount defines a message that enables creating a vesting +account. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `signature_data` | [bytes](#bytes) | | | -| `timestamp` | [uint64](#uint64) | | | +| `from_address` | [string](#string) | | | +| `to_address` | [string](#string) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `end_time` | [int64](#int64) | | | +| `delayed` | [bool](#bool) | | | - + + +### MsgCreateVestingAccountResponse +MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. - -### DataType -DataType defines the type of solo machine proof being created. This is done to preserve uniqueness of different -data sign byte encodings. -| Name | Number | Description | -| ---- | ------ | ----------- | -| DATA_TYPE_UNINITIALIZED_UNSPECIFIED | 0 | Default State | -| DATA_TYPE_CLIENT_STATE | 1 | Data type for client state verification | -| DATA_TYPE_CONSENSUS_STATE | 2 | Data type for consensus state verification | -| DATA_TYPE_CONNECTION_STATE | 3 | Data type for connection state verification | -| DATA_TYPE_CHANNEL_STATE | 4 | Data type for channel state verification | -| DATA_TYPE_PACKET_COMMITMENT | 5 | Data type for packet commitment verification | -| DATA_TYPE_PACKET_ACKNOWLEDGEMENT | 6 | Data type for packet acknowledgement verification | -| DATA_TYPE_PACKET_RECEIPT_ABSENCE | 7 | Data type for packet receipt absence verification | -| DATA_TYPE_NEXT_SEQUENCE_RECV | 8 | Data type for next sequence recv verification | -| DATA_TYPE_HEADER | 9 | Data type for header verification | + + + + + +### Msg +Msg defines the bank Msg service. + +| Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | +| ----------- | ------------ | ------------- | ------------| ------- | -------- | +| `CreateVestingAccount` | [MsgCreateVestingAccount](#lbm.vesting.v1beta1.MsgCreateVestingAccount) | [MsgCreateVestingAccountResponse](#lbm.vesting.v1beta1.MsgCreateVestingAccountResponse) | CreateVestingAccount defines a method that enables creating a vesting account. | | + - + -## ibc/lightclients/tendermint/v1/tendermint.proto +## lbm/vesting/v1beta1/vesting.proto - + -### ClientState -ClientState from Tendermint tracks the current validator set, latest height, -and a possible frozen height. +### BaseVestingAccount +BaseVestingAccount implements the VestingAccount interface. It contains all +the necessary fields needed for any vesting account implementation. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `chain_id` | [string](#string) | | | -| `trust_level` | [Fraction](#ibc.lightclients.tendermint.v1.Fraction) | | | -| `trusting_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | duration of the period since the LastestTimestamp during which the submitted headers are valid for upgrade | -| `unbonding_period` | [google.protobuf.Duration](#google.protobuf.Duration) | | duration of the staking unbonding period | -| `max_clock_drift` | [google.protobuf.Duration](#google.protobuf.Duration) | | defines how much new (untrusted) header's Time can drift into the future. | -| `frozen_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | Block height when the client was frozen due to a misbehaviour | -| `latest_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | Latest height the client was updated to | -| `proof_specs` | [ics23.ProofSpec](#ics23.ProofSpec) | repeated | Proof specifications used in verifying counterparty state | -| `upgrade_path` | [string](#string) | repeated | Path at which next upgraded client will be committed. Each element corresponds to the key for a single CommitmentProof in the chained proof. NOTE: ClientState must stored under `{upgradePath}/{upgradeHeight}/clientState` ConsensusState must be stored under `{upgradepath}/{upgradeHeight}/consensusState` For SDK chains using the default upgrade module, upgrade_path should be []string{"upgrade", "upgradedIBCState"}` | -| `allow_update_after_expiry` | [bool](#bool) | | This flag, when set to true, will allow governance to recover a client which has expired | -| `allow_update_after_misbehaviour` | [bool](#bool) | | This flag, when set to true, will allow governance to unfreeze a client whose chain has experienced a misbehaviour event | +| `base_account` | [lbm.auth.v1beta1.BaseAccount](#lbm.auth.v1beta1.BaseAccount) | | | +| `original_vesting` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `delegated_free` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `delegated_vesting` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | +| `end_time` | [int64](#int64) | | | - + -### ConsensusState -ConsensusState defines the consensus state from Tendermint. +### ContinuousVestingAccount +ContinuousVestingAccount implements the VestingAccount interface. It +continuously vests by unlocking coins linearly with respect to time. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `timestamp` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | timestamp that corresponds to the block height in which the ConsensusState was stored. | -| `root` | [ibc.core.commitment.v1.MerkleRoot](#ibc.core.commitment.v1.MerkleRoot) | | commitment root (i.e app hash) | -| `next_validators_hash` | [bytes](#bytes) | | | +| `base_vesting_account` | [BaseVestingAccount](#lbm.vesting.v1beta1.BaseVestingAccount) | | | +| `start_time` | [int64](#int64) | | | - + -### Fraction -Fraction defines the protobuf message type for tmmath.Fraction that only supports positive values. +### DelayedVestingAccount +DelayedVestingAccount implements the VestingAccount interface. It vests all +coins after a specific time, but non prior. In other words, it keeps them +locked until a specified time. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `numerator` | [uint64](#uint64) | | | -| `denominator` | [uint64](#uint64) | | | +| `base_vesting_account` | [BaseVestingAccount](#lbm.vesting.v1beta1.BaseVestingAccount) | | | - + -### Header -Header defines the Tendermint client consensus Header. -It encapsulates all the information necessary to update from a trusted -Tendermint ConsensusState. The inclusion of TrustedHeight and -TrustedValidators allows this update to process correctly, so long as the -ConsensusState for the TrustedHeight exists, this removes race conditions -among relayers The SignedHeader and ValidatorSet are the new untrusted update -fields for the client. The TrustedHeight is the height of a stored -ConsensusState on the client that will be used to verify the new untrusted -header. The Trusted ConsensusState must be within the unbonding period of -current time in order to correctly verify, and the TrustedValidators must -hash to TrustedConsensusState.NextValidatorsHash since that is the last -trusted validator set at the TrustedHeight. +### Period +Period defines a length of time and amount of coins that will vest. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `signed_header` | [ostracon.types.SignedHeader](#ostracon.types.SignedHeader) | | | -| `validator_set` | [ostracon.types.ValidatorSet](#ostracon.types.ValidatorSet) | | | -| `trusted_height` | [ibc.core.client.v1.Height](#ibc.core.client.v1.Height) | | | -| `trusted_validators` | [ostracon.types.ValidatorSet](#ostracon.types.ValidatorSet) | | | +| `length` | [int64](#int64) | | | +| `amount` | [lbm.base.v1beta1.Coin](#lbm.base.v1beta1.Coin) | repeated | | - + -### Misbehaviour -Misbehaviour is a wrapper over two conflicting Headers -that implements Misbehaviour interface expected by ICS-02 +### PeriodicVestingAccount +PeriodicVestingAccount implements the VestingAccount interface. It +periodically vests by unlocking coins during each specified period. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `client_id` | [string](#string) | | | -| `header_1` | [Header](#ibc.lightclients.tendermint.v1.Header) | | | -| `header_2` | [Header](#ibc.lightclients.tendermint.v1.Header) | | | +| `base_vesting_account` | [BaseVestingAccount](#lbm.vesting.v1beta1.BaseVestingAccount) | | | +| `start_time` | [int64](#int64) | | | +| `vesting_periods` | [Period](#lbm.vesting.v1beta1.Period) | repeated | | diff --git a/proto/ibc/applications/transfer/v1/query.proto b/proto/ibc/applications/transfer/v1/query.proto index ff18207770..2ae491bc19 100644 --- a/proto/ibc/applications/transfer/v1/query.proto +++ b/proto/ibc/applications/transfer/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; import "gogoproto/gogo.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "ibc/applications/transfer/v1/transfer.proto"; import "google/api/annotations.proto"; @@ -44,7 +44,7 @@ message QueryDenomTraceResponse { // method message QueryDenomTracesRequest { // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QueryConnectionsResponse is the response type for the Query/DenomTraces RPC @@ -53,7 +53,7 @@ message QueryDenomTracesResponse { // denom_traces returns all denominations trace information. repeated DenomTrace denom_traces = 1 [(gogoproto.castrepeated) = "Traces", (gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryParamsRequest is the request type for the Query/Params RPC method. diff --git a/proto/ibc/applications/transfer/v1/tx.proto b/proto/ibc/applications/transfer/v1/tx.proto index 60bf7265e7..f9df354297 100644 --- a/proto/ibc/applications/transfer/v1/tx.proto +++ b/proto/ibc/applications/transfer/v1/tx.proto @@ -4,7 +4,7 @@ package ibc.applications.transfer.v1; option go_package = "github.com/line/lbm-sdk/v2/x/ibc/applications/transfer/types"; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; import "ibc/core/client/v1/client.proto"; // Msg defines the ibc/transfer Msg service. @@ -25,7 +25,7 @@ message MsgTransfer { // the channel by which the packet will be sent string source_channel = 2 [(gogoproto.moretags) = "yaml:\"source_channel\""]; // the tokens to be transferred - cosmos.base.v1beta1.Coin token = 3 [(gogoproto.nullable) = false]; + lbm.base.v1beta1.Coin token = 3 [(gogoproto.nullable) = false]; // the sender address string sender = 4; // the recipient address on the destination chain diff --git a/proto/ibc/core/channel/v1/query.proto b/proto/ibc/core/channel/v1/query.proto index 5047c079d7..ffff300f0a 100644 --- a/proto/ibc/core/channel/v1/query.proto +++ b/proto/ibc/core/channel/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; import "ibc/core/client/v1/client.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "ibc/core/channel/v1/channel.proto"; import "google/api/annotations.proto"; import "google/protobuf/any.proto"; @@ -116,7 +116,7 @@ message QueryChannelResponse { // QueryChannelsRequest is the request type for the Query/Channels RPC method message QueryChannelsRequest { // pagination request - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QueryChannelsResponse is the response type for the Query/Channels RPC method. @@ -124,7 +124,7 @@ message QueryChannelsResponse { // list of stored channels of the chain. repeated ibc.core.channel.v1.IdentifiedChannel channels = 1; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; // query block height ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; } @@ -135,7 +135,7 @@ message QueryConnectionChannelsRequest { // connection unique identifier string connection = 1; // pagination request - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryConnectionChannelsResponse is the Response type for the @@ -144,7 +144,7 @@ message QueryConnectionChannelsResponse { // list of channels associated with a connection. repeated ibc.core.channel.v1.IdentifiedChannel channels = 1; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; // query block height ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; } @@ -226,7 +226,7 @@ message QueryPacketCommitmentsRequest { // channel unique identifier string channel_id = 2; // pagination request - cosmos.base.query.v1beta1.PageRequest pagination = 3; + lbm.base.query.v1beta1.PageRequest pagination = 3; } // QueryPacketCommitmentsResponse is the request type for the @@ -234,7 +234,7 @@ message QueryPacketCommitmentsRequest { message QueryPacketCommitmentsResponse { repeated ibc.core.channel.v1.PacketState commitments = 1; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; // query block height ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; } @@ -293,7 +293,7 @@ message QueryPacketAcknowledgementsRequest { // channel unique identifier string channel_id = 2; // pagination request - cosmos.base.query.v1beta1.PageRequest pagination = 3; + lbm.base.query.v1beta1.PageRequest pagination = 3; } // QueryPacketAcknowledgemetsResponse is the request type for the @@ -301,7 +301,7 @@ message QueryPacketAcknowledgementsRequest { message QueryPacketAcknowledgementsResponse { repeated ibc.core.channel.v1.PacketState acknowledgements = 1; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; // query block height ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; } diff --git a/proto/ibc/core/client/v1/query.proto b/proto/ibc/core/client/v1/query.proto index 2c24d3306f..27f883f16c 100644 --- a/proto/ibc/core/client/v1/query.proto +++ b/proto/ibc/core/client/v1/query.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package ibc.core.client.v1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "ibc/core/client/v1/client.proto"; import "google/protobuf/any.proto"; import "google/api/annotations.proto"; @@ -63,7 +63,7 @@ message QueryClientStateResponse { // method message QueryClientStatesRequest { // pagination request - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QueryClientStatesResponse is the response type for the Query/ClientStates RPC @@ -73,7 +73,7 @@ message QueryClientStatesResponse { repeated IdentifiedClientState client_states = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "IdentifiedClientStates"]; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryConsensusStateRequest is the request type for the Query/ConsensusState @@ -108,7 +108,7 @@ message QueryConsensusStatesRequest { // client identifier string client_id = 1; // pagination request - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryConsensusStatesResponse is the response type for the @@ -117,7 +117,7 @@ message QueryConsensusStatesResponse { // consensus states associated with the identifier repeated ConsensusStateWithHeight consensus_states = 1 [(gogoproto.nullable) = false]; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryClientParamsRequest is the request type for the Query/ClientParams RPC method. diff --git a/proto/ibc/core/connection/v1/query.proto b/proto/ibc/core/connection/v1/query.proto index 564bcc6b0a..7f5e7718de 100644 --- a/proto/ibc/core/connection/v1/query.proto +++ b/proto/ibc/core/connection/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.connection.v1; import "gogoproto/gogo.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "ibc/core/client/v1/client.proto"; import "ibc/core/connection/v1/connection.proto"; import "google/api/annotations.proto"; @@ -64,7 +64,7 @@ message QueryConnectionResponse { // QueryConnectionsRequest is the request type for the Query/Connections RPC // method message QueryConnectionsRequest { - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QueryConnectionsResponse is the response type for the Query/Connections RPC @@ -73,7 +73,7 @@ message QueryConnectionsResponse { // list of stored connections of the chain. repeated ibc.core.connection.v1.IdentifiedConnection connections = 1; // pagination response - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; // query block height ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/auth/v1beta1/auth.proto b/proto/lbm/auth/v1beta1/auth.proto similarity index 98% rename from proto/cosmos/auth/v1beta1/auth.proto rename to proto/lbm/auth/v1beta1/auth.proto index c611f2995e..5fb7ca8757 100644 --- a/proto/cosmos/auth/v1beta1/auth.proto +++ b/proto/lbm/auth/v1beta1/auth.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.auth.v1beta1; +package lbm.auth.v1beta1; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/auth/v1beta1/genesis.proto b/proto/lbm/auth/v1beta1/genesis.proto similarity index 86% rename from proto/cosmos/auth/v1beta1/genesis.proto rename to proto/lbm/auth/v1beta1/genesis.proto index a6cf60ae20..93af6e3146 100644 --- a/proto/cosmos/auth/v1beta1/genesis.proto +++ b/proto/lbm/auth/v1beta1/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.auth.v1beta1; +package lbm.auth.v1beta1; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; -import "cosmos/auth/v1beta1/auth.proto"; +import "lbm/auth/v1beta1/auth.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/auth/types"; diff --git a/proto/cosmos/auth/v1beta1/query.proto b/proto/lbm/auth/v1beta1/query.proto similarity index 95% rename from proto/cosmos/auth/v1beta1/query.proto rename to proto/lbm/auth/v1beta1/query.proto index ebeb79565f..67e1e0e6b8 100644 --- a/proto/cosmos/auth/v1beta1/query.proto +++ b/proto/lbm/auth/v1beta1/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.auth.v1beta1; +package lbm.auth.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "google/api/annotations.proto"; -import "cosmos/auth/v1beta1/auth.proto"; +import "lbm/auth/v1beta1/auth.proto"; import "cosmos_proto/cosmos.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/auth/types"; diff --git a/proto/cosmos/bank/v1beta1/bank.proto b/proto/lbm/bank/v1beta1/bank.proto similarity index 93% rename from proto/cosmos/bank/v1beta1/bank.proto rename to proto/lbm/bank/v1beta1/bank.proto index 58838116b6..8c3dc4e037 100644 --- a/proto/cosmos/bank/v1beta1/bank.proto +++ b/proto/lbm/bank/v1beta1/bank.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.bank.v1beta1; +package lbm.bank.v1beta1; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/bank/types"; @@ -29,7 +29,7 @@ message Input { option (gogoproto.goproto_getters) = false; string address = 1; - repeated cosmos.base.v1beta1.Coin coins = 2 + repeated lbm.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } @@ -39,7 +39,7 @@ message Output { option (gogoproto.goproto_getters) = false; string address = 1; - repeated cosmos.base.v1beta1.Coin coins = 2 + repeated lbm.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } @@ -52,7 +52,7 @@ message Supply { option (cosmos_proto.implements_interface) = "*github.com/line/lbm-sdk/v2/x/bank/exported.SupplyI"; - repeated cosmos.base.v1beta1.Coin total = 1 + repeated lbm.base.v1beta1.Coin total = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } diff --git a/proto/cosmos/bank/v1beta1/genesis.proto b/proto/lbm/bank/v1beta1/genesis.proto similarity index 85% rename from proto/cosmos/bank/v1beta1/genesis.proto rename to proto/lbm/bank/v1beta1/genesis.proto index f6b5da8b6b..fe23f936ce 100644 --- a/proto/cosmos/bank/v1beta1/genesis.proto +++ b/proto/lbm/bank/v1beta1/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.bank.v1beta1; +package lbm.bank.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/bank/v1beta1/bank.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/bank/v1beta1/bank.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/bank/types"; @@ -16,7 +16,7 @@ message GenesisState { repeated Balance balances = 2 [(gogoproto.nullable) = false]; // supply represents the total supply. - repeated cosmos.base.v1beta1.Coin supply = 3 + repeated lbm.base.v1beta1.Coin supply = 3 [(gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.nullable) = false]; // denom_metadata defines the metadata of the differents coins. @@ -33,6 +33,6 @@ message Balance { string address = 1; // coins defines the different coins this balance holds. - repeated cosmos.base.v1beta1.Coin coins = 2 + repeated lbm.base.v1beta1.Coin coins = 2 [(gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/bank/v1beta1/query.proto b/proto/lbm/bank/v1beta1/query.proto similarity index 89% rename from proto/cosmos/bank/v1beta1/query.proto rename to proto/lbm/bank/v1beta1/query.proto index e4641ca924..aaba2f9017 100644 --- a/proto/cosmos/bank/v1beta1/query.proto +++ b/proto/lbm/bank/v1beta1/query.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmos.bank.v1beta1; +package lbm.bank.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/bank/v1beta1/bank.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/bank/v1beta1/bank.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/bank/types"; @@ -62,7 +62,7 @@ message QueryBalanceRequest { // QueryBalanceResponse is the response type for the Query/Balance RPC method. message QueryBalanceResponse { // balance is the balance of the coin. - cosmos.base.v1beta1.Coin balance = 1; + lbm.base.v1beta1.Coin balance = 1; } // QueryBalanceRequest is the request type for the Query/AllBalances RPC method. @@ -74,18 +74,18 @@ message QueryAllBalancesRequest { string address = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryAllBalancesResponse is the response type for the Query/AllBalances RPC // method. message QueryAllBalancesResponse { // balances is the balances of all the coins. - repeated cosmos.base.v1beta1.Coin balances = 1 + repeated lbm.base.v1beta1.Coin balances = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC @@ -96,7 +96,7 @@ message QueryTotalSupplyRequest {} // method message QueryTotalSupplyResponse { // supply is the supply of the coins - repeated cosmos.base.v1beta1.Coin supply = 1 + repeated lbm.base.v1beta1.Coin supply = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } @@ -109,7 +109,7 @@ message QuerySupplyOfRequest { // QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. message QuerySupplyOfResponse { // amount is the supply of the coin. - cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + lbm.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; } // QueryParamsRequest defines the request type for querying x/bank parameters. @@ -123,7 +123,7 @@ message QueryParamsResponse { // QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method. message QueryDenomsMetadataRequest { // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC @@ -133,7 +133,7 @@ message QueryDenomsMetadataResponse { repeated Metadata metadatas = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method. diff --git a/proto/cosmos/bank/v1beta1/tx.proto b/proto/lbm/bank/v1beta1/tx.proto similarity index 89% rename from proto/cosmos/bank/v1beta1/tx.proto rename to proto/lbm/bank/v1beta1/tx.proto index 0f4bf4c594..5e0d05665d 100644 --- a/proto/cosmos/bank/v1beta1/tx.proto +++ b/proto/lbm/bank/v1beta1/tx.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.bank.v1beta1; +package lbm.bank.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/bank/v1beta1/bank.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/bank/v1beta1/bank.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/bank/types"; @@ -23,7 +23,7 @@ message MsgSend { string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; - repeated cosmos.base.v1beta1.Coin amount = 3 + repeated lbm.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } diff --git a/proto/cosmos/base/abci/v1beta1/abci.proto b/proto/lbm/base/abci/v1beta1/abci.proto similarity index 99% rename from proto/cosmos/base/abci/v1beta1/abci.proto rename to proto/lbm/base/abci/v1beta1/abci.proto index b3b44b7bf4..7a20676a5f 100644 --- a/proto/cosmos/base/abci/v1beta1/abci.proto +++ b/proto/lbm/base/abci/v1beta1/abci.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.abci.v1beta1; +package lbm.base.abci.v1beta1; import "gogoproto/gogo.proto"; import "ostracon/abci/types.proto"; diff --git a/proto/cosmos/base/kv/v1beta1/kv.proto b/proto/lbm/base/kv/v1beta1/kv.proto similarity index 91% rename from proto/cosmos/base/kv/v1beta1/kv.proto rename to proto/lbm/base/kv/v1beta1/kv.proto index e7f38ce704..6f12298273 100644 --- a/proto/cosmos/base/kv/v1beta1/kv.proto +++ b/proto/lbm/base/kv/v1beta1/kv.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.kv.v1beta1; +package lbm.base.kv.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/base/ostracon/v1beta1/query.proto b/proto/lbm/base/ostracon/v1beta1/query.proto similarity index 93% rename from proto/cosmos/base/ostracon/v1beta1/query.proto rename to proto/lbm/base/ostracon/v1beta1/query.proto index 1f3a9b6f7c..7cc84c76f4 100644 --- a/proto/cosmos/base/ostracon/v1beta1/query.proto +++ b/proto/lbm/base/ostracon/v1beta1/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.ostracon.v1beta1; +package lbm.base.ostracon.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; @@ -7,7 +7,7 @@ import "google/api/annotations.proto"; import "ostracon/p2p/types.proto"; import "ostracon/types/block.proto"; import "ostracon/types/types.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; option go_package = "github.com/line/lbm-sdk/v2/client/grpc/tmservice"; @@ -44,7 +44,7 @@ service Service { message GetValidatorSetByHeightRequest { int64 height = 1; // pagination defines an pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. @@ -52,13 +52,13 @@ message GetValidatorSetByHeightResponse { int64 block_height = 1; repeated Validator validators = 2; // pagination defines an pagination for the response. - cosmos.base.query.v1beta1.PageResponse pagination = 3; + lbm.base.query.v1beta1.PageResponse pagination = 3; } // GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method. message GetLatestValidatorSetRequest { // pagination defines an pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. @@ -66,7 +66,7 @@ message GetLatestValidatorSetResponse { int64 block_height = 1; repeated Validator validators = 2; // pagination defines an pagination for the response. - cosmos.base.query.v1beta1.PageResponse pagination = 3; + lbm.base.query.v1beta1.PageResponse pagination = 3; } // Validator is the type for the validator-set. diff --git a/proto/cosmos/base/query/v1beta1/pagination.proto b/proto/lbm/base/query/v1beta1/pagination.proto similarity index 97% rename from proto/cosmos/base/query/v1beta1/pagination.proto rename to proto/lbm/base/query/v1beta1/pagination.proto index 04aeebbf91..a7d328913e 100644 --- a/proto/cosmos/base/query/v1beta1/pagination.proto +++ b/proto/lbm/base/query/v1beta1/pagination.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.query.v1beta1; +package lbm.base.query.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/types/query"; diff --git a/proto/cosmos/base/reflection/v1beta1/reflection.proto b/proto/lbm/base/reflection/v1beta1/reflection.proto similarity index 87% rename from proto/cosmos/base/reflection/v1beta1/reflection.proto rename to proto/lbm/base/reflection/v1beta1/reflection.proto index 5013ce5b22..1c9757e78c 100644 --- a/proto/cosmos/base/reflection/v1beta1/reflection.proto +++ b/proto/lbm/base/reflection/v1beta1/reflection.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.reflection.v1beta1; +package lbm.base.reflection.v1beta1; import "google/api/annotations.proto"; @@ -10,13 +10,13 @@ service ReflectionService { // ListAllInterfaces lists all the interfaces registered in the interface // registry. rpc ListAllInterfaces(ListAllInterfacesRequest) returns (ListAllInterfacesResponse) { - option (google.api.http).get = "/cosmos/base/reflection/v1beta1/interfaces"; + option (google.api.http).get = "/lbm/base/reflection/v1beta1/interfaces"; }; // ListImplementations list all the concrete types that implement a given // interface. rpc ListImplementations(ListImplementationsRequest) returns (ListImplementationsResponse) { - option (google.api.http).get = "/cosmos/base/reflection/v1beta1/interfaces/" + option (google.api.http).get = "/lbm/base/reflection/v1beta1/interfaces/" "{interface_name}/implementations"; }; } diff --git a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto b/proto/lbm/base/snapshots/v1beta1/snapshot.proto similarity index 92% rename from proto/cosmos/base/snapshots/v1beta1/snapshot.proto rename to proto/lbm/base/snapshots/v1beta1/snapshot.proto index 1c57a05928..f3d4ad7522 100644 --- a/proto/cosmos/base/snapshots/v1beta1/snapshot.proto +++ b/proto/lbm/base/snapshots/v1beta1/snapshot.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.snapshots.v1beta1; +package lbm.base.snapshots.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/base/store/v1beta1/commit_info.proto b/proto/lbm/base/store/v1beta1/commit_info.proto similarity index 95% rename from proto/cosmos/base/store/v1beta1/commit_info.proto rename to proto/lbm/base/store/v1beta1/commit_info.proto index 7bdf7da00c..ed64c9ae13 100644 --- a/proto/cosmos/base/store/v1beta1/commit_info.proto +++ b/proto/lbm/base/store/v1beta1/commit_info.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.store.v1beta1; +package lbm.base.store.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/base/store/v1beta1/snapshot.proto b/proto/lbm/base/store/v1beta1/snapshot.proto similarity index 94% rename from proto/cosmos/base/store/v1beta1/snapshot.proto rename to proto/lbm/base/store/v1beta1/snapshot.proto index e73df39df7..0e3af30d91 100644 --- a/proto/cosmos/base/store/v1beta1/snapshot.proto +++ b/proto/lbm/base/store/v1beta1/snapshot.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.store.v1beta1; +package lbm.base.store.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/lbm/base/v1beta1/coin.proto similarity index 97% rename from proto/cosmos/base/v1beta1/coin.proto rename to proto/lbm/base/v1beta1/coin.proto index 6c8c9ef2a9..429efeb8d9 100644 --- a/proto/cosmos/base/v1beta1/coin.proto +++ b/proto/lbm/base/v1beta1/coin.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.base.v1beta1; +package lbm.base.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/capability/v1beta1/capability.proto b/proto/lbm/capability/v1beta1/capability.proto similarity index 96% rename from proto/cosmos/capability/v1beta1/capability.proto rename to proto/lbm/capability/v1beta1/capability.proto index 1c4e2ef7c0..0fd6fc1ea9 100644 --- a/proto/cosmos/capability/v1beta1/capability.proto +++ b/proto/lbm/capability/v1beta1/capability.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.capability.v1beta1; +package lbm.capability.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/capability/types"; diff --git a/proto/cosmos/capability/v1beta1/genesis.proto b/proto/lbm/capability/v1beta1/genesis.proto similarity index 90% rename from proto/cosmos/capability/v1beta1/genesis.proto rename to proto/lbm/capability/v1beta1/genesis.proto index e67bfa95fa..076aced3ce 100644 --- a/proto/cosmos/capability/v1beta1/genesis.proto +++ b/proto/lbm/capability/v1beta1/genesis.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.capability.v1beta1; +package lbm.capability.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/capability/v1beta1/capability.proto"; +import "lbm/capability/v1beta1/capability.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/capability/types"; diff --git a/proto/cosmos/crisis/v1beta1/genesis.proto b/proto/lbm/crisis/v1beta1/genesis.proto similarity index 76% rename from proto/cosmos/crisis/v1beta1/genesis.proto rename to proto/lbm/crisis/v1beta1/genesis.proto index f7212f0f35..74dc5e0950 100644 --- a/proto/cosmos/crisis/v1beta1/genesis.proto +++ b/proto/lbm/crisis/v1beta1/genesis.proto @@ -1,15 +1,15 @@ syntax = "proto3"; -package cosmos.crisis.v1beta1; +package lbm.crisis.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/crisis/types"; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; // GenesisState defines the crisis module's genesis state. message GenesisState { // constant_fee is the fee used to verify the invariant in the crisis // module. - cosmos.base.v1beta1.Coin constant_fee = 3 + lbm.base.v1beta1.Coin constant_fee = 3 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"constant_fee\""]; } diff --git a/proto/cosmos/crisis/v1beta1/tx.proto b/proto/lbm/crisis/v1beta1/tx.proto similarity index 96% rename from proto/cosmos/crisis/v1beta1/tx.proto rename to proto/lbm/crisis/v1beta1/tx.proto index 48286810bb..348664e370 100644 --- a/proto/cosmos/crisis/v1beta1/tx.proto +++ b/proto/lbm/crisis/v1beta1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.crisis.v1beta1; +package lbm.crisis.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/crisis/types"; diff --git a/proto/cosmos/crypto/ed25519/keys.proto b/proto/lbm/crypto/ed25519/keys.proto similarity index 95% rename from proto/cosmos/crypto/ed25519/keys.proto rename to proto/lbm/crypto/ed25519/keys.proto index e6dd822d4b..b1971a3d52 100644 --- a/proto/cosmos/crypto/ed25519/keys.proto +++ b/proto/lbm/crypto/ed25519/keys.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.crypto.ed25519; +package lbm.crypto.ed25519; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/crypto/multisig/keys.proto b/proto/lbm/crypto/multisig/keys.proto similarity index 94% rename from proto/cosmos/crypto/multisig/keys.proto rename to proto/lbm/crypto/multisig/keys.proto index 5ac18f8b60..ab1cbe380e 100644 --- a/proto/cosmos/crypto/multisig/keys.proto +++ b/proto/lbm/crypto/multisig/keys.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.crypto.multisig; +package lbm.crypto.multisig; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/proto/cosmos/crypto/multisig/v1beta1/multisig.proto b/proto/lbm/crypto/multisig/v1beta1/multisig.proto similarity index 86% rename from proto/cosmos/crypto/multisig/v1beta1/multisig.proto rename to proto/lbm/crypto/multisig/v1beta1/multisig.proto index 702d656c60..238a150e68 100644 --- a/proto/cosmos/crypto/multisig/v1beta1/multisig.proto +++ b/proto/lbm/crypto/multisig/v1beta1/multisig.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package cosmos.crypto.multisig.v1beta1; +package lbm.crypto.multisig.v1beta1; import "gogoproto/gogo.proto"; option go_package = "github.com/line/lbm-sdk/v2/crypto/types"; // MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey. -// See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers +// See lbm.tx.v1betata1.ModeInfo.Multi for how to specify which signers // signed and with which modes. message MultiSignature { option (gogoproto.goproto_unrecognized) = true; diff --git a/proto/cosmos/crypto/secp256k1/keys.proto b/proto/lbm/crypto/secp256k1/keys.proto similarity index 94% rename from proto/cosmos/crypto/secp256k1/keys.proto rename to proto/lbm/crypto/secp256k1/keys.proto index 1f2e9a090f..54cfd95681 100644 --- a/proto/cosmos/crypto/secp256k1/keys.proto +++ b/proto/lbm/crypto/secp256k1/keys.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.crypto.secp256k1; +package lbm.crypto.secp256k1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/distribution/v1beta1/distribution.proto b/proto/lbm/distribution/v1beta1/distribution.proto similarity index 93% rename from proto/cosmos/distribution/v1beta1/distribution.proto rename to proto/lbm/distribution/v1beta1/distribution.proto index 8ae0345152..25bdcced4a 100644 --- a/proto/cosmos/distribution/v1beta1/distribution.proto +++ b/proto/lbm/distribution/v1beta1/distribution.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmos.distribution.v1beta1; +package lbm.distribution.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/distribution/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; // Params defines the set of params for the distribution module. message Params { @@ -41,7 +41,7 @@ message Params { // read that record) // + one per validator for the zeroeth period, set on initialization message ValidatorHistoricalRewards { - repeated cosmos.base.v1beta1.DecCoin cumulative_reward_ratio = 1 [ + repeated lbm.base.v1beta1.DecCoin cumulative_reward_ratio = 1 [ (gogoproto.moretags) = "yaml:\"cumulative_reward_ratio\"", (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false @@ -53,7 +53,7 @@ message ValidatorHistoricalRewards { // period for a validator kept as a running counter and incremented // each block as long as the validator's tokens remain constant. message ValidatorCurrentRewards { - repeated cosmos.base.v1beta1.DecCoin rewards = 1 + repeated lbm.base.v1beta1.DecCoin rewards = 1 [(gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false]; uint64 period = 2; } @@ -61,14 +61,14 @@ message ValidatorCurrentRewards { // ValidatorAccumulatedCommission represents accumulated commission // for a validator kept as a running counter, can be withdrawn at any time. message ValidatorAccumulatedCommission { - repeated cosmos.base.v1beta1.DecCoin commission = 1 + repeated lbm.base.v1beta1.DecCoin commission = 1 [(gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false]; } // ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards // for a validator inexpensive to track, allows simple sanity checks. message ValidatorOutstandingRewards { - repeated cosmos.base.v1beta1.DecCoin rewards = 1 [ + repeated lbm.base.v1beta1.DecCoin rewards = 1 [ (gogoproto.moretags) = "yaml:\"rewards\"", (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false @@ -93,7 +93,7 @@ message ValidatorSlashEvents { // FeePool is the global fee pool for distribution. message FeePool { - repeated cosmos.base.v1beta1.DecCoin community_pool = 1 [ + repeated lbm.base.v1beta1.DecCoin community_pool = 1 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.moretags) = "yaml:\"community_pool\"" @@ -111,7 +111,7 @@ message CommunityPoolSpendProposal { string title = 1; string description = 2; string recipient = 3; - repeated cosmos.base.v1beta1.Coin amount = 4 + repeated lbm.base.v1beta1.Coin amount = 4 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } @@ -139,7 +139,7 @@ message DelegationDelegatorReward { string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; - repeated cosmos.base.v1beta1.DecCoin reward = 2 + repeated lbm.base.v1beta1.DecCoin reward = 2 [(gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/distribution/v1beta1/genesis.proto b/proto/lbm/distribution/v1beta1/genesis.proto similarity index 97% rename from proto/cosmos/distribution/v1beta1/genesis.proto rename to proto/lbm/distribution/v1beta1/genesis.proto index 3aa9bfecde..19ceb5cd6e 100644 --- a/proto/cosmos/distribution/v1beta1/genesis.proto +++ b/proto/lbm/distribution/v1beta1/genesis.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package cosmos.distribution.v1beta1; +package lbm.distribution.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/distribution/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/distribution/v1beta1/distribution.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/distribution/v1beta1/distribution.proto"; // DelegatorWithdrawInfo is the address for where distributions rewards are // withdrawn to by default this struct is only used at genesis to feed in @@ -31,7 +31,7 @@ message ValidatorOutstandingRewardsRecord { string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; // outstanding_rewards represents the oustanding rewards of a validator. - repeated cosmos.base.v1beta1.DecCoin outstanding_rewards = 2 [ + repeated lbm.base.v1beta1.DecCoin outstanding_rewards = 2 [ (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"outstanding_rewards\"" diff --git a/proto/cosmos/distribution/v1beta1/query.proto b/proto/lbm/distribution/v1beta1/query.proto similarity index 95% rename from proto/cosmos/distribution/v1beta1/query.proto rename to proto/lbm/distribution/v1beta1/query.proto index 21c3bc78aa..b9ffa6273e 100644 --- a/proto/cosmos/distribution/v1beta1/query.proto +++ b/proto/lbm/distribution/v1beta1/query.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmos.distribution.v1beta1; +package lbm.distribution.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/distribution/v1beta1/distribution.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/distribution/v1beta1/distribution.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/distribution/types"; @@ -113,7 +113,7 @@ message QueryValidatorSlashesRequest { // starting_height defines the optional ending height to query the slashes. uint64 ending_height = 3; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 4; + lbm.base.query.v1beta1.PageRequest pagination = 4; } // QueryValidatorSlashesResponse is the response type for the @@ -123,7 +123,7 @@ message QueryValidatorSlashesResponse { repeated ValidatorSlashEvent slashes = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegationRewardsRequest is the request type for the @@ -142,7 +142,7 @@ message QueryDelegationRewardsRequest { // Query/DelegationRewards RPC method. message QueryDelegationRewardsResponse { // rewards defines the rewards accrued by a delegation. - repeated cosmos.base.v1beta1.DecCoin rewards = 1 + repeated lbm.base.v1beta1.DecCoin rewards = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins"]; } @@ -161,7 +161,7 @@ message QueryDelegationTotalRewardsResponse { // rewards defines all the rewards accrued by a delegator. repeated DelegationDelegatorReward rewards = 1 [(gogoproto.nullable) = false]; // total defines the sum of all the rewards. - repeated cosmos.base.v1beta1.DecCoin total = 2 + repeated lbm.base.v1beta1.DecCoin total = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins"]; } @@ -213,6 +213,6 @@ message QueryCommunityPoolRequest {} // RPC method. message QueryCommunityPoolResponse { // pool defines community pool's coins. - repeated cosmos.base.v1beta1.DecCoin pool = 1 + repeated lbm.base.v1beta1.DecCoin pool = 1 [(gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.DecCoins", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/distribution/v1beta1/tx.proto b/proto/lbm/distribution/v1beta1/tx.proto similarity index 96% rename from proto/cosmos/distribution/v1beta1/tx.proto rename to proto/lbm/distribution/v1beta1/tx.proto index f7d4455f85..0b759803e6 100644 --- a/proto/cosmos/distribution/v1beta1/tx.proto +++ b/proto/lbm/distribution/v1beta1/tx.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmos.distribution.v1beta1; +package lbm.distribution.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/distribution/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; // Msg defines the distribution Msg service. service Msg { @@ -70,7 +70,7 @@ message MsgFundCommunityPool { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - repeated cosmos.base.v1beta1.Coin amount = 1 + repeated lbm.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; string depositor = 2; } diff --git a/proto/cosmos/evidence/v1beta1/evidence.proto b/proto/lbm/evidence/v1beta1/evidence.proto similarity index 96% rename from proto/cosmos/evidence/v1beta1/evidence.proto rename to proto/lbm/evidence/v1beta1/evidence.proto index 73e21212f8..cebf2f66fc 100644 --- a/proto/cosmos/evidence/v1beta1/evidence.proto +++ b/proto/lbm/evidence/v1beta1/evidence.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.evidence.v1beta1; +package lbm.evidence.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/evidence/types"; option (gogoproto.equal_all) = true; diff --git a/proto/cosmos/evidence/v1beta1/genesis.proto b/proto/lbm/evidence/v1beta1/genesis.proto similarity index 90% rename from proto/cosmos/evidence/v1beta1/genesis.proto rename to proto/lbm/evidence/v1beta1/genesis.proto index 3dad1ac620..b2df372867 100644 --- a/proto/cosmos/evidence/v1beta1/genesis.proto +++ b/proto/lbm/evidence/v1beta1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.evidence.v1beta1; +package lbm.evidence.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/evidence/types"; diff --git a/proto/cosmos/evidence/v1beta1/query.proto b/proto/lbm/evidence/v1beta1/query.proto similarity index 88% rename from proto/cosmos/evidence/v1beta1/query.proto rename to proto/lbm/evidence/v1beta1/query.proto index 10c732d599..54ad8b4f48 100644 --- a/proto/cosmos/evidence/v1beta1/query.proto +++ b/proto/lbm/evidence/v1beta1/query.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.evidence.v1beta1; +package lbm.evidence.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "google/api/annotations.proto"; @@ -37,7 +37,7 @@ message QueryEvidenceResponse { // method. message QueryAllEvidenceRequest { // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QueryAllEvidenceResponse is the response type for the Query/AllEvidence RPC @@ -47,5 +47,5 @@ message QueryAllEvidenceResponse { repeated google.protobuf.Any evidence = 1; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/cosmos/evidence/v1beta1/tx.proto b/proto/lbm/evidence/v1beta1/tx.proto similarity index 96% rename from proto/cosmos/evidence/v1beta1/tx.proto rename to proto/lbm/evidence/v1beta1/tx.proto index ef03f82e2f..f26c835cd0 100644 --- a/proto/cosmos/evidence/v1beta1/tx.proto +++ b/proto/lbm/evidence/v1beta1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.evidence.v1beta1; +package lbm.evidence.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/evidence/types"; option (gogoproto.equal_all) = true; diff --git a/proto/cosmos/genutil/v1beta1/genesis.proto b/proto/lbm/genutil/v1beta1/genesis.proto similarity index 92% rename from proto/cosmos/genutil/v1beta1/genesis.proto rename to proto/lbm/genutil/v1beta1/genesis.proto index eec8c94790..0d845fd923 100644 --- a/proto/cosmos/genutil/v1beta1/genesis.proto +++ b/proto/lbm/genutil/v1beta1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.genutil.v1beta1; +package lbm.genutil.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/gov/v1beta1/genesis.proto b/proto/lbm/gov/v1beta1/genesis.proto similarity index 95% rename from proto/cosmos/gov/v1beta1/genesis.proto rename to proto/lbm/gov/v1beta1/genesis.proto index 263aff289d..d8cb721727 100644 --- a/proto/cosmos/gov/v1beta1/genesis.proto +++ b/proto/lbm/gov/v1beta1/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.gov.v1beta1; +package lbm.gov.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/gov/v1beta1/gov.proto"; +import "lbm/gov/v1beta1/gov.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/gov/types"; diff --git a/proto/cosmos/gov/v1beta1/gov.proto b/proto/lbm/gov/v1beta1/gov.proto similarity index 97% rename from proto/cosmos/gov/v1beta1/gov.proto rename to proto/lbm/gov/v1beta1/gov.proto index 43e5f35703..2c30f53f48 100644 --- a/proto/cosmos/gov/v1beta1/gov.proto +++ b/proto/lbm/gov/v1beta1/gov.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.gov.v1beta1; +package lbm.gov.v1beta1; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "google/protobuf/timestamp.proto"; @@ -48,7 +48,7 @@ message Deposit { uint64 proposal_id = 1 [(gogoproto.moretags) = "yaml:\"proposal_id\""]; string depositor = 2; - repeated cosmos.base.v1beta1.Coin amount = 3 + repeated lbm.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } @@ -65,7 +65,7 @@ message Proposal { [(gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"submit_time\""]; google.protobuf.Timestamp deposit_end_time = 6 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"deposit_end_time\""]; - repeated cosmos.base.v1beta1.Coin total_deposit = 7 [ + repeated lbm.base.v1beta1.Coin total_deposit = 7 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.moretags) = "yaml:\"total_deposit\"" @@ -127,7 +127,7 @@ message Vote { // DepositParams defines the params for deposits on governance proposals. message DepositParams { // Minimum deposit for a proposal to enter voting period. - repeated cosmos.base.v1beta1.Coin min_deposit = 1 [ + repeated lbm.base.v1beta1.Coin min_deposit = 1 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.moretags) = "yaml:\"min_deposit\"", diff --git a/proto/cosmos/gov/v1beta1/query.proto b/proto/lbm/gov/v1beta1/query.proto similarity index 93% rename from proto/cosmos/gov/v1beta1/query.proto rename to proto/lbm/gov/v1beta1/query.proto index 8635521973..233f26717c 100644 --- a/proto/cosmos/gov/v1beta1/query.proto +++ b/proto/lbm/gov/v1beta1/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.gov.v1beta1; +package lbm.gov.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/gov/v1beta1/gov.proto"; +import "lbm/gov/v1beta1/gov.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/gov/types"; @@ -77,7 +77,7 @@ message QueryProposalsRequest { string depositor = 3; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 4; + lbm.base.query.v1beta1.PageRequest pagination = 4; } // QueryProposalsResponse is the response type for the Query/Proposals RPC @@ -86,7 +86,7 @@ message QueryProposalsResponse { repeated Proposal proposals = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryVoteRequest is the request type for the Query/Vote RPC method. @@ -113,7 +113,7 @@ message QueryVotesRequest { uint64 proposal_id = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryVotesResponse is the response type for the Query/Votes RPC method. @@ -122,7 +122,7 @@ message QueryVotesResponse { repeated Vote votes = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryParamsRequest is the request type for the Query/Params RPC method. @@ -166,7 +166,7 @@ message QueryDepositsRequest { uint64 proposal_id = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryDepositsResponse is the response type for the Query/Deposits RPC method. @@ -174,7 +174,7 @@ message QueryDepositsResponse { repeated Deposit deposits = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryTallyResultRequest is the request type for the Query/Tally RPC method. diff --git a/proto/cosmos/gov/v1beta1/tx.proto b/proto/lbm/gov/v1beta1/tx.proto similarity index 92% rename from proto/cosmos/gov/v1beta1/tx.proto rename to proto/lbm/gov/v1beta1/tx.proto index 54689650ef..6fa18f1729 100644 --- a/proto/cosmos/gov/v1beta1/tx.proto +++ b/proto/lbm/gov/v1beta1/tx.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.gov.v1beta1; +package lbm.gov.v1beta1; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/gov/v1beta1/gov.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/gov/v1beta1/gov.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; @@ -30,7 +30,7 @@ message MsgSubmitProposal { option (gogoproto.goproto_getters) = false; google.protobuf.Any content = 1 [(cosmos_proto.accepts_interface) = "Content"]; - repeated cosmos.base.v1beta1.Coin initial_deposit = 2 [ + repeated lbm.base.v1beta1.Coin initial_deposit = 2 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.moretags) = "yaml:\"initial_deposit\"" @@ -67,7 +67,7 @@ message MsgDeposit { uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (gogoproto.moretags) = "yaml:\"proposal_id\""]; string depositor = 2; - repeated cosmos.base.v1beta1.Coin amount = 3 + repeated lbm.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } diff --git a/proto/cosmos/mint/v1beta1/genesis.proto b/proto/lbm/mint/v1beta1/genesis.proto similarity index 85% rename from proto/cosmos/mint/v1beta1/genesis.proto rename to proto/lbm/mint/v1beta1/genesis.proto index ca67bc6b0c..bafd3041d3 100644 --- a/proto/cosmos/mint/v1beta1/genesis.proto +++ b/proto/lbm/mint/v1beta1/genesis.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.mint.v1beta1; +package lbm.mint.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/mint/v1beta1/mint.proto"; +import "lbm/mint/v1beta1/mint.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/mint/types"; diff --git a/proto/cosmos/mint/v1beta1/mint.proto b/proto/lbm/mint/v1beta1/mint.proto similarity index 98% rename from proto/cosmos/mint/v1beta1/mint.proto rename to proto/lbm/mint/v1beta1/mint.proto index f9c7f7d825..f44c13f264 100644 --- a/proto/cosmos/mint/v1beta1/mint.proto +++ b/proto/lbm/mint/v1beta1/mint.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.mint.v1beta1; +package lbm.mint.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/mint/types"; diff --git a/proto/cosmos/mint/v1beta1/query.proto b/proto/lbm/mint/v1beta1/query.proto similarity index 96% rename from proto/cosmos/mint/v1beta1/query.proto rename to proto/lbm/mint/v1beta1/query.proto index c62bc10a7c..3d055b6fbb 100644 --- a/proto/cosmos/mint/v1beta1/query.proto +++ b/proto/lbm/mint/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.mint.v1beta1; +package lbm.mint.v1beta1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/mint/v1beta1/mint.proto"; +import "lbm/mint/v1beta1/mint.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/mint/types"; diff --git a/proto/cosmos/params/v1beta1/params.proto b/proto/lbm/params/v1beta1/params.proto similarity index 96% rename from proto/cosmos/params/v1beta1/params.proto rename to proto/lbm/params/v1beta1/params.proto index 40778c891e..26a8d74d5e 100644 --- a/proto/cosmos/params/v1beta1/params.proto +++ b/proto/lbm/params/v1beta1/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.params.v1beta1; +package lbm.params.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/params/types/proposal"; option (gogoproto.equal_all) = true; diff --git a/proto/cosmos/params/v1beta1/query.proto b/proto/lbm/params/v1beta1/query.proto similarity index 92% rename from proto/cosmos/params/v1beta1/query.proto rename to proto/lbm/params/v1beta1/query.proto index ddee56664c..2c03e26b7e 100644 --- a/proto/cosmos/params/v1beta1/query.proto +++ b/proto/lbm/params/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.params.v1beta1; +package lbm.params.v1beta1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/params/v1beta1/params.proto"; +import "lbm/params/v1beta1/params.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/params/types/proposal"; diff --git a/proto/cosmos/slashing/v1beta1/genesis.proto b/proto/lbm/slashing/v1beta1/genesis.proto similarity index 95% rename from proto/cosmos/slashing/v1beta1/genesis.proto rename to proto/lbm/slashing/v1beta1/genesis.proto index 2adbf616a3..5371f1d0ba 100644 --- a/proto/cosmos/slashing/v1beta1/genesis.proto +++ b/proto/lbm/slashing/v1beta1/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.slashing.v1beta1; +package lbm.slashing.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/slashing/types"; import "gogoproto/gogo.proto"; -import "cosmos/slashing/v1beta1/slashing.proto"; +import "lbm/slashing/v1beta1/slashing.proto"; // GenesisState defines the slashing module's genesis state. message GenesisState { diff --git a/proto/cosmos/slashing/v1beta1/query.proto b/proto/lbm/slashing/v1beta1/query.proto similarity index 84% rename from proto/cosmos/slashing/v1beta1/query.proto rename to proto/lbm/slashing/v1beta1/query.proto index 5da6e90b72..a839f54ed7 100644 --- a/proto/cosmos/slashing/v1beta1/query.proto +++ b/proto/lbm/slashing/v1beta1/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.slashing.v1beta1; +package lbm.slashing.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/slashing/v1beta1/slashing.proto"; +import "lbm/slashing/v1beta1/slashing.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/slashing/types"; @@ -51,13 +51,13 @@ message QuerySigningInfoResponse { // QuerySigningInfosRequest is the request type for the Query/SigningInfos RPC // method message QuerySigningInfosRequest { - cosmos.base.query.v1beta1.PageRequest pagination = 1; + lbm.base.query.v1beta1.PageRequest pagination = 1; } // QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC // method message QuerySigningInfosResponse { // info is the signing info of all validators - repeated cosmos.slashing.v1beta1.ValidatorSigningInfo info = 1 [(gogoproto.nullable) = false]; - cosmos.base.query.v1beta1.PageResponse pagination = 2; + repeated lbm.slashing.v1beta1.ValidatorSigningInfo info = 1 [(gogoproto.nullable) = false]; + lbm.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/cosmos/slashing/v1beta1/slashing.proto b/proto/lbm/slashing/v1beta1/slashing.proto similarity index 98% rename from proto/cosmos/slashing/v1beta1/slashing.proto rename to proto/lbm/slashing/v1beta1/slashing.proto index 0abb4bbf3b..4ff74ecbcc 100644 --- a/proto/cosmos/slashing/v1beta1/slashing.proto +++ b/proto/lbm/slashing/v1beta1/slashing.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.slashing.v1beta1; +package lbm.slashing.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/slashing/types"; option (gogoproto.equal_all) = true; diff --git a/proto/cosmos/slashing/v1beta1/tx.proto b/proto/lbm/slashing/v1beta1/tx.proto similarity index 96% rename from proto/cosmos/slashing/v1beta1/tx.proto rename to proto/lbm/slashing/v1beta1/tx.proto index c7c374193e..3a5b1b8937 100644 --- a/proto/cosmos/slashing/v1beta1/tx.proto +++ b/proto/lbm/slashing/v1beta1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.slashing.v1beta1; +package lbm.slashing.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/slashing/types"; option (gogoproto.equal_all) = true; diff --git a/proto/cosmos/staking/v1beta1/genesis.proto b/proto/lbm/staking/v1beta1/genesis.proto similarity index 95% rename from proto/cosmos/staking/v1beta1/genesis.proto rename to proto/lbm/staking/v1beta1/genesis.proto index 457adbe140..2cc79e75d7 100644 --- a/proto/cosmos/staking/v1beta1/genesis.proto +++ b/proto/lbm/staking/v1beta1/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.staking.v1beta1; +package lbm.staking.v1beta1; option go_package = "github.com/line/lbm-sdk/v2/x/staking/types"; import "gogoproto/gogo.proto"; -import "cosmos/staking/v1beta1/staking.proto"; +import "lbm/staking/v1beta1/staking.proto"; // GenesisState defines the staking module's genesis state. message GenesisState { diff --git a/proto/cosmos/staking/v1beta1/query.proto b/proto/lbm/staking/v1beta1/query.proto similarity index 93% rename from proto/cosmos/staking/v1beta1/query.proto rename to proto/lbm/staking/v1beta1/query.proto index 1b64dd0113..1a5a85c0e0 100644 --- a/proto/cosmos/staking/v1beta1/query.proto +++ b/proto/lbm/staking/v1beta1/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.staking.v1beta1; +package lbm.staking.v1beta1; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/staking/v1beta1/staking.proto"; +import "lbm/staking/v1beta1/staking.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/staking/types"; @@ -98,7 +98,7 @@ message QueryValidatorsRequest { string status = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryValidatorsResponse is response type for the Query/Validators RPC method @@ -107,7 +107,7 @@ message QueryValidatorsResponse { repeated Validator validators = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryValidatorRequest is response type for the Query/Validator RPC method @@ -129,7 +129,7 @@ message QueryValidatorDelegationsRequest { string validator_addr = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryValidatorDelegationsResponse is response type for the @@ -139,7 +139,7 @@ message QueryValidatorDelegationsResponse { [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "DelegationResponses"]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryValidatorUnbondingDelegationsRequest is required type for the @@ -149,7 +149,7 @@ message QueryValidatorUnbondingDelegationsRequest { string validator_addr = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryValidatorUnbondingDelegationsResponse is response type for the @@ -158,7 +158,7 @@ message QueryValidatorUnbondingDelegationsResponse { repeated UnbondingDelegation unbonding_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegationRequest is request type for the Query/Delegation RPC method. @@ -209,7 +209,7 @@ message QueryDelegatorDelegationsRequest { string delegator_addr = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryDelegatorDelegationsResponse is response type for the @@ -219,7 +219,7 @@ message QueryDelegatorDelegationsResponse { repeated DelegationResponse delegation_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegatorUnbondingDelegationsRequest is request type for the @@ -232,7 +232,7 @@ message QueryDelegatorUnbondingDelegationsRequest { string delegator_addr = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryUnbondingDelegatorDelegationsResponse is response type for the @@ -241,7 +241,7 @@ message QueryDelegatorUnbondingDelegationsResponse { repeated UnbondingDelegation unbonding_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryRedelegationsRequest is request type for the Query/Redelegations RPC @@ -260,7 +260,7 @@ message QueryRedelegationsRequest { string dst_validator_addr = 3; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 4; + lbm.base.query.v1beta1.PageRequest pagination = 4; } // QueryRedelegationsResponse is response type for the Query/Redelegations RPC @@ -269,7 +269,7 @@ message QueryRedelegationsResponse { repeated RedelegationResponse redelegation_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegatorValidatorsRequest is request type for the @@ -282,7 +282,7 @@ message QueryDelegatorValidatorsRequest { string delegator_addr = 1; // pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // QueryDelegatorValidatorsResponse is response type for the @@ -292,7 +292,7 @@ message QueryDelegatorValidatorsResponse { repeated Validator validators = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + lbm.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegatorValidatorRequest is request type for the diff --git a/proto/cosmos/staking/v1beta1/staking.proto b/proto/lbm/staking/v1beta1/staking.proto similarity index 98% rename from proto/cosmos/staking/v1beta1/staking.proto rename to proto/lbm/staking/v1beta1/staking.proto index 3895854086..ba568af1da 100644 --- a/proto/cosmos/staking/v1beta1/staking.proto +++ b/proto/lbm/staking/v1beta1/staking.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.staking.v1beta1; +package lbm.staking.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; @@ -7,7 +7,7 @@ import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "cosmos_proto/cosmos.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; import "ostracon/types/types.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/staking/types"; @@ -89,7 +89,7 @@ message Validator { string operator_address = 1 [(gogoproto.moretags) = "yaml:\"operator_address\""]; // consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. google.protobuf.Any consensus_pubkey = 2 - [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey", (gogoproto.moretags) = "yaml:\"consensus_pubkey\""]; + [(cosmos_proto.accepts_interface) = "lbm.crypto.PubKey", (gogoproto.moretags) = "yaml:\"consensus_pubkey\""]; // jailed defined whether the validator has been jailed from bonded status or not. bool jailed = 3; // status is the validator status (bonded/unbonding/unbonded). @@ -291,7 +291,7 @@ message DelegationResponse { Delegation delegation = 1 [(gogoproto.nullable) = false]; - cosmos.base.v1beta1.Coin balance = 2 [(gogoproto.nullable) = false]; + lbm.base.v1beta1.Coin balance = 2 [(gogoproto.nullable) = false]; } // RedelegationEntryResponse is equivalent to a RedelegationEntry except that it diff --git a/proto/cosmos/staking/v1beta1/tx.proto b/proto/lbm/staking/v1beta1/tx.proto similarity index 91% rename from proto/cosmos/staking/v1beta1/tx.proto rename to proto/lbm/staking/v1beta1/tx.proto index 936df5e43b..9e24c113e8 100644 --- a/proto/cosmos/staking/v1beta1/tx.proto +++ b/proto/lbm/staking/v1beta1/tx.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package cosmos.staking.v1beta1; +package lbm.staking.v1beta1; import "google/protobuf/any.proto"; import "google/protobuf/timestamp.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/staking/v1beta1/staking.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/staking/v1beta1/staking.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/staking/types"; @@ -46,8 +46,8 @@ message MsgCreateValidator { ]; string delegator_address = 4 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; string validator_address = 5 [(gogoproto.moretags) = "yaml:\"validator_address\""]; - google.protobuf.Any pubkey = 6 [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey"]; - cosmos.base.v1beta1.Coin value = 7 [(gogoproto.nullable) = false]; + google.protobuf.Any pubkey = 6 [(cosmos_proto.accepts_interface) = "lbm.crypto.PubKey"]; + lbm.base.v1beta1.Coin value = 7 [(gogoproto.nullable) = false]; } // MsgCreateValidatorResponse defines the Msg/CreateValidator response type. @@ -86,7 +86,7 @@ message MsgDelegate { string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; - cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; + lbm.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; } // MsgDelegateResponse defines the Msg/Delegate response type. @@ -101,7 +101,7 @@ message MsgBeginRedelegate { string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; string validator_src_address = 2 [(gogoproto.moretags) = "yaml:\"validator_src_address\""]; string validator_dst_address = 3 [(gogoproto.moretags) = "yaml:\"validator_dst_address\""]; - cosmos.base.v1beta1.Coin amount = 4 [(gogoproto.nullable) = false]; + lbm.base.v1beta1.Coin amount = 4 [(gogoproto.nullable) = false]; } // MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type. @@ -117,7 +117,7 @@ message MsgUndelegate { string delegator_address = 1 [(gogoproto.moretags) = "yaml:\"delegator_address\""]; string validator_address = 2 [(gogoproto.moretags) = "yaml:\"validator_address\""]; - cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; + lbm.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; } // MsgUndelegateResponse defines the Msg/Undelegate response type. diff --git a/proto/cosmos/tx/signing/v1beta1/signing.proto b/proto/lbm/tx/signing/v1beta1/signing.proto similarity index 93% rename from proto/cosmos/tx/signing/v1beta1/signing.proto rename to proto/lbm/tx/signing/v1beta1/signing.proto index ff54da2388..41f7aeeb4d 100644 --- a/proto/cosmos/tx/signing/v1beta1/signing.proto +++ b/proto/lbm/tx/signing/v1beta1/signing.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.tx.signing.v1beta1; +package lbm.tx.signing.v1beta1; -import "cosmos/crypto/multisig/v1beta1/multisig.proto"; +import "lbm/crypto/multisig/v1beta1/multisig.proto"; import "google/protobuf/any.proto"; option go_package = "github.com/line/lbm-sdk/v2/types/tx/signing"; @@ -70,7 +70,7 @@ message SignatureDescriptor { // Multi is the signature data for a multisig public key message Multi { // bitarray specifies which keys within the multisig are signing - cosmos.crypto.multisig.v1beta1.CompactBitArray bitarray = 1; + lbm.crypto.multisig.v1beta1.CompactBitArray bitarray = 1; // signatures is the signatures of the multi-signature repeated Data signatures = 2; diff --git a/proto/cosmos/tx/v1beta1/service.proto b/proto/lbm/tx/v1beta1/service.proto similarity index 83% rename from proto/cosmos/tx/v1beta1/service.proto rename to proto/lbm/tx/v1beta1/service.proto index 4bc577ceb9..749df9f5fb 100644 --- a/proto/cosmos/tx/v1beta1/service.proto +++ b/proto/lbm/tx/v1beta1/service.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmos.tx.v1beta1; +package lbm.tx.v1beta1; import "google/api/annotations.proto"; -import "cosmos/base/abci/v1beta1/abci.proto"; -import "cosmos/tx/v1beta1/tx.proto"; +import "lbm/base/abci/v1beta1/abci.proto"; +import "lbm/tx/v1beta1/tx.proto"; import "gogoproto/gogo.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; +import "lbm/base/query/v1beta1/pagination.proto"; option go_package = "github.com/line/lbm-sdk/v2/types/tx"; @@ -41,18 +41,18 @@ message GetTxsEventRequest { // events is the list of transaction event type. repeated string events = 1; // pagination defines an pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + lbm.base.query.v1beta1.PageRequest pagination = 2; } // GetTxsEventResponse is the response type for the Service.TxsByEvents // RPC method. message GetTxsEventResponse { // txs is the list of queried transactions. - repeated cosmos.tx.v1beta1.Tx txs = 1; + repeated lbm.tx.v1beta1.Tx txs = 1; // tx_responses is the list of queried TxResponses. - repeated cosmos.base.abci.v1beta1.TxResponse tx_responses = 2; + repeated lbm.base.abci.v1beta1.TxResponse tx_responses = 2; // pagination defines an pagination for the response. - cosmos.base.query.v1beta1.PageResponse pagination = 3; + lbm.base.query.v1beta1.PageResponse pagination = 3; } // BroadcastTxRequest is the request type for the Service.BroadcastTxRequest @@ -82,23 +82,23 @@ enum BroadcastMode { // Service.BroadcastTx method. message BroadcastTxResponse { // tx_response is the queried TxResponses. - cosmos.base.abci.v1beta1.TxResponse tx_response = 1; + lbm.base.abci.v1beta1.TxResponse tx_response = 1; } // SimulateRequest is the request type for the Service.Simulate // RPC method. message SimulateRequest { // tx is the transaction to simulate. - cosmos.tx.v1beta1.Tx tx = 1; + lbm.tx.v1beta1.Tx tx = 1; } // SimulateResponse is the response type for the // Service.SimulateRPC method. message SimulateResponse { // gas_info is the information about gas used in the simulation. - cosmos.base.abci.v1beta1.GasInfo gas_info = 1; + lbm.base.abci.v1beta1.GasInfo gas_info = 1; // result is the result of the simulation. - cosmos.base.abci.v1beta1.Result result = 2; + lbm.base.abci.v1beta1.Result result = 2; } // GetTxRequest is the request type for the Service.GetTx @@ -111,7 +111,7 @@ message GetTxRequest { // GetTxResponse is the response type for the Service.GetTx method. message GetTxResponse { // tx is the queried transaction. - cosmos.tx.v1beta1.Tx tx = 1; + lbm.tx.v1beta1.Tx tx = 1; // tx_response is the queried TxResponses. - cosmos.base.abci.v1beta1.TxResponse tx_response = 2; + lbm.base.abci.v1beta1.TxResponse tx_response = 2; } diff --git a/proto/cosmos/tx/v1beta1/tx.proto b/proto/lbm/tx/v1beta1/tx.proto similarity index 95% rename from proto/cosmos/tx/v1beta1/tx.proto rename to proto/lbm/tx/v1beta1/tx.proto index dc2c0a3c91..770631c2dc 100644 --- a/proto/cosmos/tx/v1beta1/tx.proto +++ b/proto/lbm/tx/v1beta1/tx.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.tx.v1beta1; +package lbm.tx.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/crypto/multisig/v1beta1/multisig.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/tx/signing/v1beta1/signing.proto"; +import "lbm/crypto/multisig/v1beta1/multisig.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/tx/signing/v1beta1/signing.proto"; import "google/protobuf/any.proto"; option go_package = "github.com/line/lbm-sdk/v2/types/tx"; @@ -143,13 +143,13 @@ message ModeInfo { // future message Single { // mode is the signing mode of the single signer - cosmos.tx.signing.v1beta1.SignMode mode = 1; + lbm.tx.signing.v1beta1.SignMode mode = 1; } // Multi is the mode info for a multisig public key message Multi { // bitarray specifies which keys within the multisig are signing - cosmos.crypto.multisig.v1beta1.CompactBitArray bitarray = 1; + lbm.crypto.multisig.v1beta1.CompactBitArray bitarray = 1; // mode_infos is the corresponding modes of the signers of the multisig // which could include nested multisig public keys @@ -162,7 +162,7 @@ message ModeInfo { // which must be above some miminum to be accepted into the mempool. message Fee { // amount is the amount of coins to be paid as a fee - repeated cosmos.base.v1beta1.Coin amount = 1 + repeated lbm.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; // gas_limit is the maximum gas that can be used in transaction processing diff --git a/proto/cosmos/upgrade/v1beta1/query.proto b/proto/lbm/upgrade/v1beta1/query.proto similarity index 96% rename from proto/cosmos/upgrade/v1beta1/query.proto rename to proto/lbm/upgrade/v1beta1/query.proto index 027beb64fe..a9e8845c6c 100644 --- a/proto/cosmos/upgrade/v1beta1/query.proto +++ b/proto/lbm/upgrade/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.upgrade.v1beta1; +package lbm.upgrade.v1beta1; import "google/protobuf/any.proto"; import "google/api/annotations.proto"; -import "cosmos/upgrade/v1beta1/upgrade.proto"; +import "lbm/upgrade/v1beta1/upgrade.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/upgrade/types"; diff --git a/proto/cosmos/upgrade/v1beta1/upgrade.proto b/proto/lbm/upgrade/v1beta1/upgrade.proto similarity index 98% rename from proto/cosmos/upgrade/v1beta1/upgrade.proto rename to proto/lbm/upgrade/v1beta1/upgrade.proto index f68c49a527..6c3729e4c3 100644 --- a/proto/cosmos/upgrade/v1beta1/upgrade.proto +++ b/proto/lbm/upgrade/v1beta1/upgrade.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.upgrade.v1beta1; +package lbm.upgrade.v1beta1; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/vesting/v1beta1/tx.proto b/proto/lbm/vesting/v1beta1/tx.proto similarity index 89% rename from proto/cosmos/vesting/v1beta1/tx.proto rename to proto/lbm/vesting/v1beta1/tx.proto index 84f0ccc88f..3cdd466151 100644 --- a/proto/cosmos/vesting/v1beta1/tx.proto +++ b/proto/lbm/vesting/v1beta1/tx.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.vesting.v1beta1; +package lbm.vesting.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; +import "lbm/base/v1beta1/coin.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/auth/vesting/types"; @@ -20,7 +20,7 @@ message MsgCreateVestingAccount { string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; - repeated cosmos.base.v1beta1.Coin amount = 3 + repeated lbm.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; int64 end_time = 4 [(gogoproto.moretags) = "yaml:\"end_time\""]; diff --git a/proto/cosmos/vesting/v1beta1/vesting.proto b/proto/lbm/vesting/v1beta1/vesting.proto similarity index 86% rename from proto/cosmos/vesting/v1beta1/vesting.proto rename to proto/lbm/vesting/v1beta1/vesting.proto index 283abe1e20..b6fd518501 100644 --- a/proto/cosmos/vesting/v1beta1/vesting.proto +++ b/proto/lbm/vesting/v1beta1/vesting.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.vesting.v1beta1; +package lbm.vesting.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; -import "cosmos/auth/v1beta1/auth.proto"; +import "lbm/base/v1beta1/coin.proto"; +import "lbm/auth/v1beta1/auth.proto"; option go_package = "github.com/line/lbm-sdk/v2/x/auth/vesting/types"; @@ -13,18 +13,18 @@ message BaseVestingAccount { option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; - cosmos.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true]; - repeated cosmos.base.v1beta1.Coin original_vesting = 2 [ + lbm.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true]; + repeated lbm.base.v1beta1.Coin original_vesting = 2 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.moretags) = "yaml:\"original_vesting\"" ]; - repeated cosmos.base.v1beta1.Coin delegated_free = 3 [ + repeated lbm.base.v1beta1.Coin delegated_free = 3 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.moretags) = "yaml:\"delegated_free\"" ]; - repeated cosmos.base.v1beta1.Coin delegated_vesting = 4 [ + repeated lbm.base.v1beta1.Coin delegated_vesting = 4 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins", (gogoproto.moretags) = "yaml:\"delegated_vesting\"" @@ -57,7 +57,7 @@ message Period { option (gogoproto.goproto_stringer) = false; int64 length = 1; - repeated cosmos.base.v1beta1.Coin amount = 2 + repeated lbm.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/line/lbm-sdk/v2/types.Coins"]; } diff --git a/server/grpc/server_test.go b/server/grpc/server_test.go index 794b88c84a..3e84b1dc96 100644 --- a/server/grpc/server_test.go +++ b/server/grpc/server_test.go @@ -111,7 +111,7 @@ func (s *IntegrationTestSuite) TestGRPCServer_Reflection() { servicesMap[s.Name] = true } // Make sure the following services are present - s.Require().True(servicesMap["cosmos.bank.v1beta1.Query"]) + s.Require().True(servicesMap["lbm.bank.v1beta1.Query"]) } func (s *IntegrationTestSuite) TestGRPCServer_GetTxsEvent() { diff --git a/snapshots/types/snapshot.pb.go b/snapshots/types/snapshot.pb.go index 91b3d565ae..3b9f82ffd0 100644 --- a/snapshots/types/snapshot.pb.go +++ b/snapshots/types/snapshot.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/snapshots/v1beta1/snapshot.proto +// source: lbm/base/snapshots/v1beta1/snapshot.proto package types @@ -36,7 +36,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_dd7a3c9b0a19e1ee, []int{0} + return fileDescriptor_02abe5ed944a39c8, []int{0} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -109,7 +109,7 @@ func (m *Metadata) Reset() { *m = Metadata{} } func (m *Metadata) String() string { return proto.CompactTextString(m) } func (*Metadata) ProtoMessage() {} func (*Metadata) Descriptor() ([]byte, []int) { - return fileDescriptor_dd7a3c9b0a19e1ee, []int{1} + return fileDescriptor_02abe5ed944a39c8, []int{1} } func (m *Metadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -146,35 +146,35 @@ func (m *Metadata) GetChunkHashes() [][]byte { } func init() { - proto.RegisterType((*Snapshot)(nil), "cosmos.base.snapshots.v1beta1.Snapshot") - proto.RegisterType((*Metadata)(nil), "cosmos.base.snapshots.v1beta1.Metadata") + proto.RegisterType((*Snapshot)(nil), "lbm.base.snapshots.v1beta1.Snapshot") + proto.RegisterType((*Metadata)(nil), "lbm.base.snapshots.v1beta1.Metadata") } func init() { - proto.RegisterFile("cosmos/base/snapshots/v1beta1/snapshot.proto", fileDescriptor_dd7a3c9b0a19e1ee) + proto.RegisterFile("lbm/base/snapshots/v1beta1/snapshot.proto", fileDescriptor_02abe5ed944a39c8) } -var fileDescriptor_dd7a3c9b0a19e1ee = []byte{ +var fileDescriptor_02abe5ed944a39c8 = []byte{ // 293 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x31, 0x4e, 0xc3, 0x30, - 0x14, 0x86, 0x63, 0x1a, 0xaa, 0xc8, 0x0d, 0x8b, 0x85, 0x90, 0x85, 0x84, 0x09, 0x5d, 0x88, 0x10, - 0xb5, 0xd5, 0x72, 0x83, 0x8a, 0x01, 0x06, 0x96, 0xb0, 0xb1, 0x20, 0x27, 0x35, 0x71, 0xd4, 0x26, - 0x8e, 0x6a, 0xb7, 0x12, 0xb7, 0xe0, 0x2a, 0xdc, 0xa2, 0x63, 0x47, 0x26, 0x84, 0x92, 0x8b, 0xa0, - 0x38, 0x21, 0x62, 0xea, 0xf6, 0xfe, 0xcf, 0xdf, 0xd3, 0xb3, 0x7e, 0x78, 0x9b, 0x28, 0x9d, 0x2b, - 0xcd, 0x62, 0xae, 0x05, 0xd3, 0x05, 0x2f, 0xb5, 0x54, 0x46, 0xb3, 0xed, 0x34, 0x16, 0x86, 0x4f, - 0x7b, 0x42, 0xcb, 0xb5, 0x32, 0x0a, 0x5d, 0xb4, 0x36, 0x6d, 0x6c, 0xda, 0xdb, 0xb4, 0xb3, 0xcf, - 0x4f, 0x53, 0x95, 0x2a, 0x6b, 0xb2, 0x66, 0x6a, 0x97, 0xc6, 0x9f, 0x00, 0x7a, 0xcf, 0x9d, 0x8b, - 0xce, 0xe0, 0x50, 0x8a, 0x2c, 0x95, 0x06, 0x83, 0x00, 0x84, 0x6e, 0xd4, 0xa5, 0x86, 0xbf, 0xa9, - 0x75, 0xce, 0x0d, 0x3e, 0x0a, 0x40, 0x78, 0x12, 0x75, 0xa9, 0xe1, 0x89, 0xdc, 0x14, 0x4b, 0x8d, - 0x07, 0x2d, 0x6f, 0x13, 0x42, 0xd0, 0x95, 0x5c, 0x4b, 0xec, 0x06, 0x20, 0xf4, 0x23, 0x3b, 0xa3, - 0x47, 0xe8, 0xe5, 0xc2, 0xf0, 0x05, 0x37, 0x1c, 0x1f, 0x07, 0x20, 0x1c, 0xcd, 0xae, 0xe9, 0xc1, - 0x0f, 0xd3, 0xa7, 0x4e, 0x9f, 0xbb, 0xbb, 0xef, 0x4b, 0x27, 0xea, 0xd7, 0xc7, 0x13, 0xe8, 0xfd, - 0xbd, 0xa1, 0x2b, 0xe8, 0xdb, 0xa3, 0xaf, 0xcd, 0x11, 0xa1, 0x31, 0x08, 0x06, 0xa1, 0x1f, 0x8d, - 0x2c, 0x7b, 0xb0, 0x68, 0x7e, 0xbf, 0xab, 0x08, 0xd8, 0x57, 0x04, 0xfc, 0x54, 0x04, 0x7c, 0xd4, - 0xc4, 0xd9, 0xd7, 0xc4, 0xf9, 0xaa, 0x89, 0xf3, 0x72, 0x93, 0x66, 0x46, 0x6e, 0x62, 0x9a, 0xa8, - 0x9c, 0xad, 0xb2, 0x42, 0xb0, 0x55, 0x9c, 0x4f, 0xf4, 0x62, 0xc9, 0xb6, 0xb3, 0x7f, 0x75, 0x9b, - 0xf7, 0x52, 0xe8, 0x78, 0x68, 0xfb, 0xba, 0xfb, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x64, 0x1d, 0x76, - 0xdf, 0x94, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0x31, 0x4e, 0xf3, 0x30, + 0x18, 0x86, 0xe3, 0xbf, 0xf9, 0xab, 0xca, 0x2d, 0x8b, 0x85, 0x90, 0xd5, 0xc1, 0x84, 0x8a, 0x21, + 0x20, 0xd5, 0x56, 0xcb, 0x0d, 0x2a, 0x84, 0x58, 0x58, 0xc2, 0xc6, 0x82, 0xec, 0xd6, 0xc4, 0x55, + 0xe3, 0x38, 0xaa, 0xdd, 0x4a, 0xdc, 0x82, 0x93, 0x70, 0x8e, 0x8e, 0x1d, 0x99, 0x10, 0x4a, 0x2e, + 0x82, 0xe2, 0x84, 0x88, 0x85, 0xed, 0x7b, 0x1f, 0x3f, 0x9f, 0x3e, 0xeb, 0x85, 0x57, 0x99, 0xd0, + 0x4c, 0x70, 0x2b, 0x99, 0xcd, 0x79, 0x61, 0x95, 0x71, 0x96, 0xed, 0x67, 0x42, 0x3a, 0x3e, 0xeb, + 0x08, 0x2d, 0xb6, 0xc6, 0x19, 0x34, 0xce, 0x84, 0xa6, 0xb5, 0x4a, 0x3b, 0x95, 0xb6, 0xea, 0xf8, + 0x34, 0x35, 0xa9, 0xf1, 0x1a, 0xab, 0xa7, 0x66, 0x63, 0xf2, 0x0e, 0xe0, 0xe0, 0xb1, 0x75, 0xd1, + 0x19, 0xec, 0x2b, 0xb9, 0x4e, 0x95, 0xc3, 0x20, 0x02, 0x71, 0x98, 0xb4, 0xa9, 0xe6, 0x2f, 0x66, + 0xab, 0xb9, 0xc3, 0xff, 0x22, 0x10, 0x9f, 0x24, 0x6d, 0xaa, 0xf9, 0x52, 0xed, 0xf2, 0x8d, 0xc5, + 0xbd, 0x86, 0x37, 0x09, 0x21, 0x18, 0x2a, 0x6e, 0x15, 0x0e, 0x23, 0x10, 0x8f, 0x12, 0x3f, 0xa3, + 0x3b, 0x38, 0xd0, 0xd2, 0xf1, 0x15, 0x77, 0x1c, 0xff, 0x8f, 0x40, 0x3c, 0x9c, 0x5f, 0xd2, 0xbf, + 0x7f, 0x4b, 0x1f, 0x5a, 0x77, 0x11, 0x1e, 0x3e, 0xcf, 0x83, 0xa4, 0xdb, 0x9d, 0x4c, 0xe1, 0xe0, + 0xe7, 0x0d, 0x5d, 0xc0, 0x91, 0xbf, 0xf8, 0x5c, 0x5f, 0x90, 0x16, 0x83, 0xa8, 0x17, 0x8f, 0x92, + 0xa1, 0x67, 0xf7, 0x1e, 0x2d, 0x6e, 0x0f, 0x25, 0x01, 0xc7, 0x92, 0x80, 0xaf, 0x92, 0x80, 0xb7, + 0x8a, 0x04, 0xc7, 0x8a, 0x04, 0x1f, 0x15, 0x09, 0x9e, 0xae, 0xd3, 0xb5, 0x53, 0x3b, 0x41, 0x97, + 0x46, 0xb3, 0x6c, 0x9d, 0x4b, 0x96, 0x09, 0x3d, 0xb5, 0xab, 0x0d, 0xdb, 0xcf, 0x7f, 0x15, 0xed, + 0x5e, 0x0b, 0x69, 0x45, 0xdf, 0x97, 0x75, 0xf3, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x4d, 0xb1, 0x6e, + 0x75, 0x8b, 0x01, 0x00, 0x00, } func (m *Snapshot) Marshal() (dAtA []byte, err error) { diff --git a/store/types/commit_info.pb.go b/store/types/commit_info.pb.go index df838932ea..fd9cad01f7 100644 --- a/store/types/commit_info.pb.go +++ b/store/types/commit_info.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/store/v1beta1/commit_info.proto +// source: lbm/base/store/v1beta1/commit_info.proto package types @@ -34,7 +34,7 @@ func (m *CommitInfo) Reset() { *m = CommitInfo{} } func (m *CommitInfo) String() string { return proto.CompactTextString(m) } func (*CommitInfo) ProtoMessage() {} func (*CommitInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_83f4097f6265b52f, []int{0} + return fileDescriptor_4ea5c86dc6d2eebf, []int{0} } func (m *CommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *StoreInfo) Reset() { *m = StoreInfo{} } func (m *StoreInfo) String() string { return proto.CompactTextString(m) } func (*StoreInfo) ProtoMessage() {} func (*StoreInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_83f4097f6265b52f, []int{1} + return fileDescriptor_4ea5c86dc6d2eebf, []int{1} } func (m *StoreInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,7 +141,7 @@ type CommitID struct { func (m *CommitID) Reset() { *m = CommitID{} } func (*CommitID) ProtoMessage() {} func (*CommitID) Descriptor() ([]byte, []int) { - return fileDescriptor_83f4097f6265b52f, []int{2} + return fileDescriptor_4ea5c86dc6d2eebf, []int{2} } func (m *CommitID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -185,37 +185,36 @@ func (m *CommitID) GetHash() []byte { } func init() { - proto.RegisterType((*CommitInfo)(nil), "cosmos.base.store.v1beta1.CommitInfo") - proto.RegisterType((*StoreInfo)(nil), "cosmos.base.store.v1beta1.StoreInfo") - proto.RegisterType((*CommitID)(nil), "cosmos.base.store.v1beta1.CommitID") + proto.RegisterType((*CommitInfo)(nil), "lbm.base.store.v1beta1.CommitInfo") + proto.RegisterType((*StoreInfo)(nil), "lbm.base.store.v1beta1.StoreInfo") + proto.RegisterType((*CommitID)(nil), "lbm.base.store.v1beta1.CommitID") } func init() { - proto.RegisterFile("cosmos/base/store/v1beta1/commit_info.proto", fileDescriptor_83f4097f6265b52f) -} - -var fileDescriptor_83f4097f6265b52f = []byte{ - // 307 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xb1, 0x4b, 0xc3, 0x40, - 0x14, 0xc6, 0x73, 0x6d, 0xd0, 0xf6, 0xea, 0x74, 0x38, 0x44, 0x87, 0x6b, 0xa9, 0x22, 0x05, 0xf1, - 0x8e, 0xd6, 0xcd, 0x41, 0xa4, 0x8a, 0x50, 0xdc, 0xe2, 0xe6, 0x22, 0x49, 0x7b, 0x4d, 0x83, 0xbd, - 0xbc, 0xd2, 0x77, 0x06, 0xfc, 0x2f, 0x1c, 0x1d, 0xfd, 0x73, 0x3a, 0x76, 0x74, 0x12, 0x49, 0xfe, - 0x11, 0xc9, 0x25, 0x71, 0xb3, 0xdb, 0xf7, 0xf2, 0xbe, 0xf7, 0xfd, 0xf8, 0x72, 0xf4, 0x7c, 0x0a, - 0xa8, 0x01, 0x65, 0x18, 0xa0, 0x92, 0x68, 0x60, 0xad, 0x64, 0x3a, 0x0c, 0x95, 0x09, 0x86, 0x72, - 0x0a, 0x5a, 0xc7, 0xe6, 0x39, 0x4e, 0xe6, 0x20, 0x56, 0x6b, 0x30, 0xc0, 0x8e, 0x4a, 0xb3, 0x28, - 0xcc, 0xc2, 0x9a, 0x45, 0x65, 0x3e, 0x3e, 0x8c, 0x20, 0x02, 0xeb, 0x92, 0x85, 0x2a, 0x0f, 0xfa, - 0x48, 0xe9, 0xad, 0x4d, 0x99, 0x24, 0x73, 0x60, 0x1e, 0xdd, 0x4f, 0xd5, 0x1a, 0x63, 0x48, 0x3c, - 0xd2, 0x23, 0x83, 0xa6, 0x5f, 0x8f, 0xec, 0x81, 0x76, 0x6c, 0x9c, 0x85, 0xa1, 0xd7, 0xe8, 0x35, - 0x07, 0x9d, 0xd1, 0xa9, 0xf8, 0x17, 0x27, 0x1e, 0x8b, 0xa9, 0x08, 0x1d, 0xbb, 0x9b, 0xef, 0xae, - 0xe3, 0x53, 0xac, 0x3f, 0x60, 0x3f, 0xa2, 0xed, 0xbf, 0x35, 0x63, 0xd4, 0x4d, 0x02, 0xad, 0x2c, - 0xb0, 0xed, 0x5b, 0xcd, 0xee, 0x69, 0xbb, 0xee, 0x36, 0xf3, 0x1a, 0x3d, 0x32, 0xe8, 0x8c, 0x4e, - 0x76, 0xb0, 0xaa, 0x06, 0x77, 0x15, 0xaa, 0x55, 0xde, 0x4e, 0x66, 0xfd, 0x6b, 0xda, 0xaa, 0x77, - 0x3b, 0xba, 0x31, 0xea, 0x2e, 0x02, 0x5c, 0x58, 0xd0, 0x81, 0x6f, 0xf5, 0x95, 0xfb, 0xf1, 0xd9, - 0x75, 0xc6, 0x37, 0x9b, 0x8c, 0x93, 0x6d, 0xc6, 0xc9, 0x4f, 0xc6, 0xc9, 0x7b, 0xce, 0x9d, 0x6d, - 0xce, 0x9d, 0xaf, 0x9c, 0x3b, 0x4f, 0x67, 0x51, 0x6c, 0x16, 0xaf, 0xa1, 0x98, 0x82, 0x96, 0xcb, - 0x38, 0x51, 0x72, 0x19, 0xea, 0x0b, 0x9c, 0xbd, 0xc8, 0x74, 0x54, 0x3d, 0x92, 0x79, 0x5b, 0x29, - 0x0c, 0xf7, 0xec, 0x6f, 0xbe, 0xfc, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x16, 0x16, 0xbf, 0xa1, 0xc6, - 0x01, 0x00, 0x00, + proto.RegisterFile("lbm/base/store/v1beta1/commit_info.proto", fileDescriptor_4ea5c86dc6d2eebf) +} + +var fileDescriptor_4ea5c86dc6d2eebf = []byte{ + // 304 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xb1, 0x4e, 0xc3, 0x30, + 0x10, 0x86, 0xe3, 0x36, 0x82, 0xd6, 0x65, 0xb2, 0x10, 0x8a, 0x18, 0xdc, 0xd0, 0x01, 0x65, 0xc1, + 0x56, 0xc3, 0xc6, 0x80, 0x50, 0xcb, 0x40, 0xd7, 0xb0, 0xb1, 0xa0, 0xb8, 0x71, 0x93, 0x88, 0x38, + 0x8e, 0x62, 0x13, 0x89, 0xb7, 0x60, 0x64, 0xe4, 0x71, 0x3a, 0x76, 0x64, 0x42, 0x28, 0x79, 0x11, + 0x14, 0x37, 0x61, 0x02, 0xb6, 0xff, 0x7c, 0xbf, 0xff, 0xcf, 0xe7, 0x83, 0x5e, 0xc6, 0x04, 0x65, + 0xa1, 0xe2, 0x54, 0x69, 0x59, 0x72, 0x5a, 0xcd, 0x19, 0xd7, 0xe1, 0x9c, 0xae, 0xa5, 0x10, 0xa9, + 0x7e, 0x4c, 0xf3, 0x8d, 0x24, 0x45, 0x29, 0xb5, 0x44, 0x27, 0x19, 0x13, 0xa4, 0x75, 0x12, 0xe3, + 0x24, 0x9d, 0xf3, 0xf4, 0x38, 0x96, 0xb1, 0x34, 0x16, 0xda, 0xaa, 0xbd, 0x7b, 0x56, 0x40, 0xb8, + 0x34, 0x11, 0xab, 0x7c, 0x23, 0x91, 0x03, 0x0f, 0x2b, 0x5e, 0xaa, 0x54, 0xe6, 0x0e, 0x70, 0x81, + 0x37, 0x0c, 0xfa, 0x12, 0xdd, 0xc1, 0x89, 0x89, 0x33, 0x24, 0xe5, 0x0c, 0xdc, 0xa1, 0x37, 0xf1, + 0xcf, 0xc8, 0xef, 0x2c, 0x72, 0xdf, 0x56, 0x6d, 0xe2, 0xc2, 0xde, 0x7e, 0x4e, 0xad, 0x00, 0xaa, + 0xfe, 0x40, 0xcd, 0x22, 0x38, 0xfe, 0x69, 0x23, 0x04, 0xed, 0x3c, 0x14, 0xdc, 0xd0, 0xc6, 0x81, + 0xd1, 0x68, 0x09, 0xc7, 0xfd, 0x54, 0x91, 0x33, 0x70, 0x81, 0x37, 0xf1, 0xdd, 0xbf, 0x40, 0xdd, + 0xdb, 0x6f, 0x3b, 0xce, 0x68, 0x7f, 0x71, 0x15, 0xcd, 0xae, 0xe1, 0xa8, 0xef, 0xfd, 0x33, 0x15, + 0x82, 0x76, 0x12, 0xaa, 0xc4, 0x50, 0x8e, 0x02, 0xa3, 0xaf, 0xec, 0xb7, 0xf7, 0xa9, 0xb5, 0xb8, + 0xd9, 0xd6, 0x18, 0xec, 0x6a, 0x0c, 0xbe, 0x6a, 0x0c, 0x5e, 0x1b, 0x6c, 0xed, 0x1a, 0x6c, 0x7d, + 0x34, 0xd8, 0x7a, 0x38, 0x8f, 0x53, 0x9d, 0x3c, 0x33, 0xb2, 0x96, 0x82, 0x66, 0x69, 0xce, 0x69, + 0xc6, 0xc4, 0x85, 0x8a, 0x9e, 0x68, 0xe5, 0x77, 0xbb, 0xd1, 0x2f, 0x05, 0x57, 0xec, 0xc0, 0x7c, + 0xf0, 0xe5, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0x92, 0xbc, 0xfa, 0xba, 0x01, 0x00, 0x00, } func (m *CommitInfo) Marshal() (dAtA []byte, err error) { diff --git a/store/types/snapshot.pb.go b/store/types/snapshot.pb.go index e81a3cddc6..b28c340a5c 100644 --- a/store/types/snapshot.pb.go +++ b/store/types/snapshot.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/store/v1beta1/snapshot.proto +// source: lbm/base/store/v1beta1/snapshot.proto package types @@ -37,7 +37,7 @@ func (m *SnapshotItem) Reset() { *m = SnapshotItem{} } func (m *SnapshotItem) String() string { return proto.CompactTextString(m) } func (*SnapshotItem) ProtoMessage() {} func (*SnapshotItem) Descriptor() ([]byte, []int) { - return fileDescriptor_9c55879db4cc4502, []int{0} + return fileDescriptor_bd87dddf72d8ec91, []int{0} } func (m *SnapshotItem) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -120,7 +120,7 @@ func (m *SnapshotStoreItem) Reset() { *m = SnapshotStoreItem{} } func (m *SnapshotStoreItem) String() string { return proto.CompactTextString(m) } func (*SnapshotStoreItem) ProtoMessage() {} func (*SnapshotStoreItem) Descriptor() ([]byte, []int) { - return fileDescriptor_9c55879db4cc4502, []int{1} + return fileDescriptor_bd87dddf72d8ec91, []int{1} } func (m *SnapshotStoreItem) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *SnapshotIAVLItem) Reset() { *m = SnapshotIAVLItem{} } func (m *SnapshotIAVLItem) String() string { return proto.CompactTextString(m) } func (*SnapshotIAVLItem) ProtoMessage() {} func (*SnapshotIAVLItem) Descriptor() ([]byte, []int) { - return fileDescriptor_9c55879db4cc4502, []int{2} + return fileDescriptor_bd87dddf72d8ec91, []int{2} } func (m *SnapshotIAVLItem) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -226,38 +226,38 @@ func (m *SnapshotIAVLItem) GetHeight() int32 { } func init() { - proto.RegisterType((*SnapshotItem)(nil), "cosmos.base.store.v1beta1.SnapshotItem") - proto.RegisterType((*SnapshotStoreItem)(nil), "cosmos.base.store.v1beta1.SnapshotStoreItem") - proto.RegisterType((*SnapshotIAVLItem)(nil), "cosmos.base.store.v1beta1.SnapshotIAVLItem") + proto.RegisterType((*SnapshotItem)(nil), "lbm.base.store.v1beta1.SnapshotItem") + proto.RegisterType((*SnapshotStoreItem)(nil), "lbm.base.store.v1beta1.SnapshotStoreItem") + proto.RegisterType((*SnapshotIAVLItem)(nil), "lbm.base.store.v1beta1.SnapshotIAVLItem") } func init() { - proto.RegisterFile("cosmos/base/store/v1beta1/snapshot.proto", fileDescriptor_9c55879db4cc4502) -} - -var fileDescriptor_9c55879db4cc4502 = []byte{ - // 330 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xb1, 0x4e, 0xeb, 0x30, - 0x14, 0x86, 0xe3, 0xdb, 0xb4, 0x17, 0x0e, 0x1d, 0x8a, 0x55, 0xa1, 0xc0, 0x10, 0xaa, 0x0e, 0x10, - 0x09, 0xb0, 0xd5, 0xf2, 0x02, 0x50, 0x31, 0xb4, 0x82, 0xc9, 0x95, 0x18, 0xd8, 0x92, 0x62, 0x25, - 0x51, 0xe3, 0xb8, 0xaa, 0xdd, 0x48, 0x7d, 0x0b, 0x5e, 0x83, 0x37, 0x61, 0xec, 0xc8, 0x84, 0x50, - 0xfa, 0x22, 0xc8, 0x4e, 0xba, 0x80, 0x90, 0xd8, 0xce, 0x6f, 0x7d, 0xff, 0xe7, 0x23, 0x1d, 0x08, - 0x66, 0x52, 0x09, 0xa9, 0x68, 0x14, 0x2a, 0x4e, 0x95, 0x96, 0x4b, 0x4e, 0x8b, 0x41, 0xc4, 0x75, - 0x38, 0xa0, 0x2a, 0x0f, 0x17, 0x2a, 0x91, 0x9a, 0x2c, 0x96, 0x52, 0x4b, 0x7c, 0x5c, 0x91, 0xc4, - 0x90, 0xc4, 0x92, 0xa4, 0x26, 0x4f, 0xba, 0xb1, 0x8c, 0xa5, 0xa5, 0xa8, 0x99, 0xaa, 0x42, 0xff, - 0x15, 0x41, 0x7b, 0x5a, 0x3b, 0x26, 0x9a, 0x0b, 0x7c, 0x07, 0x4d, 0xdb, 0xf3, 0x50, 0x0f, 0x05, - 0x07, 0xc3, 0x4b, 0xf2, 0xab, 0x91, 0xec, 0x7a, 0x53, 0xf3, 0x6a, 0xca, 0x63, 0x87, 0x55, 0x65, - 0x7c, 0x0f, 0x6e, 0x1a, 0x16, 0x99, 0xf7, 0xcf, 0x4a, 0x2e, 0xfe, 0x20, 0x99, 0xdc, 0x3e, 0x3e, - 0x18, 0xc7, 0x68, 0xaf, 0xfc, 0x38, 0x75, 0x4d, 0x1a, 0x3b, 0xcc, 0x4a, 0x46, 0x2d, 0x70, 0x53, - 0xcd, 0x45, 0xff, 0x1c, 0x0e, 0x7f, 0x7c, 0x89, 0x31, 0xb8, 0x79, 0x28, 0xaa, 0x75, 0xf7, 0x99, - 0x9d, 0xfb, 0x19, 0x74, 0xbe, 0x6b, 0x71, 0x07, 0x1a, 0x73, 0xbe, 0xb6, 0x58, 0x9b, 0x99, 0x11, - 0x77, 0xa1, 0x59, 0x84, 0xd9, 0x8a, 0xdb, 0x25, 0xdb, 0xac, 0x0a, 0xd8, 0x83, 0xff, 0x05, 0x5f, - 0xaa, 0x54, 0xe6, 0x5e, 0xa3, 0x87, 0x82, 0x06, 0xdb, 0x45, 0x7c, 0x04, 0xad, 0x84, 0xa7, 0x71, - 0xa2, 0x3d, 0xb7, 0x87, 0x82, 0x26, 0xab, 0xd3, 0xe8, 0xe6, 0xad, 0xf4, 0xd1, 0xa6, 0xf4, 0xd1, - 0x67, 0xe9, 0xa3, 0x97, 0xad, 0xef, 0x6c, 0xb6, 0xbe, 0xf3, 0xbe, 0xf5, 0x9d, 0xa7, 0xb3, 0x38, - 0xd5, 0xc9, 0x2a, 0x22, 0x33, 0x29, 0x68, 0x96, 0xe6, 0x9c, 0x66, 0x91, 0xb8, 0x52, 0xcf, 0x73, - 0x5a, 0x0c, 0xeb, 0x33, 0xea, 0xf5, 0x82, 0xab, 0xa8, 0x65, 0x6f, 0x71, 0xfd, 0x15, 0x00, 0x00, - 0xff, 0xff, 0xdb, 0x88, 0x8a, 0xf1, 0xe8, 0x01, 0x00, 0x00, + proto.RegisterFile("lbm/base/store/v1beta1/snapshot.proto", fileDescriptor_bd87dddf72d8ec91) +} + +var fileDescriptor_bd87dddf72d8ec91 = []byte{ + // 327 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x91, 0x31, 0x4e, 0xf3, 0x30, + 0x18, 0x86, 0xe3, 0xbf, 0x69, 0x7f, 0x30, 0x1d, 0x8a, 0x55, 0x55, 0x11, 0x43, 0xa8, 0x2a, 0x01, + 0x61, 0xc0, 0x56, 0xcb, 0x05, 0x68, 0xa7, 0x56, 0x62, 0x72, 0x25, 0x06, 0xb6, 0x18, 0xac, 0x24, + 0xaa, 0x1d, 0x57, 0xb5, 0x1b, 0xa9, 0xb7, 0xe0, 0x0e, 0x5c, 0x86, 0xb1, 0x23, 0x13, 0x42, 0xc9, + 0x45, 0x90, 0x9d, 0x74, 0x01, 0x24, 0xb6, 0xef, 0xb5, 0x9e, 0xf7, 0xf1, 0x27, 0x7d, 0xf0, 0x42, + 0x30, 0x49, 0x58, 0xac, 0x39, 0xd1, 0x46, 0x6d, 0x38, 0x29, 0xc6, 0x8c, 0x9b, 0x78, 0x4c, 0x74, + 0x1e, 0xaf, 0x75, 0xaa, 0x0c, 0x5e, 0x6f, 0x94, 0x51, 0x68, 0x20, 0x98, 0xc4, 0x16, 0xc3, 0x0e, + 0xc3, 0x0d, 0x76, 0xd6, 0x4f, 0x54, 0xa2, 0x1c, 0x42, 0xec, 0x54, 0xd3, 0xa3, 0x57, 0x00, 0xbb, + 0xcb, 0x46, 0xb0, 0x30, 0x5c, 0xa2, 0x29, 0x6c, 0xbb, 0x5e, 0x00, 0x86, 0x20, 0x3a, 0x99, 0x5c, + 0xe3, 0xdf, 0x75, 0xf8, 0x50, 0x5a, 0xda, 0x57, 0xdb, 0x9c, 0x7b, 0xb4, 0x6e, 0xa2, 0x39, 0xf4, + 0xb3, 0xb8, 0x10, 0xc1, 0x3f, 0x67, 0x88, 0xfe, 0x32, 0x2c, 0xa6, 0x0f, 0xf7, 0x56, 0x30, 0x3b, + 0x2a, 0x3f, 0xce, 0x7d, 0x9b, 0xe6, 0x1e, 0x75, 0x86, 0x59, 0x07, 0xfa, 0x99, 0xe1, 0x72, 0x74, + 0x05, 0x4f, 0x7f, 0xfc, 0x87, 0x10, 0xf4, 0xf3, 0x58, 0xd6, 0x8b, 0x1e, 0x53, 0x37, 0x8f, 0x04, + 0xec, 0x7d, 0xd7, 0xa2, 0x1e, 0x6c, 0xad, 0xf8, 0xce, 0x61, 0x5d, 0x6a, 0x47, 0xd4, 0x87, 0xed, + 0x22, 0x16, 0x5b, 0xee, 0x36, 0xec, 0xd2, 0x3a, 0xa0, 0x00, 0xfe, 0x2f, 0xf8, 0x46, 0x67, 0x2a, + 0x0f, 0x5a, 0x43, 0x10, 0xb5, 0xe8, 0x21, 0xa2, 0x01, 0xec, 0xa4, 0x3c, 0x4b, 0x52, 0x13, 0xf8, + 0x43, 0x10, 0xb5, 0x69, 0x93, 0x66, 0x77, 0x6f, 0x65, 0x08, 0xf6, 0x65, 0x08, 0x3e, 0xcb, 0x10, + 0xbc, 0x54, 0xa1, 0xb7, 0xaf, 0x42, 0xef, 0xbd, 0x0a, 0xbd, 0xc7, 0xcb, 0x24, 0x33, 0xe9, 0x96, + 0xe1, 0x27, 0x25, 0x89, 0xc8, 0x72, 0x4e, 0x04, 0x93, 0x37, 0xfa, 0x79, 0x45, 0x8a, 0x49, 0x73, + 0x3d, 0xb3, 0x5b, 0x73, 0xcd, 0x3a, 0xee, 0x0a, 0xb7, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x82, + 0x68, 0xd3, 0xea, 0xdc, 0x01, 0x00, 0x00, } func (m *SnapshotItem) Marshal() (dAtA []byte, err error) { diff --git a/testutil/testdata/unknonwnproto.pb.go b/testutil/testdata/unknonwnproto.pb.go index 5cd24f4210..67f40fa3a0 100644 --- a/testutil/testdata/unknonwnproto.pb.go +++ b/testutil/testdata/unknonwnproto.pb.go @@ -2809,110 +2809,111 @@ func init() { func init() { proto.RegisterFile("unknonwnproto.proto", fileDescriptor_448ea787339d1228) } var fileDescriptor_448ea787339d1228 = []byte{ - // 1647 bytes of a gzipped FileDescriptorProto + // 1649 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4d, 0x6f, 0x1b, 0xc7, - 0x19, 0xd6, 0x70, 0x49, 0x89, 0x7c, 0x45, 0xd3, 0xcc, 0xd8, 0x68, 0x37, 0x74, 0xcc, 0x30, 0x0b, - 0xd7, 0x61, 0x83, 0x84, 0x34, 0x97, 0x0c, 0x50, 0xe4, 0x64, 0xd2, 0xb1, 0x6a, 0x03, 0xae, 0x5c, - 0x4c, 0x9d, 0xb4, 0xf0, 0x85, 0x58, 0xee, 0x0e, 0xc9, 0x85, 0xc8, 0x19, 0x75, 0x67, 0xd6, 0x22, - 0x6f, 0x45, 0x7b, 0xe8, 0x35, 0x97, 0xa2, 0x40, 0xff, 0x41, 0x4f, 0x45, 0xfe, 0x41, 0x8f, 0xbe, - 0x14, 0xf0, 0xa5, 0x40, 0x81, 0x02, 0x41, 0x61, 0x5f, 0xfb, 0x0f, 0x8a, 0x22, 0xc5, 0xcc, 0x7e, - 0x70, 0x69, 0x89, 0x0e, 0xad, 0xb4, 0x31, 0x04, 0xf4, 0x22, 0xcd, 0xbe, 0xfb, 0xcc, 0xfb, 0xf1, - 0xbc, 0x1f, 0xdc, 0x19, 0xb8, 0x12, 0xb2, 0x23, 0xc6, 0xd9, 0x09, 0x3b, 0x0e, 0xb8, 0xe4, 0x2d, - 0xfd, 0x17, 0x17, 0x25, 0x15, 0xd2, 0x73, 0xa4, 0x53, 0xbb, 0x3a, 0xe1, 0x13, 0xae, 0x85, 0x6d, - 0xb5, 0x8a, 0xde, 0xd7, 0xde, 0x9e, 0x70, 0x3e, 0x99, 0xd1, 0xb6, 0x7e, 0x1a, 0x85, 0xe3, 0xb6, - 0xc3, 0x96, 0xf1, 0xab, 0x9a, 0xcb, 0xc5, 0x9c, 0x8b, 0xb6, 0x5c, 0xb4, 0x9f, 0x74, 0x46, 0x54, - 0x3a, 0x9d, 0xb6, 0x5c, 0x44, 0xef, 0x2c, 0x09, 0xa5, 0x3b, 0xa1, 0x90, 0x7c, 0x4e, 0x83, 0x0e, - 0xae, 0x40, 0xce, 0xf7, 0x4c, 0xd4, 0x40, 0xcd, 0x02, 0xc9, 0xf9, 0x1e, 0xc6, 0x90, 0x67, 0xce, - 0x9c, 0x9a, 0xb9, 0x06, 0x6a, 0x96, 0x88, 0x5e, 0xe3, 0x1f, 0x42, 0x55, 0x84, 0x23, 0xe1, 0x06, - 0xfe, 0xb1, 0xf4, 0x39, 0x1b, 0x8e, 0x29, 0x35, 0x8d, 0x06, 0x6a, 0xe6, 0xc8, 0xe5, 0xac, 0xfc, - 0x80, 0x52, 0x6c, 0xc2, 0xde, 0xb1, 0xb3, 0x9c, 0x53, 0x26, 0xcd, 0x3d, 0xad, 0x21, 0x79, 0xb4, - 0xbe, 0xcc, 0xad, 0xcc, 0xda, 0xa7, 0xcc, 0xd6, 0xa0, 0xe8, 0x33, 0x2f, 0x14, 0x32, 0x58, 0x6a, - 0xd3, 0x05, 0x92, 0x3e, 0xa7, 0x2e, 0x19, 0x19, 0x97, 0xae, 0x42, 0x61, 0x4c, 0x4f, 0x68, 0x60, - 0xe6, 0xb5, 0x1f, 0xd1, 0x03, 0xbe, 0x06, 0xc5, 0x80, 0x0a, 0x1a, 0x3c, 0xa1, 0x9e, 0xf9, 0xfb, - 0x62, 0x03, 0x35, 0x0d, 0x92, 0x0a, 0xf0, 0x87, 0x90, 0x77, 0x7d, 0xb9, 0x34, 0x77, 0x1b, 0xa8, - 0x59, 0xb1, 0xcd, 0x56, 0x42, 0x6e, 0x2b, 0xf5, 0xaa, 0x75, 0xc7, 0x97, 0x4b, 0xa2, 0x51, 0xf8, - 0x13, 0xb8, 0x34, 0xf7, 0x85, 0x4b, 0x67, 0x33, 0x87, 0x51, 0x1e, 0x0a, 0x13, 0x1a, 0xa8, 0xb9, - 0x6f, 0x5f, 0x6d, 0x45, 0x9c, 0xb7, 0x12, 0xce, 0x5b, 0x7d, 0xb6, 0x24, 0xeb, 0x50, 0xeb, 0xc7, - 0x90, 0x57, 0x9a, 0x70, 0x11, 0xf2, 0x0f, 0x1c, 0x2e, 0xaa, 0x3b, 0xb8, 0x02, 0xf0, 0x80, 0x8b, - 0x3e, 0x9b, 0xd0, 0x19, 0x15, 0x55, 0x84, 0xcb, 0x50, 0xfc, 0xa9, 0x33, 0xe3, 0xfd, 0x99, 0xe4, - 0xd5, 0x1c, 0x06, 0xd8, 0xfd, 0x09, 0x17, 0x2e, 0x3f, 0xa9, 0x1a, 0x78, 0x1f, 0xf6, 0x0e, 0x1d, - 0x3f, 0xe0, 0x23, 0xbf, 0x9a, 0xb7, 0x5a, 0x50, 0x3c, 0xa4, 0x42, 0x52, 0xaf, 0xd7, 0xdf, 0x26, - 0x51, 0xd6, 0x5f, 0x51, 0xb2, 0xa1, 0xbb, 0xd5, 0x06, 0x6c, 0x41, 0xce, 0xe9, 0x99, 0xf9, 0x86, - 0xd1, 0xdc, 0xb7, 0xf1, 0x8a, 0x91, 0xc4, 0x28, 0xc9, 0x39, 0x3d, 0xdc, 0x85, 0x82, 0xcf, 0x3c, - 0xba, 0x30, 0x0b, 0x1a, 0x76, 0xfd, 0x65, 0x58, 0xb7, 0xdf, 0xba, 0xaf, 0xde, 0xdf, 0x65, 0x32, - 0x58, 0x92, 0x08, 0x5b, 0x7b, 0x00, 0xb0, 0x12, 0xe2, 0x2a, 0x18, 0x47, 0x74, 0xa9, 0x7d, 0x31, - 0x88, 0x5a, 0xe2, 0x26, 0x14, 0x9e, 0x38, 0xb3, 0x30, 0xf2, 0xe6, 0x6c, 0xdb, 0x11, 0xe0, 0x93, - 0xdc, 0x8f, 0x90, 0xf5, 0x38, 0x09, 0xcb, 0xde, 0x2e, 0xac, 0x0f, 0x60, 0x97, 0x69, 0xbc, 0xae, - 0x99, 0x33, 0xd4, 0x77, 0xfb, 0x24, 0x46, 0x58, 0x07, 0x89, 0xee, 0xce, 0x69, 0xdd, 0x2b, 0x3d, - 0x1b, 0xdc, 0xb4, 0x57, 0x7a, 0x6e, 0xa7, 0xb9, 0x1a, 0x9c, 0xd2, 0x53, 0x05, 0xc3, 0x99, 0xd0, - 0xb8, 0xb0, 0xd5, 0xf2, 0xac, 0x9a, 0xb6, 0xbc, 0x34, 0x79, 0xe7, 0xd4, 0xa0, 0xd2, 0x39, 0xda, - 0x9c, 0xce, 0x01, 0xc9, 0x8d, 0x7a, 0x16, 0x4b, 0xb9, 0x3c, 0xd3, 0x8a, 0xea, 0x6d, 0x65, 0x05, - 0x11, 0xb5, 0xdc, 0x82, 0xc9, 0x41, 0xc2, 0x80, 0xea, 0xc9, 0x80, 0x87, 0x92, 0xea, 0x9e, 0x2c, - 0x91, 0xe8, 0xc1, 0xfa, 0x45, 0xca, 0xef, 0xe0, 0x1c, 0xfc, 0xae, 0xb4, 0xc7, 0x0c, 0x18, 0x29, - 0x03, 0xd6, 0xaf, 0x33, 0x13, 0xa5, 0xbb, 0x55, 0x5d, 0x54, 0x20, 0x27, 0xc6, 0xf1, 0xe8, 0xca, - 0x89, 0x31, 0x7e, 0x07, 0x4a, 0x22, 0x0c, 0xdc, 0xa9, 0x13, 0x4c, 0x68, 0x3c, 0x49, 0x56, 0x02, - 0xdc, 0x80, 0x7d, 0x8f, 0x0a, 0xe9, 0x33, 0x47, 0x4d, 0x37, 0xb3, 0xa0, 0x15, 0x65, 0x45, 0xf8, - 0x26, 0x54, 0xdc, 0x80, 0x7a, 0xbe, 0x1c, 0xba, 0x4e, 0xe0, 0x0d, 0x19, 0x8f, 0x86, 0xde, 0xbd, - 0x1d, 0x52, 0x8e, 0xe4, 0x77, 0x9c, 0xc0, 0x3b, 0xe4, 0xf8, 0x3a, 0x94, 0xdc, 0x29, 0xfd, 0x65, - 0x48, 0x15, 0xa4, 0x18, 0x43, 0x8a, 0x91, 0xe8, 0x90, 0xe3, 0x36, 0x14, 0x79, 0xe0, 0x4f, 0x7c, - 0xe6, 0xcc, 0xcc, 0x92, 0x26, 0xe2, 0xca, 0xe9, 0xe9, 0xd4, 0x21, 0x29, 0x68, 0x50, 0x4a, 0xa7, - 0xac, 0xf5, 0xcf, 0x1c, 0x94, 0x1f, 0x51, 0x21, 0x3f, 0xa7, 0x81, 0xf0, 0x39, 0xeb, 0xe0, 0x32, - 0xa0, 0x45, 0xdc, 0x69, 0x68, 0x81, 0x6f, 0x00, 0x72, 0x62, 0x72, 0xbf, 0xb7, 0xd2, 0x99, 0xdd, - 0x40, 0x90, 0xa3, 0x50, 0xa3, 0x38, 0xc1, 0x1b, 0x51, 0x23, 0x85, 0x72, 0xe3, 0xe2, 0xda, 0x88, - 0x72, 0xf1, 0x07, 0x80, 0xbc, 0x78, 0x54, 0x6c, 0x40, 0x0d, 0xf2, 0x4f, 0xbf, 0x7a, 0x77, 0x87, - 0x20, 0x0f, 0x57, 0x00, 0x51, 0x3d, 0x8f, 0x0b, 0xf7, 0x76, 0x08, 0xa2, 0xf8, 0x26, 0xa0, 0xb1, - 0xa6, 0x70, 0xe3, 0x5e, 0x85, 0x1b, 0x63, 0x0b, 0xd0, 0x44, 0xf3, 0xb8, 0x69, 0x20, 0xa3, 0x89, - 0xf2, 0x76, 0x6a, 0x96, 0x5e, 0xed, 0xed, 0x14, 0xbf, 0x0f, 0xe8, 0xc8, 0x2c, 0x6f, 0xe4, 0x7c, - 0x90, 0x7f, 0xf6, 0xd5, 0xbb, 0x88, 0xa0, 0xa3, 0x41, 0x01, 0x0c, 0x11, 0xce, 0xad, 0xdf, 0x18, - 0x6b, 0x74, 0xdb, 0xaf, 0x4b, 0xb7, 0xbd, 0x15, 0xdd, 0xf6, 0x56, 0x74, 0xdb, 0x8a, 0xee, 0x1b, - 0xdf, 0x44, 0xb7, 0x7d, 0x2e, 0xa2, 0xed, 0x37, 0x45, 0x34, 0xbe, 0x06, 0x25, 0x46, 0x4f, 0x86, - 0x63, 0x9f, 0xce, 0x3c, 0xf3, 0xed, 0x06, 0x6a, 0xe6, 0x49, 0x91, 0xd1, 0x93, 0x03, 0xf5, 0x9c, - 0x64, 0xe1, 0x77, 0xeb, 0x59, 0xe8, 0xbe, 0x6e, 0x16, 0xba, 0x5b, 0x65, 0xa1, 0xbb, 0x55, 0x16, - 0xba, 0x5b, 0x65, 0xa1, 0x7b, 0xae, 0x2c, 0x74, 0xdf, 0x58, 0x16, 0x3e, 0x02, 0xcc, 0x38, 0x1b, - 0xba, 0x81, 0x2f, 0x7d, 0xd7, 0x99, 0xc5, 0xe9, 0xf8, 0xad, 0x9e, 0x5d, 0xa4, 0xca, 0x38, 0xbb, - 0x13, 0xbf, 0x59, 0xcb, 0xcb, 0xbf, 0x72, 0x50, 0xcb, 0xba, 0xff, 0x80, 0x33, 0xfa, 0x90, 0xd1, - 0x87, 0xe3, 0xcf, 0xd5, 0x4f, 0xf9, 0x05, 0xcd, 0xd2, 0x85, 0x61, 0xff, 0xdf, 0xbb, 0xf0, 0xfd, - 0x97, 0xd9, 0x3f, 0xd4, 0xbf, 0x56, 0x93, 0x0b, 0x42, 0x7d, 0x67, 0xd5, 0x10, 0xef, 0x9d, 0x8d, - 0xca, 0xc4, 0x74, 0x41, 0x7a, 0x03, 0xdf, 0x86, 0x5d, 0x9f, 0x31, 0x1a, 0x74, 0xcc, 0x8a, 0x56, - 0xde, 0xfc, 0xc6, 0xc8, 0x5a, 0xf7, 0x35, 0x9e, 0xc4, 0xfb, 0x52, 0x0d, 0xb6, 0x79, 0xf9, 0xb5, - 0x34, 0xd8, 0xb1, 0x06, 0xbb, 0xf6, 0x47, 0x04, 0xbb, 0x91, 0xd2, 0xcc, 0x77, 0x92, 0xb1, 0xf1, - 0x3b, 0xe9, 0xbe, 0xfa, 0xe4, 0x67, 0x34, 0x88, 0xb3, 0xdf, 0xdd, 0xd6, 0xe3, 0xe8, 0x9f, 0xfe, - 0x43, 0x22, 0x0d, 0xb5, 0x5b, 0xea, 0x20, 0x90, 0x08, 0x33, 0xc6, 0x4b, 0x89, 0x71, 0x7d, 0x26, - 0x8b, 0x8d, 0xab, 0x75, 0xed, 0x4f, 0x89, 0xaf, 0xf6, 0x29, 0xb8, 0x09, 0x7b, 0x2e, 0x0f, 0x59, - 0x72, 0x48, 0x2c, 0x91, 0xe4, 0xf1, 0xbc, 0x1e, 0xdb, 0xff, 0x0d, 0x8f, 0x93, 0xfe, 0xfb, 0x7a, - 0xbd, 0xff, 0x7a, 0xff, 0xef, 0xbf, 0x0b, 0xd4, 0x7f, 0xbd, 0x6f, 0xdd, 0x7f, 0xbd, 0xef, 0xb8, - 0xff, 0x7a, 0xdf, 0xaa, 0xff, 0x8c, 0x8d, 0xfd, 0xf7, 0xe5, 0xff, 0xac, 0xff, 0x7a, 0x5b, 0xf5, - 0x9f, 0xfd, 0xca, 0xfe, 0xbb, 0x9a, 0xbd, 0x38, 0x30, 0xe2, 0x4b, 0x82, 0xa4, 0x03, 0xff, 0x82, - 0xa0, 0x92, 0xb1, 0x77, 0xf0, 0xe9, 0xf9, 0x8e, 0x43, 0x6f, 0xfc, 0x58, 0x92, 0xc4, 0xf3, 0x77, - 0xb4, 0xf6, 0x3d, 0x75, 0xf0, 0x69, 0xe7, 0xe7, 0xbe, 0x9c, 0xde, 0x5d, 0xc8, 0xc0, 0xe9, 0xb3, - 0xe5, 0x77, 0x1a, 0xdb, 0x8d, 0x55, 0x6c, 0x19, 0x5c, 0x9f, 0x2d, 0x53, 0x8f, 0x5e, 0x3b, 0xba, - 0x47, 0x50, 0xce, 0xee, 0xc7, 0x4d, 0x15, 0x00, 0xda, 0x4c, 0x5f, 0x32, 0x01, 0x1c, 0x15, 0x78, - 0x34, 0x19, 0x0d, 0x35, 0x01, 0xcb, 0xd1, 0x04, 0xd4, 0x4f, 0xae, 0xf5, 0x67, 0x04, 0x55, 0x65, - 0xf0, 0xb3, 0x63, 0xcf, 0x91, 0xd4, 0x7b, 0xb4, 0x20, 0xce, 0x09, 0xbe, 0x0e, 0x30, 0xe2, 0xde, - 0x72, 0x38, 0x5a, 0x4a, 0x2a, 0xb4, 0x8d, 0x32, 0x29, 0x29, 0xc9, 0x40, 0x09, 0xf0, 0x4d, 0xb8, - 0xec, 0x84, 0x72, 0x3a, 0xf4, 0xd9, 0x98, 0xc7, 0x98, 0x9c, 0xc6, 0x5c, 0x52, 0xe2, 0xfb, 0x6c, - 0xcc, 0x23, 0x5c, 0x1d, 0x40, 0xf8, 0x13, 0xe6, 0xc8, 0x30, 0xa0, 0xc2, 0x34, 0x1a, 0x46, 0xb3, - 0x4c, 0x32, 0x12, 0x5c, 0x87, 0xfd, 0xf4, 0xec, 0x32, 0xfc, 0x58, 0xdf, 0x18, 0x94, 0x49, 0x29, - 0x39, 0xbd, 0x7c, 0x8c, 0x7f, 0x00, 0x95, 0xd5, 0xfb, 0xce, 0x2d, 0xbb, 0x67, 0xfe, 0xaa, 0xa8, - 0x31, 0xe5, 0x04, 0xa3, 0x84, 0xd6, 0x17, 0x06, 0xbc, 0xb5, 0x16, 0xc2, 0x80, 0x7b, 0x4b, 0x7c, - 0x0b, 0x8a, 0x73, 0x2a, 0x84, 0x33, 0xd1, 0x11, 0x18, 0x1b, 0x8b, 0x2c, 0x45, 0xa9, 0xee, 0x9e, - 0xd3, 0x39, 0x4f, 0xba, 0x5b, 0xad, 0x95, 0x0b, 0xd2, 0x9f, 0x53, 0x1e, 0xca, 0xe1, 0x94, 0xfa, - 0x93, 0xa9, 0x8c, 0x79, 0xbc, 0x14, 0x4b, 0xef, 0x69, 0x21, 0xbe, 0x01, 0x15, 0xc1, 0xe7, 0x74, - 0xb8, 0x3a, 0x8a, 0xe5, 0xf5, 0x51, 0xac, 0xac, 0xa4, 0x87, 0xb1, 0xb3, 0xf8, 0x1e, 0xbc, 0xb7, - 0x8e, 0x1a, 0x9e, 0x31, 0x98, 0xff, 0x10, 0x0d, 0xe6, 0x77, 0xb2, 0x3b, 0x0f, 0x5f, 0x1e, 0xd2, - 0x03, 0x78, 0x8b, 0x2e, 0x24, 0x65, 0xaa, 0x46, 0x86, 0x5c, 0x5f, 0x27, 0x0b, 0xf3, 0xeb, 0xbd, - 0x57, 0x84, 0x59, 0x4d, 0xf1, 0x0f, 0x23, 0x38, 0x7e, 0x0c, 0xf5, 0x35, 0xf3, 0x67, 0x28, 0xbc, - 0xfc, 0x0a, 0x85, 0xd7, 0x32, 0xbf, 0x1c, 0x77, 0x5f, 0xd2, 0x6d, 0x3d, 0x45, 0x70, 0x25, 0x93, - 0x92, 0x7e, 0x5c, 0x16, 0xf8, 0x36, 0x94, 0x55, 0xfe, 0x69, 0xa0, 0x6b, 0x27, 0x49, 0xcc, 0xf5, - 0x56, 0x74, 0xfd, 0xde, 0x92, 0x8b, 0x56, 0x7c, 0xfd, 0xde, 0xfa, 0x99, 0x86, 0xa9, 0x4d, 0x64, - 0x5f, 0xa4, 0x6b, 0x81, 0x9b, 0xab, 0x3b, 0x37, 0xd5, 0x34, 0xa7, 0x37, 0x1e, 0x50, 0x1a, 0xdd, - 0xc5, 0xad, 0x55, 0x57, 0x57, 0xe7, 0x2d, 0x53, 0x5d, 0xdd, 0x6d, 0xab, 0xeb, 0xfd, 0xa8, 0xb8, - 0x08, 0x3d, 0xa6, 0x2a, 0x94, 0xcf, 0x7c, 0x26, 0x75, 0xa9, 0xb0, 0x70, 0x1e, 0xf9, 0x9f, 0x27, - 0x7a, 0x3d, 0x38, 0x78, 0xfa, 0xbc, 0x8e, 0x9e, 0x3d, 0xaf, 0xa3, 0x7f, 0x3c, 0xaf, 0xa3, 0x2f, - 0x5e, 0xd4, 0x77, 0x9e, 0xbd, 0xa8, 0xef, 0xfc, 0xed, 0x45, 0x7d, 0xe7, 0xf1, 0x87, 0x13, 0x5f, - 0x4e, 0xc3, 0x51, 0xcb, 0xe5, 0xf3, 0xf6, 0xcc, 0x67, 0xb4, 0x3d, 0x1b, 0xcd, 0x3f, 0x12, 0xde, - 0x51, 0xfb, 0x89, 0xdd, 0x56, 0x5d, 0x1f, 0x4a, 0x7f, 0xd6, 0x4e, 0xda, 0x7f, 0xb4, 0xab, 0x69, - 0xee, 0xfe, 0x27, 0x00, 0x00, 0xff, 0xff, 0x46, 0xeb, 0xb7, 0x29, 0xe4, 0x18, 0x00, 0x00, + 0x19, 0xd6, 0x70, 0x49, 0x89, 0x7c, 0x45, 0x53, 0xcc, 0x58, 0x68, 0x36, 0x74, 0xcc, 0x30, 0x0b, + 0xc5, 0x61, 0x83, 0x84, 0x34, 0x97, 0x0c, 0x50, 0x04, 0x28, 0x10, 0x52, 0xb1, 0x2a, 0x01, 0xaa, + 0x5c, 0x4c, 0x9d, 0xb4, 0xf0, 0x85, 0x58, 0x72, 0x87, 0xe4, 0x42, 0xe4, 0x8c, 0xba, 0x3b, 0x2b, + 0x91, 0xb7, 0xa2, 0x3d, 0xf4, 0x9a, 0x4b, 0x51, 0xa0, 0xff, 0xa0, 0xa7, 0x22, 0xff, 0xa0, 0xe8, + 0x29, 0x97, 0x02, 0xbe, 0x14, 0x28, 0x50, 0x20, 0x28, 0xec, 0x6b, 0xff, 0x41, 0x51, 0xa4, 0x98, + 0xd9, 0x0f, 0x2e, 0x25, 0x51, 0xa1, 0xe4, 0xd6, 0x86, 0x80, 0x5e, 0xa4, 0x99, 0x77, 0x9f, 0x79, + 0x3f, 0x9e, 0xf7, 0x83, 0x3b, 0x0b, 0x77, 0x7d, 0x76, 0xcc, 0x38, 0x3b, 0x63, 0x27, 0x2e, 0x17, + 0xbc, 0xa6, 0xfe, 0xe2, 0xac, 0xa0, 0x9e, 0xb0, 0x2d, 0x61, 0x95, 0xb6, 0x87, 0x7c, 0xc8, 0x95, + 0xb0, 0x2e, 0x57, 0xc1, 0xf3, 0xd2, 0x5b, 0x43, 0xce, 0x87, 0x63, 0x5a, 0x57, 0xbb, 0x9e, 0x3f, + 0xa8, 0x5b, 0x6c, 0x16, 0x3e, 0x7a, 0x73, 0xdc, 0x9b, 0xd4, 0xc5, 0xb4, 0x7e, 0xda, 0xe8, 0x51, + 0x61, 0x35, 0xea, 0x62, 0x1a, 0x3c, 0x30, 0x04, 0xe4, 0x76, 0x7d, 0x4f, 0xf0, 0x09, 0x75, 0x1b, + 0xb8, 0x00, 0x29, 0xc7, 0xd6, 0x51, 0x05, 0x55, 0x33, 0x24, 0xe5, 0xd8, 0x18, 0x43, 0x9a, 0x59, + 0x13, 0xaa, 0xa7, 0x2a, 0xa8, 0x9a, 0x23, 0x6a, 0x8d, 0xbf, 0x0f, 0x45, 0xcf, 0xef, 0x79, 0x7d, + 0xd7, 0x39, 0x11, 0x0e, 0x67, 0xdd, 0x01, 0xa5, 0xba, 0x56, 0x41, 0xd5, 0x14, 0xd9, 0x4a, 0xca, + 0xf7, 0x28, 0xc5, 0x3a, 0x6c, 0x9c, 0x58, 0xb3, 0x09, 0x65, 0x42, 0xdf, 0x50, 0x1a, 0xa2, 0xad, + 0xf1, 0x55, 0x6a, 0x6e, 0xd6, 0xbc, 0x60, 0xb6, 0x04, 0x59, 0x87, 0xd9, 0xbe, 0x27, 0xdc, 0x99, + 0x32, 0x9d, 0x21, 0xf1, 0x3e, 0x76, 0x49, 0x4b, 0xb8, 0xb4, 0x0d, 0x99, 0x01, 0x3d, 0xa3, 0xae, + 0x9e, 0x56, 0x7e, 0x04, 0x1b, 0x7c, 0x0f, 0xb2, 0x2e, 0xf5, 0xa8, 0x7b, 0x4a, 0x6d, 0xfd, 0x77, + 0xd9, 0x0a, 0xaa, 0x6a, 0x24, 0x16, 0xe0, 0x0f, 0x21, 0xdd, 0x77, 0xc4, 0x4c, 0x5f, 0xaf, 0xa0, + 0x6a, 0xc1, 0xd4, 0x6b, 0x11, 0xb3, 0xb5, 0xd8, 0xab, 0xda, 0xae, 0x23, 0x66, 0x44, 0xa1, 0xf0, + 0x27, 0x70, 0x67, 0xe2, 0x78, 0x7d, 0x3a, 0x1e, 0x5b, 0x8c, 0x72, 0xdf, 0xd3, 0xa1, 0x82, 0xaa, + 0x9b, 0xe6, 0x76, 0x2d, 0x20, 0xbc, 0x16, 0x11, 0x5e, 0x6b, 0xb3, 0x19, 0x59, 0x84, 0x1a, 0x3f, + 0x82, 0xb4, 0xd4, 0x84, 0xb3, 0x90, 0x3e, 0xb4, 0xb8, 0x57, 0x5c, 0xc3, 0x05, 0x80, 0x43, 0xee, + 0xb5, 0xd9, 0x90, 0x8e, 0xa9, 0x57, 0x44, 0x38, 0x0f, 0xd9, 0x9f, 0x58, 0x63, 0xde, 0x1e, 0x0b, + 0x5e, 0x4c, 0x61, 0x80, 0xf5, 0x1f, 0x73, 0xaf, 0xcf, 0xcf, 0x8a, 0x1a, 0xde, 0x84, 0x8d, 0x23, + 0xcb, 0x71, 0x79, 0xcf, 0x29, 0xa6, 0x8d, 0x1a, 0x64, 0x8f, 0xa8, 0x27, 0xa8, 0xdd, 0x6a, 0xaf, + 0x92, 0x28, 0xe3, 0xaf, 0x28, 0x3a, 0xd0, 0x5c, 0xe9, 0x00, 0x36, 0x20, 0x65, 0xb5, 0xf4, 0x74, + 0x45, 0xab, 0x6e, 0x9a, 0x78, 0xce, 0x48, 0x64, 0x94, 0xa4, 0xac, 0x16, 0x6e, 0x42, 0xc6, 0x61, + 0x36, 0x9d, 0xea, 0x19, 0x05, 0xbb, 0x7f, 0x1e, 0xd6, 0x6c, 0xd7, 0x0e, 0xe4, 0xf3, 0x47, 0x4c, + 0xb8, 0x33, 0x12, 0x60, 0x4b, 0x87, 0x00, 0x73, 0x21, 0x2e, 0x82, 0x76, 0x4c, 0x67, 0xca, 0x17, + 0x8d, 0xc8, 0x25, 0xae, 0x42, 0xe6, 0xd4, 0x1a, 0xfb, 0x81, 0x37, 0x97, 0xdb, 0x0e, 0x00, 0x9f, + 0xa4, 0x7e, 0x80, 0x8c, 0xa7, 0x51, 0x58, 0xe6, 0x6a, 0x61, 0x7d, 0x00, 0xeb, 0x4c, 0xe1, 0x55, + 0xcd, 0x5c, 0xa2, 0xbe, 0xd9, 0x26, 0x21, 0xc2, 0xd8, 0x8b, 0x74, 0x37, 0x2e, 0xea, 0x9e, 0xeb, + 0x59, 0xe2, 0xa6, 0x39, 0xd7, 0xf3, 0x69, 0x9c, 0xab, 0xce, 0x05, 0x3d, 0x45, 0xd0, 0xac, 0x21, + 0x0d, 0x0b, 0x5b, 0x2e, 0x2f, 0xab, 0x69, 0xc3, 0x8e, 0x93, 0x77, 0x43, 0x0d, 0x32, 0x9d, 0xbd, + 0xe5, 0xe9, 0xec, 0x90, 0x54, 0xaf, 0x65, 0xb0, 0x98, 0xcb, 0x4b, 0xad, 0xc8, 0xde, 0x96, 0x56, + 0x10, 0x91, 0xcb, 0x15, 0x98, 0xec, 0x44, 0x0c, 0xc8, 0x9e, 0x74, 0xb9, 0x2f, 0xa8, 0xea, 0xc9, + 0x1c, 0x09, 0x36, 0xc6, 0xcf, 0x63, 0x7e, 0x3b, 0x37, 0xe0, 0x77, 0xae, 0x3d, 0x64, 0x40, 0x8b, + 0x19, 0x30, 0x7e, 0x95, 0x98, 0x28, 0xcd, 0x95, 0xea, 0xa2, 0x00, 0x29, 0x6f, 0x10, 0x8e, 0xae, + 0x94, 0x37, 0xc0, 0x6f, 0x43, 0xce, 0xf3, 0xdd, 0xfe, 0xc8, 0x72, 0x87, 0x34, 0x9c, 0x24, 0x73, + 0x01, 0xae, 0xc0, 0xa6, 0x4d, 0x3d, 0xe1, 0x30, 0x4b, 0x4e, 0x37, 0x3d, 0xa3, 0x14, 0x25, 0x45, + 0xf8, 0x01, 0x14, 0xfa, 0x2e, 0xb5, 0x1d, 0xd1, 0xed, 0x5b, 0xae, 0xdd, 0x65, 0x3c, 0x18, 0x7a, + 0xfb, 0x6b, 0x24, 0x1f, 0xc8, 0x77, 0x2d, 0xd7, 0x3e, 0xe2, 0xf8, 0x3e, 0xe4, 0xfa, 0x23, 0xfa, + 0x0b, 0x9f, 0x4a, 0x48, 0x36, 0x84, 0x64, 0x03, 0xd1, 0x11, 0xc7, 0x75, 0xc8, 0x72, 0xd7, 0x19, + 0x3a, 0xcc, 0x1a, 0xeb, 0x39, 0x45, 0xc4, 0xdd, 0x8b, 0xd3, 0xa9, 0x41, 0x62, 0x50, 0x27, 0x17, + 0x4f, 0x59, 0xe3, 0x9f, 0x29, 0xc8, 0x3f, 0xa1, 0x9e, 0xf8, 0x82, 0xba, 0x9e, 0xc3, 0x59, 0x03, + 0xe7, 0x01, 0x4d, 0xc3, 0x4e, 0x43, 0x53, 0xbc, 0x03, 0xc8, 0x0a, 0xc9, 0xfd, 0xde, 0x5c, 0x67, + 0xf2, 0x00, 0x41, 0x96, 0x44, 0xf5, 0xc2, 0x04, 0x2f, 0x45, 0xf5, 0x24, 0xaa, 0x1f, 0x16, 0xd7, + 0x52, 0x54, 0x1f, 0x7f, 0x00, 0xc8, 0x0e, 0x47, 0xc5, 0x12, 0x54, 0x27, 0xfd, 0xf5, 0x37, 0xef, + 0xac, 0x11, 0x64, 0xe3, 0x02, 0x20, 0xaa, 0xe6, 0x71, 0x66, 0x7f, 0x8d, 0x20, 0x8a, 0x1f, 0x00, + 0x1a, 0x28, 0x0a, 0x97, 0x9e, 0x95, 0xb8, 0x01, 0x36, 0x00, 0x0d, 0x15, 0x8f, 0xcb, 0x06, 0x32, + 0x1a, 0x4a, 0x6f, 0x47, 0x7a, 0xee, 0x6a, 0x6f, 0x47, 0xf8, 0x7d, 0x40, 0xc7, 0x7a, 0x7e, 0x29, + 0xe7, 0x9d, 0xf4, 0xb3, 0x6f, 0xde, 0x41, 0x04, 0x1d, 0x77, 0x32, 0xa0, 0x79, 0xfe, 0xc4, 0xf8, + 0xb5, 0xb6, 0x40, 0xb7, 0x79, 0x5d, 0xba, 0xcd, 0x95, 0xe8, 0x36, 0x57, 0xa2, 0xdb, 0x94, 0x74, + 0xef, 0x7c, 0x17, 0xdd, 0xe6, 0x8d, 0x88, 0x36, 0x5f, 0x17, 0xd1, 0xf8, 0x1e, 0xe4, 0x18, 0x3d, + 0xeb, 0x0e, 0x1c, 0x3a, 0xb6, 0xf5, 0xb7, 0x2a, 0xa8, 0x9a, 0x26, 0x59, 0x46, 0xcf, 0xf6, 0xe4, + 0x3e, 0xca, 0xc2, 0x6f, 0x17, 0xb3, 0xd0, 0xbc, 0x6e, 0x16, 0x9a, 0x2b, 0x65, 0xa1, 0xb9, 0x52, + 0x16, 0x9a, 0x2b, 0x65, 0xa1, 0x79, 0xa3, 0x2c, 0x34, 0x5f, 0x5b, 0x16, 0x3e, 0x02, 0xcc, 0x38, + 0xeb, 0xf6, 0x5d, 0x47, 0x38, 0x7d, 0x6b, 0x1c, 0xa6, 0xe3, 0x37, 0x6a, 0x76, 0x91, 0x22, 0xe3, + 0x6c, 0x37, 0x7c, 0xb2, 0x90, 0x97, 0x7f, 0xa5, 0xa0, 0x94, 0x74, 0xff, 0x90, 0x33, 0xfa, 0x98, + 0xd1, 0xc7, 0x83, 0x2f, 0xe4, 0x4f, 0xf9, 0x2d, 0xcd, 0xd2, 0xad, 0x61, 0xff, 0xdf, 0xeb, 0xf0, + 0xe6, 0x79, 0xf6, 0x8f, 0xd4, 0xaf, 0xd5, 0xf0, 0x96, 0x50, 0xdf, 0x98, 0x37, 0xc4, 0xbb, 0x97, + 0xa3, 0x12, 0x31, 0xdd, 0x92, 0xde, 0xc0, 0x9f, 0xc2, 0xba, 0xc3, 0x18, 0x75, 0x1b, 0x7a, 0x41, + 0x29, 0xaf, 0x7e, 0x67, 0x64, 0xb5, 0x03, 0x85, 0x27, 0xe1, 0xb9, 0x58, 0x83, 0xa9, 0x6f, 0x5d, + 0x4b, 0x83, 0x19, 0x6a, 0x30, 0x4b, 0x7f, 0x40, 0xb0, 0x1e, 0x28, 0x4d, 0xbc, 0x27, 0x69, 0x4b, + 0xdf, 0x93, 0x0e, 0xe4, 0x2b, 0x3f, 0xa3, 0x6e, 0x98, 0xfd, 0xe6, 0xaa, 0x1e, 0x07, 0xff, 0xd4, + 0x1f, 0x12, 0x68, 0x28, 0x3d, 0x94, 0x17, 0x81, 0x48, 0x98, 0x30, 0x9e, 0x8b, 0x8c, 0xab, 0x3b, + 0x59, 0x68, 0x5c, 0xae, 0x4b, 0x7f, 0x8c, 0x7c, 0x35, 0x2f, 0xc0, 0x75, 0xd8, 0xe8, 0x73, 0x9f, + 0x45, 0x97, 0xc4, 0x1c, 0x89, 0xb6, 0x37, 0xf5, 0xd8, 0xfc, 0x6f, 0x78, 0x1c, 0xf5, 0xdf, 0xb7, + 0x8b, 0xfd, 0xd7, 0xfa, 0x7f, 0xff, 0xdd, 0xa2, 0xfe, 0x6b, 0xbd, 0x74, 0xff, 0xb5, 0x5e, 0x71, + 0xff, 0xb5, 0x5e, 0xaa, 0xff, 0xb4, 0xa5, 0xfd, 0xf7, 0xd5, 0xff, 0xac, 0xff, 0x5a, 0x2b, 0xf5, + 0x9f, 0x79, 0x65, 0xff, 0x6d, 0x27, 0x3f, 0x1c, 0x68, 0xe1, 0x47, 0x82, 0xa8, 0x03, 0xff, 0x82, + 0xa0, 0x90, 0xb0, 0xb7, 0xf7, 0xd9, 0xcd, 0xae, 0x43, 0xaf, 0xfd, 0x5a, 0x12, 0xc5, 0xf3, 0x77, + 0xb4, 0xf0, 0x3e, 0xb5, 0xf7, 0x59, 0xe3, 0x67, 0x8e, 0x18, 0x3d, 0x9a, 0x0a, 0xd7, 0x6a, 0xb3, + 0xd9, 0x2b, 0x8d, 0x6d, 0x67, 0x1e, 0x5b, 0x02, 0xd7, 0x66, 0xb3, 0xd8, 0xa3, 0x6b, 0x47, 0xf7, + 0x04, 0xf2, 0xc9, 0xf3, 0xb8, 0x2a, 0x03, 0x40, 0xcb, 0xe9, 0x8b, 0x26, 0x80, 0x25, 0x03, 0x0f, + 0x26, 0xa3, 0x26, 0x27, 0x60, 0x3e, 0x98, 0x80, 0x6a, 0xd7, 0x37, 0xfe, 0x84, 0xa0, 0x28, 0x0d, + 0x7e, 0x7e, 0x62, 0x5b, 0x82, 0xda, 0x4f, 0xa6, 0xc4, 0x3a, 0xc3, 0xf7, 0x01, 0x7a, 0xdc, 0x9e, + 0x75, 0x7b, 0x33, 0x41, 0x3d, 0x65, 0x23, 0x4f, 0x72, 0x52, 0xd2, 0x91, 0x02, 0xfc, 0x00, 0xb6, + 0x2c, 0x5f, 0x8c, 0xba, 0x0e, 0x1b, 0xf0, 0x10, 0x93, 0x52, 0x98, 0x3b, 0x52, 0x7c, 0xc0, 0x06, + 0x3c, 0xc0, 0x95, 0x01, 0x3c, 0x67, 0xc8, 0x2c, 0xe1, 0xbb, 0xd4, 0xd3, 0xb5, 0x8a, 0x56, 0xcd, + 0x93, 0x84, 0x04, 0x97, 0x61, 0x33, 0xbe, 0xbb, 0x74, 0x3f, 0x56, 0x5f, 0x0c, 0xf2, 0x24, 0x17, + 0xdd, 0x5e, 0x3e, 0xc6, 0xef, 0x41, 0x61, 0xfe, 0xbc, 0xf1, 0xd0, 0x6c, 0xe9, 0xbf, 0xcc, 0x2a, + 0x4c, 0x3e, 0xc2, 0x48, 0xa1, 0xf1, 0xa5, 0x06, 0x6f, 0x2c, 0x84, 0xd0, 0xe1, 0xf6, 0x0c, 0x3f, + 0x84, 0xec, 0x84, 0x7a, 0x9e, 0x35, 0x54, 0x11, 0x68, 0x4b, 0x8b, 0x2c, 0x46, 0xc9, 0xee, 0x9e, + 0xd0, 0x09, 0x8f, 0xba, 0x5b, 0xae, 0xa5, 0x0b, 0xc2, 0x99, 0x50, 0xee, 0x8b, 0xee, 0x88, 0x3a, + 0xc3, 0x91, 0x08, 0x79, 0xbc, 0x13, 0x4a, 0xf7, 0x95, 0x10, 0xef, 0x40, 0xc1, 0xe3, 0x13, 0xda, + 0x9d, 0x5f, 0xc5, 0xd2, 0xea, 0x2a, 0x96, 0x97, 0xd2, 0xa3, 0xd0, 0x59, 0xbc, 0x0f, 0xef, 0x2e, + 0xa2, 0xba, 0x97, 0x0c, 0xe6, 0xdf, 0x07, 0x83, 0xf9, 0xed, 0xe4, 0xc9, 0xa3, 0xf3, 0x43, 0xba, + 0x03, 0x6f, 0xd0, 0xa9, 0xa0, 0x4c, 0xd6, 0x48, 0x97, 0xab, 0xcf, 0xc9, 0x9e, 0xfe, 0xed, 0xc6, + 0x15, 0x61, 0x16, 0x63, 0xfc, 0xe3, 0x00, 0x8e, 0x9f, 0x42, 0x79, 0xc1, 0xfc, 0x25, 0x0a, 0xb7, + 0xae, 0x50, 0x78, 0x2f, 0xf1, 0xcb, 0xf1, 0xe8, 0x9c, 0x6e, 0xe3, 0xcf, 0x08, 0xee, 0x26, 0x52, + 0xd2, 0x0e, 0xcb, 0x02, 0xff, 0x10, 0xf2, 0x32, 0xff, 0xd4, 0x55, 0xb5, 0x13, 0x25, 0xa6, 0x54, + 0x1b, 0xf7, 0x26, 0x35, 0x31, 0xad, 0x85, 0xdf, 0xde, 0x6b, 0x3f, 0x55, 0x18, 0x79, 0x82, 0x6c, + 0x7a, 0xf1, 0xda, 0xc3, 0xef, 0xcd, 0x3f, 0xb8, 0xc9, 0x5f, 0xbd, 0x73, 0xa7, 0xf6, 0x28, 0x0d, + 0xbe, 0xc2, 0x2d, 0xd4, 0x55, 0x53, 0x65, 0x2c, 0x51, 0x57, 0xcd, 0x55, 0xeb, 0xea, 0xfd, 0xa0, + 0xac, 0x08, 0x3d, 0xa1, 0x32, 0x88, 0xcf, 0x1d, 0x26, 0x54, 0x91, 0x30, 0x7f, 0x12, 0x78, 0x9e, + 0x26, 0x6a, 0xdd, 0xd9, 0xfb, 0xfa, 0x79, 0x19, 0x3d, 0x7b, 0x5e, 0x46, 0xff, 0x78, 0x5e, 0x46, + 0x5f, 0xbe, 0x28, 0xaf, 0x3d, 0x7b, 0x51, 0x5e, 0xfb, 0xdb, 0x8b, 0xf2, 0xda, 0xd3, 0x0f, 0x87, + 0x8e, 0x18, 0xf9, 0xbd, 0x5a, 0x9f, 0x4f, 0xea, 0x63, 0x87, 0xd1, 0xfa, 0xb8, 0x37, 0xf9, 0xc8, + 0xb3, 0x8f, 0xeb, 0xa7, 0x66, 0x5d, 0xf6, 0xbb, 0x2f, 0x9c, 0x71, 0x3d, 0x6a, 0xfc, 0xde, 0xba, + 0x22, 0xb8, 0xf9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x82, 0x1d, 0xe0, 0x74, 0xdb, 0x18, 0x00, + 0x00, } func (m *Customer1) Marshal() (dAtA []byte, err error) { diff --git a/testutil/testdata/unknonwnproto.proto b/testutil/testdata/unknonwnproto.proto index cdcb58f78e..69918765cb 100644 --- a/testutil/testdata/unknonwnproto.proto +++ b/testutil/testdata/unknonwnproto.proto @@ -3,7 +3,7 @@ package testdata; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; -import "cosmos/tx/v1beta1/tx.proto"; +import "lbm/tx/v1beta1/tx.proto"; option go_package = "github.com/line/lbm-sdk/v2/testutil/testdata"; @@ -297,8 +297,8 @@ message TestUpdatedTxBody { } message TestUpdatedAuthInfo { - repeated cosmos.tx.v1beta1.SignerInfo signer_infos = 1; - cosmos.tx.v1beta1.Fee fee = 2; + repeated lbm.tx.v1beta1.SignerInfo signer_infos = 1; + lbm.tx.v1beta1.Fee fee = 2; bytes new_field_3 = 3; bytes new_field_1024 = 1024; } diff --git a/types/abci.pb.go b/types/abci.pb.go index 63d77171fb..a39b3c8e09 100644 --- a/types/abci.pb.go +++ b/types/abci.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/abci/v1beta1/abci.proto +// source: lbm/base/abci/v1beta1/abci.proto package types @@ -62,7 +62,7 @@ type TxResponse struct { func (m *TxResponse) Reset() { *m = TxResponse{} } func (*TxResponse) ProtoMessage() {} func (*TxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{0} + return fileDescriptor_e5e0ff49e8a57b01, []int{0} } func (m *TxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -103,7 +103,7 @@ type ABCIMessageLog struct { func (m *ABCIMessageLog) Reset() { *m = ABCIMessageLog{} } func (*ABCIMessageLog) ProtoMessage() {} func (*ABCIMessageLog) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{1} + return fileDescriptor_e5e0ff49e8a57b01, []int{1} } func (m *ABCIMessageLog) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -163,7 +163,7 @@ type StringEvent struct { func (m *StringEvent) Reset() { *m = StringEvent{} } func (*StringEvent) ProtoMessage() {} func (*StringEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{2} + return fileDescriptor_e5e0ff49e8a57b01, []int{2} } func (m *StringEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -216,7 +216,7 @@ type Attribute struct { func (m *Attribute) Reset() { *m = Attribute{} } func (*Attribute) ProtoMessage() {} func (*Attribute) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{3} + return fileDescriptor_e5e0ff49e8a57b01, []int{3} } func (m *Attribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -270,7 +270,7 @@ type GasInfo struct { func (m *GasInfo) Reset() { *m = GasInfo{} } func (*GasInfo) ProtoMessage() {} func (*GasInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{4} + return fileDescriptor_e5e0ff49e8a57b01, []int{4} } func (m *GasInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -328,7 +328,7 @@ type Result struct { func (m *Result) Reset() { *m = Result{} } func (*Result) ProtoMessage() {} func (*Result) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{5} + return fileDescriptor_e5e0ff49e8a57b01, []int{5} } func (m *Result) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -367,7 +367,7 @@ type SimulationResponse struct { func (m *SimulationResponse) Reset() { *m = SimulationResponse{} } func (*SimulationResponse) ProtoMessage() {} func (*SimulationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{6} + return fileDescriptor_e5e0ff49e8a57b01, []int{6} } func (m *SimulationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -413,7 +413,7 @@ type MsgData struct { func (m *MsgData) Reset() { *m = MsgData{} } func (*MsgData) ProtoMessage() {} func (*MsgData) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{7} + return fileDescriptor_e5e0ff49e8a57b01, []int{7} } func (m *MsgData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -465,7 +465,7 @@ type TxMsgData struct { func (m *TxMsgData) Reset() { *m = TxMsgData{} } func (*TxMsgData) ProtoMessage() {} func (*TxMsgData) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{8} + return fileDescriptor_e5e0ff49e8a57b01, []int{8} } func (m *TxMsgData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -520,7 +520,7 @@ type SearchTxsResult struct { func (m *SearchTxsResult) Reset() { *m = SearchTxsResult{} } func (*SearchTxsResult) ProtoMessage() {} func (*SearchTxsResult) Descriptor() ([]byte, []int) { - return fileDescriptor_4e37629bc7eb0df8, []int{9} + return fileDescriptor_e5e0ff49e8a57b01, []int{9} } func (m *SearchTxsResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -592,82 +592,80 @@ func (m *SearchTxsResult) GetTxs() []*TxResponse { } func init() { - proto.RegisterType((*TxResponse)(nil), "cosmos.base.abci.v1beta1.TxResponse") - proto.RegisterType((*ABCIMessageLog)(nil), "cosmos.base.abci.v1beta1.ABCIMessageLog") - proto.RegisterType((*StringEvent)(nil), "cosmos.base.abci.v1beta1.StringEvent") - proto.RegisterType((*Attribute)(nil), "cosmos.base.abci.v1beta1.Attribute") - proto.RegisterType((*GasInfo)(nil), "cosmos.base.abci.v1beta1.GasInfo") - proto.RegisterType((*Result)(nil), "cosmos.base.abci.v1beta1.Result") - proto.RegisterType((*SimulationResponse)(nil), "cosmos.base.abci.v1beta1.SimulationResponse") - proto.RegisterType((*MsgData)(nil), "cosmos.base.abci.v1beta1.MsgData") - proto.RegisterType((*TxMsgData)(nil), "cosmos.base.abci.v1beta1.TxMsgData") - proto.RegisterType((*SearchTxsResult)(nil), "cosmos.base.abci.v1beta1.SearchTxsResult") -} - -func init() { - proto.RegisterFile("cosmos/base/abci/v1beta1/abci.proto", fileDescriptor_4e37629bc7eb0df8) -} - -var fileDescriptor_4e37629bc7eb0df8 = []byte{ - // 923 bytes of a gzipped FileDescriptorProto + proto.RegisterType((*TxResponse)(nil), "lbm.base.abci.v1beta1.TxResponse") + proto.RegisterType((*ABCIMessageLog)(nil), "lbm.base.abci.v1beta1.ABCIMessageLog") + proto.RegisterType((*StringEvent)(nil), "lbm.base.abci.v1beta1.StringEvent") + proto.RegisterType((*Attribute)(nil), "lbm.base.abci.v1beta1.Attribute") + proto.RegisterType((*GasInfo)(nil), "lbm.base.abci.v1beta1.GasInfo") + proto.RegisterType((*Result)(nil), "lbm.base.abci.v1beta1.Result") + proto.RegisterType((*SimulationResponse)(nil), "lbm.base.abci.v1beta1.SimulationResponse") + proto.RegisterType((*MsgData)(nil), "lbm.base.abci.v1beta1.MsgData") + proto.RegisterType((*TxMsgData)(nil), "lbm.base.abci.v1beta1.TxMsgData") + proto.RegisterType((*SearchTxsResult)(nil), "lbm.base.abci.v1beta1.SearchTxsResult") +} + +func init() { proto.RegisterFile("lbm/base/abci/v1beta1/abci.proto", fileDescriptor_e5e0ff49e8a57b01) } + +var fileDescriptor_e5e0ff49e8a57b01 = []byte{ + // 920 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x55, 0x31, 0x8f, 0x1b, 0x45, - 0x14, 0xf6, 0xda, 0xce, 0xfa, 0xfc, 0x7c, 0xe1, 0x60, 0x30, 0x64, 0x2f, 0x80, 0xd7, 0xec, 0x25, - 0x92, 0x1b, 0xd6, 0x8a, 0x03, 0x08, 0x5d, 0x11, 0x29, 0x1b, 0x08, 0x39, 0x29, 0xa1, 0x98, 0x73, - 0x84, 0x44, 0x63, 0x8d, 0xed, 0xc9, 0x78, 0x95, 0xdd, 0x1d, 0x6b, 0x67, 0xf6, 0x6e, 0xdd, 0x51, - 0x52, 0x52, 0xa5, 0xa0, 0xa2, 0xe6, 0x97, 0xa4, 0xe3, 0xca, 0x14, 0xc8, 0xc0, 0x5d, 0x97, 0xf2, - 0x7e, 0x01, 0x9a, 0x99, 0xb5, 0xbd, 0x47, 0xe4, 0xeb, 0xde, 0xfb, 0xde, 0x9b, 0x37, 0x6f, 0xbe, - 0xef, 0xf3, 0x1a, 0x0e, 0x26, 0x5c, 0xc4, 0x5c, 0xf4, 0xc7, 0x44, 0xd0, 0x3e, 0x19, 0x4f, 0xc2, - 0xfe, 0xc9, 0xbd, 0x31, 0x95, 0xe4, 0x9e, 0x4e, 0xfc, 0x79, 0xca, 0x25, 0x47, 0x8e, 0x69, 0xf2, - 0x55, 0x93, 0xaf, 0xf1, 0xa2, 0xe9, 0x76, 0x9b, 0x71, 0xc6, 0x75, 0x53, 0x5f, 0x45, 0xa6, 0xff, - 0xf6, 0x3e, 0x17, 0x32, 0x25, 0x13, 0x9e, 0x98, 0x89, 0x72, 0x31, 0xa7, 0x62, 0x55, 0x62, 0x9c, - 0xb3, 0x88, 0xf6, 0x75, 0x36, 0xce, 0x5e, 0xf4, 0x49, 0xb2, 0x30, 0x25, 0xef, 0x55, 0x0d, 0x60, - 0x98, 0x63, 0x2a, 0xe6, 0x3c, 0x11, 0x14, 0x7d, 0x0c, 0xf6, 0x8c, 0x86, 0x6c, 0x26, 0x1d, 0xab, - 0x6b, 0xf5, 0x6a, 0xb8, 0xc8, 0x90, 0x07, 0xb6, 0xcc, 0x67, 0x44, 0xcc, 0x9c, 0x6a, 0xd7, 0xea, - 0x35, 0x03, 0x38, 0x5f, 0xba, 0xf6, 0x30, 0x7f, 0x42, 0xc4, 0x0c, 0x17, 0x15, 0xf4, 0x29, 0x34, - 0x27, 0x7c, 0x4a, 0xc5, 0x9c, 0x4c, 0xa8, 0x53, 0x53, 0x6d, 0x78, 0x03, 0x20, 0x04, 0x75, 0x95, - 0x38, 0xf5, 0xae, 0xd5, 0xbb, 0x89, 0x75, 0xac, 0xb0, 0x29, 0x91, 0xc4, 0xb9, 0xa1, 0x9b, 0x75, - 0x8c, 0x6e, 0x41, 0x23, 0x25, 0xa7, 0xa3, 0x88, 0x33, 0xc7, 0xd6, 0xb0, 0x9d, 0x92, 0xd3, 0xa7, - 0x9c, 0xa1, 0xe7, 0x50, 0x8f, 0x38, 0x13, 0x4e, 0xa3, 0x5b, 0xeb, 0xb5, 0x06, 0x3d, 0x7f, 0x1b, - 0x3d, 0xfe, 0xc3, 0xe0, 0xd1, 0xd1, 0x33, 0x2a, 0x04, 0x61, 0xf4, 0x29, 0x67, 0xc1, 0xad, 0xd7, - 0x4b, 0xb7, 0xf2, 0xc7, 0xdf, 0xee, 0xde, 0x55, 0x5c, 0x60, 0x3d, 0x4e, 0xed, 0x10, 0x26, 0x2f, - 0xb8, 0xb3, 0x63, 0x76, 0x50, 0x31, 0xfa, 0x0c, 0x80, 0x11, 0x31, 0x3a, 0x25, 0x89, 0xa4, 0x53, - 0xa7, 0xa9, 0x99, 0x68, 0x32, 0x22, 0x7e, 0xd4, 0x00, 0xda, 0x87, 0x1d, 0x55, 0xce, 0x04, 0x9d, - 0x3a, 0xa0, 0x8b, 0x0d, 0x46, 0xc4, 0x73, 0x41, 0xa7, 0xe8, 0x0e, 0x54, 0x65, 0xee, 0xb4, 0xba, - 0x56, 0xaf, 0x35, 0x68, 0xfb, 0x86, 0x76, 0x7f, 0x45, 0xbb, 0xff, 0x30, 0x59, 0xe0, 0xaa, 0xcc, - 0x15, 0x53, 0x32, 0x8c, 0xa9, 0x90, 0x24, 0x9e, 0x3b, 0xbb, 0x86, 0xa9, 0x35, 0x70, 0x58, 0xff, - 0xe5, 0x77, 0xb7, 0xe2, 0xfd, 0x66, 0xc1, 0x7b, 0x57, 0x37, 0x46, 0x9f, 0x40, 0x33, 0x16, 0x6c, - 0x14, 0x26, 0x53, 0x9a, 0x6b, 0x7d, 0x6e, 0xe2, 0x9d, 0x58, 0xb0, 0x23, 0x95, 0xa3, 0xf7, 0xa1, - 0xa6, 0x38, 0xd3, 0xf2, 0x60, 0x15, 0xa2, 0x63, 0xb0, 0xe9, 0x09, 0x4d, 0xa4, 0x70, 0x6a, 0x9a, - 0xb2, 0xbb, 0xdb, 0x29, 0x3b, 0x96, 0x69, 0x98, 0xb0, 0xef, 0x54, 0x77, 0xd0, 0x2e, 0xf8, 0xda, - 0x2d, 0x81, 0x02, 0x17, 0xa3, 0x0e, 0xeb, 0x3f, 0xff, 0xd5, 0xb5, 0xbc, 0x14, 0x5a, 0xa5, 0xaa, - 0xe2, 0x50, 0xd9, 0x4d, 0xef, 0xd4, 0xc4, 0x3a, 0x46, 0x47, 0x00, 0x44, 0xca, 0x34, 0x1c, 0x67, - 0x92, 0x0a, 0xa7, 0xaa, 0x37, 0x38, 0xb8, 0x46, 0xb4, 0x55, 0x6f, 0x50, 0x57, 0xf7, 0xe3, 0xd2, - 0xe1, 0xe2, 0xce, 0xfb, 0xd0, 0x5c, 0x37, 0xa9, 0xd7, 0xbe, 0xa4, 0x8b, 0xe2, 0x42, 0x15, 0xa2, - 0x36, 0xdc, 0x38, 0x21, 0x51, 0x46, 0x0b, 0x06, 0x4c, 0xe2, 0x71, 0x68, 0x7c, 0x4f, 0xc4, 0x91, - 0x12, 0xf5, 0xcb, 0x2b, 0xa2, 0xaa, 0x93, 0xf5, 0xe0, 0xa3, 0xcb, 0xa5, 0xfb, 0xc1, 0x82, 0xc4, - 0xd1, 0xa1, 0xb7, 0xa9, 0x79, 0x65, 0xad, 0xfd, 0x92, 0xd6, 0x55, 0x7d, 0xe6, 0xc3, 0xcb, 0xa5, - 0xbb, 0xb7, 0x39, 0xa3, 0x2a, 0xde, 0xda, 0x00, 0xde, 0x0c, 0x6c, 0x4c, 0x45, 0x16, 0xc9, 0xb5, - 0xb9, 0xd5, 0x4d, 0xbb, 0x85, 0xb9, 0xdf, 0x15, 0x69, 0xf0, 0x3f, 0x91, 0xda, 0xfe, 0xea, 0x67, - 0x6c, 0xf8, 0x31, 0x9a, 0x18, 0x4e, 0xd6, 0x1a, 0x68, 0x83, 0xbc, 0xb2, 0x00, 0x1d, 0x87, 0x71, - 0x16, 0x11, 0x19, 0xf2, 0x64, 0xfd, 0x0b, 0x7e, 0x6c, 0x16, 0xd6, 0x9e, 0xb6, 0xb4, 0x0f, 0x3f, - 0xdf, 0xce, 0x7a, 0xc1, 0x4d, 0xb0, 0xa3, 0xe6, 0x9f, 0x2d, 0x5d, 0x4b, 0x3f, 0x44, 0xd3, 0xf5, - 0x0d, 0xd8, 0xa9, 0x7e, 0x88, 0xde, 0xb6, 0x35, 0xe8, 0x6e, 0x9f, 0x62, 0x1e, 0x8c, 0x8b, 0x7e, - 0xef, 0x01, 0x34, 0x9e, 0x09, 0xf6, 0xad, 0x7a, 0xef, 0x3e, 0x28, 0x83, 0x8e, 0x4a, 0xe6, 0x68, - 0xc4, 0x82, 0x0d, 0x95, 0x3f, 0x56, 0xf4, 0x54, 0x37, 0xf4, 0x14, 0x42, 0x3f, 0x81, 0xe6, 0x30, - 0x5f, 0x4d, 0xf8, 0x6a, 0xcd, 0x62, 0xed, 0xfa, 0xa7, 0x14, 0x07, 0xae, 0x4c, 0xfa, 0xb3, 0x0a, - 0x7b, 0xc7, 0x94, 0xa4, 0x93, 0xd9, 0x30, 0x17, 0x85, 0x2c, 0x8f, 0xa1, 0x25, 0xb9, 0x24, 0xd1, - 0x68, 0xc2, 0xb3, 0x44, 0x16, 0x3e, 0xb8, 0xfb, 0x76, 0xe9, 0x96, 0xe1, 0xcb, 0xa5, 0x8b, 0x8c, - 0xc4, 0x25, 0xd0, 0xc3, 0xa0, 0xb3, 0x47, 0x2a, 0x51, 0x7e, 0x33, 0x13, 0xb4, 0x2b, 0xb0, 0x49, - 0xd4, 0xf4, 0x39, 0x61, 0x74, 0x94, 0x64, 0xf1, 0x98, 0xa6, 0xfa, 0x2b, 0x58, 0x4c, 0x2f, 0xc1, - 0x9b, 0xe9, 0x25, 0xd0, 0xc3, 0xa0, 0xb2, 0x1f, 0x74, 0x82, 0x02, 0xd0, 0xd9, 0x48, 0x5f, 0xa8, - 0xbf, 0x99, 0xf5, 0xe0, 0xe0, 0xed, 0xd2, 0x2d, 0xa1, 0x1b, 0xeb, 0x6e, 0x30, 0x0f, 0x37, 0x55, - 0x32, 0x54, 0xb1, 0xda, 0x30, 0x0a, 0xe3, 0x50, 0xea, 0xcf, 0x6b, 0x1d, 0x9b, 0x04, 0x7d, 0x0d, - 0x35, 0x99, 0x0b, 0xc7, 0xd6, 0x7c, 0xde, 0xd9, 0xce, 0xe7, 0xe6, 0x4f, 0x01, 0xab, 0x03, 0x86, - 0xd1, 0xe0, 0xc1, 0x9b, 0x7f, 0x3b, 0x95, 0xd7, 0xe7, 0x1d, 0xeb, 0xec, 0xbc, 0x63, 0xfd, 0x73, - 0xde, 0xb1, 0x7e, 0xbd, 0xe8, 0x54, 0xce, 0x2e, 0x3a, 0x95, 0x37, 0x17, 0x9d, 0xca, 0x4f, 0x5d, - 0x16, 0xca, 0x59, 0x36, 0xf6, 0x27, 0x3c, 0xee, 0x47, 0x61, 0x42, 0xfb, 0xd1, 0x38, 0xfe, 0x42, - 0x4c, 0x5f, 0xf6, 0x4f, 0x06, 0xe6, 0xff, 0x68, 0x6c, 0xeb, 0x6f, 0xe1, 0xfd, 0xff, 0x02, 0x00, - 0x00, 0xff, 0xff, 0xfc, 0xf8, 0x4c, 0x7f, 0x02, 0x07, 0x00, 0x00, + 0x14, 0xf6, 0xda, 0xce, 0xfa, 0xfc, 0x7c, 0xe1, 0x60, 0x70, 0xc8, 0x5e, 0x20, 0x5e, 0xb3, 0x10, + 0xc9, 0x0d, 0x6b, 0xc5, 0x07, 0xcd, 0x15, 0x91, 0xb2, 0x47, 0x02, 0x27, 0x25, 0x08, 0xcd, 0x19, + 0x21, 0xd1, 0x58, 0xb3, 0xf6, 0x64, 0xbc, 0xca, 0xee, 0x8e, 0xe5, 0x19, 0xdf, 0xd9, 0x1d, 0x25, + 0x65, 0x24, 0x0a, 0x5a, 0x6a, 0x7e, 0x49, 0x0a, 0x8a, 0x2b, 0x53, 0x20, 0x03, 0x77, 0xdd, 0x95, + 0xf7, 0x0b, 0xd0, 0xbc, 0x5d, 0xdb, 0x7b, 0x80, 0xd3, 0xbd, 0xef, 0x7b, 0x6f, 0xdf, 0xcc, 0xfb, + 0xbe, 0xe7, 0x31, 0xb4, 0xe3, 0x30, 0xe9, 0x86, 0x4c, 0xf1, 0x2e, 0x0b, 0x87, 0x51, 0xf7, 0xf4, + 0x61, 0xc8, 0x35, 0x7b, 0x88, 0xc0, 0x9f, 0x4c, 0xa5, 0x96, 0xe4, 0x4e, 0x1c, 0x26, 0xbe, 0xa9, + 0xf0, 0x91, 0xcc, 0x2b, 0xee, 0x35, 0x85, 0x14, 0x12, 0x2b, 0xba, 0x26, 0xca, 0x8a, 0xef, 0xed, + 0x4b, 0xa5, 0xa7, 0x6c, 0x28, 0xd3, 0xac, 0x9d, 0x5e, 0x4c, 0xb8, 0x5a, 0xa5, 0x84, 0x94, 0x22, + 0xe6, 0x5d, 0x44, 0xe1, 0xec, 0x45, 0x97, 0xa5, 0x8b, 0x2c, 0xe5, 0xfd, 0x5c, 0x01, 0xe8, 0xcf, + 0x29, 0x57, 0x13, 0x99, 0x2a, 0x4e, 0x3e, 0x00, 0x7b, 0xcc, 0x23, 0x31, 0xd6, 0x8e, 0xd5, 0xb6, + 0x3a, 0x15, 0x9a, 0x23, 0xe2, 0x81, 0xad, 0xe7, 0x63, 0xa6, 0xc6, 0x4e, 0xb9, 0x6d, 0x75, 0xea, + 0x01, 0x5c, 0x2c, 0x5d, 0xbb, 0x3f, 0xff, 0x9a, 0xa9, 0x31, 0xcd, 0x33, 0xe4, 0x23, 0xa8, 0x0f, + 0xe5, 0x88, 0xab, 0x09, 0x1b, 0x72, 0xa7, 0x62, 0xca, 0xe8, 0x86, 0x20, 0x04, 0xaa, 0x06, 0x38, + 0xd5, 0xb6, 0xd5, 0xb9, 0x4d, 0x31, 0x36, 0xdc, 0x88, 0x69, 0xe6, 0xdc, 0xc2, 0x62, 0x8c, 0xc9, + 0x5d, 0xa8, 0x4d, 0xd9, 0xd9, 0x20, 0x96, 0xc2, 0xb1, 0x91, 0xb6, 0xa7, 0xec, 0xec, 0x99, 0x14, + 0x84, 0x42, 0x35, 0x96, 0x42, 0x39, 0xb5, 0x76, 0xa5, 0xd3, 0xe8, 0x3d, 0xf0, 0xff, 0x57, 0x1b, + 0xff, 0x71, 0x70, 0x74, 0xfc, 0x9c, 0x2b, 0xc5, 0x04, 0x7f, 0x26, 0x45, 0x70, 0xf7, 0xf5, 0xd2, + 0x2d, 0xfd, 0xf6, 0xa7, 0xbb, 0x77, 0x93, 0x57, 0x14, 0x7b, 0x99, 0x0b, 0x44, 0xe9, 0x0b, 0xe9, + 0xec, 0x64, 0x17, 0x30, 0x31, 0xb9, 0x0f, 0x20, 0x98, 0x1a, 0x9c, 0xb1, 0x54, 0xf3, 0x91, 0x53, + 0x47, 0x19, 0xea, 0x82, 0xa9, 0xef, 0x91, 0x20, 0xfb, 0xb0, 0x63, 0xd2, 0x33, 0xc5, 0x47, 0x0e, + 0x60, 0xb2, 0x26, 0x98, 0xfa, 0x4e, 0xf1, 0x11, 0xf9, 0x14, 0xca, 0x7a, 0xee, 0x34, 0xda, 0x56, + 0xa7, 0xd1, 0x6b, 0xfa, 0x99, 0xe6, 0xfe, 0x4a, 0x73, 0xff, 0x71, 0xba, 0xa0, 0x65, 0x3d, 0x37, + 0x32, 0xe9, 0x28, 0xe1, 0x4a, 0xb3, 0x64, 0xe2, 0xec, 0x66, 0x32, 0xad, 0x89, 0xc3, 0xea, 0x4f, + 0xbf, 0xba, 0x25, 0xef, 0x17, 0x0b, 0xde, 0xb9, 0x79, 0x63, 0xf2, 0x21, 0xd4, 0x13, 0x25, 0x06, + 0x51, 0x3a, 0xe2, 0x73, 0x34, 0xe7, 0x36, 0xdd, 0x49, 0x94, 0x38, 0x36, 0x98, 0xbc, 0x0b, 0x15, + 0x23, 0x18, 0x7a, 0x43, 0x4d, 0x48, 0xbe, 0x05, 0x9b, 0x9f, 0xf2, 0x54, 0x2b, 0xa7, 0x82, 0x7a, + 0x79, 0x5b, 0xf4, 0x3a, 0xd1, 0xd3, 0x28, 0x15, 0x4f, 0x4c, 0x69, 0xd0, 0xcc, 0xc5, 0xda, 0x2d, + 0x90, 0x8a, 0xe6, 0x7d, 0x0e, 0xab, 0x3f, 0xfe, 0xd1, 0xb6, 0x3c, 0x09, 0x8d, 0x42, 0xd6, 0x08, + 0x68, 0x16, 0x0d, 0x2f, 0x54, 0xa7, 0x18, 0x93, 0xa7, 0x00, 0x4c, 0xeb, 0x69, 0x14, 0xce, 0x34, + 0x57, 0x4e, 0x19, 0x8f, 0x6f, 0x6f, 0xb3, 0x6b, 0x55, 0x18, 0x54, 0xcd, 0xe1, 0xb4, 0xf0, 0x65, + 0x7e, 0xe0, 0x01, 0xd4, 0xd7, 0x45, 0x66, 0xce, 0x97, 0x7c, 0x91, 0x9f, 0x66, 0x42, 0xd2, 0x84, + 0x5b, 0xa7, 0x2c, 0x9e, 0xf1, 0x7c, 0xf6, 0x0c, 0x78, 0x12, 0x6a, 0x5f, 0x31, 0x75, 0x6c, 0xec, + 0xfc, 0xfc, 0x86, 0x9d, 0xe6, 0xcb, 0x6a, 0x70, 0xe7, 0x7a, 0xe9, 0xbe, 0xb7, 0x60, 0x49, 0x7c, + 0xe8, 0x6d, 0x72, 0x5e, 0xd1, 0x65, 0xbf, 0xe0, 0x72, 0x19, 0xbf, 0x79, 0xff, 0x7a, 0xe9, 0xee, + 0x6d, 0xbe, 0x31, 0x19, 0x6f, 0x6d, 0xbd, 0x37, 0x06, 0x9b, 0x72, 0x35, 0x8b, 0xf5, 0x7a, 0xa7, + 0xcd, 0x49, 0xbb, 0xf9, 0x4e, 0xff, 0xd7, 0x9e, 0xde, 0xbf, 0xec, 0x69, 0xfa, 0xab, 0x5f, 0x6f, + 0xa6, 0x4f, 0x66, 0x48, 0xa6, 0xc9, 0xda, 0x00, 0x5c, 0x8d, 0x57, 0x16, 0x90, 0x93, 0x28, 0x99, + 0xc5, 0x4c, 0x47, 0x32, 0x5d, 0xff, 0x70, 0x8f, 0xb2, 0x0b, 0xe3, 0x36, 0x5b, 0xb8, 0x81, 0xad, + 0x2d, 0x92, 0xe7, 0xc2, 0x04, 0x3b, 0xa6, 0xf9, 0xf9, 0xd2, 0xb5, 0x70, 0x0a, 0xd4, 0xea, 0x0b, + 0xb0, 0xa7, 0x38, 0x05, 0x5e, 0xb5, 0xd1, 0xbb, 0xbf, 0xa5, 0x45, 0x36, 0x2a, 0xcd, 0x8b, 0xbd, + 0x47, 0x50, 0x7b, 0xae, 0xc4, 0x97, 0x66, 0xd2, 0x7d, 0x30, 0x4b, 0x39, 0x28, 0xec, 0x44, 0x2d, + 0x51, 0xa2, 0x6f, 0xd6, 0x62, 0x25, 0x4c, 0x79, 0x23, 0x4c, 0x6e, 0xf1, 0x13, 0xa8, 0xf7, 0xe7, + 0xab, 0x0e, 0xbd, 0xb5, 0x7e, 0x95, 0xb7, 0x0c, 0x91, 0x57, 0xdf, 0x68, 0xf3, 0x7b, 0x19, 0xf6, + 0x4e, 0x38, 0x9b, 0x0e, 0xc7, 0xfd, 0xb9, 0xca, 0xdd, 0x78, 0x0a, 0x0d, 0x2d, 0x35, 0x8b, 0x07, + 0x43, 0x39, 0x4b, 0x75, 0x6e, 0xff, 0x83, 0xab, 0xa5, 0x5b, 0xa4, 0xaf, 0x97, 0x2e, 0xc9, 0x9c, + 0x2d, 0x90, 0x1e, 0x05, 0x44, 0x47, 0x06, 0x98, 0x35, 0xcb, 0x3a, 0xe0, 0x32, 0xd0, 0x0c, 0x98, + 0xee, 0x13, 0x26, 0xf8, 0x20, 0x9d, 0x25, 0x21, 0x9f, 0xe2, 0x9b, 0x97, 0x77, 0x2f, 0xd0, 0x9b, + 0xee, 0x05, 0xd2, 0xa3, 0x60, 0xd0, 0x37, 0x08, 0x48, 0x00, 0x88, 0x06, 0x78, 0x20, 0xbe, 0x90, + 0xd5, 0xe0, 0x93, 0xab, 0xa5, 0x5b, 0x60, 0x37, 0x1b, 0xbb, 0xe1, 0x3c, 0x5a, 0x37, 0xa0, 0x6f, + 0x62, 0x73, 0xc3, 0x38, 0x4a, 0x22, 0x8d, 0x8f, 0x69, 0x95, 0x66, 0x80, 0x1c, 0x40, 0x45, 0xcf, + 0x95, 0x63, 0xa3, 0x98, 0x1f, 0x6f, 0x11, 0x73, 0xf3, 0xfe, 0x53, 0x53, 0x9d, 0xc9, 0x19, 0x3c, + 0x7a, 0xf3, 0x77, 0xab, 0xf4, 0xfa, 0xa2, 0x65, 0x9d, 0x5f, 0xb4, 0xac, 0xbf, 0x2e, 0x5a, 0xd6, + 0xab, 0xcb, 0x56, 0xe9, 0xfc, 0xb2, 0x55, 0x7a, 0x73, 0xd9, 0x2a, 0xfd, 0xd0, 0x16, 0x91, 0x1e, + 0xcf, 0x42, 0x7f, 0x28, 0x93, 0x6e, 0x1c, 0xa5, 0xbc, 0x1b, 0x87, 0xc9, 0x67, 0x6a, 0xf4, 0xb2, + 0x7b, 0xda, 0xcb, 0xfe, 0x7a, 0x42, 0x1b, 0x5f, 0xbe, 0x83, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, + 0x38, 0x7f, 0x63, 0x64, 0xe7, 0x06, 0x00, 0x00, } func (m *TxResponse) Marshal() (dAtA []byte, err error) { diff --git a/types/codec.go b/types/codec.go index 18513c0b12..ff96983412 100644 --- a/types/codec.go +++ b/types/codec.go @@ -13,8 +13,8 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { // RegisterInterfaces registers the sdk message type. func RegisterInterfaces(registry types.InterfaceRegistry) { - registry.RegisterInterface("cosmos.base.v1beta1.Msg", (*Msg)(nil)) + registry.RegisterInterface("lbm.base.v1beta1.Msg", (*Msg)(nil)) // the interface name for MsgRequest is ServiceMsg because this is most useful for clients // to understand - it will be the way for clients to introspect on available Msg service methods - registry.RegisterInterface("cosmos.base.v1beta1.ServiceMsg", (*MsgRequest)(nil)) + registry.RegisterInterface("lbm.base.v1beta1.ServiceMsg", (*MsgRequest)(nil)) } diff --git a/types/coin.pb.go b/types/coin.pb.go index c197cca7d6..d752c900fb 100644 --- a/types/coin.pb.go +++ b/types/coin.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/v1beta1/coin.proto +// source: lbm/base/v1beta1/coin.proto package types @@ -35,7 +35,7 @@ type Coin struct { func (m *Coin) Reset() { *m = Coin{} } func (*Coin) ProtoMessage() {} func (*Coin) Descriptor() ([]byte, []int) { - return fileDescriptor_189a96714eafc2df, []int{0} + return fileDescriptor_1fe2ea6907735b88, []int{0} } func (m *Coin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ type DecCoin struct { func (m *DecCoin) Reset() { *m = DecCoin{} } func (*DecCoin) ProtoMessage() {} func (*DecCoin) Descriptor() ([]byte, []int) { - return fileDescriptor_189a96714eafc2df, []int{1} + return fileDescriptor_1fe2ea6907735b88, []int{1} } func (m *DecCoin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +127,7 @@ type IntProto struct { func (m *IntProto) Reset() { *m = IntProto{} } func (*IntProto) ProtoMessage() {} func (*IntProto) Descriptor() ([]byte, []int) { - return fileDescriptor_189a96714eafc2df, []int{2} + return fileDescriptor_1fe2ea6907735b88, []int{2} } func (m *IntProto) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -164,7 +164,7 @@ type DecProto struct { func (m *DecProto) Reset() { *m = DecProto{} } func (*DecProto) ProtoMessage() {} func (*DecProto) Descriptor() ([]byte, []int) { - return fileDescriptor_189a96714eafc2df, []int{3} + return fileDescriptor_1fe2ea6907735b88, []int{3} } func (m *DecProto) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -194,33 +194,33 @@ func (m *DecProto) XXX_DiscardUnknown() { var xxx_messageInfo_DecProto proto.InternalMessageInfo func init() { - proto.RegisterType((*Coin)(nil), "cosmos.base.v1beta1.Coin") - proto.RegisterType((*DecCoin)(nil), "cosmos.base.v1beta1.DecCoin") - proto.RegisterType((*IntProto)(nil), "cosmos.base.v1beta1.IntProto") - proto.RegisterType((*DecProto)(nil), "cosmos.base.v1beta1.DecProto") -} - -func init() { proto.RegisterFile("cosmos/base/v1beta1/coin.proto", fileDescriptor_189a96714eafc2df) } - -var fileDescriptor_189a96714eafc2df = []byte{ - // 268 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, - 0x4f, 0xce, 0xcf, 0xcc, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xc8, 0xeb, 0x81, - 0xe4, 0xf5, 0xa0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x79, 0x7d, 0x10, 0x0b, 0xa2, - 0x54, 0xc9, 0x9d, 0x8b, 0xc5, 0x39, 0x3f, 0x33, 0x4f, 0x48, 0x84, 0x8b, 0x35, 0x25, 0x35, 0x2f, - 0x3f, 0x57, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xc2, 0x11, 0x52, 0xe6, 0x62, 0x4b, 0xcc, - 0xcd, 0x2f, 0xcd, 0x2b, 0x91, 0x60, 0x02, 0x09, 0x3b, 0x71, 0x9f, 0xb8, 0x27, 0xcf, 0x70, 0xeb, - 0x9e, 0x3c, 0xb3, 0x67, 0x5e, 0x49, 0x10, 0x54, 0xca, 0x8a, 0xe5, 0xc5, 0x02, 0x79, 0x46, 0x25, - 0x2f, 0x2e, 0x76, 0x97, 0xd4, 0x64, 0x72, 0xcc, 0x72, 0x49, 0x4d, 0x46, 0x33, 0x4b, 0x93, 0x8b, - 0xc3, 0x33, 0xaf, 0x24, 0x00, 0xec, 0x17, 0x59, 0x2e, 0xe6, 0xcc, 0xbc, 0x12, 0x88, 0x51, 0xa8, - 0xf6, 0x83, 0xc4, 0x41, 0x4a, 0x5d, 0x52, 0x93, 0xe1, 0x4a, 0x53, 0x52, 0x93, 0xd1, 0x95, 0x82, - 0x8c, 0x07, 0x89, 0x3b, 0x39, 0xdd, 0x78, 0x28, 0xc7, 0xd0, 0xf0, 0x48, 0x8e, 0xe1, 0xc4, 0x23, - 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, - 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x14, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, - 0x92, 0xf3, 0x73, 0xf5, 0x73, 0x32, 0xf3, 0x52, 0xf5, 0x73, 0x92, 0x72, 0x75, 0x8b, 0x53, 0xb2, - 0xf5, 0xcb, 0x8c, 0xf4, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xa1, 0x66, 0x0c, 0x08, - 0x00, 0x00, 0xff, 0xff, 0x5c, 0xc0, 0x3e, 0x64, 0x82, 0x01, 0x00, 0x00, + proto.RegisterType((*Coin)(nil), "lbm.base.v1beta1.Coin") + proto.RegisterType((*DecCoin)(nil), "lbm.base.v1beta1.DecCoin") + proto.RegisterType((*IntProto)(nil), "lbm.base.v1beta1.IntProto") + proto.RegisterType((*DecProto)(nil), "lbm.base.v1beta1.DecProto") +} + +func init() { proto.RegisterFile("lbm/base/v1beta1/coin.proto", fileDescriptor_1fe2ea6907735b88) } + +var fileDescriptor_1fe2ea6907735b88 = []byte{ + // 266 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xce, 0x49, 0xca, 0xd5, + 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0xce, 0xcf, + 0xcc, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc8, 0x49, 0xca, 0xd5, 0x03, 0x49, 0xea, + 0x41, 0x25, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x92, 0xfa, 0x20, 0x16, 0x44, 0x9d, 0x92, + 0x3b, 0x17, 0x8b, 0x73, 0x7e, 0x66, 0x9e, 0x90, 0x08, 0x17, 0x6b, 0x4a, 0x6a, 0x5e, 0x7e, 0xae, + 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x67, 0x10, 0x84, 0x23, 0xa4, 0xcc, 0xc5, 0x96, 0x98, 0x9b, 0x5f, + 0x9a, 0x57, 0x22, 0xc1, 0x04, 0x12, 0x76, 0xe2, 0x3e, 0x71, 0x4f, 0x9e, 0xe1, 0xd6, 0x3d, 0x79, + 0x66, 0xcf, 0xbc, 0x92, 0x20, 0xa8, 0x94, 0x15, 0xcb, 0x8b, 0x05, 0xf2, 0x8c, 0x4a, 0x5e, 0x5c, + 0xec, 0x2e, 0xa9, 0xc9, 0xe4, 0x98, 0xe5, 0x92, 0x9a, 0x8c, 0x66, 0x96, 0x26, 0x17, 0x87, 0x67, + 0x5e, 0x49, 0x00, 0xd8, 0x23, 0xb2, 0x5c, 0xcc, 0x99, 0x79, 0x25, 0x10, 0xa3, 0x50, 0xed, 0x07, + 0x89, 0x83, 0x94, 0xba, 0xa4, 0x26, 0xc3, 0x95, 0xa6, 0xa4, 0x26, 0xa3, 0x2b, 0x05, 0x19, 0x0f, + 0x12, 0x77, 0x72, 0xba, 0xf1, 0x50, 0x8e, 0xa1, 0xe1, 0x91, 0x1c, 0xc3, 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, 0x29, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, + 0xe7, 0xea, 0xe7, 0x64, 0xe6, 0xa5, 0xea, 0xe7, 0x24, 0xe5, 0xea, 0x16, 0xa7, 0x64, 0xeb, 0x97, + 0x19, 0xe9, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x43, 0xcd, 0x18, 0x10, 0x00, 0x00, + 0xff, 0xff, 0x4d, 0x68, 0x8b, 0x56, 0x7c, 0x01, 0x00, 0x00, } func (this *Coin) Equal(that interface{}) bool { diff --git a/types/kv/kv.pb.go b/types/kv/kv.pb.go index e06905d4d7..a92c9578ed 100644 --- a/types/kv/kv.pb.go +++ b/types/kv/kv.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/kv/v1beta1/kv.proto +// source: lbm/base/kv/v1beta1/kv.proto package kv @@ -32,7 +32,7 @@ func (m *Pairs) Reset() { *m = Pairs{} } func (m *Pairs) String() string { return proto.CompactTextString(m) } func (*Pairs) ProtoMessage() {} func (*Pairs) Descriptor() ([]byte, []int) { - return fileDescriptor_a44e87fe7182bb73, []int{0} + return fileDescriptor_e0cdecf986573480, []int{0} } func (m *Pairs) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *Pair) Reset() { *m = Pair{} } func (m *Pair) String() string { return proto.CompactTextString(m) } func (*Pair) ProtoMessage() {} func (*Pair) Descriptor() ([]byte, []int) { - return fileDescriptor_a44e87fe7182bb73, []int{1} + return fileDescriptor_e0cdecf986573480, []int{1} } func (m *Pair) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,29 +122,29 @@ func (m *Pair) GetValue() []byte { } func init() { - proto.RegisterType((*Pairs)(nil), "cosmos.base.kv.v1beta1.Pairs") - proto.RegisterType((*Pair)(nil), "cosmos.base.kv.v1beta1.Pair") + proto.RegisterType((*Pairs)(nil), "lbm.base.kv.v1beta1.Pairs") + proto.RegisterType((*Pair)(nil), "lbm.base.kv.v1beta1.Pair") } -func init() { proto.RegisterFile("cosmos/base/kv/v1beta1/kv.proto", fileDescriptor_a44e87fe7182bb73) } +func init() { proto.RegisterFile("lbm/base/kv/v1beta1/kv.proto", fileDescriptor_e0cdecf986573480) } -var fileDescriptor_a44e87fe7182bb73 = []byte{ - // 228 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0xcf, 0x2e, 0xd3, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, - 0x49, 0x34, 0xd4, 0xcf, 0x2e, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x83, 0x28, 0xd0, - 0x03, 0x29, 0xd0, 0xcb, 0x2e, 0xd3, 0x83, 0x2a, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, - 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0x95, 0x1c, 0xb9, 0x58, 0x03, 0x12, 0x33, 0x8b, 0x8a, 0x85, 0x2c, - 0xb8, 0x58, 0x0b, 0x40, 0x0c, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x19, 0x3d, 0xec, 0xc6, - 0xe8, 0x81, 0x54, 0x3b, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0xd1, 0xa0, 0xa4, 0xc7, 0xc5, - 0x02, 0x12, 0x14, 0x12, 0xe0, 0x62, 0xce, 0x4e, 0xad, 0x94, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x09, - 0x02, 0x31, 0x85, 0x44, 0xb8, 0x58, 0xcb, 0x12, 0x73, 0x4a, 0x53, 0x25, 0x98, 0xc0, 0x62, 0x10, - 0x8e, 0x93, 0xed, 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, 0x29, 0xa7, 0x67, - 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xe7, 0x64, 0xe6, 0xa5, 0xea, 0xe7, 0x24, - 0xe5, 0xea, 0x16, 0xa7, 0x64, 0xeb, 0x97, 0x19, 0xe9, 0x97, 0x54, 0x16, 0xa4, 0x16, 0xeb, 0x67, - 0x97, 0x25, 0xb1, 0x81, 0x1d, 0x6e, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x9a, 0xc3, 0x91, 0x77, - 0x09, 0x01, 0x00, 0x00, +var fileDescriptor_e0cdecf986573480 = []byte{ + // 226 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc9, 0x49, 0xca, 0xd5, + 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0xcf, 0x2e, 0xd3, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0xcf, 0x2e, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xce, 0x49, 0xca, 0xd5, 0x03, 0xc9, + 0xea, 0x65, 0x97, 0xe9, 0x41, 0x65, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xf2, 0xfa, 0x20, + 0x16, 0x44, 0xa9, 0x92, 0x1d, 0x17, 0x6b, 0x40, 0x62, 0x66, 0x51, 0xb1, 0x90, 0x29, 0x17, 0x6b, + 0x01, 0x88, 0x21, 0xc1, 0xa8, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa9, 0x87, 0xc5, 0x0c, 0x3d, 0x90, + 0x52, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0x20, 0xaa, 0x95, 0xf4, 0xb8, 0x58, 0x40, 0x82, + 0x42, 0x02, 0x5c, 0xcc, 0xd9, 0xa9, 0x95, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x3c, 0x41, 0x20, 0xa6, + 0x90, 0x08, 0x17, 0x6b, 0x59, 0x62, 0x4e, 0x69, 0xaa, 0x04, 0x13, 0x58, 0x0c, 0xc2, 0x71, 0xb2, + 0x3d, 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, 0xe5, 0xf4, 0xcc, 0x92, 0x8c, + 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xcc, 0xbc, 0x54, 0xfd, 0x9c, 0xa4, 0x5c, 0xdd, + 0xe2, 0x94, 0x6c, 0xfd, 0x32, 0x23, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0xfd, 0xec, 0xb2, 0x24, + 0x36, 0xb0, 0xab, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x56, 0xf9, 0x40, 0x40, 0x00, 0x01, + 0x00, 0x00, } func (m *Pairs) Marshal() (dAtA []byte, err error) { diff --git a/types/query/pagination.pb.go b/types/query/pagination.pb.go index a39ff08369..82fd77395e 100644 --- a/types/query/pagination.pb.go +++ b/types/query/pagination.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/base/query/v1beta1/pagination.proto +// source: lbm/base/query/v1beta1/pagination.proto package query @@ -52,7 +52,7 @@ func (m *PageRequest) Reset() { *m = PageRequest{} } func (m *PageRequest) String() string { return proto.CompactTextString(m) } func (*PageRequest) ProtoMessage() {} func (*PageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_53d6d609fe6828af, []int{0} + return fileDescriptor_f847f4d96aedd3ed, []int{0} } func (m *PageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,7 +129,7 @@ func (m *PageResponse) Reset() { *m = PageResponse{} } func (m *PageResponse) String() string { return proto.CompactTextString(m) } func (*PageResponse) ProtoMessage() {} func (*PageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_53d6d609fe6828af, []int{1} + return fileDescriptor_f847f4d96aedd3ed, []int{1} } func (m *PageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,33 +173,33 @@ func (m *PageResponse) GetTotal() uint64 { } func init() { - proto.RegisterType((*PageRequest)(nil), "cosmos.base.query.v1beta1.PageRequest") - proto.RegisterType((*PageResponse)(nil), "cosmos.base.query.v1beta1.PageResponse") + proto.RegisterType((*PageRequest)(nil), "lbm.base.query.v1beta1.PageRequest") + proto.RegisterType((*PageResponse)(nil), "lbm.base.query.v1beta1.PageResponse") } func init() { - proto.RegisterFile("cosmos/base/query/v1beta1/pagination.proto", fileDescriptor_53d6d609fe6828af) + proto.RegisterFile("lbm/base/query/v1beta1/pagination.proto", fileDescriptor_f847f4d96aedd3ed) } -var fileDescriptor_53d6d609fe6828af = []byte{ - // 271 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0x90, 0xc1, 0x4a, 0xc3, 0x30, - 0x18, 0xc7, 0x17, 0x37, 0xe7, 0xc8, 0x76, 0x90, 0x20, 0xd2, 0x5d, 0x62, 0xd9, 0x41, 0x8a, 0x60, - 0xc3, 0xf4, 0x01, 0x14, 0xaf, 0x5e, 0xa4, 0x78, 0xf2, 0x32, 0xd2, 0xfa, 0xad, 0x86, 0xb5, 0x49, - 0xb7, 0x7c, 0x1d, 0xf6, 0x2d, 0x7c, 0x2c, 0x8f, 0x3b, 0x7a, 0x94, 0xf6, 0x45, 0x24, 0xcd, 0xc0, - 0x5b, 0x7e, 0x7f, 0x7e, 0xe4, 0x07, 0x1f, 0xbd, 0xc9, 0x8c, 0x2d, 0x8d, 0x15, 0xa9, 0xb4, 0x20, - 0xb6, 0x35, 0xec, 0x1a, 0xb1, 0x5f, 0xa6, 0x80, 0x72, 0x29, 0x2a, 0x99, 0x2b, 0x2d, 0x51, 0x19, - 0x1d, 0x57, 0x3b, 0x83, 0x86, 0xcd, 0xbd, 0x1b, 0x3b, 0x37, 0xee, 0xdd, 0xf8, 0xe8, 0x2e, 0x34, - 0x9d, 0xbe, 0xc8, 0x1c, 0x12, 0xd8, 0xd6, 0x60, 0x91, 0x9d, 0xd3, 0xe1, 0x06, 0x9a, 0x80, 0x84, - 0x24, 0x9a, 0x25, 0xee, 0xc9, 0x2e, 0xe9, 0xd8, 0xac, 0xd7, 0x16, 0x30, 0x38, 0x09, 0x49, 0x34, - 0x4a, 0x8e, 0xc4, 0x2e, 0xe8, 0x69, 0xa1, 0x4a, 0x85, 0xc1, 0xb0, 0x9f, 0x3d, 0xb0, 0x2b, 0x3a, - 0xcd, 0x4c, 0xad, 0x71, 0x85, 0x06, 0x65, 0x11, 0x8c, 0x42, 0x12, 0x4d, 0x12, 0xda, 0x4f, 0xaf, - 0x6e, 0x59, 0x3c, 0xd0, 0x99, 0xef, 0xd9, 0xca, 0x68, 0x0b, 0x6c, 0x4e, 0x27, 0x1a, 0x3e, 0x71, - 0xf5, 0x5f, 0x3d, 0x73, 0xfc, 0x0c, 0x8d, 0x2b, 0xf8, 0x5f, 0x7c, 0xd8, 0xc3, 0xd3, 0xe3, 0x77, - 0xcb, 0xc9, 0xa1, 0xe5, 0xe4, 0xb7, 0xe5, 0xe4, 0xab, 0xe3, 0x83, 0x43, 0xc7, 0x07, 0x3f, 0x1d, - 0x1f, 0xbc, 0x5d, 0xe7, 0x0a, 0x3f, 0xea, 0x34, 0xce, 0x4c, 0x29, 0x0a, 0xa5, 0x41, 0x14, 0x69, - 0x79, 0x6b, 0xdf, 0x37, 0x62, 0x7f, 0x27, 0xb0, 0xa9, 0xc0, 0xfa, 0x33, 0xa5, 0xe3, 0xfe, 0x28, - 0xf7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x94, 0xa9, 0x34, 0x86, 0x42, 0x01, 0x00, 0x00, +var fileDescriptor_f847f4d96aedd3ed = []byte{ + // 270 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0x90, 0xb1, 0x4e, 0xc3, 0x30, + 0x14, 0x45, 0x6b, 0x5a, 0x4a, 0xe5, 0x76, 0x40, 0x16, 0xaa, 0xc2, 0x62, 0xaa, 0x0e, 0x90, 0x85, + 0x58, 0x85, 0x0f, 0x00, 0xb1, 0xb2, 0xa0, 0x88, 0x89, 0xa5, 0xb2, 0xcb, 0x6b, 0xb0, 0xea, 0xd8, + 0x69, 0xfd, 0x52, 0x91, 0xbf, 0xe0, 0xb3, 0x18, 0x3b, 0x32, 0xa2, 0xe4, 0x47, 0x50, 0xe2, 0x4a, + 0x6c, 0xef, 0x5c, 0x5d, 0xbd, 0x23, 0x5d, 0x7a, 0x63, 0x54, 0x2e, 0x94, 0xf4, 0x20, 0xb6, 0x25, + 0xec, 0x2a, 0xb1, 0x5f, 0x28, 0x40, 0xb9, 0x10, 0x85, 0xcc, 0xb4, 0x95, 0xa8, 0x9d, 0x4d, 0x8a, + 0x9d, 0x43, 0xc7, 0xa6, 0x46, 0xe5, 0x49, 0x5b, 0x4c, 0xba, 0x62, 0x72, 0x2c, 0xce, 0x2d, 0x1d, + 0xbf, 0xc8, 0x0c, 0x52, 0xd8, 0x96, 0xe0, 0x91, 0x9d, 0xd3, 0xfe, 0x06, 0xaa, 0x88, 0xcc, 0x48, + 0x3c, 0x49, 0xdb, 0x93, 0x4d, 0xe9, 0xd0, 0xad, 0xd7, 0x1e, 0x30, 0x3a, 0x99, 0x91, 0x78, 0x90, + 0x1e, 0x89, 0x5d, 0xd0, 0x53, 0xa3, 0x73, 0x8d, 0x51, 0xbf, 0x8b, 0x03, 0xb0, 0x2b, 0x3a, 0x5e, + 0xb9, 0xd2, 0xe2, 0x12, 0x1d, 0x4a, 0x13, 0x0d, 0x66, 0x24, 0x1e, 0xa5, 0xb4, 0x8b, 0x5e, 0xdb, + 0x64, 0xfe, 0x40, 0x27, 0xc1, 0xe7, 0x0b, 0x67, 0x3d, 0xb0, 0x4b, 0x3a, 0xb2, 0xf0, 0x89, 0xcb, + 0x7f, 0xeb, 0x59, 0xcb, 0xcf, 0x50, 0xb5, 0x86, 0xf0, 0x25, 0x88, 0x03, 0x3c, 0x3d, 0x7e, 0xd7, + 0x9c, 0x1c, 0x6a, 0x4e, 0x7e, 0x6b, 0x4e, 0xbe, 0x1a, 0xde, 0x3b, 0x34, 0xbc, 0xf7, 0xd3, 0xf0, + 0xde, 0xdb, 0x75, 0xa6, 0xf1, 0xa3, 0x54, 0xc9, 0xca, 0xe5, 0xc2, 0x68, 0x0b, 0xc2, 0xa8, 0xfc, + 0xd6, 0xbf, 0x6f, 0xc4, 0xfe, 0x4e, 0x60, 0x55, 0x80, 0x0f, 0x1b, 0xa9, 0x61, 0xb7, 0xc8, 0xfd, + 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x57, 0x65, 0xd2, 0xd0, 0x3c, 0x01, 0x00, 0x00, } func (m *PageRequest) Marshal() (dAtA []byte, err error) { diff --git a/types/rest/rest_test.go b/types/rest/rest_test.go index 785fbb7ecb..999dfda76d 100644 --- a/types/rest/rest_test.go +++ b/types/rest/rest_test.go @@ -202,7 +202,7 @@ func TestProcessPostResponse(t *testing.T) { acc := mockAccount{addr, coins, pubKey, accNumber, sequence} cdc := codec.NewLegacyAmino() cryptocodec.RegisterCrypto(cdc) - cdc.RegisterConcrete(&mockAccount{}, "cosmos-sdk/mockAccount", nil) + cdc.RegisterConcrete(&mockAccount{}, "lbm-sdk/mockAccount", nil) ctx = ctx.WithLegacyAmino(cdc) // setup expected results diff --git a/types/service_msg.go b/types/service_msg.go index 61c0f15ab1..648fc1d64b 100644 --- a/types/service_msg.go +++ b/types/service_msg.go @@ -18,7 +18,7 @@ type MsgRequest interface { } // ServiceMsg is the struct into which an Any whose typeUrl matches a service -// method format (ex. `/cosmos.gov.Msg/SubmitProposal`) unpacks. +// method format (ex. `/lbm.gov.Msg/SubmitProposal`) unpacks. type ServiceMsg struct { // MethodName is the fully-qualified service method name. MethodName string diff --git a/types/tx/service.pb.go b/types/tx/service.pb.go index 6b18f45e91..a368062f94 100644 --- a/types/tx/service.pb.go +++ b/types/tx/service.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/v1beta1/service.proto +// source: lbm/tx/v1beta1/service.proto package tx @@ -67,7 +67,7 @@ func (x BroadcastMode) String() string { } func (BroadcastMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{0} + return fileDescriptor_6fc6bd78191bf1b3, []int{0} } // GetTxsEventRequest is the request type for the Service.TxsByEvents @@ -83,7 +83,7 @@ func (m *GetTxsEventRequest) Reset() { *m = GetTxsEventRequest{} } func (m *GetTxsEventRequest) String() string { return proto.CompactTextString(m) } func (*GetTxsEventRequest) ProtoMessage() {} func (*GetTxsEventRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{0} + return fileDescriptor_6fc6bd78191bf1b3, []int{0} } func (m *GetTxsEventRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,7 +141,7 @@ func (m *GetTxsEventResponse) Reset() { *m = GetTxsEventResponse{} } func (m *GetTxsEventResponse) String() string { return proto.CompactTextString(m) } func (*GetTxsEventResponse) ProtoMessage() {} func (*GetTxsEventResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{1} + return fileDescriptor_6fc6bd78191bf1b3, []int{1} } func (m *GetTxsEventResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -196,14 +196,14 @@ func (m *GetTxsEventResponse) GetPagination() *query.PageResponse { type BroadcastTxRequest struct { // tx_bytes is the raw transaction. TxBytes []byte `protobuf:"bytes,1,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"` - Mode BroadcastMode `protobuf:"varint,2,opt,name=mode,proto3,enum=cosmos.tx.v1beta1.BroadcastMode" json:"mode,omitempty"` + Mode BroadcastMode `protobuf:"varint,2,opt,name=mode,proto3,enum=lbm.tx.v1beta1.BroadcastMode" json:"mode,omitempty"` } func (m *BroadcastTxRequest) Reset() { *m = BroadcastTxRequest{} } func (m *BroadcastTxRequest) String() string { return proto.CompactTextString(m) } func (*BroadcastTxRequest) ProtoMessage() {} func (*BroadcastTxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{2} + return fileDescriptor_6fc6bd78191bf1b3, []int{2} } func (m *BroadcastTxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -257,7 +257,7 @@ func (m *BroadcastTxResponse) Reset() { *m = BroadcastTxResponse{} } func (m *BroadcastTxResponse) String() string { return proto.CompactTextString(m) } func (*BroadcastTxResponse) ProtoMessage() {} func (*BroadcastTxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{3} + return fileDescriptor_6fc6bd78191bf1b3, []int{3} } func (m *BroadcastTxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,7 +304,7 @@ func (m *SimulateRequest) Reset() { *m = SimulateRequest{} } func (m *SimulateRequest) String() string { return proto.CompactTextString(m) } func (*SimulateRequest) ProtoMessage() {} func (*SimulateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{4} + return fileDescriptor_6fc6bd78191bf1b3, []int{4} } func (m *SimulateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -353,7 +353,7 @@ func (m *SimulateResponse) Reset() { *m = SimulateResponse{} } func (m *SimulateResponse) String() string { return proto.CompactTextString(m) } func (*SimulateResponse) ProtoMessage() {} func (*SimulateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{5} + return fileDescriptor_6fc6bd78191bf1b3, []int{5} } func (m *SimulateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -407,7 +407,7 @@ func (m *GetTxRequest) Reset() { *m = GetTxRequest{} } func (m *GetTxRequest) String() string { return proto.CompactTextString(m) } func (*GetTxRequest) ProtoMessage() {} func (*GetTxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{6} + return fileDescriptor_6fc6bd78191bf1b3, []int{6} } func (m *GetTxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -455,7 +455,7 @@ func (m *GetTxResponse) Reset() { *m = GetTxResponse{} } func (m *GetTxResponse) String() string { return proto.CompactTextString(m) } func (*GetTxResponse) ProtoMessage() {} func (*GetTxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e0b00a618705eca7, []int{7} + return fileDescriptor_6fc6bd78191bf1b3, []int{7} } func (m *GetTxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -499,68 +499,68 @@ func (m *GetTxResponse) GetTxResponse() *types.TxResponse { } func init() { - proto.RegisterEnum("cosmos.tx.v1beta1.BroadcastMode", BroadcastMode_name, BroadcastMode_value) - proto.RegisterType((*GetTxsEventRequest)(nil), "cosmos.tx.v1beta1.GetTxsEventRequest") - proto.RegisterType((*GetTxsEventResponse)(nil), "cosmos.tx.v1beta1.GetTxsEventResponse") - proto.RegisterType((*BroadcastTxRequest)(nil), "cosmos.tx.v1beta1.BroadcastTxRequest") - proto.RegisterType((*BroadcastTxResponse)(nil), "cosmos.tx.v1beta1.BroadcastTxResponse") - proto.RegisterType((*SimulateRequest)(nil), "cosmos.tx.v1beta1.SimulateRequest") - proto.RegisterType((*SimulateResponse)(nil), "cosmos.tx.v1beta1.SimulateResponse") - proto.RegisterType((*GetTxRequest)(nil), "cosmos.tx.v1beta1.GetTxRequest") - proto.RegisterType((*GetTxResponse)(nil), "cosmos.tx.v1beta1.GetTxResponse") -} - -func init() { proto.RegisterFile("cosmos/tx/v1beta1/service.proto", fileDescriptor_e0b00a618705eca7) } - -var fileDescriptor_e0b00a618705eca7 = []byte{ - // 746 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xcd, 0x4f, 0x13, 0x4d, - 0x18, 0xef, 0xb6, 0xbc, 0x7c, 0x3c, 0x85, 0xf7, 0xed, 0x3b, 0x20, 0xd6, 0xa2, 0x4b, 0x59, 0xe4, - 0x23, 0x24, 0xee, 0x86, 0xea, 0x81, 0x18, 0x3d, 0xd0, 0x52, 0x08, 0x51, 0x3e, 0xb2, 0xc5, 0x83, - 0xc6, 0xa4, 0x99, 0xb6, 0xc3, 0xb2, 0xb1, 0xdd, 0x29, 0x9d, 0x69, 0xb3, 0x04, 0x88, 0x89, 0x47, - 0x4f, 0x26, 0xfe, 0x53, 0x1e, 0x49, 0xbc, 0x78, 0x34, 0xe0, 0x1f, 0xe1, 0xd1, 0xec, 0xec, 0xb4, - 0xdd, 0x96, 0x2d, 0x10, 0x6f, 0x33, 0x9d, 0xdf, 0xf3, 0xfb, 0x78, 0x9e, 0xd9, 0x29, 0xcc, 0x96, - 0x29, 0xab, 0x51, 0x66, 0x70, 0xd7, 0x68, 0xad, 0x96, 0x08, 0xc7, 0xab, 0x06, 0x23, 0x8d, 0x96, - 0x5d, 0x26, 0x7a, 0xbd, 0x41, 0x39, 0x45, 0xff, 0xfb, 0x00, 0x9d, 0xbb, 0xba, 0x04, 0xa4, 0x1e, - 0x5a, 0x94, 0x5a, 0x55, 0x62, 0xe0, 0xba, 0x6d, 0x60, 0xc7, 0xa1, 0x1c, 0x73, 0x9b, 0x3a, 0xcc, - 0x2f, 0x48, 0xcd, 0x4b, 0xc6, 0x12, 0x66, 0xc4, 0xc0, 0xa5, 0xb2, 0xdd, 0x21, 0xf6, 0x36, 0x12, - 0x94, 0xba, 0x2e, 0xcb, 0x5d, 0x79, 0x36, 0x65, 0x51, 0x8b, 0x8a, 0xa5, 0xe1, 0xad, 0xe4, 0xaf, - 0x2b, 0x41, 0xda, 0xe3, 0x26, 0x69, 0x9c, 0x74, 0x2a, 0xeb, 0xd8, 0xb2, 0x1d, 0xe1, 0xc1, 0xc7, - 0x6a, 0x1c, 0xd0, 0x16, 0xe1, 0x07, 0x2e, 0xcb, 0xb7, 0x88, 0xc3, 0x4d, 0x72, 0xdc, 0x24, 0x8c, - 0xa3, 0x69, 0x18, 0x26, 0xde, 0x9e, 0x25, 0x95, 0x74, 0x6c, 0x79, 0xcc, 0x94, 0x3b, 0xb4, 0x09, - 0xd0, 0x65, 0x48, 0x46, 0xd3, 0xca, 0x72, 0x3c, 0xb3, 0xa8, 0xcb, 0xd8, 0x9e, 0x9c, 0x2e, 0xe4, - 0xda, 0xf1, 0xf5, 0x7d, 0x6c, 0x11, 0xc9, 0x69, 0x06, 0x2a, 0xb5, 0x0b, 0x05, 0x26, 0x7b, 0x64, - 0x59, 0x9d, 0x3a, 0x8c, 0xa0, 0x25, 0x88, 0x71, 0xd7, 0x17, 0x8d, 0x67, 0xee, 0xe9, 0xd7, 0xfa, - 0xa9, 0x1f, 0xb8, 0xa6, 0x87, 0x40, 0x5b, 0x30, 0xce, 0xdd, 0x62, 0x43, 0xd6, 0xb1, 0x64, 0x54, - 0x54, 0x3c, 0xee, 0xb1, 0x22, 0x7a, 0x18, 0x28, 0x94, 0x60, 0x33, 0xce, 0x3b, 0x6b, 0x8f, 0x28, - 0x98, 0x28, 0x26, 0x12, 0x2d, 0xdd, 0x9a, 0x48, 0x32, 0x05, 0x23, 0x11, 0x40, 0xd9, 0x06, 0xc5, - 0x95, 0x32, 0x66, 0xdc, 0x13, 0xf3, 0x1b, 0xf9, 0x00, 0x46, 0xb9, 0x5b, 0x2c, 0x9d, 0x70, 0xe2, - 0xa5, 0x52, 0x96, 0xc7, 0xcd, 0x11, 0xee, 0x66, 0xbd, 0x2d, 0x7a, 0x06, 0x43, 0x35, 0x5a, 0x21, - 0xa2, 0x8b, 0xff, 0x66, 0xd2, 0x21, 0x61, 0x3b, 0x7c, 0x3b, 0xb4, 0x42, 0x4c, 0x81, 0xd6, 0xde, - 0xc3, 0x64, 0x8f, 0x8c, 0x6c, 0x5c, 0x1e, 0xe2, 0x81, 0x7e, 0x08, 0xa9, 0xbb, 0xb6, 0x03, 0xba, - 0xed, 0xd0, 0xd6, 0xe0, 0xbf, 0x82, 0x5d, 0x6b, 0x56, 0x31, 0x6f, 0x8f, 0x0d, 0x2d, 0x40, 0x94, - 0xbb, 0x92, 0x70, 0xc0, 0x44, 0xa2, 0xdc, 0xd5, 0x3e, 0x2b, 0x90, 0xe8, 0x96, 0x4a, 0x57, 0x2f, - 0x60, 0xd4, 0xc2, 0xac, 0x68, 0x3b, 0x87, 0x54, 0x32, 0xcc, 0x0d, 0xb6, 0xb4, 0x85, 0xd9, 0xb6, - 0x73, 0x48, 0xcd, 0x11, 0xcb, 0x5f, 0xa0, 0x35, 0x18, 0x6e, 0x10, 0xd6, 0xac, 0x72, 0x79, 0xd1, - 0xd2, 0x83, 0x6b, 0x4d, 0x81, 0x33, 0x25, 0x5e, 0xd3, 0x60, 0x5c, 0xdc, 0xae, 0x76, 0x06, 0x04, - 0x43, 0x47, 0x98, 0x1d, 0x09, 0x0f, 0x63, 0xa6, 0x58, 0x6b, 0xe7, 0x30, 0x21, 0x31, 0xd2, 0xec, - 0xdd, 0x82, 0xf6, 0x77, 0x3a, 0xfa, 0x77, 0x9d, 0x5e, 0x39, 0x83, 0x89, 0x9e, 0xf1, 0x22, 0x15, - 0x52, 0x59, 0x73, 0x6f, 0x7d, 0x23, 0xb7, 0x5e, 0x38, 0x28, 0xee, 0xec, 0x6d, 0xe4, 0x8b, 0x6f, - 0x76, 0x0b, 0xfb, 0xf9, 0xdc, 0xf6, 0xe6, 0x76, 0x7e, 0x23, 0x11, 0x41, 0x49, 0x98, 0xea, 0x3b, - 0xcf, 0xbe, 0xde, 0xcb, 0xbd, 0x4a, 0x28, 0xe8, 0x3e, 0x4c, 0xf6, 0x9d, 0x14, 0xde, 0xee, 0xe6, - 0x12, 0xd1, 0x90, 0x92, 0x75, 0x71, 0x12, 0xcb, 0xfc, 0x8e, 0xc1, 0x48, 0xc1, 0x7f, 0xbb, 0xd0, - 0x29, 0x8c, 0xb6, 0x07, 0x87, 0xb4, 0x90, 0xdc, 0x7d, 0x17, 0x22, 0x35, 0x7f, 0x23, 0x46, 0x5e, - 0xa4, 0xc5, 0x4f, 0xdf, 0x7f, 0x7d, 0x8d, 0xa6, 0xb5, 0x19, 0x23, 0xe4, 0xd1, 0x94, 0xe0, 0xe7, - 0xca, 0x0a, 0x3a, 0x86, 0x7f, 0xc4, 0x14, 0xd0, 0x6c, 0x08, 0x6b, 0x70, 0x86, 0xa9, 0xf4, 0x60, - 0x80, 0xd4, 0x5c, 0x10, 0x9a, 0xb3, 0xe8, 0x91, 0x11, 0xf6, 0x62, 0x32, 0xe3, 0xd4, 0x9b, 0xfb, - 0x39, 0xfa, 0x08, 0xf1, 0xc0, 0x17, 0x84, 0x16, 0x6e, 0xfa, 0xf0, 0xba, 0xf2, 0x8b, 0xb7, 0xc1, - 0xa4, 0x89, 0x39, 0x61, 0x62, 0x46, 0x9b, 0x0e, 0x37, 0xe1, 0x65, 0x3e, 0x83, 0x78, 0xe0, 0xed, - 0x0b, 0x35, 0x70, 0xfd, 0x49, 0x0e, 0x35, 0x10, 0xf2, 0x84, 0x6a, 0xaa, 0x30, 0x90, 0x44, 0x03, - 0x0c, 0x64, 0x5f, 0x7e, 0xbb, 0x54, 0x95, 0x8b, 0x4b, 0x55, 0xf9, 0x79, 0xa9, 0x2a, 0x5f, 0xae, - 0xd4, 0xc8, 0xc5, 0x95, 0x1a, 0xf9, 0x71, 0xa5, 0x46, 0xde, 0xcd, 0x5b, 0x36, 0x3f, 0x6a, 0x96, - 0xf4, 0x32, 0xad, 0x19, 0x55, 0xdb, 0x21, 0x46, 0xb5, 0x54, 0x7b, 0xc2, 0x2a, 0x1f, 0x8c, 0x56, - 0xc6, 0xe0, 0x27, 0x75, 0xe2, 0x51, 0x95, 0x86, 0xc5, 0xdf, 0xc6, 0xd3, 0x3f, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x1d, 0xea, 0x8e, 0x1b, 0x0d, 0x07, 0x00, 0x00, + proto.RegisterEnum("lbm.tx.v1beta1.BroadcastMode", BroadcastMode_name, BroadcastMode_value) + proto.RegisterType((*GetTxsEventRequest)(nil), "lbm.tx.v1beta1.GetTxsEventRequest") + proto.RegisterType((*GetTxsEventResponse)(nil), "lbm.tx.v1beta1.GetTxsEventResponse") + proto.RegisterType((*BroadcastTxRequest)(nil), "lbm.tx.v1beta1.BroadcastTxRequest") + proto.RegisterType((*BroadcastTxResponse)(nil), "lbm.tx.v1beta1.BroadcastTxResponse") + proto.RegisterType((*SimulateRequest)(nil), "lbm.tx.v1beta1.SimulateRequest") + proto.RegisterType((*SimulateResponse)(nil), "lbm.tx.v1beta1.SimulateResponse") + proto.RegisterType((*GetTxRequest)(nil), "lbm.tx.v1beta1.GetTxRequest") + proto.RegisterType((*GetTxResponse)(nil), "lbm.tx.v1beta1.GetTxResponse") +} + +func init() { proto.RegisterFile("lbm/tx/v1beta1/service.proto", fileDescriptor_6fc6bd78191bf1b3) } + +var fileDescriptor_6fc6bd78191bf1b3 = []byte{ + // 743 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4d, 0x4f, 0xdb, 0x4a, + 0x14, 0x8d, 0x13, 0x1e, 0x1f, 0x37, 0xc0, 0x8b, 0x06, 0x04, 0x79, 0x81, 0x98, 0x60, 0x78, 0xef, + 0x21, 0xa4, 0xda, 0x22, 0x15, 0x8b, 0x56, 0xea, 0x82, 0x7c, 0x14, 0xa1, 0x96, 0x0f, 0x39, 0x74, + 0x41, 0x37, 0x91, 0x9d, 0x0c, 0xc6, 0x22, 0xf1, 0x84, 0xcc, 0x24, 0x75, 0xd4, 0x76, 0x53, 0xf5, + 0x07, 0x54, 0xea, 0x8f, 0x6a, 0x97, 0x48, 0xdd, 0x74, 0x89, 0xa0, 0x3f, 0xa4, 0x9a, 0xc9, 0x24, + 0x71, 0x4c, 0x82, 0x50, 0x77, 0x33, 0xb9, 0xe7, 0x9e, 0x33, 0xe7, 0x5c, 0xe7, 0xc2, 0x6a, 0xcd, + 0xae, 0x1b, 0xcc, 0x37, 0xda, 0x3b, 0x36, 0x66, 0xd6, 0x8e, 0x41, 0x71, 0xb3, 0xed, 0x56, 0xb0, + 0xde, 0x68, 0x12, 0x46, 0xd0, 0x7c, 0xcd, 0xae, 0xeb, 0xcc, 0xd7, 0x65, 0x35, 0xb5, 0xea, 0x10, + 0xe2, 0xd4, 0xb0, 0x61, 0x35, 0x5c, 0xc3, 0xf2, 0x3c, 0xc2, 0x2c, 0xe6, 0x12, 0x8f, 0x76, 0xd1, + 0xa9, 0x0c, 0xe7, 0xb2, 0x2d, 0x8a, 0x0d, 0xcb, 0xae, 0xb8, 0x7d, 0x4a, 0x7e, 0x91, 0x88, 0xe5, + 0x90, 0x1a, 0xf3, 0x65, 0x61, 0xd1, 0x21, 0x0e, 0x11, 0x47, 0x83, 0x9f, 0xe4, 0xaf, 0xff, 0xf7, + 0x09, 0xaf, 0x5a, 0xb8, 0xd9, 0xe9, 0xb7, 0x35, 0x2c, 0xc7, 0xf5, 0x84, 0x74, 0x17, 0xa8, 0x5d, + 0x01, 0xda, 0xc7, 0xec, 0xd4, 0xa7, 0xc5, 0x36, 0xf6, 0x98, 0x89, 0xaf, 0x5a, 0x98, 0x32, 0xb4, + 0x04, 0x93, 0x98, 0xdf, 0x69, 0x52, 0xc9, 0xc4, 0xb6, 0x66, 0x4c, 0x79, 0x43, 0x79, 0x80, 0x01, + 0x43, 0x32, 0x9a, 0x51, 0xb6, 0xe2, 0xd9, 0x0d, 0x9d, 0x5b, 0xe5, 0x5a, 0xba, 0xd0, 0xea, 0x59, + 0xd6, 0x4f, 0x2c, 0x07, 0x4b, 0x42, 0x33, 0xd0, 0xa6, 0x7d, 0x53, 0x60, 0x61, 0x48, 0x93, 0x36, + 0x88, 0x47, 0x31, 0xda, 0x84, 0x18, 0xf3, 0xbb, 0x8a, 0xf1, 0x2c, 0xd2, 0x87, 0x03, 0xd4, 0x4f, + 0x7d, 0x93, 0x97, 0x51, 0x01, 0x66, 0x99, 0x5f, 0x6e, 0xca, 0x26, 0x9a, 0x8c, 0x0a, 0xf8, 0xfa, + 0xe0, 0x11, 0x22, 0xb4, 0x40, 0x97, 0x44, 0x9a, 0x71, 0xd6, 0x3f, 0x73, 0x96, 0xa0, 0x91, 0x98, + 0x30, 0xb2, 0xf9, 0xb0, 0x11, 0x49, 0x13, 0x74, 0x62, 0x03, 0xca, 0x35, 0x89, 0x55, 0xad, 0x58, + 0x94, 0x71, 0xa5, 0x6e, 0x78, 0xff, 0xc0, 0x34, 0xf3, 0xcb, 0x76, 0x87, 0x61, 0x6e, 0x46, 0xd9, + 0x9a, 0x35, 0xa7, 0x98, 0x9f, 0xe3, 0x57, 0xb4, 0x03, 0x13, 0x75, 0x52, 0xc5, 0x22, 0xb9, 0xf9, + 0x6c, 0x3a, 0xec, 0xb1, 0x4f, 0x76, 0x48, 0xaa, 0xd8, 0x14, 0x50, 0xed, 0x0c, 0x16, 0x86, 0x34, + 0x64, 0x58, 0x39, 0x88, 0x07, 0x62, 0x10, 0x3a, 0x8f, 0x4a, 0x01, 0x06, 0x29, 0x68, 0xbb, 0xf0, + 0x77, 0xc9, 0xad, 0xb7, 0x6a, 0x16, 0xeb, 0xcd, 0x09, 0x69, 0x10, 0x65, 0xbe, 0x64, 0x1b, 0x35, + 0x82, 0x28, 0xf3, 0xb5, 0xcf, 0x0a, 0x24, 0x06, 0x7d, 0xf2, 0x3d, 0xcf, 0x60, 0xda, 0xb1, 0x68, + 0xd9, 0xf5, 0xce, 0x89, 0x6c, 0x57, 0xc7, 0x3c, 0x66, 0xdf, 0xa2, 0x07, 0xde, 0x39, 0x31, 0xa7, + 0x9c, 0xee, 0x01, 0xed, 0xc2, 0x64, 0x13, 0xd3, 0x56, 0x8d, 0xc9, 0x0f, 0x2a, 0x3d, 0xa6, 0xd1, + 0x14, 0x20, 0x53, 0x82, 0x35, 0x0d, 0x66, 0xc5, 0x57, 0xd4, 0x7b, 0x3a, 0x82, 0x89, 0x0b, 0x8b, + 0x5e, 0x08, 0xf5, 0x19, 0x53, 0x9c, 0xb5, 0x77, 0x30, 0x27, 0x31, 0xf2, 0x99, 0x8f, 0xf0, 0x17, + 0x8e, 0x36, 0xfa, 0x07, 0xd1, 0x6e, 0x7f, 0x80, 0xb9, 0xa1, 0x61, 0x22, 0x15, 0x52, 0x39, 0xf3, + 0x78, 0xaf, 0x90, 0xdf, 0x2b, 0x9d, 0x96, 0x0f, 0x8f, 0x0b, 0xc5, 0xf2, 0x9b, 0xa3, 0xd2, 0x49, + 0x31, 0x7f, 0xf0, 0xf2, 0xa0, 0x58, 0x48, 0x44, 0x50, 0x12, 0x16, 0x43, 0xf5, 0xdc, 0xeb, 0xe3, + 0xfc, 0xab, 0x84, 0x82, 0x96, 0x61, 0x21, 0x54, 0x29, 0x9d, 0x1d, 0xe5, 0x13, 0xd1, 0x11, 0x2d, + 0x7b, 0xa2, 0x12, 0xcb, 0xde, 0xc4, 0x60, 0xaa, 0xd4, 0x5d, 0x47, 0xa8, 0x05, 0xd3, 0xbd, 0x61, + 0xa1, 0xb5, 0xb0, 0xe3, 0xd0, 0xf8, 0x53, 0x99, 0xf1, 0x00, 0xf9, 0xcd, 0xfc, 0xf7, 0xe9, 0xc7, + 0xaf, 0xaf, 0xd1, 0x8c, 0xb6, 0x62, 0x54, 0x08, 0xad, 0x13, 0x3a, 0xb4, 0x01, 0x25, 0xf8, 0xb9, + 0xb2, 0x8d, 0x2e, 0xe1, 0x2f, 0x91, 0x3c, 0x5a, 0x0d, 0x53, 0x06, 0x87, 0x96, 0x4a, 0x8f, 0xa9, + 0x4a, 0xb5, 0x7f, 0x85, 0xda, 0x1a, 0x4a, 0x8f, 0x50, 0x63, 0x3e, 0x35, 0xde, 0xf3, 0x29, 0x7f, + 0x44, 0x1d, 0x88, 0x07, 0xfe, 0x23, 0x48, 0x1b, 0xfb, 0xbf, 0x1a, 0x08, 0x6f, 0x3c, 0x88, 0x91, + 0xf2, 0xeb, 0x42, 0x7e, 0x45, 0x5b, 0x1a, 0x2d, 0xcf, 0x7d, 0xb6, 0x21, 0x1e, 0xd8, 0x65, 0xf7, + 0xa5, 0xef, 0x2f, 0xd7, 0xfb, 0xd2, 0x23, 0x96, 0xa1, 0xa6, 0x0a, 0xe9, 0x24, 0x1a, 0x23, 0x9d, + 0x7b, 0xf1, 0xfd, 0x56, 0x55, 0xae, 0x6f, 0x55, 0xe5, 0xe6, 0x56, 0x55, 0xbe, 0xdc, 0xa9, 0x91, + 0xeb, 0x3b, 0x35, 0xf2, 0xf3, 0x4e, 0x8d, 0xbc, 0xdd, 0x70, 0x5c, 0x76, 0xd1, 0xb2, 0xf5, 0x0a, + 0xa9, 0x1b, 0x35, 0xd7, 0xc3, 0x46, 0xcd, 0xae, 0x3f, 0xa1, 0xd5, 0x4b, 0xa3, 0x9d, 0x35, 0x58, + 0xa7, 0x81, 0x39, 0x95, 0x3d, 0x29, 0xb6, 0xff, 0xd3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x80, + 0xbb, 0x50, 0x73, 0xc5, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -595,7 +595,7 @@ func NewServiceClient(cc grpc1.ClientConn) ServiceClient { func (c *serviceClient) Simulate(ctx context.Context, in *SimulateRequest, opts ...grpc.CallOption) (*SimulateResponse, error) { out := new(SimulateResponse) - err := c.cc.Invoke(ctx, "/cosmos.tx.v1beta1.Service/Simulate", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.tx.v1beta1.Service/Simulate", in, out, opts...) if err != nil { return nil, err } @@ -604,7 +604,7 @@ func (c *serviceClient) Simulate(ctx context.Context, in *SimulateRequest, opts func (c *serviceClient) GetTx(ctx context.Context, in *GetTxRequest, opts ...grpc.CallOption) (*GetTxResponse, error) { out := new(GetTxResponse) - err := c.cc.Invoke(ctx, "/cosmos.tx.v1beta1.Service/GetTx", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.tx.v1beta1.Service/GetTx", in, out, opts...) if err != nil { return nil, err } @@ -613,7 +613,7 @@ func (c *serviceClient) GetTx(ctx context.Context, in *GetTxRequest, opts ...grp func (c *serviceClient) BroadcastTx(ctx context.Context, in *BroadcastTxRequest, opts ...grpc.CallOption) (*BroadcastTxResponse, error) { out := new(BroadcastTxResponse) - err := c.cc.Invoke(ctx, "/cosmos.tx.v1beta1.Service/BroadcastTx", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.tx.v1beta1.Service/BroadcastTx", in, out, opts...) if err != nil { return nil, err } @@ -622,7 +622,7 @@ func (c *serviceClient) BroadcastTx(ctx context.Context, in *BroadcastTxRequest, func (c *serviceClient) GetTxsEvent(ctx context.Context, in *GetTxsEventRequest, opts ...grpc.CallOption) (*GetTxsEventResponse, error) { out := new(GetTxsEventResponse) - err := c.cc.Invoke(ctx, "/cosmos.tx.v1beta1.Service/GetTxsEvent", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.tx.v1beta1.Service/GetTxsEvent", in, out, opts...) if err != nil { return nil, err } @@ -672,7 +672,7 @@ func _Service_Simulate_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.tx.v1beta1.Service/Simulate", + FullMethod: "/lbm.tx.v1beta1.Service/Simulate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).Simulate(ctx, req.(*SimulateRequest)) @@ -690,7 +690,7 @@ func _Service_GetTx_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.tx.v1beta1.Service/GetTx", + FullMethod: "/lbm.tx.v1beta1.Service/GetTx", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetTx(ctx, req.(*GetTxRequest)) @@ -708,7 +708,7 @@ func _Service_BroadcastTx_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.tx.v1beta1.Service/BroadcastTx", + FullMethod: "/lbm.tx.v1beta1.Service/BroadcastTx", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).BroadcastTx(ctx, req.(*BroadcastTxRequest)) @@ -726,7 +726,7 @@ func _Service_GetTxsEvent_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.tx.v1beta1.Service/GetTxsEvent", + FullMethod: "/lbm.tx.v1beta1.Service/GetTxsEvent", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).GetTxsEvent(ctx, req.(*GetTxsEventRequest)) @@ -735,7 +735,7 @@ func _Service_GetTxsEvent_Handler(srv interface{}, ctx context.Context, dec func } var _Service_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.tx.v1beta1.Service", + ServiceName: "lbm.tx.v1beta1.Service", HandlerType: (*ServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -756,7 +756,7 @@ var _Service_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/tx/v1beta1/service.proto", + Metadata: "lbm/tx/v1beta1/service.proto", } func (m *GetTxsEventRequest) Marshal() (dAtA []byte, err error) { diff --git a/types/tx/service.pb.gw.go b/types/tx/service.pb.gw.go index 6d94c423ec..1825f98ffa 100644 --- a/types/tx/service.pb.gw.go +++ b/types/tx/service.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/tx/v1beta1/service.proto +// source: lbm/tx/v1beta1/service.proto /* Package tx is a reverse proxy. diff --git a/types/tx/signing/signing.pb.go b/types/tx/signing/signing.pb.go index 7af17b49b2..0463e94585 100644 --- a/types/tx/signing/signing.pb.go +++ b/types/tx/signing/signing.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/signing/v1beta1/signing.proto +// source: lbm/tx/signing/v1beta1/signing.proto package signing @@ -62,7 +62,7 @@ func (x SignMode) String() string { } func (SignMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9a54958ff3d0b1b9, []int{0} + return fileDescriptor_62257da3b173b52d, []int{0} } // SignatureDescriptors wraps multiple SignatureDescriptor's. @@ -75,7 +75,7 @@ func (m *SignatureDescriptors) Reset() { *m = SignatureDescriptors{} } func (m *SignatureDescriptors) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptors) ProtoMessage() {} func (*SignatureDescriptors) Descriptor() ([]byte, []int) { - return fileDescriptor_9a54958ff3d0b1b9, []int{0} + return fileDescriptor_62257da3b173b52d, []int{0} } func (m *SignatureDescriptors) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,7 +129,7 @@ func (m *SignatureDescriptor) Reset() { *m = SignatureDescriptor{} } func (m *SignatureDescriptor) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor) ProtoMessage() {} func (*SignatureDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_9a54958ff3d0b1b9, []int{1} + return fileDescriptor_62257da3b173b52d, []int{1} } func (m *SignatureDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -193,7 +193,7 @@ func (m *SignatureDescriptor_Data) Reset() { *m = SignatureDescriptor_Da func (m *SignatureDescriptor_Data) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor_Data) ProtoMessage() {} func (*SignatureDescriptor_Data) Descriptor() ([]byte, []int) { - return fileDescriptor_9a54958ff3d0b1b9, []int{1, 0} + return fileDescriptor_62257da3b173b52d, []int{1, 0} } func (m *SignatureDescriptor_Data) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -270,7 +270,7 @@ func (*SignatureDescriptor_Data) XXX_OneofWrappers() []interface{} { // Single is the signature data for a single signer type SignatureDescriptor_Data_Single struct { // mode is the signing mode of the single signer - Mode SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=cosmos.tx.signing.v1beta1.SignMode" json:"mode,omitempty"` + Mode SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=lbm.tx.signing.v1beta1.SignMode" json:"mode,omitempty"` // signature is the raw signature bytes Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"` } @@ -279,7 +279,7 @@ func (m *SignatureDescriptor_Data_Single) Reset() { *m = SignatureDescri func (m *SignatureDescriptor_Data_Single) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor_Data_Single) ProtoMessage() {} func (*SignatureDescriptor_Data_Single) Descriptor() ([]byte, []int) { - return fileDescriptor_9a54958ff3d0b1b9, []int{1, 0, 0} + return fileDescriptor_62257da3b173b52d, []int{1, 0, 0} } func (m *SignatureDescriptor_Data_Single) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -334,7 +334,7 @@ func (m *SignatureDescriptor_Data_Multi) Reset() { *m = SignatureDescrip func (m *SignatureDescriptor_Data_Multi) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor_Data_Multi) ProtoMessage() {} func (*SignatureDescriptor_Data_Multi) Descriptor() ([]byte, []int) { - return fileDescriptor_9a54958ff3d0b1b9, []int{1, 0, 1} + return fileDescriptor_62257da3b173b52d, []int{1, 0, 1} } func (m *SignatureDescriptor_Data_Multi) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -378,55 +378,55 @@ func (m *SignatureDescriptor_Data_Multi) GetSignatures() []*SignatureDescriptor_ } func init() { - proto.RegisterEnum("cosmos.tx.signing.v1beta1.SignMode", SignMode_name, SignMode_value) - proto.RegisterType((*SignatureDescriptors)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptors") - proto.RegisterType((*SignatureDescriptor)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor") - proto.RegisterType((*SignatureDescriptor_Data)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor.Data") - proto.RegisterType((*SignatureDescriptor_Data_Single)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Single") - proto.RegisterType((*SignatureDescriptor_Data_Multi)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Multi") + proto.RegisterEnum("lbm.tx.signing.v1beta1.SignMode", SignMode_name, SignMode_value) + proto.RegisterType((*SignatureDescriptors)(nil), "lbm.tx.signing.v1beta1.SignatureDescriptors") + proto.RegisterType((*SignatureDescriptor)(nil), "lbm.tx.signing.v1beta1.SignatureDescriptor") + proto.RegisterType((*SignatureDescriptor_Data)(nil), "lbm.tx.signing.v1beta1.SignatureDescriptor.Data") + proto.RegisterType((*SignatureDescriptor_Data_Single)(nil), "lbm.tx.signing.v1beta1.SignatureDescriptor.Data.Single") + proto.RegisterType((*SignatureDescriptor_Data_Multi)(nil), "lbm.tx.signing.v1beta1.SignatureDescriptor.Data.Multi") } func init() { - proto.RegisterFile("cosmos/tx/signing/v1beta1/signing.proto", fileDescriptor_9a54958ff3d0b1b9) -} - -var fileDescriptor_9a54958ff3d0b1b9 = []byte{ - // 547 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcd, 0x6e, 0xd3, 0x40, - 0x14, 0x85, 0xed, 0xfc, 0x29, 0x9d, 0x22, 0x14, 0x86, 0x54, 0x4a, 0x0c, 0x32, 0x51, 0x59, 0x10, - 0x81, 0x3a, 0x56, 0x93, 0x05, 0x82, 0x5d, 0x7e, 0x4c, 0x1a, 0xda, 0x24, 0x60, 0xa7, 0x12, 0xb0, - 0xb1, 0x6c, 0x67, 0x6a, 0x46, 0xb5, 0x3d, 0xc6, 0x33, 0xae, 0xea, 0x15, 0xaf, 0xc0, 0x6b, 0xf0, - 0x1c, 0x6c, 0x58, 0x76, 0xc9, 0x12, 0x25, 0xcf, 0xc0, 0x1e, 0xc5, 0x8e, 0x93, 0x20, 0x15, 0x21, - 0xb2, 0xbc, 0xf7, 0x1e, 0x7f, 0xf7, 0x8c, 0xee, 0x91, 0xc1, 0x13, 0x9b, 0x32, 0x8f, 0x32, 0x85, - 0x5f, 0x2b, 0x8c, 0x38, 0x3e, 0xf1, 0x1d, 0xe5, 0xea, 0xd8, 0xc2, 0xdc, 0x3c, 0xce, 0x6a, 0x14, - 0x84, 0x94, 0x53, 0x58, 0x4f, 0x85, 0x88, 0x5f, 0xa3, 0x6c, 0xb0, 0x12, 0x4a, 0x47, 0x2b, 0x86, - 0x1d, 0xc6, 0x01, 0xa7, 0x8a, 0x17, 0xb9, 0x9c, 0x30, 0xb2, 0x01, 0x65, 0x8d, 0x94, 0x24, 0xd5, - 0x1d, 0x4a, 0x1d, 0x17, 0x2b, 0x49, 0x65, 0x45, 0x17, 0x8a, 0xe9, 0xc7, 0xe9, 0xe8, 0xf0, 0x02, - 0x54, 0x75, 0xe2, 0xf8, 0x26, 0x8f, 0x42, 0xdc, 0xc7, 0xcc, 0x0e, 0x49, 0xc0, 0x69, 0xc8, 0xe0, - 0x18, 0x00, 0x96, 0xf5, 0x59, 0x4d, 0x6c, 0xe4, 0x9b, 0xfb, 0x2d, 0x84, 0xfe, 0xea, 0x08, 0xdd, - 0x02, 0xd1, 0xb6, 0x08, 0x87, 0xbf, 0x0a, 0xe0, 0xfe, 0x2d, 0x1a, 0xd8, 0x06, 0x20, 0x88, 0x2c, - 0x97, 0xd8, 0xc6, 0x25, 0x8e, 0x6b, 0x62, 0x43, 0x6c, 0xee, 0xb7, 0xaa, 0x28, 0xf5, 0x8b, 0x32, - 0xbf, 0xa8, 0xe3, 0xc7, 0xda, 0x5e, 0xaa, 0x3b, 0xc5, 0x31, 0x1c, 0x80, 0xc2, 0xcc, 0xe4, 0x66, - 0x2d, 0x97, 0xc8, 0xdb, 0xff, 0x67, 0x0b, 0xf5, 0x4d, 0x6e, 0x6a, 0x09, 0x00, 0x4a, 0xa0, 0xcc, - 0xf0, 0xa7, 0x08, 0xfb, 0x36, 0xae, 0xe5, 0x1b, 0x62, 0xb3, 0xa0, 0xad, 0x6b, 0xe9, 0x5b, 0x1e, - 0x14, 0x96, 0x52, 0x38, 0x05, 0x25, 0x46, 0x7c, 0xc7, 0xc5, 0x2b, 0x7b, 0x2f, 0x77, 0xd8, 0x87, - 0xf4, 0x84, 0x70, 0x22, 0x68, 0x2b, 0x16, 0x7c, 0x0b, 0x8a, 0xc9, 0x95, 0x56, 0x8f, 0x78, 0xb1, - 0x0b, 0x74, 0xb4, 0x04, 0x9c, 0x08, 0x5a, 0x4a, 0x92, 0x0c, 0x50, 0x4a, 0xd7, 0xc0, 0xe7, 0xa0, - 0xe0, 0xd1, 0x59, 0x6a, 0xf8, 0x6e, 0xeb, 0xf1, 0x3f, 0xd8, 0x23, 0x3a, 0xc3, 0x5a, 0xf2, 0x01, - 0x7c, 0x08, 0xf6, 0xd6, 0x47, 0x4b, 0x9c, 0xdd, 0xd1, 0x36, 0x0d, 0xe9, 0xab, 0x08, 0x8a, 0xc9, - 0x4e, 0x78, 0x0a, 0xca, 0x16, 0xe1, 0x66, 0x18, 0x9a, 0xd9, 0xd1, 0x94, 0x6c, 0x49, 0x9a, 0x49, - 0xb4, 0x8e, 0x60, 0xb6, 0xa9, 0x47, 0xbd, 0xc0, 0xb4, 0x79, 0x97, 0xf0, 0xce, 0xf2, 0x33, 0x6d, - 0x0d, 0x80, 0xfa, 0x1f, 0x59, 0xcb, 0x25, 0x59, 0xdb, 0xe9, 0xa8, 0x5b, 0x98, 0x6e, 0x11, 0xe4, - 0x59, 0xe4, 0x3d, 0x65, 0xa0, 0x9c, 0x3d, 0x11, 0xd6, 0xc1, 0x81, 0x3e, 0x1c, 0x8c, 0x8d, 0xd1, - 0xa4, 0xaf, 0x1a, 0xe7, 0x63, 0xfd, 0x8d, 0xda, 0x1b, 0xbe, 0x1a, 0xaa, 0xfd, 0x8a, 0x00, 0xab, - 0xa0, 0xb2, 0x19, 0xf5, 0x87, 0x9a, 0xda, 0x9b, 0x56, 0x44, 0x78, 0x00, 0xee, 0x6d, 0xba, 0x53, - 0xf5, 0xdd, 0xf4, 0xbc, 0x73, 0x56, 0xc9, 0xc1, 0x47, 0xe0, 0xc1, 0xa6, 0x7d, 0xa6, 0x0e, 0x3a, - 0xbd, 0xf7, 0x46, 0x67, 0x34, 0x1c, 0x4f, 0x8c, 0xd7, 0xfa, 0x64, 0x5c, 0xf9, 0xdc, 0x55, 0xbf, - 0xcf, 0x65, 0xf1, 0x66, 0x2e, 0x8b, 0x3f, 0xe7, 0xb2, 0xf8, 0x65, 0x21, 0x0b, 0x37, 0x0b, 0x59, - 0xf8, 0xb1, 0x90, 0x85, 0x0f, 0xcf, 0x1c, 0xc2, 0x3f, 0x46, 0x16, 0xb2, 0xa9, 0xa7, 0xb8, 0xc4, - 0xc7, 0x8a, 0x6b, 0x79, 0x47, 0x6c, 0x76, 0xa9, 0x5c, 0xb5, 0x14, 0x1e, 0x07, 0x78, 0xfb, 0xb7, - 0x60, 0x95, 0x92, 0xfc, 0xb7, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xba, 0x13, 0xe2, 0xb0, 0x32, - 0x04, 0x00, 0x00, + proto.RegisterFile("lbm/tx/signing/v1beta1/signing.proto", fileDescriptor_62257da3b173b52d) +} + +var fileDescriptor_62257da3b173b52d = []byte{ + // 545 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xcd, 0x6e, 0xd3, 0x4c, + 0x14, 0xb5, 0x9b, 0x1f, 0xa5, 0xb7, 0x9f, 0x3e, 0x85, 0x21, 0x45, 0xa9, 0x41, 0x26, 0xaa, 0x58, + 0x44, 0x2d, 0x8c, 0x69, 0x8a, 0x60, 0x9d, 0xc4, 0xa6, 0x09, 0x6d, 0x92, 0xe2, 0xa4, 0x12, 0x20, + 0xa4, 0xc8, 0x76, 0x06, 0x33, 0xaa, 0xff, 0xf0, 0x8c, 0xab, 0x7a, 0xc5, 0x2b, 0xf0, 0x0e, 0xbc, + 0x02, 0x0f, 0xc1, 0xb2, 0x4b, 0x96, 0x28, 0x79, 0x11, 0x14, 0x3b, 0x4e, 0x82, 0x14, 0x21, 0x65, + 0x79, 0xcf, 0x9c, 0x73, 0xee, 0xb1, 0xee, 0x31, 0x3c, 0x71, 0x4c, 0x57, 0xe1, 0xb7, 0x0a, 0xa3, + 0xb6, 0x47, 0x3d, 0x5b, 0xb9, 0x39, 0x31, 0x09, 0x37, 0x4e, 0xb2, 0x19, 0x07, 0xa1, 0xcf, 0x7d, + 0xf4, 0xc0, 0x31, 0x5d, 0xcc, 0x6f, 0x71, 0x86, 0x2e, 0x58, 0xd2, 0xd1, 0x5c, 0x6d, 0x85, 0x71, + 0xc0, 0x7d, 0xc5, 0x8d, 0x1c, 0x4e, 0x19, 0x5d, 0x59, 0x64, 0x40, 0xea, 0x21, 0x1d, 0xd8, 0xbe, + 0x6f, 0x3b, 0x44, 0x49, 0x26, 0x33, 0xfa, 0xa4, 0x18, 0x5e, 0x9c, 0x3e, 0x1d, 0x5a, 0x50, 0x19, + 0x52, 0xdb, 0x33, 0x78, 0x14, 0x12, 0x95, 0x30, 0x2b, 0xa4, 0x01, 0xf7, 0x43, 0x86, 0xce, 0x01, + 0x58, 0x86, 0xb3, 0xaa, 0x58, 0xcb, 0xd5, 0xf7, 0x1a, 0xc7, 0x78, 0x73, 0x16, 0xbc, 0xc1, 0x41, + 0x5f, 0x93, 0x1f, 0xce, 0xf2, 0x70, 0x7f, 0x03, 0x07, 0x9d, 0x02, 0x04, 0x91, 0xe9, 0x50, 0x6b, + 0x7c, 0x4d, 0xe2, 0xaa, 0x58, 0x13, 0xeb, 0x7b, 0x8d, 0x0a, 0x4e, 0xc3, 0xe2, 0x2c, 0x2c, 0x6e, + 0x7a, 0xb1, 0xbe, 0x9b, 0xf2, 0xce, 0x49, 0x8c, 0x54, 0xc8, 0x4f, 0x0c, 0x6e, 0x54, 0x77, 0x12, + 0xfa, 0xf3, 0x2d, 0x32, 0x61, 0xd5, 0xe0, 0x86, 0x9e, 0xa8, 0x91, 0x04, 0x25, 0x46, 0xbe, 0x44, + 0xc4, 0xb3, 0x48, 0x35, 0x57, 0x13, 0xeb, 0x79, 0x7d, 0x39, 0x4b, 0x3f, 0x72, 0x90, 0x9f, 0x53, + 0xd1, 0x5b, 0x28, 0x32, 0xea, 0xd9, 0x0e, 0x59, 0x64, 0x7b, 0xb5, 0xed, 0x32, 0x3c, 0x4c, 0xe4, + 0x1d, 0x41, 0x5f, 0x18, 0xa1, 0x3e, 0x14, 0x92, 0xe3, 0x2c, 0xe2, 0xbf, 0xdc, 0xda, 0xb1, 0x37, + 0x57, 0x77, 0x04, 0x3d, 0xb5, 0x91, 0x3e, 0x42, 0x31, 0xdd, 0x81, 0x5e, 0x40, 0xde, 0xf5, 0x27, + 0x69, 0xd4, 0xff, 0x1b, 0xb5, 0x7f, 0x19, 0xf7, 0xfc, 0x09, 0xd1, 0x13, 0x36, 0x7a, 0x04, 0xbb, + 0xcb, 0x43, 0x25, 0x99, 0xfe, 0xd3, 0x57, 0x80, 0xf4, 0x5d, 0x84, 0x42, 0xb2, 0x10, 0x75, 0xa0, + 0x64, 0x52, 0x6e, 0x84, 0xa1, 0x91, 0x1d, 0xea, 0x69, 0xb2, 0x21, 0x6d, 0x20, 0x5e, 0x16, 0x2e, + 0x5b, 0xd3, 0xf6, 0xdd, 0xc0, 0xb0, 0x78, 0x8b, 0xf2, 0xe6, 0x5c, 0xa3, 0x2f, 0xd5, 0xe8, 0xf2, + 0xaf, 0x66, 0xed, 0x24, 0xcd, 0xda, 0xfe, 0x8a, 0x6b, 0x1e, 0xad, 0x02, 0xe4, 0x58, 0xe4, 0x1e, + 0x31, 0x28, 0x65, 0x1f, 0x87, 0x0e, 0x60, 0x7f, 0xd8, 0x3d, 0xeb, 0x8f, 0x7b, 0x03, 0x55, 0x1b, + 0x5f, 0xf5, 0x87, 0x97, 0x5a, 0xbb, 0xfb, 0xba, 0xab, 0xa9, 0x65, 0x01, 0x55, 0xa0, 0xbc, 0x7a, + 0x52, 0xbb, 0xba, 0xd6, 0x1e, 0x95, 0x45, 0xb4, 0x0f, 0xf7, 0x56, 0xe8, 0x48, 0x7b, 0x37, 0xba, + 0x6a, 0x5e, 0x94, 0x77, 0xd0, 0x63, 0x78, 0xb8, 0x82, 0x2f, 0xb4, 0xb3, 0x66, 0xfb, 0xfd, 0xb8, + 0xd9, 0xeb, 0xf6, 0x07, 0xe3, 0x37, 0xc3, 0x41, 0xbf, 0xfc, 0xb5, 0xa5, 0xfd, 0x9c, 0xca, 0xe2, + 0xdd, 0x54, 0x16, 0x7f, 0x4f, 0x65, 0xf1, 0xdb, 0x4c, 0x16, 0xee, 0x66, 0xb2, 0xf0, 0x6b, 0x26, + 0x0b, 0x1f, 0x8e, 0x6d, 0xca, 0x3f, 0x47, 0x26, 0xb6, 0x7c, 0x57, 0x71, 0xa8, 0x47, 0x14, 0xc7, + 0x74, 0x9f, 0xb1, 0xc9, 0xb5, 0x72, 0xd3, 0x50, 0x78, 0x1c, 0x10, 0xb6, 0xf6, 0xef, 0x9b, 0xc5, + 0xa4, 0xed, 0xa7, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x88, 0x15, 0x2b, 0x33, 0x14, 0x04, 0x00, + 0x00, } func (m *SignatureDescriptors) Marshal() (dAtA []byte, err error) { diff --git a/types/tx/tx.pb.go b/types/tx/tx.pb.go index dc3ed65c6d..2dd9f4c7f9 100644 --- a/types/tx/tx.pb.go +++ b/types/tx/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/v1beta1/tx.proto +// source: lbm/tx/v1beta1/tx.proto package tx @@ -45,7 +45,7 @@ func (m *Tx) Reset() { *m = Tx{} } func (m *Tx) String() string { return proto.CompactTextString(m) } func (*Tx) ProtoMessage() {} func (*Tx) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{0} + return fileDescriptor_fa21011f8eac726a, []int{0} } func (m *Tx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ func (m *TxRaw) Reset() { *m = TxRaw{} } func (m *TxRaw) String() string { return proto.CompactTextString(m) } func (*TxRaw) ProtoMessage() {} func (*TxRaw) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{1} + return fileDescriptor_fa21011f8eac726a, []int{1} } func (m *TxRaw) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -187,7 +187,7 @@ func (m *SignDoc) Reset() { *m = SignDoc{} } func (m *SignDoc) String() string { return proto.CompactTextString(m) } func (*SignDoc) ProtoMessage() {} func (*SignDoc) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{2} + return fileDescriptor_fa21011f8eac726a, []int{2} } func (m *SignDoc) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -273,7 +273,7 @@ func (m *TxBody) Reset() { *m = TxBody{} } func (m *TxBody) String() string { return proto.CompactTextString(m) } func (*TxBody) ProtoMessage() {} func (*TxBody) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{3} + return fileDescriptor_fa21011f8eac726a, []int{3} } func (m *TxBody) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -356,7 +356,7 @@ func (m *AuthInfo) Reset() { *m = AuthInfo{} } func (m *AuthInfo) String() string { return proto.CompactTextString(m) } func (*AuthInfo) ProtoMessage() {} func (*AuthInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{4} + return fileDescriptor_fa21011f8eac726a, []int{4} } func (m *AuthInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -419,7 +419,7 @@ func (m *SignerInfo) Reset() { *m = SignerInfo{} } func (m *SignerInfo) String() string { return proto.CompactTextString(m) } func (*SignerInfo) ProtoMessage() {} func (*SignerInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{5} + return fileDescriptor_fa21011f8eac726a, []int{5} } func (m *SignerInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -484,7 +484,7 @@ func (m *ModeInfo) Reset() { *m = ModeInfo{} } func (m *ModeInfo) String() string { return proto.CompactTextString(m) } func (*ModeInfo) ProtoMessage() {} func (*ModeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{6} + return fileDescriptor_fa21011f8eac726a, []int{6} } func (m *ModeInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -563,14 +563,14 @@ func (*ModeInfo) XXX_OneofWrappers() []interface{} { // future type ModeInfo_Single struct { // mode is the signing mode of the single signer - Mode signing.SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=cosmos.tx.signing.v1beta1.SignMode" json:"mode,omitempty"` + Mode signing.SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=lbm.tx.signing.v1beta1.SignMode" json:"mode,omitempty"` } func (m *ModeInfo_Single) Reset() { *m = ModeInfo_Single{} } func (m *ModeInfo_Single) String() string { return proto.CompactTextString(m) } func (*ModeInfo_Single) ProtoMessage() {} func (*ModeInfo_Single) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{6, 0} + return fileDescriptor_fa21011f8eac726a, []int{6, 0} } func (m *ModeInfo_Single) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -619,7 +619,7 @@ func (m *ModeInfo_Multi) Reset() { *m = ModeInfo_Multi{} } func (m *ModeInfo_Multi) String() string { return proto.CompactTextString(m) } func (*ModeInfo_Multi) ProtoMessage() {} func (*ModeInfo_Multi) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{6, 1} + return fileDescriptor_fa21011f8eac726a, []int{6, 1} } func (m *ModeInfo_Multi) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -685,7 +685,7 @@ func (m *Fee) Reset() { *m = Fee{} } func (m *Fee) String() string { return proto.CompactTextString(m) } func (*Fee) ProtoMessage() {} func (*Fee) Descriptor() ([]byte, []int) { - return fileDescriptor_96d1575ffde80842, []int{7} + return fileDescriptor_fa21011f8eac726a, []int{7} } func (m *Fee) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -743,75 +743,75 @@ func (m *Fee) GetGranter() string { } func init() { - proto.RegisterType((*Tx)(nil), "cosmos.tx.v1beta1.Tx") - proto.RegisterType((*TxRaw)(nil), "cosmos.tx.v1beta1.TxRaw") - proto.RegisterType((*SignDoc)(nil), "cosmos.tx.v1beta1.SignDoc") - proto.RegisterType((*TxBody)(nil), "cosmos.tx.v1beta1.TxBody") - proto.RegisterType((*AuthInfo)(nil), "cosmos.tx.v1beta1.AuthInfo") - proto.RegisterType((*SignerInfo)(nil), "cosmos.tx.v1beta1.SignerInfo") - proto.RegisterType((*ModeInfo)(nil), "cosmos.tx.v1beta1.ModeInfo") - proto.RegisterType((*ModeInfo_Single)(nil), "cosmos.tx.v1beta1.ModeInfo.Single") - proto.RegisterType((*ModeInfo_Multi)(nil), "cosmos.tx.v1beta1.ModeInfo.Multi") - proto.RegisterType((*Fee)(nil), "cosmos.tx.v1beta1.Fee") -} - -func init() { proto.RegisterFile("cosmos/tx/v1beta1/tx.proto", fileDescriptor_96d1575ffde80842) } - -var fileDescriptor_96d1575ffde80842 = []byte{ - // 846 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4d, 0x6f, 0xdc, 0x44, - 0x18, 0x5e, 0xef, 0x57, 0x76, 0xdf, 0x24, 0x2d, 0x1d, 0x45, 0x68, 0xb3, 0x51, 0xdd, 0xb0, 0x15, - 0x65, 0x2f, 0xb1, 0x69, 0x7a, 0xe0, 0x43, 0x20, 0x91, 0x2d, 0x54, 0xa9, 0x4a, 0x41, 0x9a, 0xe4, - 0xd4, 0x8b, 0x35, 0xf6, 0x4e, 0xbc, 0xa3, 0xda, 0x33, 0x8b, 0x67, 0x1c, 0xec, 0x1f, 0x81, 0x54, - 0x21, 0x21, 0xfe, 0x03, 0x77, 0xfe, 0x43, 0x8f, 0x3d, 0x72, 0x82, 0x28, 0xf9, 0x21, 0xa0, 0x19, - 0x8f, 0x9d, 0x08, 0x56, 0xd9, 0x0b, 0xb7, 0x79, 0xdf, 0x79, 0xde, 0x67, 0x9e, 0x79, 0xbf, 0x60, - 0x1c, 0x09, 0x99, 0x0a, 0xe9, 0xab, 0xc2, 0x3f, 0x7f, 0x1c, 0x52, 0x45, 0x1e, 0xfb, 0xaa, 0xf0, - 0x96, 0x99, 0x50, 0x02, 0xdd, 0xab, 0xee, 0x3c, 0x55, 0x78, 0xf6, 0x6e, 0xbc, 0x13, 0x8b, 0x58, - 0x98, 0x5b, 0x5f, 0x9f, 0x2a, 0xe0, 0xf8, 0xc0, 0x92, 0x44, 0x59, 0xb9, 0x54, 0xc2, 0x4f, 0xf3, - 0x44, 0x31, 0xc9, 0xe2, 0x86, 0xb1, 0x76, 0x58, 0xb8, 0x6b, 0xe1, 0x21, 0x91, 0xb4, 0xc1, 0x44, - 0x82, 0x71, 0x7b, 0xff, 0xd1, 0xb5, 0x26, 0xc9, 0x62, 0xce, 0xf8, 0x35, 0x93, 0xb5, 0x2d, 0x70, - 0x37, 0x16, 0x22, 0x4e, 0xa8, 0x6f, 0xac, 0x30, 0x3f, 0xf3, 0x09, 0x2f, 0xab, 0xab, 0xc9, 0x4f, - 0x0e, 0xb4, 0x4f, 0x0b, 0x74, 0x00, 0xdd, 0x50, 0xcc, 0xcb, 0x91, 0xb3, 0xef, 0x4c, 0x37, 0x0f, - 0x77, 0xbd, 0xff, 0xfc, 0xc8, 0x3b, 0x2d, 0x66, 0x62, 0x5e, 0x62, 0x03, 0x43, 0x9f, 0xc2, 0x90, - 0xe4, 0x6a, 0x11, 0x30, 0x7e, 0x26, 0x46, 0x6d, 0x13, 0xb3, 0xb7, 0x22, 0xe6, 0x28, 0x57, 0x8b, - 0xe7, 0xfc, 0x4c, 0xe0, 0x01, 0xb1, 0x27, 0xe4, 0x02, 0x68, 0x6d, 0x44, 0xe5, 0x19, 0x95, 0xa3, - 0xce, 0x7e, 0x67, 0xba, 0x85, 0x6f, 0x78, 0x26, 0x1c, 0x7a, 0xa7, 0x05, 0x26, 0x3f, 0xa2, 0xfb, - 0x00, 0xfa, 0xa9, 0x20, 0x2c, 0x15, 0x95, 0x46, 0xd7, 0x16, 0x1e, 0x6a, 0xcf, 0x4c, 0x3b, 0xd0, - 0x23, 0xb8, 0xdb, 0x28, 0xb0, 0x98, 0xb6, 0xc1, 0x6c, 0xd7, 0x4f, 0x55, 0xb8, 0x75, 0xef, 0xfd, - 0xec, 0xc0, 0xc6, 0x09, 0x8b, 0xf9, 0xd7, 0x22, 0xfa, 0xbf, 0x9e, 0xdc, 0x85, 0x41, 0xb4, 0x20, - 0x8c, 0x07, 0x6c, 0x3e, 0xea, 0xec, 0x3b, 0xd3, 0x21, 0xde, 0x30, 0xf6, 0xf3, 0x39, 0xfa, 0x10, - 0xee, 0x90, 0x28, 0x12, 0x39, 0x57, 0x01, 0xcf, 0xd3, 0x90, 0x66, 0xa3, 0xee, 0xbe, 0x33, 0xed, - 0xe2, 0x6d, 0xeb, 0xfd, 0xce, 0x38, 0x27, 0xbf, 0xb4, 0xa1, 0x5f, 0xe5, 0x1b, 0x7d, 0x0c, 0x83, - 0x94, 0x4a, 0x49, 0x62, 0xa3, 0xa8, 0x33, 0xdd, 0x3c, 0xdc, 0xf1, 0xaa, 0x6a, 0x7a, 0x75, 0x35, - 0xbd, 0x23, 0x5e, 0xe2, 0x06, 0x85, 0x10, 0x74, 0x53, 0x9a, 0x56, 0x65, 0x19, 0x62, 0x73, 0xd6, - 0xef, 0x2a, 0x96, 0x52, 0x91, 0xab, 0x60, 0x41, 0x59, 0xbc, 0x50, 0x46, 0x58, 0x17, 0x6f, 0x5b, - 0xef, 0xb1, 0x71, 0xa2, 0x19, 0xdc, 0xa3, 0x85, 0xa2, 0x5c, 0x32, 0xc1, 0x03, 0xb1, 0x54, 0x4c, - 0x70, 0x39, 0xfa, 0x7b, 0xe3, 0x96, 0x67, 0xdf, 0x6b, 0xf0, 0xdf, 0x57, 0x70, 0xf4, 0x0a, 0x5c, - 0x2e, 0x78, 0x10, 0x65, 0x4c, 0xb1, 0x88, 0x24, 0xc1, 0x0a, 0xc2, 0xbb, 0xb7, 0x10, 0xee, 0x71, - 0xc1, 0x9f, 0xda, 0xd8, 0x6f, 0xfe, 0xc5, 0x3d, 0x39, 0x87, 0x41, 0xdd, 0x52, 0xe8, 0x2b, 0xd8, - 0xd2, 0x65, 0xa4, 0x99, 0xa9, 0x47, 0x9d, 0x9c, 0xfb, 0x2b, 0xba, 0xf0, 0xc4, 0xc0, 0x4c, 0x1f, - 0x6e, 0xca, 0xe6, 0x2c, 0xd1, 0x14, 0x3a, 0x67, 0x94, 0xda, 0xf6, 0x7d, 0x7f, 0x45, 0xe0, 0x33, - 0x4a, 0xb1, 0x86, 0x4c, 0x7e, 0x75, 0x00, 0xae, 0x59, 0xd0, 0x13, 0x80, 0x65, 0x1e, 0x26, 0x2c, - 0x0a, 0x5e, 0xd3, 0x7a, 0x64, 0x56, 0xff, 0x66, 0x58, 0xe1, 0x5e, 0x50, 0x33, 0x32, 0xa9, 0x98, - 0xd3, 0x75, 0x23, 0xf3, 0x52, 0xcc, 0x69, 0x35, 0x32, 0xa9, 0x3d, 0xa1, 0x31, 0x0c, 0x24, 0xfd, - 0x21, 0xa7, 0x3c, 0xa2, 0xb6, 0x6c, 0x8d, 0x3d, 0xb9, 0x68, 0xc3, 0xa0, 0x0e, 0x41, 0x5f, 0x40, - 0x5f, 0x32, 0x1e, 0x27, 0xd4, 0x6a, 0x9a, 0xdc, 0xc2, 0xef, 0x9d, 0x18, 0xe4, 0x71, 0x0b, 0xdb, - 0x18, 0xf4, 0x19, 0xf4, 0xcc, 0xfe, 0xb1, 0xe2, 0x3e, 0xb8, 0x2d, 0xf8, 0xa5, 0x06, 0x1e, 0xb7, - 0x70, 0x15, 0x31, 0x3e, 0x82, 0x7e, 0x45, 0x87, 0x3e, 0x81, 0xae, 0xd6, 0x6d, 0x04, 0xdc, 0x39, - 0x7c, 0x78, 0x83, 0xa3, 0xde, 0x48, 0x37, 0xab, 0xa2, 0xf9, 0xb0, 0x09, 0x18, 0xbf, 0x71, 0xa0, - 0x67, 0x58, 0xd1, 0x0b, 0x18, 0x84, 0x4c, 0x91, 0x2c, 0x23, 0x75, 0x6e, 0xfd, 0x9a, 0xa6, 0xda, - 0x9b, 0x5e, 0xb3, 0x26, 0x6b, 0xae, 0xa7, 0x22, 0x5d, 0x92, 0x48, 0xcd, 0x98, 0x3a, 0xd2, 0x61, - 0xb8, 0x21, 0x40, 0x9f, 0x03, 0x34, 0x59, 0xd7, 0xe3, 0xda, 0x59, 0x97, 0xf6, 0x61, 0x9d, 0x76, - 0x39, 0xeb, 0x41, 0x47, 0xe6, 0xe9, 0xe4, 0x77, 0x07, 0x3a, 0xcf, 0x28, 0x45, 0x04, 0xfa, 0x24, - 0xd5, 0x43, 0x6a, 0x5b, 0xad, 0x59, 0x92, 0x7a, 0x3d, 0xdf, 0x90, 0xc2, 0xf8, 0xcc, 0x7b, 0xfb, - 0xe7, 0x83, 0xd6, 0x6f, 0x7f, 0x3d, 0x78, 0x14, 0x33, 0xb5, 0xc8, 0x43, 0x2f, 0x12, 0xa9, 0x9f, - 0x30, 0x4e, 0xfd, 0x24, 0x4c, 0x0f, 0xe4, 0xfc, 0xb5, 0x7f, 0x7e, 0xe8, 0xab, 0x72, 0x49, 0xa5, - 0x81, 0x4b, 0x6c, 0x89, 0xd1, 0x1e, 0x0c, 0x63, 0x22, 0x83, 0x84, 0xa5, 0x4c, 0x99, 0x32, 0x74, - 0xf1, 0x20, 0x26, 0xf2, 0x5b, 0x6d, 0xa3, 0x1d, 0xe8, 0x2d, 0x49, 0x49, 0x33, 0xbb, 0x53, 0x2a, - 0x03, 0x8d, 0x60, 0x23, 0xce, 0x08, 0x57, 0x76, 0x95, 0x0c, 0x71, 0x6d, 0xce, 0xbe, 0x7c, 0x7b, - 0xe9, 0x3a, 0xef, 0x2e, 0x5d, 0xe7, 0xe2, 0xd2, 0x75, 0xde, 0x5c, 0xb9, 0xad, 0x77, 0x57, 0x6e, - 0xeb, 0x8f, 0x2b, 0xb7, 0xf5, 0xea, 0xe1, 0x3a, 0x59, 0xbe, 0x2a, 0xc2, 0xbe, 0x69, 0xe4, 0x27, - 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x02, 0xad, 0xee, 0x7f, 0xf9, 0x06, 0x00, 0x00, + proto.RegisterType((*Tx)(nil), "lbm.tx.v1beta1.Tx") + proto.RegisterType((*TxRaw)(nil), "lbm.tx.v1beta1.TxRaw") + proto.RegisterType((*SignDoc)(nil), "lbm.tx.v1beta1.SignDoc") + proto.RegisterType((*TxBody)(nil), "lbm.tx.v1beta1.TxBody") + proto.RegisterType((*AuthInfo)(nil), "lbm.tx.v1beta1.AuthInfo") + proto.RegisterType((*SignerInfo)(nil), "lbm.tx.v1beta1.SignerInfo") + proto.RegisterType((*ModeInfo)(nil), "lbm.tx.v1beta1.ModeInfo") + proto.RegisterType((*ModeInfo_Single)(nil), "lbm.tx.v1beta1.ModeInfo.Single") + proto.RegisterType((*ModeInfo_Multi)(nil), "lbm.tx.v1beta1.ModeInfo.Multi") + proto.RegisterType((*Fee)(nil), "lbm.tx.v1beta1.Fee") +} + +func init() { proto.RegisterFile("lbm/tx/v1beta1/tx.proto", fileDescriptor_fa21011f8eac726a) } + +var fileDescriptor_fa21011f8eac726a = []byte{ + // 847 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcd, 0x6e, 0x1c, 0x45, + 0x10, 0xde, 0xd9, 0x3f, 0xef, 0x96, 0x7f, 0x02, 0x8d, 0x05, 0x9b, 0xb5, 0x18, 0xaf, 0x16, 0x12, + 0xad, 0x22, 0x98, 0x21, 0x0e, 0x3f, 0xe2, 0x10, 0x24, 0x6f, 0x20, 0x72, 0x04, 0x01, 0xa9, 0xed, + 0x53, 0x0e, 0x8c, 0x7a, 0x66, 0xdb, 0xb3, 0xad, 0x4c, 0x77, 0x2f, 0xd3, 0x3d, 0x61, 0xf7, 0x09, + 0x90, 0x38, 0x21, 0x04, 0x2f, 0xc1, 0x91, 0xa7, 0xc8, 0x31, 0xdc, 0x38, 0x01, 0xb2, 0x1f, 0x04, + 0xd4, 0x3d, 0x3d, 0x13, 0x63, 0x25, 0xeb, 0x4b, 0x6e, 0x5d, 0x55, 0x5f, 0x7d, 0x55, 0x5d, 0x7f, + 0xf0, 0x56, 0x16, 0xf3, 0x50, 0x2f, 0xc3, 0x27, 0xb7, 0x63, 0xaa, 0xc9, 0xed, 0x50, 0x2f, 0x83, + 0x45, 0x2e, 0xb5, 0x44, 0x3b, 0x59, 0xcc, 0x03, 0xbd, 0x0c, 0x9c, 0x61, 0xb8, 0x9b, 0xca, 0x54, + 0x5a, 0x53, 0x68, 0x5e, 0x25, 0x6a, 0x78, 0xcb, 0xb8, 0x27, 0xf9, 0x6a, 0xa1, 0x65, 0xc8, 0x8b, + 0x4c, 0x33, 0xc5, 0xd2, 0x9a, 0xab, 0x52, 0x38, 0xec, 0x9e, 0xc1, 0xc6, 0x44, 0xd1, 0x1a, 0x90, + 0x48, 0x26, 0x9c, 0xf1, 0x5d, 0x97, 0x87, 0x62, 0xa9, 0x60, 0xe2, 0x39, 0x87, 0x93, 0x1d, 0xea, + 0x7a, 0x2a, 0x65, 0x9a, 0xd1, 0xd0, 0x4a, 0x71, 0x71, 0x1a, 0x12, 0xb1, 0x2a, 0x4d, 0xe3, 0x1f, + 0x3c, 0x68, 0x9e, 0x2c, 0xd1, 0x2d, 0x68, 0xc7, 0x72, 0xb6, 0x1a, 0x78, 0x23, 0x6f, 0xb2, 0x79, + 0xf0, 0x66, 0xf0, 0xff, 0x5f, 0x04, 0x27, 0xcb, 0xa9, 0x9c, 0xad, 0xb0, 0xc5, 0xa0, 0x8f, 0xa0, + 0x4f, 0x0a, 0x3d, 0x8f, 0x98, 0x38, 0x95, 0x83, 0xa6, 0x75, 0x18, 0x5c, 0x76, 0x38, 0x2c, 0xf4, + 0xfc, 0x81, 0x38, 0x95, 0xb8, 0x47, 0xdc, 0x0b, 0xf9, 0x00, 0x26, 0x2b, 0xa2, 0x8b, 0x9c, 0xaa, + 0x41, 0x6b, 0xd4, 0x9a, 0x6c, 0xe1, 0x0b, 0x9a, 0xb1, 0x80, 0xce, 0xc9, 0x12, 0x93, 0xef, 0xd1, + 0xdb, 0x00, 0x26, 0x4e, 0x14, 0xaf, 0x34, 0x55, 0x36, 0xa3, 0x2d, 0xdc, 0x37, 0x9a, 0xa9, 0x51, + 0xa0, 0x9b, 0x70, 0xad, 0x0e, 0xef, 0x30, 0x4d, 0x8b, 0xd9, 0xae, 0x42, 0x95, 0xb8, 0xab, 0xe2, + 0xfd, 0xec, 0xc1, 0xc6, 0x31, 0x4b, 0xc5, 0xe7, 0x32, 0x79, 0x55, 0x21, 0xaf, 0x43, 0x2f, 0x99, + 0x13, 0x26, 0x22, 0x36, 0x1b, 0xb4, 0x46, 0xde, 0xa4, 0x8f, 0x37, 0xac, 0xfc, 0x60, 0x86, 0x6e, + 0xc0, 0x0e, 0x49, 0x12, 0x59, 0x08, 0x1d, 0x89, 0x82, 0xc7, 0x34, 0x1f, 0xb4, 0x47, 0xde, 0xa4, + 0x8d, 0xb7, 0x9d, 0xf6, 0x6b, 0xab, 0x1c, 0xff, 0xda, 0x84, 0x6e, 0x59, 0x6c, 0xf4, 0x01, 0xf4, + 0x38, 0x55, 0x8a, 0xa4, 0x36, 0xa3, 0xd6, 0x64, 0xf3, 0x60, 0x37, 0x28, 0xfb, 0x18, 0x54, 0x7d, + 0x0c, 0x0e, 0xc5, 0x0a, 0xd7, 0x28, 0x84, 0xa0, 0xcd, 0x29, 0x2f, 0x7b, 0xd2, 0xc7, 0xf6, 0x6d, + 0xe2, 0x6a, 0xc6, 0xa9, 0x2c, 0x74, 0x34, 0xa7, 0x2c, 0x9d, 0x6b, 0x9b, 0x58, 0x1b, 0x6f, 0x3b, + 0xed, 0x91, 0x55, 0xa2, 0x29, 0xbc, 0x4e, 0x97, 0x9a, 0x0a, 0xc5, 0xa4, 0x88, 0xe4, 0x42, 0x33, + 0x29, 0xd4, 0xe0, 0xdf, 0x8d, 0x35, 0x61, 0x5f, 0xab, 0xf1, 0xdf, 0x94, 0x70, 0xf4, 0x08, 0x7c, + 0x21, 0x45, 0x94, 0xe4, 0x4c, 0xb3, 0x84, 0x64, 0xd1, 0x0b, 0x08, 0xaf, 0xad, 0x21, 0xdc, 0x13, + 0x52, 0xdc, 0x73, 0xbe, 0x5f, 0x5c, 0xe2, 0x1e, 0x2f, 0xa0, 0x57, 0x8d, 0x14, 0xba, 0x0b, 0x5b, + 0xa6, 0x8d, 0x34, 0xb7, 0xfd, 0xa8, 0x8a, 0x33, 0xbc, 0x3c, 0x82, 0xc7, 0x16, 0x63, 0x87, 0x70, + 0x53, 0xd5, 0x6f, 0x85, 0x6e, 0x40, 0xeb, 0x94, 0x52, 0x37, 0xb8, 0x6f, 0x5c, 0xf6, 0xba, 0x4f, + 0x29, 0x36, 0xf6, 0xf1, 0x2f, 0x1e, 0xc0, 0x73, 0x0a, 0x74, 0x07, 0x60, 0x51, 0xc4, 0x19, 0x4b, + 0xa2, 0xc7, 0xb4, 0x5a, 0x93, 0x17, 0xff, 0xa3, 0x5f, 0xe2, 0xbe, 0xa4, 0x76, 0x53, 0xb8, 0x9c, + 0xd1, 0xb5, 0x9b, 0xf2, 0x50, 0xce, 0x68, 0xb9, 0x29, 0xdc, 0xbd, 0xd0, 0x10, 0x7a, 0x8a, 0x7e, + 0x57, 0x50, 0x91, 0x50, 0xd7, 0xad, 0x5a, 0x1e, 0xff, 0xd1, 0x84, 0x5e, 0xe5, 0x82, 0x3e, 0x85, + 0xae, 0x62, 0x22, 0xcd, 0xa8, 0x4b, 0x68, 0xff, 0x65, 0xe4, 0xc1, 0xb1, 0x85, 0x1d, 0x35, 0xb0, + 0x73, 0x40, 0x1f, 0x43, 0xc7, 0xde, 0x19, 0x97, 0x96, 0xff, 0x52, 0xcf, 0x87, 0x06, 0x75, 0xd4, + 0xc0, 0x25, 0x7c, 0xf8, 0x19, 0x74, 0x4b, 0x2e, 0xf4, 0x21, 0xb4, 0x4d, 0xc6, 0x36, 0xf4, 0xce, + 0xc1, 0xa8, 0x22, 0xa8, 0x2e, 0xcf, 0xc5, 0x36, 0x18, 0x32, 0x6c, 0xd1, 0xc3, 0x1f, 0x3d, 0xe8, + 0x58, 0x4a, 0x74, 0x04, 0xbd, 0x98, 0x69, 0x92, 0xe7, 0xa4, 0xaa, 0xe7, 0x7b, 0x96, 0xa3, 0x3c, + 0x8b, 0x41, 0x7d, 0x05, 0x2b, 0xa2, 0x7b, 0x92, 0x2f, 0x48, 0xa2, 0xa7, 0x4c, 0x1f, 0x1a, 0x1f, + 0x5c, 0x7b, 0xa3, 0x4f, 0x00, 0xea, 0x32, 0x9b, 0xcd, 0x6c, 0xad, 0xad, 0x73, 0xbf, 0xaa, 0xb3, + 0x9a, 0x76, 0xa0, 0xa5, 0x0a, 0x3e, 0xfe, 0xdd, 0x83, 0xd6, 0x7d, 0x4a, 0xd1, 0xb7, 0xd0, 0x25, + 0xdc, 0x2c, 0xa3, 0x1b, 0xa9, 0xf2, 0x0c, 0x9a, 0xd3, 0x7b, 0x21, 0x09, 0x26, 0xa6, 0xc1, 0xd3, + 0xbf, 0xf6, 0x1b, 0xbf, 0xfd, 0xbd, 0x7f, 0x33, 0x65, 0x7a, 0x5e, 0xc4, 0x41, 0x22, 0x79, 0x98, + 0x31, 0x41, 0xc3, 0x2c, 0xe6, 0xef, 0xab, 0xd9, 0xe3, 0xf0, 0xc9, 0x41, 0xa8, 0x57, 0x0b, 0xaa, + 0x2c, 0x5c, 0x61, 0xc7, 0x8a, 0xf6, 0xa0, 0x9f, 0x12, 0x15, 0x65, 0x8c, 0x33, 0x6d, 0xeb, 0xde, + 0xc6, 0xbd, 0x94, 0xa8, 0xaf, 0x8c, 0x8c, 0x76, 0xa1, 0xb3, 0x20, 0x2b, 0x9a, 0xbb, 0xc3, 0x51, + 0x0a, 0x68, 0x00, 0x1b, 0x69, 0x4e, 0x84, 0x76, 0xf7, 0xa2, 0x8f, 0x2b, 0x71, 0x7a, 0xf7, 0xe9, + 0x99, 0xef, 0x3d, 0x3b, 0xf3, 0xbd, 0x7f, 0xce, 0x7c, 0xef, 0xa7, 0x73, 0xbf, 0xf1, 0xec, 0xdc, + 0x6f, 0xfc, 0x79, 0xee, 0x37, 0x1e, 0xbd, 0x73, 0x55, 0x5a, 0xa1, 0x5e, 0xc6, 0x5d, 0x3b, 0xb3, + 0x77, 0xfe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x40, 0x3a, 0xe9, 0x3c, 0xc9, 0x06, 0x00, 0x00, } func (m *Tx) Marshal() (dAtA []byte, err error) { diff --git a/types/tx/types.go b/types/tx/types.go index c269e08662..ff5f99a883 100644 --- a/types/tx/types.go +++ b/types/tx/types.go @@ -188,12 +188,12 @@ func (m *SignerInfo) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error { // RegisterInterfaces registers the sdk.Tx interface. func RegisterInterfaces(registry codectypes.InterfaceRegistry) { - registry.RegisterInterface("cosmos.tx.v1beta1.Tx", (*sdk.Tx)(nil)) + registry.RegisterInterface("lbm.tx.v1beta1.Tx", (*sdk.Tx)(nil)) registry.RegisterImplementations((*sdk.Tx)(nil), &Tx{}) } // isServiceMsg checks if a type URL corresponds to a service method name, -// i.e. /cosmos.bank.Msg/Send vs /cosmos.bank.MsgSend +// i.e. /lbm.bank.Msg/Send vs /lbm.bank.MsgSend func isServiceMsg(typeURL string) bool { return strings.Count(typeURL, "/") >= 2 } diff --git a/x/auth/client/cli/cli_test.go b/x/auth/client/cli/cli_test.go index 35e9273fe3..0dac6ab1b4 100644 --- a/x/auth/client/cli/cli_test.go +++ b/x/auth/client/cli/cli_test.go @@ -290,7 +290,7 @@ func (s *IntegrationTestSuite) TestCLIQueryTxCmd() { "happy case (service Msg)", []string{txRes.TxHash, fmt.Sprintf("--%s=json", ostcli.OutputFlag)}, false, - "/cosmos.bank.v1beta1.Msg/Send", + "/lbm.bank.v1beta1.Msg/Send", }, } diff --git a/x/auth/client/rest/rest_test.go b/x/auth/client/rest/rest_test.go index 7da65f0b56..c75bb68951 100644 --- a/x/auth/client/rest/rest_test.go +++ b/x/auth/client/rest/rest_test.go @@ -99,7 +99,7 @@ func mkStdTx() legacytx.StdTx { } // Create an IBC tx that's encoded as amino-JSON. Since we can't amino-marshal -// a tx with "cosmos-sdk/MsgTransfer" using the SDK, we just hardcode the tx +// a tx with "lbm-sdk/MsgTransfer" using the SDK, we just hardcode the tx // here. But external clients might, see https://github.com/line/lbm-sdk/v2/issues/8022. func mkIBCStdTx() []byte { ibcTx := `{ @@ -117,7 +117,7 @@ func mkIBCStdTx() []byte { "memo": "", "msg": [ { - "type": "cosmos-sdk/MsgTransfer", + "type": "lbm-sdk/MsgTransfer", "value": { "receiver": "cosmos1q9wtnlwdjrhwtcjmt2uq77jrgx7z3usrq2yz7z", "sender": "cosmos1q9wtnlwdjrhwtcjmt2uq77jrgx7z3usrq2yz7z", @@ -496,7 +496,7 @@ func (s *IntegrationTestSuite) TestLegacyRestErrMessages() { // Write consensus json to temp file, used for an IBC message. consensusJSON := testutil.WriteToNewTempFile( s.T(), - `{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A/3SXL2ONYaOkxpdR5P8tHTlSlPv1AwQwSFxKRee5JQW"},"diversifier":"diversifier","timestamp":"10"}`, + `{"public_key":{"@type":"/lbm.crypto.secp256k1.PubKey","key":"A/3SXL2ONYaOkxpdR5P8tHTlSlPv1AwQwSFxKRee5JQW"},"diversifier":"diversifier","timestamp":"10"}`, ) testCases := []struct { diff --git a/x/auth/client/tx_test.go b/x/auth/client/tx_test.go index f4386aff08..0b50e04bed 100644 --- a/x/auth/client/tx_test.go +++ b/x/auth/client/tx_test.go @@ -153,6 +153,6 @@ func makeCodec() *codec.LegacyAmino { sdk.RegisterLegacyAminoCodec(cdc) cryptocodec.RegisterCrypto(cdc) authtypes.RegisterLegacyAminoCodec(cdc) - cdc.RegisterConcrete(testdata.TestMsg{}, "cosmos-sdk/Test", nil) + cdc.RegisterConcrete(testdata.TestMsg{}, "lbm-sdk/Test", nil) return cdc } diff --git a/x/auth/legacy/legacytx/codec.go b/x/auth/legacy/legacytx/codec.go index 5fc7e3dd2d..20d3bd4459 100644 --- a/x/auth/legacy/legacytx/codec.go +++ b/x/auth/legacy/legacytx/codec.go @@ -5,5 +5,5 @@ import ( ) func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(StdTx{}, "cosmos-sdk/StdTx", nil) + cdc.RegisterConcrete(StdTx{}, "lbm-sdk/StdTx", nil) } diff --git a/x/auth/legacy/legacytx/config_test.go b/x/auth/legacy/legacytx/config_test.go index bfcde94429..4a402c7301 100644 --- a/x/auth/legacy/legacytx/config_test.go +++ b/x/auth/legacy/legacytx/config_test.go @@ -17,7 +17,7 @@ func testCodec() *codec.LegacyAmino { cdc := codec.NewLegacyAmino() sdk.RegisterLegacyAminoCodec(cdc) cryptoAmino.RegisterCrypto(cdc) - cdc.RegisterConcrete(&testdata.TestMsg{}, "cosmos-sdk/Test", nil) + cdc.RegisterConcrete(&testdata.TestMsg{}, "lbm-sdk/Test", nil) return cdc } diff --git a/x/auth/legacy/legacytx/stdtx_test.go b/x/auth/legacy/legacytx/stdtx_test.go index 55e08cbcdd..ba0305c724 100644 --- a/x/auth/legacy/legacytx/stdtx_test.go +++ b/x/auth/legacy/legacytx/stdtx_test.go @@ -164,7 +164,7 @@ func TestTxValidateBasic(t *testing.T) { func TestDefaultTxEncoder(t *testing.T) { cdc := codec.NewLegacyAmino() sdk.RegisterLegacyAminoCodec(cdc) - cdc.RegisterConcrete(testdata.TestMsg{}, "cosmos-sdk/Test", nil) + cdc.RegisterConcrete(testdata.TestMsg{}, "lbm-sdk/Test", nil) encoder := DefaultTxEncoder(cdc) msgs := []sdk.Msg{testdata.NewTestMsg(addr)} diff --git a/x/auth/legacy/v038/types.go b/x/auth/legacy/v038/types.go index d77938df14..5a1bbbbdf5 100644 --- a/x/auth/legacy/v038/types.go +++ b/x/auth/legacy/v038/types.go @@ -522,9 +522,9 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cryptocodec.RegisterCrypto(cdc) cdc.RegisterInterface((*GenesisAccount)(nil), nil) cdc.RegisterInterface((*Account)(nil), nil) - cdc.RegisterConcrete(&BaseAccount{}, "cosmos-sdk/Account", nil) - cdc.RegisterConcrete(&BaseVestingAccount{}, "cosmos-sdk/BaseVestingAccount", nil) - cdc.RegisterConcrete(&ContinuousVestingAccount{}, "cosmos-sdk/ContinuousVestingAccount", nil) - cdc.RegisterConcrete(&DelayedVestingAccount{}, "cosmos-sdk/DelayedVestingAccount", nil) - cdc.RegisterConcrete(&ModuleAccount{}, "cosmos-sdk/ModuleAccount", nil) + cdc.RegisterConcrete(&BaseAccount{}, "lbm-sdk/Account", nil) + cdc.RegisterConcrete(&BaseVestingAccount{}, "lbm-sdk/BaseVestingAccount", nil) + cdc.RegisterConcrete(&ContinuousVestingAccount{}, "lbm-sdk/ContinuousVestingAccount", nil) + cdc.RegisterConcrete(&DelayedVestingAccount{}, "lbm-sdk/DelayedVestingAccount", nil) + cdc.RegisterConcrete(&ModuleAccount{}, "lbm-sdk/ModuleAccount", nil) } diff --git a/x/auth/legacy/v039/migrate_test.go b/x/auth/legacy/v039/migrate_test.go index d31abcf1fd..70c10955c0 100644 --- a/x/auth/legacy/v039/migrate_test.go +++ b/x/auth/legacy/v039/migrate_test.go @@ -63,7 +63,7 @@ func TestMigrate(t *testing.T) { }, "accounts": [ { - "type": "cosmos-sdk/Account", + "type": "lbm-sdk/Account", "value": { "address": "cosmos1j7skdhh9raxdmfhmcy2gxz8hgn0jnhfmujjsfe", "coins": [ @@ -81,7 +81,7 @@ func TestMigrate(t *testing.T) { } }, { - "type": "cosmos-sdk/Account", + "type": "lbm-sdk/Account", "value": { "address": "cosmos1v57fx2l2rt6ehujuu99u2fw05779m5e2ux4z2h", "coins": [ diff --git a/x/auth/legacy/v039/types.go b/x/auth/legacy/v039/types.go index 6455b7edfb..b9d5ef5f43 100644 --- a/x/auth/legacy/v039/types.go +++ b/x/auth/legacy/v039/types.go @@ -420,10 +420,10 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cryptocodec.RegisterCrypto(cdc) cdc.RegisterInterface((*v038auth.GenesisAccount)(nil), nil) cdc.RegisterInterface((*v038auth.Account)(nil), nil) - cdc.RegisterConcrete(&BaseAccount{}, "cosmos-sdk/Account", nil) - cdc.RegisterConcrete(&BaseVestingAccount{}, "cosmos-sdk/BaseVestingAccount", nil) - cdc.RegisterConcrete(&ContinuousVestingAccount{}, "cosmos-sdk/ContinuousVestingAccount", nil) - cdc.RegisterConcrete(&DelayedVestingAccount{}, "cosmos-sdk/DelayedVestingAccount", nil) - cdc.RegisterConcrete(&PeriodicVestingAccount{}, "cosmos-sdk/PeriodicVestingAccount", nil) - cdc.RegisterConcrete(&ModuleAccount{}, "cosmos-sdk/ModuleAccount", nil) + cdc.RegisterConcrete(&BaseAccount{}, "lbm-sdk/Account", nil) + cdc.RegisterConcrete(&BaseVestingAccount{}, "lbm-sdk/BaseVestingAccount", nil) + cdc.RegisterConcrete(&ContinuousVestingAccount{}, "lbm-sdk/ContinuousVestingAccount", nil) + cdc.RegisterConcrete(&DelayedVestingAccount{}, "lbm-sdk/DelayedVestingAccount", nil) + cdc.RegisterConcrete(&PeriodicVestingAccount{}, "lbm-sdk/PeriodicVestingAccount", nil) + cdc.RegisterConcrete(&ModuleAccount{}, "lbm-sdk/ModuleAccount", nil) } diff --git a/x/auth/legacy/v040/migrate_test.go b/x/auth/legacy/v040/migrate_test.go index 543945b564..f11eb2912e 100644 --- a/x/auth/legacy/v040/migrate_test.go +++ b/x/auth/legacy/v040/migrate_test.go @@ -86,22 +86,22 @@ func TestMigrate(t *testing.T) { expected := `{ "accounts": [ { - "@type": "/cosmos.auth.v1beta1.BaseAccount", + "@type": "/lbm.auth.v1beta1.BaseAccount", "account_number": "1", "address": "cosmos13syh7de9xndv9wmklccpfvc0d8dcyvay4s6z6l", "pub_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", + "@type": "/lbm.crypto.secp256k1.PubKey", "key": "A8oWyJkohwy8XZ0Df92jFMBTtTPMvYJplYIrlEHTKPYk" }, "sequence": "0" }, { - "@type": "/cosmos.auth.v1beta1.ModuleAccount", + "@type": "/lbm.auth.v1beta1.ModuleAccount", "base_account": { "account_number": "1", "address": "cosmos1v57fx2l2rt6ehujuu99u2fw05779m5e2ux4z2h", "pub_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", + "@type": "/lbm.crypto.secp256k1.PubKey", "key": "AruDygh5HprMOpHOEato85dLgAsybMJVyxBGUa3KuWCr" }, "sequence": "0" @@ -112,12 +112,12 @@ func TestMigrate(t *testing.T) { ] }, { - "@type": "/cosmos.vesting.v1beta1.BaseVestingAccount", + "@type": "/lbm.vesting.v1beta1.BaseVestingAccount", "base_account": { "account_number": "1", "address": "cosmos18hnp9fjflrkeeqn4gmhjhzljusxzmjeartdckw", "pub_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", + "@type": "/lbm.crypto.secp256k1.PubKey", "key": "A5aEFDIdQHh0OYmNXNv1sHBNURDWWgVkXC2IALcWLLwJ" }, "sequence": "0" @@ -143,13 +143,13 @@ func TestMigrate(t *testing.T) { ] }, { - "@type": "/cosmos.vesting.v1beta1.ContinuousVestingAccount", + "@type": "/lbm.vesting.v1beta1.ContinuousVestingAccount", "base_vesting_account": { "base_account": { "account_number": "1", "address": "cosmos1t9kvvejvk6hjtddx6antck39s206csqduq3ke3", "pub_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", + "@type": "/lbm.crypto.secp256k1.PubKey", "key": "AoXDzxwTnljemHxfnJcwrKqODBP6Q2l3K3U3UhVDzyah" }, "sequence": "0" @@ -167,13 +167,13 @@ func TestMigrate(t *testing.T) { "start_time": "1580309974" }, { - "@type": "/cosmos.vesting.v1beta1.PeriodicVestingAccount", + "@type": "/lbm.vesting.v1beta1.PeriodicVestingAccount", "base_vesting_account": { "base_account": { "account_number": "1", "address": "cosmos1s4ss9zquz7skvguechzlk3na635jdrecl0sgy2", "pub_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", + "@type": "/lbm.crypto.secp256k1.PubKey", "key": "A2a4P4TQ1OKzpfu0eKnCoEtmTvoiclSx0G9higenUGws" }, "sequence": "0" @@ -202,13 +202,13 @@ func TestMigrate(t *testing.T) { ] }, { - "@type": "/cosmos.vesting.v1beta1.DelayedVestingAccount", + "@type": "/lbm.vesting.v1beta1.DelayedVestingAccount", "base_vesting_account": { "base_account": { "account_number": "1", "address": "cosmos1mcc6rwrj4hswf8p9ct82c7lmf77w9tuk07rha4", "pub_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", + "@type": "/lbm.crypto.secp256k1.PubKey", "key": "A4tuAfmZlhjK5cjp6ImR704miybHnITVNOyJORdDPFu3" }, "sequence": "0" @@ -225,7 +225,7 @@ func TestMigrate(t *testing.T) { } }, { - "@type": "/cosmos.auth.v1beta1.BaseAccount", + "@type": "/lbm.auth.v1beta1.BaseAccount", "account_number": "1", "address": "cosmos16ydaqh0fcnh4qt7a3jme4mmztm2qel5axcpw00", "pub_key": null, diff --git a/x/auth/signing/verify_test.go b/x/auth/signing/verify_test.go index 733b2568e6..de8ce6baad 100644 --- a/x/auth/signing/verify_test.go +++ b/x/auth/signing/verify_test.go @@ -34,7 +34,7 @@ func TestVerifySignature(t *testing.T) { cdc := codec.NewLegacyAmino() sdk.RegisterLegacyAminoCodec(cdc) types.RegisterLegacyAminoCodec(cdc) - cdc.RegisterConcrete(testdata.TestMsg{}, "cosmos-sdk/Test", nil) + cdc.RegisterConcrete(testdata.TestMsg{}, "lbm-sdk/Test", nil) acc1 := app.AccountKeeper.NewAccountWithAddress(ctx, addr) _ = app.AccountKeeper.NewAccountWithAddress(ctx, addr1) diff --git a/x/auth/types/auth.pb.go b/x/auth/types/auth.pb.go index 8ecdf20530..edc027f89e 100644 --- a/x/auth/types/auth.pb.go +++ b/x/auth/types/auth.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/auth/v1beta1/auth.proto +// source: lbm/auth/v1beta1/auth.proto package types @@ -38,7 +38,7 @@ type BaseAccount struct { func (m *BaseAccount) Reset() { *m = BaseAccount{} } func (*BaseAccount) ProtoMessage() {} func (*BaseAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_7e1f7e915d020d2d, []int{0} + return fileDescriptor_023b8ec707b0f8f4, []int{0} } func (m *BaseAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,7 +77,7 @@ type ModuleAccount struct { func (m *ModuleAccount) Reset() { *m = ModuleAccount{} } func (*ModuleAccount) ProtoMessage() {} func (*ModuleAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_7e1f7e915d020d2d, []int{1} + return fileDescriptor_023b8ec707b0f8f4, []int{1} } func (m *ModuleAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,7 +118,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_7e1f7e915d020d2d, []int{2} + return fileDescriptor_023b8ec707b0f8f4, []int{2} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -183,58 +183,58 @@ func (m *Params) GetSigVerifyCostSecp256k1() uint64 { } func init() { - proto.RegisterType((*BaseAccount)(nil), "cosmos.auth.v1beta1.BaseAccount") - proto.RegisterType((*ModuleAccount)(nil), "cosmos.auth.v1beta1.ModuleAccount") - proto.RegisterType((*Params)(nil), "cosmos.auth.v1beta1.Params") + proto.RegisterType((*BaseAccount)(nil), "lbm.auth.v1beta1.BaseAccount") + proto.RegisterType((*ModuleAccount)(nil), "lbm.auth.v1beta1.ModuleAccount") + proto.RegisterType((*Params)(nil), "lbm.auth.v1beta1.Params") } -func init() { proto.RegisterFile("cosmos/auth/v1beta1/auth.proto", fileDescriptor_7e1f7e915d020d2d) } +func init() { proto.RegisterFile("lbm/auth/v1beta1/auth.proto", fileDescriptor_023b8ec707b0f8f4) } -var fileDescriptor_7e1f7e915d020d2d = []byte{ - // 679 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0x4f, 0x4f, 0xdb, 0x48, - 0x14, 0x8f, 0x37, 0x59, 0xfe, 0x4c, 0x00, 0x09, 0x13, 0xc0, 0xc9, 0xae, 0x6c, 0xcb, 0x97, 0xcd, - 0x61, 0x63, 0x2b, 0x59, 0xb1, 0x12, 0x39, 0xac, 0x16, 0xb3, 0x7b, 0x40, 0xbb, 0x20, 0x64, 0xa4, - 0x1e, 0xaa, 0x4a, 0xee, 0xd8, 0x19, 0x8c, 0x45, 0xc6, 0x63, 0x3c, 0x63, 0x14, 0xf3, 0x09, 0x7a, - 0xec, 0xb1, 0x47, 0x3e, 0x04, 0xdf, 0xa0, 0x97, 0x1e, 0x11, 0xa7, 0x9e, 0xdc, 0x2a, 0x5c, 0xaa, - 0x1e, 0x73, 0xaf, 0x54, 0x65, 0xc6, 0x09, 0x09, 0x4a, 0x6f, 0xf3, 0xfb, 0xf3, 0x7e, 0xef, 0xcd, - 0x9b, 0xc4, 0x40, 0xf5, 0x09, 0xc5, 0x84, 0x5a, 0x30, 0x65, 0x17, 0xd6, 0x75, 0xdb, 0x43, 0x0c, - 0xb6, 0x39, 0x30, 0xe3, 0x84, 0x30, 0x22, 0x6f, 0x09, 0xdd, 0xe4, 0x54, 0xa1, 0x37, 0xea, 0x82, - 0x74, 0xb9, 0xc5, 0x2a, 0x1c, 0x1c, 0x34, 0x6a, 0x01, 0x09, 0x88, 0xe0, 0xc7, 0xa7, 0x82, 0xad, - 0x07, 0x84, 0x04, 0x7d, 0x64, 0x71, 0xe4, 0xa5, 0xe7, 0x16, 0x8c, 0x32, 0x21, 0x19, 0xdf, 0x24, - 0x50, 0xb5, 0x21, 0x45, 0x07, 0xbe, 0x4f, 0xd2, 0x88, 0xc9, 0x0a, 0x58, 0x86, 0xbd, 0x5e, 0x82, - 0x28, 0x55, 0x24, 0x5d, 0x6a, 0xae, 0x3a, 0x13, 0x28, 0xbf, 0x02, 0xcb, 0x71, 0xea, 0xb9, 0x97, - 0x28, 0x53, 0x7e, 0xd2, 0xa5, 0x66, 0xb5, 0x53, 0x33, 0x45, 0xac, 0x39, 0x89, 0x35, 0x0f, 0xa2, - 0xcc, 0x6e, 0x7d, 0xcd, 0xb5, 0x5a, 0x9c, 0x7a, 0xfd, 0xd0, 0x1f, 0x7b, 0x7f, 0x27, 0x38, 0x64, - 0x08, 0xc7, 0x2c, 0x1b, 0xe5, 0xda, 0x66, 0x06, 0x71, 0xbf, 0x6b, 0x3c, 0xa9, 0x86, 0xb3, 0x14, - 0xa7, 0xde, 0x7f, 0x28, 0x93, 0xff, 0x06, 0x1b, 0x50, 0x8c, 0xe0, 0x46, 0x29, 0xf6, 0x50, 0xa2, - 0x94, 0x75, 0xa9, 0x59, 0xb1, 0xeb, 0xa3, 0x5c, 0xdb, 0x16, 0x65, 0xf3, 0xba, 0xe1, 0xac, 0x17, - 0xc4, 0x09, 0xc7, 0x72, 0x03, 0xac, 0x50, 0x74, 0x95, 0xa2, 0xc8, 0x47, 0x4a, 0x65, 0x5c, 0xeb, - 0x4c, 0x71, 0x57, 0x79, 0x73, 0xab, 0x95, 0xde, 0xdd, 0x6a, 0xa5, 0x2f, 0xb7, 0x5a, 0xe9, 0xe1, - 0xae, 0xb5, 0x52, 0x5c, 0xf7, 0xc8, 0x78, 0x2f, 0x81, 0xf5, 0x63, 0xd2, 0x4b, 0xfb, 0xd3, 0x0d, - 0xbc, 0x06, 0x6b, 0x1e, 0xa4, 0xc8, 0x2d, 0xd2, 0xf9, 0x1a, 0xaa, 0x1d, 0xdd, 0x5c, 0xf0, 0x12, - 0xe6, 0xcc, 0xe6, 0xec, 0x5f, 0xee, 0x73, 0x4d, 0x1a, 0xe5, 0xda, 0x96, 0x98, 0x76, 0x36, 0xc3, - 0x70, 0xaa, 0xde, 0xcc, 0x8e, 0x65, 0x50, 0x89, 0x20, 0x46, 0x7c, 0x8d, 0xab, 0x0e, 0x3f, 0xcb, - 0x3a, 0xa8, 0xc6, 0x28, 0xc1, 0x21, 0xa5, 0x21, 0x89, 0xa8, 0x52, 0xd6, 0xcb, 0xcd, 0x55, 0x67, - 0x96, 0xea, 0x36, 0x26, 0x77, 0x78, 0xb8, 0x6b, 0x6d, 0xcc, 0x8d, 0x7c, 0x64, 0x7c, 0x2a, 0x83, - 0xa5, 0x53, 0x98, 0x40, 0x4c, 0xe5, 0x13, 0xb0, 0x85, 0xe1, 0xc0, 0xc5, 0x08, 0x13, 0xd7, 0xbf, - 0x80, 0x09, 0xf4, 0x19, 0x4a, 0xc4, 0x63, 0x56, 0x6c, 0x75, 0x94, 0x6b, 0x0d, 0x31, 0xdf, 0x02, - 0x93, 0xe1, 0x6c, 0x62, 0x38, 0x38, 0x46, 0x98, 0x1c, 0x4e, 0x39, 0x79, 0x1f, 0xac, 0xb1, 0x81, - 0x4b, 0xc3, 0xc0, 0xed, 0x87, 0x38, 0x64, 0x7c, 0xe8, 0x8a, 0xbd, 0xfb, 0x74, 0xd1, 0x59, 0xd5, - 0x70, 0x00, 0x1b, 0x9c, 0x85, 0xc1, 0xff, 0x63, 0x20, 0x3b, 0x60, 0x9b, 0x8b, 0x37, 0xc8, 0xf5, - 0x09, 0x65, 0x6e, 0x8c, 0x12, 0xd7, 0xcb, 0x18, 0x2a, 0x9e, 0x56, 0x1f, 0xe5, 0xda, 0xaf, 0x33, - 0x19, 0xcf, 0x6d, 0x86, 0xb3, 0x39, 0x0e, 0xbb, 0x41, 0x87, 0x84, 0xb2, 0x53, 0x94, 0xd8, 0x19, - 0x43, 0xf2, 0x15, 0xd8, 0x1d, 0x77, 0xbb, 0x46, 0x49, 0x78, 0x9e, 0x09, 0x3f, 0xea, 0x75, 0xf6, - 0xf6, 0xda, 0xfb, 0xe2, 0xd1, 0xed, 0xee, 0x30, 0xd7, 0x6a, 0x67, 0x61, 0xf0, 0x82, 0x3b, 0xc6, - 0xa5, 0xff, 0xfe, 0xc3, 0xf5, 0x51, 0xae, 0xa9, 0xa2, 0xdb, 0x0f, 0x02, 0x0c, 0xa7, 0x46, 0xe7, - 0xea, 0x04, 0x2d, 0x67, 0xa0, 0xfe, 0xbc, 0x82, 0x22, 0x3f, 0xee, 0xec, 0xfd, 0x79, 0xd9, 0x56, - 0x7e, 0xe6, 0x4d, 0xff, 0x1a, 0xe6, 0xda, 0xce, 0x5c, 0xd3, 0xb3, 0x89, 0x63, 0x94, 0x6b, 0xfa, - 0xe2, 0xb6, 0xd3, 0x10, 0xc3, 0xd9, 0xa1, 0x0b, 0x6b, 0xbb, 0x2b, 0xc5, 0x6f, 0x56, 0xb2, 0x0f, - 0x3e, 0x0c, 0x55, 0xe9, 0x7e, 0xa8, 0x4a, 0x9f, 0x87, 0xaa, 0xf4, 0xf6, 0x51, 0x2d, 0xdd, 0x3f, - 0xaa, 0xa5, 0x8f, 0x8f, 0x6a, 0xe9, 0xe5, 0x6f, 0x41, 0xc8, 0x2e, 0x52, 0xcf, 0xf4, 0x09, 0xb6, - 0xfa, 0x61, 0x84, 0xac, 0xbe, 0x87, 0x5b, 0xb4, 0x77, 0x69, 0x5d, 0x77, 0xac, 0x81, 0xf8, 0xb0, - 0xb0, 0x2c, 0x46, 0xd4, 0x5b, 0xe2, 0xff, 0xd3, 0x3f, 0xbe, 0x07, 0x00, 0x00, 0xff, 0xff, 0xf8, - 0x3b, 0x78, 0x7b, 0x74, 0x04, 0x00, 0x00, +var fileDescriptor_023b8ec707b0f8f4 = []byte{ + // 677 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0x3d, 0x4f, 0xdb, 0x40, + 0x18, 0x8e, 0x9b, 0x94, 0x8f, 0x0b, 0xa0, 0x62, 0x02, 0x38, 0xa1, 0xb5, 0x23, 0x2f, 0xcd, 0xd0, + 0xd8, 0x4a, 0x2a, 0x2a, 0x91, 0xa1, 0x2a, 0xa6, 0x1d, 0x50, 0x0b, 0x42, 0x46, 0xea, 0x50, 0xb5, + 0xb2, 0xce, 0xce, 0x61, 0x2c, 0x7c, 0x3e, 0xe3, 0x3b, 0xa3, 0x98, 0x5f, 0xd0, 0xb1, 0x63, 0x47, + 0x7e, 0x04, 0x3f, 0xa0, 0x63, 0x47, 0xc4, 0xd4, 0xc9, 0xad, 0xc2, 0x52, 0x75, 0xcc, 0x5e, 0xa9, + 0x8a, 0xcf, 0x09, 0x09, 0xa2, 0xdb, 0x3d, 0xef, 0xf3, 0xbc, 0xcf, 0xfb, 0x95, 0x18, 0x6c, 0xf8, + 0x36, 0xd6, 0x61, 0xcc, 0x8e, 0xf5, 0xb3, 0x96, 0x8d, 0x18, 0x6c, 0x65, 0x40, 0x0b, 0x23, 0xc2, + 0x88, 0xf8, 0xc8, 0xb7, 0xb1, 0x96, 0xe1, 0x9c, 0xac, 0x55, 0x1d, 0x42, 0x31, 0xa1, 0x56, 0xc6, + 0xeb, 0x1c, 0x70, 0x71, 0xad, 0xe2, 0x12, 0x97, 0xf0, 0xf8, 0xf0, 0x95, 0x47, 0xab, 0x2e, 0x21, + 0xae, 0x8f, 0xf4, 0x0c, 0xd9, 0xf1, 0x91, 0x0e, 0x83, 0x84, 0x53, 0xea, 0x5f, 0x01, 0x94, 0x0d, + 0x48, 0xd1, 0xb6, 0xe3, 0x90, 0x38, 0x60, 0xa2, 0x04, 0x66, 0x61, 0xb7, 0x1b, 0x21, 0x4a, 0x25, + 0xa1, 0x2e, 0x34, 0xe6, 0xcd, 0x11, 0x14, 0x3f, 0x82, 0xd9, 0x30, 0xb6, 0xad, 0x13, 0x94, 0x48, + 0x0f, 0xea, 0x42, 0xa3, 0xdc, 0xae, 0x68, 0xdc, 0x56, 0x1b, 0xd9, 0x6a, 0xdb, 0x41, 0x62, 0x34, + 0xff, 0xa4, 0x4a, 0x25, 0x8c, 0x6d, 0xdf, 0x73, 0x86, 0xda, 0x67, 0x04, 0x7b, 0x0c, 0xe1, 0x90, + 0x25, 0x83, 0x54, 0x59, 0x4e, 0x20, 0xf6, 0x3b, 0xea, 0x2d, 0xab, 0x9a, 0x33, 0x61, 0x6c, 0xbf, + 0x45, 0x89, 0xf8, 0x0a, 0x2c, 0x41, 0xde, 0x82, 0x15, 0xc4, 0xd8, 0x46, 0x91, 0x54, 0xac, 0x0b, + 0x8d, 0x92, 0x51, 0x1d, 0xa4, 0xca, 0x2a, 0x4f, 0x9b, 0xe6, 0x55, 0x73, 0x31, 0x0f, 0xec, 0x67, + 0x58, 0xac, 0x81, 0x39, 0x8a, 0x4e, 0x63, 0x14, 0x38, 0x48, 0x2a, 0x0d, 0x73, 0xcd, 0x31, 0xee, + 0x48, 0x9f, 0x2f, 0x94, 0xc2, 0xd7, 0x0b, 0xa5, 0xf0, 0xfb, 0x42, 0x29, 0x5c, 0x5f, 0x36, 0xe7, + 0xf2, 0x71, 0x77, 0xd5, 0x6f, 0x02, 0x58, 0xdc, 0x23, 0xdd, 0xd8, 0x1f, 0x6f, 0xe0, 0x13, 0x58, + 0xb0, 0x21, 0x45, 0x56, 0xee, 0x9e, 0xad, 0xa1, 0xdc, 0x7e, 0xa2, 0xdd, 0x3d, 0x83, 0x36, 0xb1, + 0x36, 0x63, 0xe3, 0x2a, 0x55, 0x84, 0x41, 0xaa, 0xac, 0xf0, 0x56, 0x27, 0x0d, 0x54, 0xb3, 0x6c, + 0x4f, 0x2c, 0x58, 0x04, 0xa5, 0x00, 0x62, 0x94, 0xed, 0x70, 0xde, 0xcc, 0xde, 0x62, 0x1d, 0x94, + 0x43, 0x14, 0x61, 0x8f, 0x52, 0x8f, 0x04, 0x54, 0x2a, 0xd6, 0x8b, 0x8d, 0x79, 0x73, 0x32, 0xd4, + 0xa9, 0x8d, 0x06, 0xb8, 0xbe, 0x6c, 0x2e, 0x4d, 0xf5, 0xbb, 0xab, 0xfe, 0x2c, 0x82, 0x99, 0x03, + 0x18, 0x41, 0x4c, 0xc5, 0x7d, 0xb0, 0x82, 0x61, 0xcf, 0xc2, 0x08, 0x13, 0xcb, 0x39, 0x86, 0x11, + 0x74, 0x18, 0x8a, 0xf8, 0x25, 0x4b, 0x86, 0x3c, 0x48, 0x95, 0x1a, 0xef, 0xef, 0x1e, 0x91, 0x6a, + 0x2e, 0x63, 0xd8, 0xdb, 0x43, 0x98, 0xec, 0x8c, 0x63, 0xe2, 0x16, 0x58, 0x60, 0x3d, 0x8b, 0x7a, + 0xae, 0xe5, 0x7b, 0xd8, 0x63, 0x59, 0xd3, 0x25, 0x63, 0xfd, 0x76, 0xd0, 0x49, 0x56, 0x35, 0x01, + 0xeb, 0x1d, 0x7a, 0xee, 0xbb, 0x21, 0x10, 0x4d, 0xb0, 0x9a, 0x91, 0xe7, 0xc8, 0x72, 0x08, 0x65, + 0x56, 0x88, 0x22, 0xcb, 0x4e, 0x18, 0xca, 0xef, 0x5a, 0x1f, 0xa4, 0xca, 0xe3, 0x09, 0x8f, 0xbb, + 0x32, 0xd5, 0x5c, 0x1e, 0x9a, 0x9d, 0xa3, 0x1d, 0x42, 0xd9, 0x01, 0x8a, 0x8c, 0x84, 0x21, 0xf1, + 0x14, 0xac, 0x0f, 0xab, 0x9d, 0xa1, 0xc8, 0x3b, 0x4a, 0xb8, 0x1e, 0x75, 0xdb, 0x9b, 0x9b, 0xad, + 0x2d, 0x7e, 0x71, 0xa3, 0xd3, 0x4f, 0x95, 0xca, 0xa1, 0xe7, 0xbe, 0xcf, 0x14, 0xc3, 0xd4, 0x37, + 0xaf, 0x33, 0x7e, 0x90, 0x2a, 0x32, 0xaf, 0xf6, 0x1f, 0x03, 0xd5, 0xac, 0xd0, 0xa9, 0x3c, 0x1e, + 0x16, 0x13, 0x50, 0xbd, 0x9b, 0x41, 0x91, 0x13, 0xb6, 0x37, 0x5f, 0x9c, 0xb4, 0xa4, 0x87, 0x59, + 0xd1, 0x97, 0xfd, 0x54, 0x59, 0x9b, 0x2a, 0x7a, 0x38, 0x52, 0x0c, 0x52, 0xa5, 0x7e, 0x7f, 0xd9, + 0xb1, 0x89, 0x6a, 0xae, 0xd1, 0x7b, 0x73, 0x3b, 0x73, 0xf9, 0x0f, 0x56, 0x30, 0xb6, 0xbf, 0xf7, + 0x65, 0xe1, 0xaa, 0x2f, 0x0b, 0xbf, 0xfa, 0xb2, 0xf0, 0xe5, 0x46, 0x2e, 0x5c, 0xdd, 0xc8, 0x85, + 0x1f, 0x37, 0x72, 0xe1, 0xc3, 0x53, 0xd7, 0x63, 0xc7, 0xb1, 0xad, 0x39, 0x04, 0xeb, 0xbe, 0x17, + 0x20, 0xdd, 0xb7, 0x71, 0x93, 0x76, 0x4f, 0xf4, 0xb3, 0xb6, 0xde, 0xe3, 0x9f, 0x14, 0x96, 0x84, + 0x88, 0xda, 0x33, 0xd9, 0x9f, 0xf4, 0xf9, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x57, 0xf4, + 0x4c, 0x6b, 0x04, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/auth/types/codec.go b/x/auth/types/codec.go index bbb2203274..12754fa11b 100644 --- a/x/auth/types/codec.go +++ b/x/auth/types/codec.go @@ -13,8 +13,8 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*ModuleAccountI)(nil), nil) cdc.RegisterInterface((*GenesisAccount)(nil), nil) cdc.RegisterInterface((*AccountI)(nil), nil) - cdc.RegisterConcrete(&BaseAccount{}, "cosmos-sdk/BaseAccount", nil) - cdc.RegisterConcrete(&ModuleAccount{}, "cosmos-sdk/ModuleAccount", nil) + cdc.RegisterConcrete(&BaseAccount{}, "lbm-sdk/BaseAccount", nil) + cdc.RegisterConcrete(&ModuleAccount{}, "lbm-sdk/ModuleAccount", nil) legacytx.RegisterLegacyAminoCodec(cdc) } @@ -23,14 +23,14 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { // and creates a registry of it's concrete implementations func RegisterInterfaces(registry types.InterfaceRegistry) { registry.RegisterInterface( - "cosmos.auth.v1beta1.AccountI", + "lbm.auth.v1beta1.AccountI", (*AccountI)(nil), &BaseAccount{}, &ModuleAccount{}, ) registry.RegisterInterface( - "cosmos.auth.v1beta1.GenesisAccount", + "lbm.auth.v1beta1.GenesisAccount", (*GenesisAccount)(nil), &BaseAccount{}, &ModuleAccount{}, diff --git a/x/auth/types/genesis.pb.go b/x/auth/types/genesis.pb.go index dc436515fa..c8f7435eec 100644 --- a/x/auth/types/genesis.pb.go +++ b/x/auth/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/auth/v1beta1/genesis.proto +// source: lbm/auth/v1beta1/genesis.proto package types @@ -36,7 +36,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_d897ccbce9822332, []int{0} + return fileDescriptor_60eed88891480622, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,30 +80,29 @@ func (m *GenesisState) GetAccounts() []*types.Any { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.auth.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "lbm.auth.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/auth/v1beta1/genesis.proto", fileDescriptor_d897ccbce9822332) } +func init() { proto.RegisterFile("lbm/auth/v1beta1/genesis.proto", fileDescriptor_60eed88891480622) } -var fileDescriptor_d897ccbce9822332 = []byte{ - // 259 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x8f, 0x31, 0x4f, 0xc3, 0x30, - 0x10, 0x85, 0x13, 0x40, 0x15, 0x4a, 0x99, 0x42, 0x87, 0x52, 0x24, 0x53, 0x58, 0xe8, 0xc2, 0x1d, - 0x0d, 0x13, 0x63, 0xbb, 0xb0, 0xa2, 0xb2, 0xb1, 0xd9, 0xc1, 0xb8, 0x11, 0x89, 0x2f, 0xaa, 0x9d, - 0x8a, 0x88, 0x3f, 0xc1, 0xcf, 0xea, 0xd8, 0x91, 0x09, 0xa1, 0xe4, 0x8f, 0xa0, 0xda, 0x81, 0xa9, - 0xdb, 0xd3, 0xdd, 0x77, 0xef, 0xbd, 0x8b, 0x2e, 0x53, 0x32, 0x05, 0x19, 0xe4, 0x95, 0x5d, 0xe2, - 0x7a, 0x2a, 0xa4, 0xe5, 0x53, 0x54, 0x52, 0x4b, 0x93, 0x19, 0x28, 0x57, 0x64, 0x29, 0x3e, 0xf5, - 0x08, 0xec, 0x10, 0xe8, 0x90, 0xd1, 0x99, 0x22, 0x52, 0xb9, 0x44, 0x87, 0x88, 0xea, 0x15, 0xb9, - 0xae, 0x3d, 0x3f, 0x1a, 0x28, 0x52, 0xe4, 0x24, 0xee, 0x54, 0x37, 0x65, 0xfb, 0x82, 0x9c, 0xa5, - 0xdb, 0x5f, 0x7d, 0x44, 0x27, 0x0f, 0x3e, 0xf6, 0xc9, 0x72, 0x2b, 0xe3, 0xfb, 0xa8, 0x57, 0xf2, - 0x15, 0x2f, 0xcc, 0x30, 0x1c, 0x87, 0x93, 0x7e, 0x72, 0x0e, 0x7b, 0x6a, 0xc0, 0xa3, 0x43, 0xe6, - 0x47, 0x9b, 0xef, 0x8b, 0x60, 0xd1, 0x1d, 0xc4, 0xb7, 0xd1, 0x31, 0x4f, 0x53, 0xaa, 0xb4, 0x35, - 0xc3, 0x83, 0xf1, 0xe1, 0xa4, 0x9f, 0x0c, 0xc0, 0xd7, 0x85, 0xbf, 0xba, 0x30, 0xd3, 0xf5, 0xe2, - 0x9f, 0x9a, 0xcf, 0x36, 0x0d, 0x0b, 0xb7, 0x0d, 0x0b, 0x7f, 0x1a, 0x16, 0x7e, 0xb6, 0x2c, 0xd8, - 0xb6, 0x2c, 0xf8, 0x6a, 0x59, 0xf0, 0x7c, 0xad, 0x32, 0xbb, 0xac, 0x04, 0xa4, 0x54, 0x60, 0x9e, - 0x69, 0x89, 0xb9, 0x28, 0x6e, 0xcc, 0xcb, 0x1b, 0xae, 0x13, 0x7c, 0xf7, 0xcf, 0xd8, 0xba, 0x94, - 0x46, 0xf4, 0x9c, 0xf5, 0xdd, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x53, 0x8d, 0x06, 0x7a, 0x51, - 0x01, 0x00, 0x00, +var fileDescriptor_60eed88891480622 = []byte{ + // 256 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0x49, 0xca, 0xd5, + 0x4f, 0x2c, 0x2d, 0xc9, 0xd0, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, + 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc8, 0x49, 0xca, 0xd5, + 0x03, 0xc9, 0xeb, 0x41, 0xe5, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xf2, + 0x49, 0xa5, 0x69, 0xfa, 0x89, 0x79, 0x95, 0x10, 0xc5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, + 0xa6, 0x3e, 0x88, 0x05, 0x15, 0x95, 0xc6, 0xb0, 0x02, 0x6c, 0x1e, 0x58, 0x52, 0xa9, 0x82, 0x8b, + 0xc7, 0x1d, 0x62, 0x61, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x90, 0x19, 0x17, 0x5b, 0x41, 0x62, 0x51, + 0x62, 0x6e, 0xb1, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x84, 0x1e, 0xba, 0x03, 0xf4, 0x02, + 0xc0, 0xf2, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x55, 0x0b, 0x19, 0x70, 0x71, 0x24, + 0x26, 0x27, 0xe7, 0x97, 0xe6, 0x95, 0x14, 0x4b, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x1b, 0x89, 0xe8, + 0x41, 0x1c, 0xaa, 0x07, 0x73, 0xa8, 0x9e, 0x63, 0x5e, 0x65, 0x10, 0x5c, 0x95, 0x93, 0xe3, 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, 0xa9, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, + 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xe7, 0x64, 0xe6, 0xa5, 0xea, 0xe7, 0x24, 0xe5, 0xea, 0x16, 0xa7, + 0x64, 0xeb, 0x97, 0x19, 0xe9, 0x57, 0x40, 0x7c, 0x52, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, + 0x36, 0xda, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x10, 0xeb, 0x7b, 0x79, 0x45, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/types/query.pb.go b/x/auth/types/query.pb.go index 389e489f9c..6047a677a5 100644 --- a/x/auth/types/query.pb.go +++ b/x/auth/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/auth/v1beta1/query.proto +// source: lbm/auth/v1beta1/query.proto package types @@ -41,7 +41,7 @@ func (m *QueryAccountRequest) Reset() { *m = QueryAccountRequest{} } func (m *QueryAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryAccountRequest) ProtoMessage() {} func (*QueryAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c451370b3929a27c, []int{0} + return fileDescriptor_d9cd7027bd565388, []int{0} } func (m *QueryAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *QueryAccountResponse) Reset() { *m = QueryAccountResponse{} } func (m *QueryAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryAccountResponse) ProtoMessage() {} func (*QueryAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c451370b3929a27c, []int{1} + return fileDescriptor_d9cd7027bd565388, []int{1} } func (m *QueryAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +124,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c451370b3929a27c, []int{2} + return fileDescriptor_d9cd7027bd565388, []int{2} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -163,7 +163,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c451370b3929a27c, []int{3} + return fileDescriptor_d9cd7027bd565388, []int{3} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -200,43 +200,43 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryAccountRequest)(nil), "cosmos.auth.v1beta1.QueryAccountRequest") - proto.RegisterType((*QueryAccountResponse)(nil), "cosmos.auth.v1beta1.QueryAccountResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.auth.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.auth.v1beta1.QueryParamsResponse") -} - -func init() { proto.RegisterFile("cosmos/auth/v1beta1/query.proto", fileDescriptor_c451370b3929a27c) } - -var fileDescriptor_c451370b3929a27c = []byte{ - // 424 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0x31, 0xef, 0xd2, 0x40, - 0x18, 0xc6, 0xdb, 0x7f, 0x14, 0xf0, 0x74, 0x3a, 0x3a, 0x60, 0xd1, 0xd6, 0xd4, 0x01, 0x18, 0xb8, - 0x0b, 0x38, 0x61, 0x5c, 0x60, 0x73, 0xc3, 0xc6, 0xc9, 0xc5, 0x5c, 0xcb, 0x59, 0x1a, 0xe9, 0x5d, - 0xe9, 0x5d, 0x89, 0xc4, 0x98, 0x18, 0x27, 0x37, 0x4d, 0x5c, 0x1d, 0xf8, 0x10, 0x7e, 0x08, 0xe2, - 0x44, 0xe2, 0xe2, 0x64, 0x0c, 0x38, 0xf8, 0x31, 0x0c, 0x77, 0xd7, 0x81, 0xa4, 0x46, 0xb7, 0xbe, - 0xef, 0xfb, 0x3c, 0xcf, 0xfb, 0xeb, 0x7b, 0xc0, 0x8f, 0xb9, 0xc8, 0xb8, 0xc0, 0xa4, 0x94, 0x4b, - 0xbc, 0x19, 0x45, 0x54, 0x92, 0x11, 0x5e, 0x97, 0xb4, 0xd8, 0xa2, 0xbc, 0xe0, 0x92, 0xc3, 0xb6, - 0x16, 0xa0, 0xb3, 0x00, 0x19, 0x81, 0xeb, 0x24, 0x3c, 0xe1, 0x6a, 0x8e, 0xcf, 0x5f, 0x5a, 0xea, - 0xde, 0x4e, 0x38, 0x4f, 0x56, 0x14, 0xab, 0x2a, 0x2a, 0x5f, 0x60, 0xc2, 0x4c, 0x8a, 0x7b, 0xc7, - 0x8c, 0x48, 0x9e, 0x62, 0xc2, 0x18, 0x97, 0x44, 0xa6, 0x9c, 0x09, 0x33, 0xf5, 0xea, 0x20, 0xd4, - 0x42, 0x13, 0xac, 0xe7, 0xcf, 0xf5, 0x46, 0x03, 0xa4, 0x8a, 0x60, 0x02, 0xda, 0x4f, 0xce, 0xb4, - 0xd3, 0x38, 0xe6, 0x25, 0x93, 0x21, 0x5d, 0x97, 0x54, 0x48, 0xd8, 0x01, 0x4d, 0xb2, 0x58, 0x14, - 0x54, 0x88, 0x8e, 0x7d, 0xcf, 0xee, 0xdf, 0x08, 0xab, 0xf2, 0x61, 0xeb, 0xfd, 0xce, 0xb7, 0x7e, - 0xef, 0x7c, 0x2b, 0x78, 0x0a, 0x9c, 0x4b, 0xab, 0xc8, 0x39, 0x13, 0x14, 0x3e, 0x02, 0x4d, 0xa2, - 0x5b, 0xca, 0x7b, 0x73, 0xec, 0x20, 0x4d, 0x8f, 0xaa, 0x1f, 0x43, 0x53, 0xb6, 0x9d, 0xdd, 0xfa, - 0xfa, 0x65, 0xd8, 0x32, 0xde, 0xc7, 0x61, 0x65, 0x09, 0x1c, 0x00, 0x55, 0xea, 0x9c, 0x14, 0x24, - 0x13, 0x86, 0x27, 0x98, 0x1b, 0xcc, 0xaa, 0x6b, 0x56, 0x4d, 0x40, 0x23, 0x57, 0x1d, 0xb3, 0xa9, - 0x8b, 0x6a, 0xae, 0x8d, 0xb4, 0x69, 0x76, 0x6d, 0xff, 0xc3, 0xb7, 0x42, 0x63, 0x18, 0x7f, 0xbe, - 0x02, 0xd7, 0x55, 0x24, 0xfc, 0x60, 0x83, 0xa6, 0xe1, 0x80, 0xfd, 0xda, 0x80, 0x9a, 0x0b, 0xb9, - 0x83, 0xff, 0x50, 0x6a, 0xca, 0x00, 0xbf, 0xfb, 0xf6, 0xeb, 0xd3, 0xd5, 0x00, 0xf6, 0x70, 0xed, - 0x3b, 0x69, 0xb5, 0xc0, 0xaf, 0xcd, 0x89, 0xdf, 0xc0, 0xb7, 0x36, 0x68, 0x68, 0x68, 0xd8, 0xfb, - 0xfb, 0x9a, 0x8b, 0x0b, 0xb9, 0xfd, 0x7f, 0x0b, 0x0d, 0xce, 0x7d, 0x85, 0x73, 0x17, 0x76, 0x6b, - 0x71, 0xf4, 0x79, 0x66, 0xd3, 0xfd, 0xd1, 0xb3, 0x0f, 0x47, 0xcf, 0xfe, 0x79, 0xf4, 0xec, 0x8f, - 0x27, 0xcf, 0x3a, 0x9c, 0x3c, 0xeb, 0xfb, 0xc9, 0xb3, 0x9e, 0xf5, 0x92, 0x54, 0x2e, 0xcb, 0x08, - 0xc5, 0x3c, 0xc3, 0xab, 0x94, 0x51, 0xbc, 0x8a, 0xb2, 0xa1, 0x58, 0xbc, 0xc4, 0x9b, 0x31, 0x7e, - 0xa5, 0xb3, 0xe4, 0x36, 0xa7, 0x22, 0x6a, 0xa8, 0xe7, 0x7e, 0xf0, 0x27, 0x00, 0x00, 0xff, 0xff, - 0xd3, 0xef, 0x7a, 0x40, 0x23, 0x03, 0x00, 0x00, + proto.RegisterType((*QueryAccountRequest)(nil), "lbm.auth.v1beta1.QueryAccountRequest") + proto.RegisterType((*QueryAccountResponse)(nil), "lbm.auth.v1beta1.QueryAccountResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "lbm.auth.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "lbm.auth.v1beta1.QueryParamsResponse") +} + +func init() { proto.RegisterFile("lbm/auth/v1beta1/query.proto", fileDescriptor_d9cd7027bd565388) } + +var fileDescriptor_d9cd7027bd565388 = []byte{ + // 429 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x51, 0xbd, 0xae, 0xd3, 0x30, + 0x14, 0x4e, 0xae, 0xa0, 0xbd, 0x18, 0x06, 0x64, 0x32, 0x94, 0xdc, 0x92, 0xa2, 0x40, 0x29, 0x0c, + 0xb5, 0xd5, 0x22, 0x21, 0x81, 0x58, 0xda, 0x8d, 0x01, 0x09, 0x22, 0x26, 0x16, 0xe4, 0xa4, 0x26, + 0x8d, 0x48, 0xec, 0x34, 0x76, 0x2a, 0x0a, 0x62, 0x61, 0x82, 0x09, 0x24, 0x5e, 0xa0, 0x0f, 0xc1, + 0x43, 0x54, 0x4c, 0x95, 0x58, 0x98, 0x10, 0x6a, 0x19, 0x78, 0x0c, 0x54, 0xdb, 0x19, 0xfa, 0x73, + 0xd5, 0x2d, 0xe7, 0x7c, 0xe7, 0xfb, 0xc9, 0x67, 0xd0, 0x4c, 0xc3, 0x0c, 0x93, 0x52, 0x8e, 0xf1, + 0xb4, 0x17, 0x52, 0x49, 0x7a, 0x78, 0x52, 0xd2, 0x62, 0x86, 0xf2, 0x82, 0x4b, 0x0e, 0xaf, 0xa6, + 0x61, 0x86, 0x36, 0x28, 0x32, 0xa8, 0xeb, 0xc4, 0x3c, 0xe6, 0x0a, 0xc4, 0x9b, 0x2f, 0x7d, 0xe7, + 0x5e, 0x8f, 0x39, 0x8f, 0x53, 0x8a, 0xd5, 0x14, 0x96, 0xaf, 0x31, 0x61, 0x46, 0xc2, 0x6d, 0x1a, + 0x88, 0xe4, 0x09, 0x26, 0x8c, 0x71, 0x49, 0x64, 0xc2, 0x99, 0x30, 0xe8, 0xd9, 0x9e, 0xbd, 0x72, + 0x33, 0xaa, 0x11, 0x17, 0x19, 0x17, 0xaf, 0xb4, 0x9d, 0x1e, 0x34, 0xe4, 0x3f, 0x04, 0xd7, 0x9e, + 0x6f, 0x72, 0x0e, 0xa2, 0x88, 0x97, 0x4c, 0x06, 0x74, 0x52, 0x52, 0x21, 0x61, 0x03, 0xd4, 0xc9, + 0x68, 0x54, 0x50, 0x21, 0x1a, 0xf6, 0x4d, 0xfb, 0xee, 0xa5, 0xa0, 0x1a, 0x1f, 0x9d, 0x7e, 0x9a, + 0xb7, 0xac, 0x7f, 0xf3, 0x96, 0xe5, 0xbf, 0x00, 0xce, 0x36, 0x55, 0xe4, 0x9c, 0x09, 0x0a, 0x1f, + 0x83, 0x3a, 0xd1, 0x2b, 0xc5, 0xbd, 0xdc, 0x77, 0x90, 0x8e, 0x8e, 0xaa, 0xbf, 0x42, 0x03, 0x36, + 0x1b, 0x5e, 0xf9, 0xf1, 0xbd, 0x7b, 0x6a, 0xb8, 0x4f, 0x82, 0x8a, 0xe2, 0x3b, 0x00, 0x2a, 0xd5, + 0x67, 0xa4, 0x20, 0x99, 0x30, 0x79, 0xfc, 0xa7, 0x26, 0x66, 0xb5, 0x35, 0x56, 0x0f, 0x40, 0x2d, + 0x57, 0x1b, 0xe3, 0xd4, 0x40, 0xbb, 0x3d, 0x23, 0xcd, 0x18, 0x5e, 0x58, 0xfc, 0x6e, 0x59, 0x81, + 0xb9, 0xee, 0x7f, 0x39, 0x01, 0x17, 0x95, 0x1e, 0xfc, 0x6c, 0x83, 0xba, 0x09, 0x01, 0xdb, 0xfb, + 0xec, 0x03, 0xdd, 0xb8, 0x77, 0x8e, 0x9d, 0xe9, 0x70, 0x3e, 0xfe, 0xf8, 0xf3, 0xef, 0xb7, 0x93, + 0x7b, 0xb0, 0x63, 0x1a, 0xdf, 0x79, 0x1e, 0x7d, 0x2d, 0xf0, 0x7b, 0xd3, 0xec, 0x07, 0xf8, 0x0e, + 0xd4, 0x74, 0x5a, 0x78, 0xfb, 0x1c, 0x8b, 0xad, 0x52, 0xdc, 0xf6, 0x91, 0x2b, 0x93, 0xe3, 0x96, + 0xca, 0x71, 0x03, 0x9e, 0x1d, 0xcc, 0xa1, 0x1b, 0x19, 0x0e, 0x16, 0x2b, 0xcf, 0x5e, 0xae, 0x3c, + 0xfb, 0xcf, 0xca, 0xb3, 0xbf, 0xae, 0x3d, 0x6b, 0xb9, 0xf6, 0xac, 0x5f, 0x6b, 0xcf, 0x7a, 0xd9, + 0x89, 0x13, 0x39, 0x2e, 0x43, 0x14, 0xf1, 0x0c, 0xa7, 0x09, 0xa3, 0x38, 0x0d, 0xb3, 0xae, 0x18, + 0xbd, 0xc1, 0xd3, 0x3e, 0x7e, 0xab, 0xb5, 0xe4, 0x2c, 0xa7, 0x22, 0xac, 0xa9, 0xe7, 0xbd, 0xff, + 0x3f, 0x00, 0x00, 0xff, 0xff, 0x3e, 0x0e, 0x93, 0x73, 0x0a, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -267,7 +267,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Account(ctx context.Context, in *QueryAccountRequest, opts ...grpc.CallOption) (*QueryAccountResponse, error) { out := new(QueryAccountResponse) - err := c.cc.Invoke(ctx, "/cosmos.auth.v1beta1.Query/Account", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.auth.v1beta1.Query/Account", in, out, opts...) if err != nil { return nil, err } @@ -276,7 +276,7 @@ func (c *queryClient) Account(ctx context.Context, in *QueryAccountRequest, opts func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.auth.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.auth.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -316,7 +316,7 @@ func _Query_Account_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.auth.v1beta1.Query/Account", + FullMethod: "/lbm.auth.v1beta1.Query/Account", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Account(ctx, req.(*QueryAccountRequest)) @@ -334,7 +334,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.auth.v1beta1.Query/Params", + FullMethod: "/lbm.auth.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -343,7 +343,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.auth.v1beta1.Query", + ServiceName: "lbm.auth.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -356,7 +356,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/auth/v1beta1/query.proto", + Metadata: "lbm/auth/v1beta1/query.proto", } func (m *QueryAccountRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/types/query.pb.gw.go b/x/auth/types/query.pb.gw.go index 0525b9c153..4190d1edfe 100644 --- a/x/auth/types/query.pb.gw.go +++ b/x/auth/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/auth/v1beta1/query.proto +// source: lbm/auth/v1beta1/query.proto /* Package types is a reverse proxy. diff --git a/x/auth/vesting/types/codec.go b/x/auth/vesting/types/codec.go index 74833a2e00..49cee7b9a2 100644 --- a/x/auth/vesting/types/codec.go +++ b/x/auth/vesting/types/codec.go @@ -13,17 +13,17 @@ import ( // provided LegacyAmino codec. These types are used for Amino JSON serialization func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*exported.VestingAccount)(nil), nil) - cdc.RegisterConcrete(&BaseVestingAccount{}, "cosmos-sdk/BaseVestingAccount", nil) - cdc.RegisterConcrete(&ContinuousVestingAccount{}, "cosmos-sdk/ContinuousVestingAccount", nil) - cdc.RegisterConcrete(&DelayedVestingAccount{}, "cosmos-sdk/DelayedVestingAccount", nil) - cdc.RegisterConcrete(&PeriodicVestingAccount{}, "cosmos-sdk/PeriodicVestingAccount", nil) + cdc.RegisterConcrete(&BaseVestingAccount{}, "lbm-sdk/BaseVestingAccount", nil) + cdc.RegisterConcrete(&ContinuousVestingAccount{}, "lbm-sdk/ContinuousVestingAccount", nil) + cdc.RegisterConcrete(&DelayedVestingAccount{}, "lbm-sdk/DelayedVestingAccount", nil) + cdc.RegisterConcrete(&PeriodicVestingAccount{}, "lbm-sdk/PeriodicVestingAccount", nil) } // RegisterInterface associates protoName with AccountI and VestingAccount // Interfaces and creates a registry of it's concrete implementations func RegisterInterfaces(registry types.InterfaceRegistry) { registry.RegisterInterface( - "cosmos.vesting.v1beta1.VestingAccount", + "lbm.vesting.v1beta1.VestingAccount", (*exported.VestingAccount)(nil), &ContinuousVestingAccount{}, &DelayedVestingAccount{}, diff --git a/x/auth/vesting/types/tx.pb.go b/x/auth/vesting/types/tx.pb.go index 51cbe66b18..77773b54f5 100644 --- a/x/auth/vesting/types/tx.pb.go +++ b/x/auth/vesting/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/vesting/v1beta1/tx.proto +// source: lbm/vesting/v1beta1/tx.proto package types @@ -44,7 +44,7 @@ func (m *MsgCreateVestingAccount) Reset() { *m = MsgCreateVestingAccount func (m *MsgCreateVestingAccount) String() string { return proto.CompactTextString(m) } func (*MsgCreateVestingAccount) ProtoMessage() {} func (*MsgCreateVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_5338ca97811f9792, []int{0} + return fileDescriptor_6c996d49d1cb5883, []int{0} } func (m *MsgCreateVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -116,7 +116,7 @@ func (m *MsgCreateVestingAccountResponse) Reset() { *m = MsgCreateVestin func (m *MsgCreateVestingAccountResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateVestingAccountResponse) ProtoMessage() {} func (*MsgCreateVestingAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5338ca97811f9792, []int{1} + return fileDescriptor_6c996d49d1cb5883, []int{1} } func (m *MsgCreateVestingAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -146,40 +146,41 @@ func (m *MsgCreateVestingAccountResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgCreateVestingAccountResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateVestingAccount)(nil), "cosmos.vesting.v1beta1.MsgCreateVestingAccount") - proto.RegisterType((*MsgCreateVestingAccountResponse)(nil), "cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse") -} - -func init() { proto.RegisterFile("cosmos/vesting/v1beta1/tx.proto", fileDescriptor_5338ca97811f9792) } - -var fileDescriptor_5338ca97811f9792 = []byte{ - // 416 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0xbb, 0x6e, 0xd4, 0x40, - 0x14, 0xf5, 0xc4, 0x21, 0x8f, 0x09, 0x12, 0xc2, 0x09, 0xc4, 0x6c, 0xe1, 0x31, 0x2e, 0x90, 0x1b, - 0x66, 0x94, 0x05, 0x09, 0x69, 0xbb, 0x38, 0x15, 0x45, 0x1a, 0x0b, 0x51, 0xd0, 0x44, 0x63, 0xfb, - 0xe2, 0x58, 0x78, 0x66, 0x56, 0x9e, 0xd9, 0x55, 0xb6, 0xa3, 0xa4, 0xe4, 0x13, 0xa8, 0xf9, 0x08, - 0xea, 0x94, 0x29, 0xa9, 0x0c, 0xda, 0x6d, 0xa8, 0xf7, 0x0b, 0x90, 0x5f, 0x0b, 0x45, 0x82, 0x44, - 0xe7, 0xab, 0xf3, 0xf0, 0xb9, 0x67, 0x2e, 0x26, 0xa9, 0xd2, 0x42, 0x69, 0x36, 0x07, 0x6d, 0x0a, - 0x99, 0xb3, 0xf9, 0x49, 0x02, 0x86, 0x9f, 0x30, 0x73, 0x45, 0xa7, 0x95, 0x32, 0xca, 0x79, 0xdc, - 0x11, 0x68, 0x4f, 0xa0, 0x3d, 0x61, 0x74, 0x94, 0xab, 0x5c, 0xb5, 0x14, 0xd6, 0x7c, 0x75, 0xec, - 0x91, 0xd7, 0xdb, 0x25, 0x5c, 0xc3, 0xc6, 0x2b, 0x55, 0x85, 0xec, 0xf0, 0xe0, 0xdb, 0x16, 0x3e, - 0x3e, 0xd7, 0xf9, 0x59, 0x05, 0xdc, 0xc0, 0xdb, 0xce, 0xf2, 0x34, 0x4d, 0xd5, 0x4c, 0x1a, 0x67, - 0x82, 0xef, 0xbf, 0xaf, 0x94, 0xb8, 0xe0, 0x59, 0x56, 0x81, 0xd6, 0x2e, 0xf2, 0x51, 0xb8, 0x1f, - 0x1d, 0xaf, 0x6b, 0x72, 0xb8, 0xe0, 0xa2, 0x9c, 0x04, 0x7f, 0xa3, 0x41, 0x7c, 0xd0, 0x8c, 0xa7, - 0xdd, 0xe4, 0xbc, 0xc4, 0xd8, 0xa8, 0x8d, 0x72, 0xab, 0x55, 0x3e, 0x5a, 0xd7, 0xe4, 0x61, 0xa7, - 0xfc, 0x83, 0x05, 0xf1, 0xbe, 0x51, 0x83, 0x8a, 0xe3, 0x1d, 0x2e, 0x9a, 0x7f, 0xbb, 0xb6, 0x6f, - 0x87, 0x07, 0xe3, 0x27, 0xb4, 0x5f, 0xb6, 0x89, 0x3f, 0x6c, 0x4a, 0xcf, 0x54, 0x21, 0x23, 0x7a, - 0x5d, 0x13, 0xeb, 0xeb, 0x0f, 0xf2, 0x2c, 0x2f, 0xcc, 0xe5, 0x2c, 0xa1, 0xa9, 0x12, 0xac, 0x2c, - 0x24, 0xb0, 0x32, 0x11, 0xcf, 0x75, 0xf6, 0x81, 0xcd, 0xc7, 0xcc, 0x2c, 0xa6, 0xa0, 0x5b, 0xba, - 0x8e, 0x7b, 0x63, 0x87, 0xe2, 0x3d, 0x90, 0xd9, 0x85, 0x29, 0x04, 0xb8, 0xdb, 0x3e, 0x0a, 0xed, - 0xe8, 0x70, 0x5d, 0x93, 0x07, 0x5d, 0xac, 0x01, 0x09, 0xe2, 0x5d, 0x90, 0xd9, 0x9b, 0x42, 0x80, - 0xe3, 0xe2, 0xdd, 0x0c, 0x4a, 0xbe, 0x80, 0xcc, 0xbd, 0xe7, 0xa3, 0x70, 0x2f, 0x1e, 0xc6, 0xc9, - 0xf6, 0xaf, 0x2f, 0x04, 0x05, 0x4f, 0x31, 0xb9, 0xa3, 0xbf, 0x18, 0xf4, 0x54, 0x49, 0x0d, 0xe3, - 0x4f, 0x08, 0xdb, 0xe7, 0x3a, 0x77, 0x3e, 0x22, 0x7c, 0x74, 0x6b, 0xd1, 0x8c, 0xde, 0xfe, 0xa6, - 0xf4, 0x0e, 0xe7, 0xd1, 0xab, 0xff, 0x14, 0x0c, 0x51, 0xa2, 0xd7, 0xd7, 0x4b, 0x0f, 0xdd, 0x2c, - 0x3d, 0xf4, 0x73, 0xe9, 0xa1, 0xcf, 0x2b, 0xcf, 0xba, 0x59, 0x79, 0xd6, 0xf7, 0x95, 0x67, 0xbd, - 0x63, 0xff, 0xe8, 0xf1, 0x8a, 0xf1, 0x99, 0xb9, 0xdc, 0x9c, 0x64, 0x5b, 0x6b, 0xb2, 0xd3, 0x1e, - 0xd0, 0x8b, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x05, 0xbb, 0x94, 0x1a, 0xb1, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgCreateVestingAccount)(nil), "lbm.vesting.v1beta1.MsgCreateVestingAccount") + proto.RegisterType((*MsgCreateVestingAccountResponse)(nil), "lbm.vesting.v1beta1.MsgCreateVestingAccountResponse") +} + +func init() { proto.RegisterFile("lbm/vesting/v1beta1/tx.proto", fileDescriptor_6c996d49d1cb5883) } + +var fileDescriptor_6c996d49d1cb5883 = []byte{ + // 419 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xbf, 0x6e, 0xd4, 0x40, + 0x10, 0xc6, 0xbd, 0x71, 0xc8, 0x9f, 0x0d, 0x12, 0xc2, 0x17, 0x88, 0x75, 0x20, 0xdb, 0xb8, 0x40, + 0x2e, 0x60, 0x57, 0x39, 0x52, 0x5d, 0x17, 0xa7, 0xa2, 0x48, 0x63, 0x21, 0x0a, 0x0a, 0xa2, 0xb5, + 0x3d, 0x38, 0x16, 0xde, 0xdd, 0x93, 0x77, 0xef, 0x94, 0xa3, 0xe3, 0x0d, 0x78, 0x04, 0x6a, 0x5e, + 0x81, 0x17, 0x48, 0x79, 0x25, 0x95, 0x41, 0x77, 0x0d, 0xf5, 0x3d, 0x01, 0xb2, 0x7d, 0x3e, 0x28, + 0xee, 0x90, 0xd2, 0x79, 0xf4, 0x9b, 0xef, 0xf3, 0xcc, 0xb7, 0x83, 0x9f, 0x16, 0x31, 0xa7, 0x13, + 0x50, 0x3a, 0x17, 0x19, 0x9d, 0x9c, 0xc6, 0xa0, 0xd9, 0x29, 0xd5, 0x37, 0x64, 0x54, 0x4a, 0x2d, + 0xad, 0x5e, 0x11, 0x73, 0xb2, 0xa2, 0x64, 0x45, 0xfb, 0xc7, 0x99, 0xcc, 0x64, 0xc3, 0x69, 0xfd, + 0xd5, 0xb6, 0xf6, 0x9f, 0xd4, 0x46, 0x31, 0x53, 0xb0, 0x76, 0x49, 0x64, 0x2e, 0x5a, 0xe8, 0x7f, + 0xdf, 0xc1, 0x27, 0x97, 0x2a, 0xbb, 0x28, 0x81, 0x69, 0x78, 0xdb, 0xfa, 0x9d, 0x27, 0x89, 0x1c, + 0x0b, 0x6d, 0x0d, 0xf1, 0xfd, 0x0f, 0xa5, 0xe4, 0x57, 0x2c, 0x4d, 0x4b, 0x50, 0xca, 0x46, 0x1e, + 0x0a, 0x0e, 0xc3, 0x93, 0x65, 0xe5, 0xf6, 0xa6, 0x8c, 0x17, 0x43, 0xff, 0x5f, 0xea, 0x47, 0x47, + 0x75, 0x79, 0xde, 0x56, 0xd6, 0x19, 0xc6, 0x5a, 0xae, 0x95, 0x3b, 0x8d, 0xf2, 0xd1, 0xb2, 0x72, + 0x1f, 0xb6, 0xca, 0xbf, 0xcc, 0x8f, 0x0e, 0xb5, 0xec, 0x54, 0xef, 0xf1, 0x1e, 0xe3, 0xf5, 0xbf, + 0x6d, 0xd3, 0x33, 0x83, 0xa3, 0xc1, 0x63, 0x52, 0xaf, 0x59, 0xcf, 0xde, 0xed, 0x48, 0x2e, 0x64, + 0x2e, 0x42, 0x72, 0x5b, 0xb9, 0xc6, 0xb7, 0x9f, 0xee, 0xf3, 0x2c, 0xd7, 0xd7, 0xe3, 0x98, 0x24, + 0x92, 0xd3, 0x22, 0x17, 0x40, 0x8b, 0x98, 0xbf, 0x54, 0xe9, 0x47, 0x3a, 0x19, 0x50, 0x3d, 0x1d, + 0x81, 0x6a, 0xda, 0x55, 0xb4, 0x72, 0xb5, 0x08, 0x3e, 0x00, 0x91, 0x5e, 0xe9, 0x9c, 0x83, 0xbd, + 0xeb, 0xa1, 0xc0, 0x0c, 0x7b, 0xcb, 0xca, 0x7d, 0xd0, 0xce, 0xd4, 0x11, 0x3f, 0xda, 0x07, 0x91, + 0xbe, 0xc9, 0x39, 0x58, 0x36, 0xde, 0x4f, 0xa1, 0x60, 0x53, 0x48, 0xed, 0x7b, 0x1e, 0x0a, 0x0e, + 0xa2, 0xae, 0x1c, 0xee, 0xfe, 0xfe, 0xea, 0x22, 0xff, 0x19, 0x76, 0xb7, 0x84, 0x17, 0x81, 0x1a, + 0x49, 0xa1, 0x60, 0xf0, 0x19, 0x61, 0xf3, 0x52, 0x65, 0xd6, 0x27, 0x7c, 0xbc, 0x31, 0xe4, 0x17, + 0x64, 0xc3, 0x4b, 0x92, 0x2d, 0xae, 0xfd, 0xb3, 0xbb, 0x74, 0x77, 0x33, 0x84, 0xaf, 0x6f, 0xe7, + 0x0e, 0x9a, 0xcd, 0x1d, 0xf4, 0x6b, 0xee, 0xa0, 0x2f, 0x0b, 0xc7, 0x98, 0x2d, 0x1c, 0xe3, 0xc7, + 0xc2, 0x31, 0xde, 0xd1, 0xff, 0x04, 0x78, 0x43, 0xd9, 0x58, 0x5f, 0xaf, 0x4f, 0xb0, 0xc9, 0x33, + 0xde, 0x6b, 0xce, 0xe6, 0xd5, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x59, 0x68, 0x83, 0xe4, 0x9e, + 0x02, 0x00, 0x00, } func (this *MsgCreateVestingAccount) Equal(that interface{}) bool { @@ -251,7 +252,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateVestingAccount(ctx context.Context, in *MsgCreateVestingAccount, opts ...grpc.CallOption) (*MsgCreateVestingAccountResponse, error) { out := new(MsgCreateVestingAccountResponse) - err := c.cc.Invoke(ctx, "/cosmos.vesting.v1beta1.Msg/CreateVestingAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.vesting.v1beta1.Msg/CreateVestingAccount", in, out, opts...) if err != nil { return nil, err } @@ -287,7 +288,7 @@ func _Msg_CreateVestingAccount_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.vesting.v1beta1.Msg/CreateVestingAccount", + FullMethod: "/lbm.vesting.v1beta1.Msg/CreateVestingAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateVestingAccount(ctx, req.(*MsgCreateVestingAccount)) @@ -296,7 +297,7 @@ func _Msg_CreateVestingAccount_Handler(srv interface{}, ctx context.Context, dec } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.vesting.v1beta1.Msg", + ServiceName: "lbm.vesting.v1beta1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -305,7 +306,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/vesting/v1beta1/tx.proto", + Metadata: "lbm/vesting/v1beta1/tx.proto", } func (m *MsgCreateVestingAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/vesting/types/vesting.pb.go b/x/auth/vesting/types/vesting.pb.go index cef7333f90..83624faae9 100644 --- a/x/auth/vesting/types/vesting.pb.go +++ b/x/auth/vesting/types/vesting.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/vesting/v1beta1/vesting.proto +// source: lbm/vesting/v1beta1/vesting.proto package types @@ -39,7 +39,7 @@ type BaseVestingAccount struct { func (m *BaseVestingAccount) Reset() { *m = BaseVestingAccount{} } func (*BaseVestingAccount) ProtoMessage() {} func (*BaseVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_89e80273ca606d6e, []int{0} + return fileDescriptor_1bf9527ae210f33e, []int{0} } func (m *BaseVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ type ContinuousVestingAccount struct { func (m *ContinuousVestingAccount) Reset() { *m = ContinuousVestingAccount{} } func (*ContinuousVestingAccount) ProtoMessage() {} func (*ContinuousVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_89e80273ca606d6e, []int{1} + return fileDescriptor_1bf9527ae210f33e, []int{1} } func (m *ContinuousVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ type DelayedVestingAccount struct { func (m *DelayedVestingAccount) Reset() { *m = DelayedVestingAccount{} } func (*DelayedVestingAccount) ProtoMessage() {} func (*DelayedVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_89e80273ca606d6e, []int{2} + return fileDescriptor_1bf9527ae210f33e, []int{2} } func (m *DelayedVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -155,7 +155,7 @@ type Period struct { func (m *Period) Reset() { *m = Period{} } func (*Period) ProtoMessage() {} func (*Period) Descriptor() ([]byte, []int) { - return fileDescriptor_89e80273ca606d6e, []int{3} + return fileDescriptor_1bf9527ae210f33e, []int{3} } func (m *Period) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -209,7 +209,7 @@ type PeriodicVestingAccount struct { func (m *PeriodicVestingAccount) Reset() { *m = PeriodicVestingAccount{} } func (*PeriodicVestingAccount) ProtoMessage() {} func (*PeriodicVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_89e80273ca606d6e, []int{4} + return fileDescriptor_1bf9527ae210f33e, []int{4} } func (m *PeriodicVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -239,57 +239,55 @@ func (m *PeriodicVestingAccount) XXX_DiscardUnknown() { var xxx_messageInfo_PeriodicVestingAccount proto.InternalMessageInfo func init() { - proto.RegisterType((*BaseVestingAccount)(nil), "cosmos.vesting.v1beta1.BaseVestingAccount") - proto.RegisterType((*ContinuousVestingAccount)(nil), "cosmos.vesting.v1beta1.ContinuousVestingAccount") - proto.RegisterType((*DelayedVestingAccount)(nil), "cosmos.vesting.v1beta1.DelayedVestingAccount") - proto.RegisterType((*Period)(nil), "cosmos.vesting.v1beta1.Period") - proto.RegisterType((*PeriodicVestingAccount)(nil), "cosmos.vesting.v1beta1.PeriodicVestingAccount") + proto.RegisterType((*BaseVestingAccount)(nil), "lbm.vesting.v1beta1.BaseVestingAccount") + proto.RegisterType((*ContinuousVestingAccount)(nil), "lbm.vesting.v1beta1.ContinuousVestingAccount") + proto.RegisterType((*DelayedVestingAccount)(nil), "lbm.vesting.v1beta1.DelayedVestingAccount") + proto.RegisterType((*Period)(nil), "lbm.vesting.v1beta1.Period") + proto.RegisterType((*PeriodicVestingAccount)(nil), "lbm.vesting.v1beta1.PeriodicVestingAccount") } -func init() { - proto.RegisterFile("cosmos/vesting/v1beta1/vesting.proto", fileDescriptor_89e80273ca606d6e) -} +func init() { proto.RegisterFile("lbm/vesting/v1beta1/vesting.proto", fileDescriptor_1bf9527ae210f33e) } -var fileDescriptor_89e80273ca606d6e = []byte{ +var fileDescriptor_1bf9527ae210f33e = []byte{ // 596 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x95, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0x7d, 0x4d, 0x08, 0xe5, 0x0a, 0xfd, 0x63, 0xda, 0x60, 0x3a, 0xd8, 0x91, 0x85, 0x50, - 0x85, 0x84, 0xad, 0x16, 0xa6, 0x6e, 0xb8, 0x08, 0x54, 0x26, 0x64, 0x21, 0x06, 0x96, 0xe8, 0x6c, - 0x1f, 0xee, 0x09, 0xdb, 0x17, 0xf9, 0x2e, 0x11, 0xf9, 0x00, 0x48, 0x74, 0x02, 0x31, 0x31, 0x76, - 0x61, 0xe1, 0x43, 0x30, 0x77, 0x60, 0xc8, 0xc8, 0x14, 0x50, 0xf2, 0x0d, 0xf2, 0x09, 0x90, 0xef, - 0xce, 0x0e, 0xb8, 0x40, 0x54, 0x06, 0x24, 0xb6, 0xbc, 0xf7, 0xbe, 0xef, 0x73, 0xbf, 0x7b, 0xef, - 0x39, 0x07, 0xde, 0x08, 0x29, 0x4b, 0x29, 0x73, 0x07, 0x98, 0x71, 0x92, 0xc5, 0xee, 0x60, 0x37, - 0xc0, 0x1c, 0xed, 0x96, 0xb1, 0xd3, 0xcb, 0x29, 0xa7, 0x7a, 0x5b, 0x56, 0x39, 0xe5, 0xaa, 0xaa, - 0xda, 0xde, 0x8c, 0x69, 0x4c, 0x45, 0x89, 0x5b, 0xfc, 0x92, 0xd5, 0xdb, 0xa6, 0xd2, 0x0c, 0x10, - 0xc3, 0x95, 0x60, 0x48, 0x49, 0x56, 0xcb, 0xa3, 0x3e, 0x3f, 0xaa, 0xf2, 0x45, 0x20, 0xf3, 0xf6, - 0xe7, 0x26, 0xd4, 0x3d, 0xc4, 0xf0, 0x53, 0xb9, 0xdb, 0xbd, 0x30, 0xa4, 0xfd, 0x8c, 0xeb, 0x87, - 0xf0, 0x72, 0xa1, 0xd8, 0x45, 0x32, 0x36, 0x40, 0x07, 0xec, 0xac, 0xec, 0x75, 0x1c, 0xc5, 0x26, - 0x04, 0x94, 0x9a, 0x53, 0xb4, 0xab, 0x3e, 0xaf, 0x39, 0x1a, 0x5b, 0xc0, 0x5f, 0x09, 0xe6, 0x4b, - 0xfa, 0x1b, 0x00, 0xd7, 0x69, 0x4e, 0x62, 0x92, 0xa1, 0xa4, 0xab, 0x0e, 0x65, 0x2c, 0x75, 0x1a, - 0x3b, 0x2b, 0x7b, 0xd7, 0x4b, 0xbd, 0xa2, 0xbe, 0xd2, 0x3b, 0xa0, 0x24, 0xf3, 0x0e, 0x4f, 0xc7, - 0x96, 0x36, 0x1b, 0x5b, 0xd7, 0x86, 0x28, 0x4d, 0xf6, 0xed, 0xba, 0x80, 0xfd, 0xf1, 0xab, 0x75, - 0x33, 0x26, 0xfc, 0xa8, 0x1f, 0x38, 0x21, 0x4d, 0xdd, 0x84, 0x64, 0xd8, 0x4d, 0x82, 0xf4, 0x36, - 0x8b, 0x5e, 0xb8, 0x83, 0x3d, 0x97, 0x0f, 0x7b, 0x98, 0x09, 0x25, 0xe6, 0xaf, 0x95, 0xcd, 0xea, - 0x8c, 0xfa, 0x31, 0x80, 0xab, 0x11, 0x4e, 0x70, 0x8c, 0x38, 0x8e, 0xba, 0xcf, 0x73, 0x8c, 0x8d, - 0xc6, 0x22, 0x9e, 0x87, 0x8a, 0x67, 0x4b, 0xf2, 0xfc, 0xdc, 0x7e, 0x1e, 0x9a, 0x2b, 0x55, 0xeb, - 0x83, 0x1c, 0x63, 0xfd, 0x1d, 0x80, 0x1b, 0x73, 0xb1, 0x72, 0x3c, 0xcd, 0x45, 0x38, 0x8f, 0x14, - 0x8e, 0x51, 0xc7, 0xf9, 0x8b, 0xf9, 0xac, 0x57, 0xdd, 0xe5, 0x80, 0x1c, 0xb8, 0x8c, 0xb3, 0xa8, - 0xcb, 0x49, 0x8a, 0x8d, 0x0b, 0x1d, 0xb0, 0xd3, 0xf0, 0xae, 0xce, 0xc6, 0xd6, 0x9a, 0xdc, 0xab, - 0xcc, 0xd8, 0xfe, 0x45, 0x9c, 0x45, 0x4f, 0x48, 0x8a, 0xf7, 0x97, 0x5f, 0x9f, 0x58, 0xda, 0xfb, - 0x13, 0x4b, 0xb3, 0x3f, 0x01, 0x68, 0x1c, 0xd0, 0x8c, 0x93, 0xac, 0x4f, 0xfb, 0xac, 0x66, 0xaa, - 0x00, 0x6e, 0x0a, 0x53, 0x29, 0xc6, 0x9a, 0xb9, 0x6e, 0x39, 0xbf, 0x36, 0xbe, 0x73, 0xd6, 0x9e, - 0xca, 0x66, 0x7a, 0x70, 0xd6, 0xb8, 0x77, 0x21, 0x64, 0x1c, 0xe5, 0x5c, 0xc2, 0x2f, 0x09, 0xf8, - 0xad, 0xd9, 0xd8, 0xda, 0x90, 0xf0, 0xf3, 0x9c, 0xed, 0x5f, 0x12, 0x41, 0xed, 0x00, 0xaf, 0x00, - 0xdc, 0xba, 0x8f, 0x13, 0x34, 0xac, 0xa6, 0xf1, 0x0f, 0xe9, 0x7f, 0xe0, 0x38, 0x06, 0xb0, 0xf5, - 0x18, 0xe7, 0x84, 0x46, 0x7a, 0x1b, 0xb6, 0x12, 0x9c, 0xc5, 0xfc, 0x48, 0x6c, 0xd5, 0xf0, 0x55, - 0xa4, 0x23, 0xd8, 0x42, 0xa9, 0x40, 0x58, 0xf8, 0x9a, 0x9c, 0xc2, 0x2e, 0xe7, 0xb0, 0x84, 0x12, - 0xde, 0x6f, 0x0a, 0x96, 0x0f, 0x4b, 0xb0, 0x2d, 0x59, 0x48, 0xf8, 0xbf, 0x5c, 0xa9, 0x1e, 0xc3, - 0xb5, 0x12, 0xaa, 0x27, 0xd8, 0x99, 0x7a, 0xe4, 0xe6, 0xef, 0xa0, 0xe4, 0x11, 0x3d, 0x53, 0x3d, - 0xad, 0xb6, 0x94, 0xaf, 0x89, 0xd8, 0xfe, 0xaa, 0x5a, 0x91, 0xe5, 0x6c, 0x7e, 0x67, 0xde, 0xe1, - 0xe9, 0xc4, 0x04, 0xa3, 0x89, 0x09, 0xbe, 0x4d, 0x4c, 0xf0, 0x76, 0x6a, 0x6a, 0xa3, 0xa9, 0xa9, - 0x7d, 0x99, 0x9a, 0xda, 0x33, 0xf7, 0x0f, 0x73, 0x7f, 0xa9, 0xbe, 0xcd, 0xea, 0x4f, 0x41, 0x5c, - 0x43, 0xd0, 0x12, 0x5f, 0xe7, 0x3b, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x8c, 0xd2, 0x3f, 0x0c, - 0x33, 0x06, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x94, 0xb1, 0x6f, 0xd3, 0x4e, + 0x14, 0xc7, 0x7d, 0x49, 0x7e, 0xf9, 0x95, 0x0b, 0x34, 0xad, 0xdb, 0x04, 0xab, 0x15, 0x76, 0xf0, + 0x00, 0x59, 0xb0, 0xd5, 0xc0, 0x94, 0x0d, 0x17, 0x15, 0x95, 0x09, 0x59, 0x88, 0x81, 0x81, 0xc8, + 0x8e, 0x0f, 0xe7, 0x84, 0xed, 0x8b, 0xec, 0x4b, 0x44, 0x56, 0x86, 0x8a, 0x01, 0x09, 0x46, 0x36, + 0x3a, 0xf3, 0x2f, 0xb0, 0x30, 0x76, 0xcc, 0xc8, 0x14, 0x50, 0xf2, 0x1f, 0xe4, 0x2f, 0x40, 0xbe, + 0x3b, 0x3b, 0xc5, 0xad, 0x22, 0x95, 0x01, 0x89, 0xcd, 0xcf, 0xef, 0xde, 0xf7, 0x7d, 0xee, 0xdd, + 0xf7, 0x0e, 0xde, 0x0e, 0xdc, 0xd0, 0x1c, 0xa3, 0x84, 0xe2, 0xc8, 0x37, 0xc7, 0x07, 0x2e, 0xa2, + 0xce, 0x41, 0x16, 0x1b, 0xc3, 0x98, 0x50, 0x22, 0xef, 0x04, 0x6e, 0x68, 0x64, 0xbf, 0xc4, 0x92, + 0xbd, 0x5d, 0x9f, 0xf8, 0x84, 0xe5, 0xcd, 0xf4, 0x8b, 0x2f, 0xdd, 0xdb, 0x4f, 0xd5, 0x5c, 0x27, + 0x41, 0xb9, 0x54, 0x9f, 0xe0, 0xe8, 0x7c, 0xd2, 0x19, 0xd1, 0x41, 0x9e, 0x4c, 0x03, 0x9e, 0xd4, + 0xbf, 0x55, 0xa0, 0x6c, 0x39, 0x09, 0x7a, 0xce, 0xfb, 0x3c, 0xec, 0xf7, 0xc9, 0x28, 0xa2, 0xf2, + 0x11, 0xbc, 0x9e, 0xca, 0xf5, 0x1c, 0x1e, 0x2b, 0xa0, 0x05, 0xda, 0xb5, 0xce, 0x2d, 0x23, 0x45, + 0x62, 0xd5, 0x42, 0xca, 0x48, 0x6b, 0x45, 0x91, 0x55, 0x99, 0xce, 0x34, 0x60, 0xd7, 0xdc, 0xd5, + 0x2f, 0xf9, 0x3d, 0x80, 0x5b, 0x24, 0xc6, 0x3e, 0x8e, 0x9c, 0xa0, 0x27, 0xf6, 0xa2, 0x94, 0x5a, + 0xe5, 0x76, 0xad, 0xd3, 0x64, 0x62, 0xe9, 0xe2, 0x5c, 0xec, 0x90, 0xe0, 0xc8, 0x3a, 0x3e, 0x9b, + 0x69, 0xd2, 0x72, 0xa6, 0xdd, 0x9c, 0x38, 0x61, 0xd0, 0xd5, 0x8b, 0xd5, 0xfa, 0x97, 0x1f, 0xda, + 0x1d, 0x1f, 0xd3, 0xc1, 0xc8, 0x35, 0xfa, 0x24, 0x34, 0x03, 0x1c, 0x21, 0x33, 0x70, 0xc3, 0x7b, + 0x89, 0xf7, 0xda, 0x1c, 0x77, 0x4c, 0x3a, 0x19, 0xa2, 0x84, 0x29, 0x25, 0x76, 0x3d, 0x2b, 0x16, + 0xbb, 0x93, 0x4f, 0x00, 0xdc, 0xf4, 0x50, 0x80, 0x7c, 0x87, 0x22, 0xaf, 0xf7, 0x2a, 0x46, 0x48, + 0x29, 0xaf, 0x85, 0x79, 0x2c, 0x60, 0x1a, 0x1c, 0xe6, 0xf7, 0xda, 0xab, 0xa0, 0xdc, 0xc8, 0x4b, + 0x8f, 0x62, 0x84, 0xe4, 0x0f, 0x00, 0x6e, 0xaf, 0xc4, 0xb2, 0xc1, 0x54, 0xd6, 0xb2, 0x3c, 0x11, + 0x2c, 0x4a, 0x91, 0xe5, 0x0f, 0x26, 0xb3, 0x95, 0x57, 0x67, 0xa3, 0x31, 0xe0, 0x06, 0x8a, 0xbc, + 0x1e, 0xc5, 0x21, 0x52, 0xfe, 0x6b, 0x81, 0x76, 0xd9, 0xda, 0x59, 0xce, 0xb4, 0x3a, 0xef, 0x95, + 0x65, 0x74, 0xfb, 0x7f, 0x14, 0x79, 0xcf, 0x70, 0x88, 0xba, 0x1b, 0xef, 0x4e, 0x35, 0xe9, 0xd3, + 0xa9, 0x26, 0xe9, 0x5f, 0x01, 0x54, 0x0e, 0x49, 0x44, 0x71, 0x34, 0x22, 0xa3, 0xa4, 0x60, 0xa4, + 0x1e, 0xdc, 0x65, 0x46, 0x12, 0x8c, 0x05, 0x43, 0xdd, 0x35, 0x2e, 0xf1, 0xb8, 0x71, 0xd1, 0x8f, + 0xc2, 0x5a, 0xb2, 0x7b, 0xd1, 0xa9, 0x0f, 0x20, 0x4c, 0xa8, 0x13, 0x53, 0x4e, 0x5e, 0x62, 0xe4, + 0x8d, 0xe5, 0x4c, 0xdb, 0xe6, 0xe4, 0xab, 0x9c, 0x6e, 0x5f, 0x63, 0x41, 0x81, 0xfe, 0x2d, 0x80, + 0x8d, 0x47, 0x28, 0x70, 0x26, 0xf9, 0x28, 0xfe, 0x16, 0xfa, 0x39, 0x88, 0x13, 0x00, 0xab, 0x4f, + 0x51, 0x8c, 0x89, 0x27, 0x37, 0x61, 0x35, 0x40, 0x91, 0x4f, 0x07, 0xac, 0x4f, 0xd9, 0x16, 0x91, + 0xfc, 0x12, 0x56, 0x9d, 0x90, 0xf5, 0x5f, 0x7f, 0x7d, 0x8c, 0xd4, 0x25, 0x57, 0x70, 0x82, 0x50, + 0xed, 0x56, 0x18, 0xc8, 0xe7, 0x12, 0x6c, 0x72, 0x10, 0xdc, 0xff, 0x27, 0x4e, 0x52, 0xf6, 0x60, + 0x3d, 0x23, 0x1a, 0x32, 0xf0, 0x44, 0x5c, 0xe9, 0xfd, 0x4b, 0x89, 0xf8, 0xe6, 0x2c, 0x55, 0xdc, + 0xa5, 0x26, 0xd7, 0x2e, 0x28, 0xe8, 0xf6, 0xa6, 0xf8, 0xc3, 0x97, 0x27, 0xab, 0xa3, 0xb2, 0x8e, + 0xcf, 0xe6, 0x2a, 0x98, 0xce, 0x55, 0xf0, 0x73, 0xae, 0x82, 0x8f, 0x0b, 0x55, 0x9a, 0x2e, 0x54, + 0xe9, 0xfb, 0x42, 0x95, 0x5e, 0x98, 0x6b, 0x26, 0xfe, 0x46, 0x3c, 0xc0, 0xe2, 0xc1, 0x67, 0x07, + 0xe0, 0x56, 0xd9, 0x13, 0x7c, 0xff, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x09, 0x18, 0x62, 0x9f, + 0x0c, 0x06, 0x00, 0x00, } func (m *BaseVestingAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/client/cli/cli_test.go b/x/bank/client/cli/cli_test.go index af404b1529..0f47160952 100644 --- a/x/bank/client/cli/cli_test.go +++ b/x/bank/client/cli/cli_test.go @@ -492,7 +492,7 @@ func (s *IntegrationTestSuite) TestBankMsgService() { false, &sdk.TxResponse{}, 0, - "/cosmos.bank.v1beta1.Msg/Send", // indicates we are using ServiceMsg and not a regular Msg + "/lbm.bank.v1beta1.Msg/Send", // indicates we are using ServiceMsg and not a regular Msg }, } diff --git a/x/bank/spec/02_keepers.md b/x/bank/spec/02_keepers.md index 0032961b1f..6ac9ad3f06 100644 --- a/x/bank/spec/02_keepers.md +++ b/x/bank/spec/02_keepers.md @@ -18,7 +18,7 @@ An input of a multiparty transfer // Input models transaction input. message Input { string address = 1; - repeated cosmos.base.v1beta1.Coin coins = 2; + repeated lbm.base.v1beta1.Coin coins = 2; } ``` @@ -30,7 +30,7 @@ An output of a multiparty transfer. // Output models transaction outputs. message Output { string address = 1; - repeated cosmos.base.v1beta1.Coin coins = 2; + repeated lbm.base.v1beta1.Coin coins = 2; } ``` diff --git a/x/bank/types/bank.pb.go b/x/bank/types/bank.pb.go index 58b9a1968e..11d34c3fc6 100644 --- a/x/bank/types/bank.pb.go +++ b/x/bank/types/bank.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/v1beta1/bank.proto +// source: lbm/bank/v1beta1/bank.proto package types @@ -35,7 +35,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{0} + return fileDescriptor_bab5727d40ab4815, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ type SendEnabled struct { func (m *SendEnabled) Reset() { *m = SendEnabled{} } func (*SendEnabled) ProtoMessage() {} func (*SendEnabled) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{1} + return fileDescriptor_bab5727d40ab4815, []int{1} } func (m *SendEnabled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,7 +141,7 @@ func (m *Input) Reset() { *m = Input{} } func (m *Input) String() string { return proto.CompactTextString(m) } func (*Input) ProtoMessage() {} func (*Input) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{2} + return fileDescriptor_bab5727d40ab4815, []int{2} } func (m *Input) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -180,7 +180,7 @@ func (m *Output) Reset() { *m = Output{} } func (m *Output) String() string { return proto.CompactTextString(m) } func (*Output) ProtoMessage() {} func (*Output) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{3} + return fileDescriptor_bab5727d40ab4815, []int{3} } func (m *Output) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -218,7 +218,7 @@ type Supply struct { func (m *Supply) Reset() { *m = Supply{} } func (*Supply) ProtoMessage() {} func (*Supply) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{4} + return fileDescriptor_bab5727d40ab4815, []int{4} } func (m *Supply) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -266,7 +266,7 @@ func (m *DenomUnit) Reset() { *m = DenomUnit{} } func (m *DenomUnit) String() string { return proto.CompactTextString(m) } func (*DenomUnit) ProtoMessage() {} func (*DenomUnit) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{5} + return fileDescriptor_bab5727d40ab4815, []int{5} } func (m *DenomUnit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -333,7 +333,7 @@ func (m *Metadata) Reset() { *m = Metadata{} } func (m *Metadata) String() string { return proto.CompactTextString(m) } func (*Metadata) ProtoMessage() {} func (*Metadata) Descriptor() ([]byte, []int) { - return fileDescriptor_dd052eee12edf988, []int{6} + return fileDescriptor_bab5727d40ab4815, []int{6} } func (m *Metadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -391,55 +391,55 @@ func (m *Metadata) GetDisplay() string { } func init() { - proto.RegisterType((*Params)(nil), "cosmos.bank.v1beta1.Params") - proto.RegisterType((*SendEnabled)(nil), "cosmos.bank.v1beta1.SendEnabled") - proto.RegisterType((*Input)(nil), "cosmos.bank.v1beta1.Input") - proto.RegisterType((*Output)(nil), "cosmos.bank.v1beta1.Output") - proto.RegisterType((*Supply)(nil), "cosmos.bank.v1beta1.Supply") - proto.RegisterType((*DenomUnit)(nil), "cosmos.bank.v1beta1.DenomUnit") - proto.RegisterType((*Metadata)(nil), "cosmos.bank.v1beta1.Metadata") + proto.RegisterType((*Params)(nil), "lbm.bank.v1beta1.Params") + proto.RegisterType((*SendEnabled)(nil), "lbm.bank.v1beta1.SendEnabled") + proto.RegisterType((*Input)(nil), "lbm.bank.v1beta1.Input") + proto.RegisterType((*Output)(nil), "lbm.bank.v1beta1.Output") + proto.RegisterType((*Supply)(nil), "lbm.bank.v1beta1.Supply") + proto.RegisterType((*DenomUnit)(nil), "lbm.bank.v1beta1.DenomUnit") + proto.RegisterType((*Metadata)(nil), "lbm.bank.v1beta1.Metadata") } -func init() { proto.RegisterFile("cosmos/bank/v1beta1/bank.proto", fileDescriptor_dd052eee12edf988) } +func init() { proto.RegisterFile("lbm/bank/v1beta1/bank.proto", fileDescriptor_bab5727d40ab4815) } -var fileDescriptor_dd052eee12edf988 = []byte{ - // 571 bytes of a gzipped FileDescriptorProto +var fileDescriptor_bab5727d40ab4815 = []byte{ + // 570 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0xbf, 0x6f, 0xd3, 0x40, - 0x18, 0xf5, 0x35, 0x6d, 0x48, 0x2f, 0xb0, 0x98, 0x0c, 0x6e, 0x24, 0x6c, 0x63, 0x09, 0x08, 0x88, - 0xda, 0x6a, 0xbb, 0x65, 0x41, 0xa4, 0x20, 0xd4, 0x01, 0x81, 0x5c, 0x21, 0x24, 0x18, 0xa2, 0x73, - 0xee, 0x1a, 0x4e, 0xb5, 0xef, 0xac, 0xdc, 0xb9, 0x6a, 0xfe, 0x03, 0x06, 0x90, 0x18, 0x91, 0x58, - 0x3a, 0x33, 0x30, 0xf1, 0x47, 0x74, 0xac, 0x60, 0x61, 0x0a, 0x28, 0x59, 0x98, 0xfb, 0x17, 0xa0, - 0xbb, 0x73, 0x7e, 0x54, 0x0a, 0xb0, 0x30, 0xb0, 0xdd, 0x77, 0xdf, 0xbb, 0xf7, 0x9e, 0xde, 0xf7, - 0xd9, 0xd0, 0xed, 0x71, 0x91, 0x71, 0x11, 0x25, 0x88, 0x1d, 0x46, 0x47, 0x5b, 0x09, 0x91, 0x68, - 0x4b, 0x17, 0x61, 0x3e, 0xe0, 0x92, 0xdb, 0x57, 0x4d, 0x3f, 0xd4, 0x57, 0x65, 0xbf, 0xd9, 0xe8, - 0xf3, 0x3e, 0xd7, 0xfd, 0x48, 0x9d, 0x0c, 0xb4, 0xb9, 0x61, 0xa0, 0x5d, 0xd3, 0x28, 0xdf, 0x99, - 0xd6, 0x5c, 0x45, 0x90, 0x99, 0x4a, 0x8f, 0x53, 0x66, 0xfa, 0xc1, 0x57, 0x00, 0xab, 0x4f, 0xd1, - 0x00, 0x65, 0xc2, 0x3e, 0x80, 0x97, 0x05, 0x61, 0xb8, 0x4b, 0x18, 0x4a, 0x52, 0x82, 0x1d, 0xe0, - 0x57, 0x5a, 0xf5, 0x6d, 0x3f, 0x5c, 0xe2, 0x23, 0xdc, 0x27, 0x0c, 0x3f, 0x34, 0xb8, 0xce, 0xf5, - 0xf3, 0x91, 0x77, 0x6d, 0x88, 0xb2, 0xb4, 0x1d, 0x2c, 0xbe, 0xbf, 0xcb, 0x33, 0x2a, 0x49, 0x96, - 0xcb, 0x61, 0x10, 0xd7, 0xc5, 0x1c, 0x6f, 0xbf, 0x84, 0x0d, 0x4c, 0x0e, 0x50, 0x91, 0xca, 0xee, - 0x05, 0xbd, 0x15, 0x1f, 0xb4, 0x6a, 0x9d, 0xdb, 0xe7, 0x23, 0xef, 0x86, 0x61, 0x5b, 0x86, 0x5a, - 0x64, 0xb5, 0x4b, 0xc0, 0x82, 0x99, 0xf6, 0xea, 0xfb, 0x13, 0xcf, 0x0a, 0x1e, 0xc1, 0xfa, 0xc2, - 0xa5, 0xdd, 0x80, 0x6b, 0x98, 0x30, 0x9e, 0x39, 0xc0, 0x07, 0xad, 0xf5, 0xd8, 0x14, 0xb6, 0x03, - 0x2f, 0x5d, 0x90, 0x8e, 0xa7, 0x65, 0xbb, 0xa6, 0x48, 0x7e, 0x9e, 0x78, 0x20, 0x78, 0x03, 0xe0, - 0xda, 0x1e, 0xcb, 0x0b, 0xa9, 0xd0, 0x08, 0xe3, 0x01, 0x11, 0xa2, 0x64, 0x99, 0x96, 0x76, 0x17, - 0xae, 0xa9, 0x40, 0x85, 0xb3, 0xa2, 0x03, 0xdb, 0x98, 0x07, 0x26, 0xc8, 0x2c, 0xb0, 0x5d, 0x4e, - 0x59, 0x27, 0x3c, 0x1d, 0x79, 0xd6, 0xc7, 0xef, 0xde, 0xcd, 0x3e, 0x95, 0xaf, 0x8a, 0x24, 0xec, - 0xf1, 0x2c, 0x4a, 0x29, 0x23, 0x51, 0x9a, 0x64, 0x9b, 0x02, 0x1f, 0x46, 0x47, 0xdb, 0x91, 0x1c, - 0xe6, 0x44, 0x68, 0xb8, 0x88, 0x0d, 0x6f, 0xbb, 0xf6, 0xda, 0xd8, 0xb1, 0x82, 0xb7, 0x00, 0x56, - 0x9f, 0x14, 0xf2, 0xbf, 0xf1, 0xf3, 0x09, 0xc0, 0xea, 0x7e, 0x91, 0xe7, 0xe9, 0x50, 0xa9, 0x4a, - 0x2e, 0x51, 0x5a, 0xae, 0xcd, 0xbf, 0x54, 0xd5, 0xbc, 0xed, 0x5d, 0xa5, 0x3a, 0x1d, 0xcc, 0x97, - 0xcf, 0x9b, 0x3b, 0x77, 0xfe, 0xf0, 0xfe, 0xd8, 0x7c, 0x56, 0xe4, 0x38, 0xe7, 0x03, 0x49, 0x70, - 0x68, 0x4c, 0xee, 0x05, 0xcf, 0xe1, 0xfa, 0x03, 0x35, 0xfc, 0x67, 0x8c, 0xca, 0xdf, 0xac, 0x45, - 0x13, 0xd6, 0xd4, 0x33, 0x46, 0x98, 0xd4, 0x7b, 0x71, 0x25, 0x9e, 0xd5, 0x3a, 0xf4, 0x94, 0x22, - 0x41, 0x84, 0x53, 0xf1, 0x2b, 0x3a, 0x74, 0x53, 0x06, 0x1f, 0x00, 0xac, 0x3d, 0x26, 0x12, 0x61, - 0x24, 0x91, 0xed, 0xc3, 0x3a, 0x26, 0xa2, 0x37, 0xa0, 0xb9, 0xa4, 0x9c, 0x95, 0xf4, 0x8b, 0x57, - 0xf6, 0x3d, 0x85, 0x60, 0x3c, 0xeb, 0x16, 0x8c, 0xca, 0xe9, 0xa4, 0xdc, 0xa5, 0x9f, 0xda, 0xcc, - 0x6f, 0x0c, 0xf1, 0xf4, 0x28, 0x6c, 0x1b, 0xae, 0xaa, 0x64, 0x9d, 0x8a, 0xe6, 0xd6, 0x67, 0xe5, - 0x0e, 0x53, 0x91, 0xa7, 0x68, 0xe8, 0xac, 0x9a, 0x95, 0x28, 0xcb, 0xce, 0xfd, 0xd3, 0xb1, 0x0b, - 0xce, 0xc6, 0x2e, 0xf8, 0x31, 0x76, 0xc1, 0xbb, 0x89, 0x6b, 0x9d, 0x4d, 0x5c, 0xeb, 0xdb, 0xc4, - 0xb5, 0x5e, 0xdc, 0xfa, 0x7b, 0x88, 0x7a, 0x16, 0x49, 0x55, 0xff, 0x2f, 0x76, 0x7e, 0x05, 0x00, - 0x00, 0xff, 0xff, 0x7b, 0x93, 0xbf, 0x9c, 0xb7, 0x04, 0x00, 0x00, + 0x18, 0xf5, 0x35, 0x3f, 0x48, 0x2f, 0x20, 0x21, 0x2b, 0x42, 0x26, 0x55, 0xed, 0x60, 0x09, 0x08, + 0x88, 0xda, 0x6a, 0xbb, 0x45, 0x2c, 0xa4, 0x20, 0xd4, 0x01, 0x81, 0x5c, 0x21, 0x24, 0x40, 0x8a, + 0xce, 0xb9, 0x23, 0x58, 0xf5, 0xdd, 0x59, 0xb9, 0x73, 0xd5, 0xfc, 0x07, 0xc0, 0xc4, 0xd8, 0xb1, + 0x33, 0xac, 0xfc, 0x11, 0x1d, 0x23, 0x26, 0xa6, 0x80, 0x92, 0x85, 0xb9, 0x7f, 0x01, 0xba, 0x3b, + 0x27, 0xa4, 0xfc, 0x5c, 0x18, 0xd8, 0xee, 0xf9, 0x7b, 0xf7, 0xbe, 0xa7, 0xf7, 0x7d, 0x67, 0xb8, + 0x96, 0xc6, 0x34, 0x8c, 0x11, 0xdb, 0x0f, 0x0f, 0x36, 0x63, 0x22, 0xd1, 0xa6, 0x06, 0x41, 0x36, + 0xe4, 0x92, 0xdb, 0x17, 0xd3, 0x98, 0x06, 0x1a, 0x17, 0xc5, 0x66, 0x63, 0xc0, 0x07, 0x5c, 0x17, + 0x43, 0x75, 0x32, 0xbc, 0xe6, 0xe5, 0x3e, 0x17, 0x94, 0x8b, 0x9e, 0x29, 0x18, 0x50, 0x94, 0x0a, + 0x7d, 0x41, 0x16, 0xfa, 0x7d, 0x9e, 0x30, 0x53, 0xf4, 0xc7, 0x00, 0x56, 0x1f, 0xa1, 0x21, 0xa2, + 0xc2, 0xee, 0xc3, 0xf3, 0x82, 0x30, 0xdc, 0x23, 0x0c, 0xc5, 0x29, 0xc1, 0x0e, 0x68, 0x95, 0xda, + 0xf5, 0xad, 0xf5, 0xe0, 0x47, 0x07, 0xc1, 0x1e, 0x61, 0xf8, 0x9e, 0x21, 0x75, 0xaf, 0x9c, 0x4e, + 0xbc, 0xf5, 0x11, 0xa2, 0x69, 0xc7, 0x5f, 0xbe, 0x7c, 0x8b, 0xd3, 0x44, 0x12, 0x9a, 0xc9, 0x91, + 0x1f, 0xd5, 0xc5, 0x77, 0xbe, 0xfd, 0x0c, 0x36, 0x30, 0x79, 0x81, 0xf2, 0x54, 0xf6, 0xce, 0x34, + 0x5b, 0x69, 0x81, 0x76, 0xad, 0x7b, 0xe3, 0x74, 0xe2, 0x5d, 0x35, 0x6a, 0xbf, 0x62, 0x2d, 0xab, + 0xda, 0x05, 0x61, 0xc9, 0x4c, 0xa7, 0x7c, 0x74, 0xec, 0x59, 0xfe, 0x7d, 0x58, 0x5f, 0xfa, 0x68, + 0x37, 0x60, 0x05, 0x13, 0xc6, 0xa9, 0x03, 0x5a, 0xa0, 0xbd, 0x1a, 0x19, 0x60, 0x3b, 0xf0, 0xdc, + 0x99, 0xd6, 0xd1, 0x1c, 0x76, 0x6a, 0x4a, 0xe4, 0xeb, 0xb1, 0x07, 0xfc, 0xd7, 0x00, 0x56, 0x76, + 0x59, 0x96, 0x4b, 0xc5, 0x46, 0x18, 0x0f, 0x89, 0x10, 0x85, 0xca, 0x1c, 0xda, 0xcf, 0x61, 0x45, + 0xa5, 0x29, 0x9c, 0x15, 0x9d, 0xd6, 0xa5, 0x22, 0x2d, 0x41, 0x16, 0x69, 0xed, 0xf0, 0x84, 0x75, + 0x83, 0x93, 0x89, 0x67, 0xbd, 0xfb, 0xec, 0x5d, 0x1b, 0x24, 0xf2, 0x65, 0x1e, 0x07, 0x7d, 0x4e, + 0xc3, 0x34, 0x61, 0x24, 0x4c, 0x63, 0xba, 0x21, 0xf0, 0x7e, 0x78, 0xb0, 0x15, 0xca, 0x51, 0x46, + 0x84, 0xa6, 0x8b, 0xc8, 0x88, 0x76, 0x6a, 0xaf, 0x8c, 0x17, 0xcb, 0x7f, 0x03, 0x60, 0xf5, 0x61, + 0x2e, 0xff, 0x0f, 0x33, 0xef, 0x01, 0xac, 0xee, 0xe5, 0x59, 0x96, 0x8e, 0x54, 0x4b, 0xc9, 0x25, + 0x4a, 0x8b, 0x6d, 0xf9, 0x67, 0x2d, 0xb5, 0x68, 0x67, 0x47, 0xb5, 0x9c, 0xcf, 0xe3, 0xe3, 0x87, + 0x8d, 0xed, 0x9b, 0x7f, 0xb8, 0x7f, 0x68, 0x1e, 0x11, 0x39, 0xcc, 0xf8, 0x50, 0x12, 0x1c, 0x18, + 0x87, 0xbb, 0xfe, 0x13, 0xb8, 0x7a, 0x57, 0xcd, 0xfc, 0x31, 0x4b, 0xe4, 0x6f, 0xb6, 0xa1, 0x09, + 0x6b, 0xea, 0x1a, 0x23, 0x4c, 0xea, 0x75, 0xb8, 0x10, 0x2d, 0xb0, 0x8e, 0x3b, 0x4d, 0x90, 0x20, + 0xc2, 0x29, 0xb5, 0x4a, 0x3a, 0x6e, 0x03, 0xfd, 0x23, 0x00, 0x6b, 0x0f, 0x88, 0x44, 0x18, 0x49, + 0x64, 0xb7, 0x60, 0x1d, 0x13, 0xd1, 0x1f, 0x26, 0x99, 0x4c, 0x38, 0x2b, 0xe4, 0x97, 0x3f, 0xd9, + 0xb7, 0x15, 0x83, 0x71, 0xda, 0xcb, 0x59, 0x22, 0xe7, 0x33, 0x5a, 0xfb, 0xf9, 0x79, 0x2d, 0xcc, + 0x46, 0x10, 0xcf, 0x8f, 0xc2, 0xb6, 0x61, 0x59, 0xc5, 0xea, 0x94, 0xb4, 0xb0, 0x3e, 0x2b, 0x6b, + 0x38, 0x11, 0x59, 0x8a, 0x46, 0x4e, 0xd9, 0x6c, 0x42, 0x01, 0xbb, 0x77, 0x4e, 0xa6, 0x2e, 0x18, + 0x4f, 0x5d, 0xf0, 0x65, 0xea, 0x82, 0xb7, 0x33, 0xd7, 0x1a, 0xcf, 0x5c, 0xeb, 0xd3, 0xcc, 0xb5, + 0x9e, 0x5e, 0xff, 0x7b, 0x82, 0x7a, 0x10, 0x71, 0x55, 0xff, 0x20, 0xb6, 0xbf, 0x05, 0x00, 0x00, + 0xff, 0xff, 0x01, 0xf3, 0xae, 0x4a, 0x9f, 0x04, 0x00, 0x00, } func (this *SendEnabled) Equal(that interface{}) bool { diff --git a/x/bank/types/codec.go b/x/bank/types/codec.go index 79e60e865d..1cfdd7d73f 100644 --- a/x/bank/types/codec.go +++ b/x/bank/types/codec.go @@ -13,9 +13,9 @@ import ( // on the provided LegacyAmino codec. These types are used for Amino JSON serialization. func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*exported.SupplyI)(nil), nil) - cdc.RegisterConcrete(&Supply{}, "cosmos-sdk/Supply", nil) - cdc.RegisterConcrete(&MsgSend{}, "cosmos-sdk/MsgSend", nil) - cdc.RegisterConcrete(&MsgMultiSend{}, "cosmos-sdk/MsgMultiSend", nil) + cdc.RegisterConcrete(&Supply{}, "lbm-sdk/Supply", nil) + cdc.RegisterConcrete(&MsgSend{}, "lbm-sdk/MsgSend", nil) + cdc.RegisterConcrete(&MsgMultiSend{}, "lbm-sdk/MsgMultiSend", nil) } func RegisterInterfaces(registry types.InterfaceRegistry) { @@ -25,7 +25,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { ) registry.RegisterInterface( - "cosmos.bank.v1beta1.SupplyI", + "lbm.bank.v1beta1.SupplyI", (*exported.SupplyI)(nil), &Supply{}, ) diff --git a/x/bank/types/genesis.pb.go b/x/bank/types/genesis.pb.go index 2e3ba953a3..cffdb8e04a 100644 --- a/x/bank/types/genesis.pb.go +++ b/x/bank/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/v1beta1/genesis.proto +// source: lbm/bank/v1beta1/genesis.proto package types @@ -41,7 +41,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_8f007de11b420c6e, []int{0} + return fileDescriptor_3a0a07899603f014, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -111,7 +111,7 @@ func (m *Balance) Reset() { *m = Balance{} } func (m *Balance) String() string { return proto.CompactTextString(m) } func (*Balance) ProtoMessage() {} func (*Balance) Descriptor() ([]byte, []int) { - return fileDescriptor_8f007de11b420c6e, []int{1} + return fileDescriptor_3a0a07899603f014, []int{1} } func (m *Balance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,39 +141,39 @@ func (m *Balance) XXX_DiscardUnknown() { var xxx_messageInfo_Balance proto.InternalMessageInfo func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.bank.v1beta1.GenesisState") - proto.RegisterType((*Balance)(nil), "cosmos.bank.v1beta1.Balance") + proto.RegisterType((*GenesisState)(nil), "lbm.bank.v1beta1.GenesisState") + proto.RegisterType((*Balance)(nil), "lbm.bank.v1beta1.Balance") } -func init() { proto.RegisterFile("cosmos/bank/v1beta1/genesis.proto", fileDescriptor_8f007de11b420c6e) } +func init() { proto.RegisterFile("lbm/bank/v1beta1/genesis.proto", fileDescriptor_3a0a07899603f014) } -var fileDescriptor_8f007de11b420c6e = []byte{ - // 388 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xb1, 0x4e, 0xc2, 0x40, - 0x1c, 0xc6, 0x5b, 0x40, 0xc0, 0x43, 0x1d, 0xaa, 0x26, 0x15, 0xa5, 0xc5, 0x0e, 0xca, 0x62, 0x2f, - 0xe0, 0x24, 0x83, 0x89, 0x75, 0x70, 0x32, 0x31, 0x75, 0x73, 0x21, 0xd7, 0xf6, 0x52, 0x1b, 0xda, - 0x5e, 0xc3, 0x1d, 0x44, 0xde, 0xc0, 0xc9, 0xf8, 0x08, 0xcc, 0x3e, 0x09, 0x23, 0x6e, 0x4e, 0x68, - 0x60, 0x71, 0xf6, 0x09, 0x4c, 0xaf, 0xa5, 0x6a, 0x24, 0x4e, 0x6e, 0x6d, 0xff, 0xbf, 0xef, 0xf7, - 0xdd, 0x5d, 0x0f, 0xec, 0xdb, 0x84, 0x06, 0x84, 0x42, 0x0b, 0x85, 0x5d, 0x38, 0x68, 0x5a, 0x98, - 0xa1, 0x26, 0x74, 0x71, 0x88, 0xa9, 0x47, 0xf5, 0xa8, 0x47, 0x18, 0x91, 0x36, 0x13, 0x44, 0x8f, - 0x11, 0x3d, 0x45, 0xaa, 0x5b, 0x2e, 0x71, 0x09, 0x9f, 0xc3, 0xf8, 0x29, 0x41, 0xab, 0x4a, 0x66, - 0xa3, 0x38, 0xb3, 0xd9, 0xc4, 0x0b, 0x7f, 0xcd, 0xbf, 0xb5, 0x71, 0x2f, 0x9f, 0x6b, 0xcf, 0x39, - 0xb0, 0x76, 0x91, 0x94, 0x5f, 0x33, 0xc4, 0xb0, 0x74, 0x02, 0x8a, 0x11, 0xea, 0xa1, 0x80, 0xca, - 0x62, 0x5d, 0x6c, 0x54, 0x5a, 0xbb, 0xfa, 0x92, 0xc5, 0xe8, 0x57, 0x1c, 0x31, 0x0a, 0xe3, 0xa9, - 0x2a, 0x98, 0x69, 0x40, 0x3a, 0x05, 0x65, 0x0b, 0xf9, 0x28, 0xb4, 0x31, 0x95, 0x73, 0xf5, 0x7c, - 0xa3, 0xd2, 0xda, 0x5b, 0x1a, 0x36, 0x12, 0x28, 0x4d, 0x67, 0x19, 0x09, 0x81, 0x22, 0xed, 0x47, - 0x91, 0x3f, 0x94, 0xf3, 0x3c, 0xbd, 0xf3, 0x95, 0xa6, 0x38, 0x4b, 0x9f, 0x13, 0x2f, 0x34, 0xf4, - 0x38, 0xfa, 0xf4, 0xaa, 0x1e, 0xb8, 0x1e, 0xbb, 0xed, 0x5b, 0xba, 0x4d, 0x02, 0xe8, 0x7b, 0x21, - 0x86, 0xbe, 0x15, 0x1c, 0x51, 0xa7, 0x0b, 0x07, 0x2d, 0xc8, 0x86, 0x11, 0xa6, 0x1c, 0xa7, 0x66, - 0x2a, 0x96, 0x6c, 0xb0, 0xe1, 0xe0, 0x90, 0x04, 0x9d, 0x00, 0x33, 0xe4, 0x20, 0x86, 0xe4, 0x02, - 0xaf, 0xaa, 0x2d, 0x5d, 0xe8, 0x65, 0x0a, 0x19, 0xb5, 0xb8, 0xee, 0x63, 0xaa, 0x6e, 0x0f, 0x51, - 0xe0, 0xb7, 0xb5, 0x9f, 0x0a, 0xcd, 0x5c, 0xe7, 0x1f, 0x16, 0xb4, 0xf6, 0x20, 0x82, 0x52, 0xba, - 0x47, 0x49, 0x06, 0x25, 0xe4, 0x38, 0x3d, 0x4c, 0x93, 0xf3, 0x5c, 0x35, 0x17, 0xaf, 0x52, 0x07, - 0xac, 0xc4, 0xff, 0x69, 0x71, 0x54, 0xff, 0xb8, 0xd9, 0xc4, 0xdb, 0x2e, 0xdf, 0x8f, 0x54, 0xe1, - 0x7d, 0xa4, 0x0a, 0xc6, 0xd9, 0x78, 0xa6, 0x88, 0x93, 0x99, 0x22, 0xbe, 0xcd, 0x14, 0xf1, 0x71, - 0xae, 0x08, 0x93, 0xb9, 0x22, 0xbc, 0xcc, 0x15, 0xe1, 0xe6, 0xf0, 0x0f, 0xe5, 0x5d, 0x72, 0x69, - 0xb8, 0xd9, 0x2a, 0xf2, 0xeb, 0x72, 0xfc, 0x19, 0x00, 0x00, 0xff, 0xff, 0x85, 0xf1, 0x20, 0x88, - 0xbe, 0x02, 0x00, 0x00, +var fileDescriptor_3a0a07899603f014 = []byte{ + // 390 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0x49, 0xca, 0xd5, + 0x4f, 0x4a, 0xcc, 0xcb, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, + 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc8, 0x49, 0xca, 0xd5, + 0x03, 0xc9, 0xeb, 0x41, 0xe5, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x92, 0xfa, 0x20, 0x16, + 0x44, 0x9d, 0x94, 0x34, 0xc4, 0x9c, 0xe2, 0x54, 0xb8, 0x39, 0xc9, 0xf9, 0x99, 0x79, 0xa8, 0x92, + 0x48, 0x96, 0x80, 0x4d, 0x04, 0x4b, 0x2a, 0x1d, 0x65, 0xe2, 0xe2, 0x71, 0x87, 0xd8, 0x19, 0x5c, + 0x92, 0x58, 0x92, 0x2a, 0x64, 0xc6, 0xc5, 0x56, 0x90, 0x58, 0x94, 0x98, 0x5b, 0x2c, 0xc1, 0xa8, + 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa1, 0x87, 0xee, 0x06, 0xbd, 0x00, 0xb0, 0xbc, 0x13, 0xcb, 0x89, + 0x7b, 0xf2, 0x0c, 0x41, 0x50, 0xd5, 0x42, 0xd6, 0x5c, 0x1c, 0x49, 0x89, 0x39, 0x89, 0x79, 0xc9, + 0xa9, 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x92, 0x98, 0x3a, 0x9d, 0x20, 0x2a, 0xa0, + 0x5a, 0xe1, 0x1a, 0x84, 0xe2, 0xb8, 0xd8, 0x8a, 0x4b, 0x0b, 0x0a, 0x72, 0x2a, 0x25, 0x98, 0xc1, + 0x5a, 0xc5, 0xa0, 0x5a, 0x8b, 0x53, 0xe1, 0x5a, 0x9d, 0xf3, 0x33, 0xf3, 0x9c, 0xf4, 0x40, 0xfa, + 0x56, 0xdd, 0x97, 0x57, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xcf, + 0xc9, 0xcc, 0x4b, 0xd5, 0xcf, 0x49, 0xca, 0xd5, 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, 0x33, 0xd2, 0x2f, + 0xa9, 0x2c, 0x48, 0x2d, 0x06, 0x2b, 0x2f, 0x0e, 0x82, 0x9a, 0x2a, 0x94, 0xc0, 0xc5, 0x97, 0x92, + 0x9a, 0x97, 0x9f, 0x1b, 0x9f, 0x9b, 0x5a, 0x92, 0x98, 0x92, 0x58, 0x92, 0x28, 0xc1, 0x02, 0xb6, + 0x47, 0x0a, 0xd3, 0x89, 0xbe, 0x50, 0x15, 0x4e, 0xb2, 0x20, 0xbb, 0x3e, 0xdd, 0x93, 0x17, 0xad, + 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x42, 0xd5, 0xaf, 0x14, 0xc4, 0x0b, 0x16, 0x80, 0xa9, 0x56, 0xea, + 0x66, 0xe4, 0x62, 0x87, 0xfa, 0x4e, 0x48, 0x82, 0x8b, 0x3d, 0x31, 0x25, 0xa5, 0x28, 0xb5, 0x18, + 0x12, 0x86, 0x9c, 0x41, 0x30, 0xae, 0x50, 0x0c, 0x17, 0x2b, 0x28, 0x62, 0x60, 0x21, 0x44, 0x2d, + 0x6f, 0x42, 0x0c, 0xb5, 0xe2, 0xe8, 0x58, 0x20, 0xcf, 0xf0, 0x62, 0x81, 0x3c, 0x83, 0x93, 0xe3, + 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, 0xa9, 0xe3, 0x31, 0xb2, 0x02, 0x92, + 0x4a, 0xc0, 0x26, 0x27, 0xb1, 0x81, 0xd3, 0x87, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x18, 0xae, + 0x76, 0x05, 0xa3, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/msgs_test.go b/x/bank/types/msgs_test.go index 1c92f7cf2e..d3bf366628 100644 --- a/x/bank/types/msgs_test.go +++ b/x/bank/types/msgs_test.go @@ -61,7 +61,7 @@ func TestMsgSendGetSignBytes(t *testing.T) { var msg = NewMsgSend(addr1, addr2, coins) res := msg.GetSignBytes() - expected := `{"type":"cosmos-sdk/MsgSend","value":{"amount":[{"amount":"10","denom":"atom"}],"from_address":"cosmos1d9h8qat57ljhcm","to_address":"cosmos1da6hgur4wsmpnjyg"}}` + expected := `{"type":"lbm-sdk/MsgSend","value":{"amount":[{"amount":"10","denom":"atom"}],"from_address":"cosmos1d9h8qat57ljhcm","to_address":"cosmos1da6hgur4wsmpnjyg"}}` require.Equal(t, expected, string(res)) } @@ -233,7 +233,7 @@ func TestMsgMultiSendGetSignBytes(t *testing.T) { } res := msg.GetSignBytes() - expected := `{"type":"cosmos-sdk/MsgMultiSend","value":{"inputs":[{"address":"cosmos1d9h8qat57ljhcm","coins":[{"amount":"10","denom":"atom"}]}],"outputs":[{"address":"cosmos1da6hgur4wsmpnjyg","coins":[{"amount":"10","denom":"atom"}]}]}}` + expected := `{"type":"lbm-sdk/MsgMultiSend","value":{"inputs":[{"address":"cosmos1d9h8qat57ljhcm","coins":[{"amount":"10","denom":"atom"}]}],"outputs":[{"address":"cosmos1da6hgur4wsmpnjyg","coins":[{"amount":"10","denom":"atom"}]}]}}` require.Equal(t, expected, string(res)) } diff --git a/x/bank/types/query.pb.go b/x/bank/types/query.pb.go index 997b15476a..cceecdffcf 100644 --- a/x/bank/types/query.pb.go +++ b/x/bank/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/v1beta1/query.proto +// source: lbm/bank/v1beta1/query.proto package types @@ -44,7 +44,7 @@ func (m *QueryBalanceRequest) Reset() { *m = QueryBalanceRequest{} } func (m *QueryBalanceRequest) String() string { return proto.CompactTextString(m) } func (*QueryBalanceRequest) ProtoMessage() {} func (*QueryBalanceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{0} + return fileDescriptor_055af14811d23095, []int{0} } func (m *QueryBalanceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ func (m *QueryBalanceResponse) Reset() { *m = QueryBalanceResponse{} } func (m *QueryBalanceResponse) String() string { return proto.CompactTextString(m) } func (*QueryBalanceResponse) ProtoMessage() {} func (*QueryBalanceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{1} + return fileDescriptor_055af14811d23095, []int{1} } func (m *QueryBalanceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -131,7 +131,7 @@ func (m *QueryAllBalancesRequest) Reset() { *m = QueryAllBalancesRequest func (m *QueryAllBalancesRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBalancesRequest) ProtoMessage() {} func (*QueryAllBalancesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{2} + return fileDescriptor_055af14811d23095, []int{2} } func (m *QueryAllBalancesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,7 +173,7 @@ func (m *QueryAllBalancesResponse) Reset() { *m = QueryAllBalancesRespon func (m *QueryAllBalancesResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBalancesResponse) ProtoMessage() {} func (*QueryAllBalancesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{3} + return fileDescriptor_055af14811d23095, []int{3} } func (m *QueryAllBalancesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,7 +225,7 @@ func (m *QueryTotalSupplyRequest) Reset() { *m = QueryTotalSupplyRequest func (m *QueryTotalSupplyRequest) String() string { return proto.CompactTextString(m) } func (*QueryTotalSupplyRequest) ProtoMessage() {} func (*QueryTotalSupplyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{4} + return fileDescriptor_055af14811d23095, []int{4} } func (m *QueryTotalSupplyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -265,7 +265,7 @@ func (m *QueryTotalSupplyResponse) Reset() { *m = QueryTotalSupplyRespon func (m *QueryTotalSupplyResponse) String() string { return proto.CompactTextString(m) } func (*QueryTotalSupplyResponse) ProtoMessage() {} func (*QueryTotalSupplyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{5} + return fileDescriptor_055af14811d23095, []int{5} } func (m *QueryTotalSupplyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -311,7 +311,7 @@ func (m *QuerySupplyOfRequest) Reset() { *m = QuerySupplyOfRequest{} } func (m *QuerySupplyOfRequest) String() string { return proto.CompactTextString(m) } func (*QuerySupplyOfRequest) ProtoMessage() {} func (*QuerySupplyOfRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{6} + return fileDescriptor_055af14811d23095, []int{6} } func (m *QuerySupplyOfRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -357,7 +357,7 @@ func (m *QuerySupplyOfResponse) Reset() { *m = QuerySupplyOfResponse{} } func (m *QuerySupplyOfResponse) String() string { return proto.CompactTextString(m) } func (*QuerySupplyOfResponse) ProtoMessage() {} func (*QuerySupplyOfResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{7} + return fileDescriptor_055af14811d23095, []int{7} } func (m *QuerySupplyOfResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -401,7 +401,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{8} + return fileDescriptor_055af14811d23095, []int{8} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -439,7 +439,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{9} + return fileDescriptor_055af14811d23095, []int{9} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -485,7 +485,7 @@ func (m *QueryDenomsMetadataRequest) Reset() { *m = QueryDenomsMetadataR func (m *QueryDenomsMetadataRequest) String() string { return proto.CompactTextString(m) } func (*QueryDenomsMetadataRequest) ProtoMessage() {} func (*QueryDenomsMetadataRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{10} + return fileDescriptor_055af14811d23095, []int{10} } func (m *QueryDenomsMetadataRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -534,7 +534,7 @@ func (m *QueryDenomsMetadataResponse) Reset() { *m = QueryDenomsMetadata func (m *QueryDenomsMetadataResponse) String() string { return proto.CompactTextString(m) } func (*QueryDenomsMetadataResponse) ProtoMessage() {} func (*QueryDenomsMetadataResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{11} + return fileDescriptor_055af14811d23095, []int{11} } func (m *QueryDenomsMetadataResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -587,7 +587,7 @@ func (m *QueryDenomMetadataRequest) Reset() { *m = QueryDenomMetadataReq func (m *QueryDenomMetadataRequest) String() string { return proto.CompactTextString(m) } func (*QueryDenomMetadataRequest) ProtoMessage() {} func (*QueryDenomMetadataRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{12} + return fileDescriptor_055af14811d23095, []int{12} } func (m *QueryDenomMetadataRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -634,7 +634,7 @@ func (m *QueryDenomMetadataResponse) Reset() { *m = QueryDenomMetadataRe func (m *QueryDenomMetadataResponse) String() string { return proto.CompactTextString(m) } func (*QueryDenomMetadataResponse) ProtoMessage() {} func (*QueryDenomMetadataResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c6fc1939682df13, []int{13} + return fileDescriptor_055af14811d23095, []int{13} } func (m *QueryDenomMetadataResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -671,78 +671,78 @@ func (m *QueryDenomMetadataResponse) GetMetadata() Metadata { } func init() { - proto.RegisterType((*QueryBalanceRequest)(nil), "cosmos.bank.v1beta1.QueryBalanceRequest") - proto.RegisterType((*QueryBalanceResponse)(nil), "cosmos.bank.v1beta1.QueryBalanceResponse") - proto.RegisterType((*QueryAllBalancesRequest)(nil), "cosmos.bank.v1beta1.QueryAllBalancesRequest") - proto.RegisterType((*QueryAllBalancesResponse)(nil), "cosmos.bank.v1beta1.QueryAllBalancesResponse") - proto.RegisterType((*QueryTotalSupplyRequest)(nil), "cosmos.bank.v1beta1.QueryTotalSupplyRequest") - proto.RegisterType((*QueryTotalSupplyResponse)(nil), "cosmos.bank.v1beta1.QueryTotalSupplyResponse") - proto.RegisterType((*QuerySupplyOfRequest)(nil), "cosmos.bank.v1beta1.QuerySupplyOfRequest") - proto.RegisterType((*QuerySupplyOfResponse)(nil), "cosmos.bank.v1beta1.QuerySupplyOfResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.bank.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.bank.v1beta1.QueryParamsResponse") - proto.RegisterType((*QueryDenomsMetadataRequest)(nil), "cosmos.bank.v1beta1.QueryDenomsMetadataRequest") - proto.RegisterType((*QueryDenomsMetadataResponse)(nil), "cosmos.bank.v1beta1.QueryDenomsMetadataResponse") - proto.RegisterType((*QueryDenomMetadataRequest)(nil), "cosmos.bank.v1beta1.QueryDenomMetadataRequest") - proto.RegisterType((*QueryDenomMetadataResponse)(nil), "cosmos.bank.v1beta1.QueryDenomMetadataResponse") -} - -func init() { proto.RegisterFile("cosmos/bank/v1beta1/query.proto", fileDescriptor_9c6fc1939682df13) } - -var fileDescriptor_9c6fc1939682df13 = []byte{ - // 827 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4d, 0x6b, 0x13, 0x5b, - 0x18, 0xc7, 0x73, 0x7a, 0x6f, 0xd3, 0xf4, 0x84, 0x7b, 0x17, 0xa7, 0xb9, 0xdc, 0x74, 0x7a, 0x9b, - 0x5c, 0xa6, 0xda, 0xb4, 0x35, 0x9d, 0x63, 0x52, 0xa1, 0xe8, 0x46, 0x1a, 0x45, 0x17, 0x22, 0x8d, - 0xd1, 0x95, 0x20, 0x72, 0x92, 0x1c, 0x63, 0xe8, 0x64, 0xce, 0x34, 0x67, 0x52, 0x2c, 0xa5, 0x20, - 0x82, 0xe0, 0x4a, 0x05, 0x17, 0x2e, 0xdc, 0xd4, 0x8d, 0xa0, 0x4b, 0x3f, 0x45, 0x71, 0x55, 0x70, - 0xe3, 0x4a, 0xa5, 0x75, 0xe1, 0xc7, 0x90, 0x9c, 0x97, 0xe9, 0x24, 0x99, 0x26, 0x83, 0x74, 0x97, - 0x9c, 0x79, 0x5e, 0x7e, 0xff, 0x67, 0x9e, 0xf3, 0x4f, 0x60, 0xb6, 0xc6, 0x78, 0x8b, 0x71, 0x5c, - 0x25, 0xce, 0x06, 0xde, 0x2a, 0x54, 0xa9, 0x47, 0x0a, 0x78, 0xb3, 0x43, 0xdb, 0xdb, 0x96, 0xdb, - 0x66, 0x1e, 0x43, 0x53, 0x32, 0xc0, 0xea, 0x06, 0x58, 0x2a, 0xc0, 0x58, 0xf2, 0xb3, 0x38, 0x95, - 0xd1, 0x7e, 0xae, 0x4b, 0x1a, 0x4d, 0x87, 0x78, 0x4d, 0xe6, 0xc8, 0x02, 0x46, 0xaa, 0xc1, 0x1a, - 0x4c, 0x7c, 0xc4, 0xdd, 0x4f, 0xea, 0xf4, 0xbf, 0x06, 0x63, 0x0d, 0x9b, 0x62, 0xe2, 0x36, 0x31, - 0x71, 0x1c, 0xe6, 0x89, 0x14, 0xae, 0x9e, 0x66, 0x82, 0xf5, 0x75, 0xe5, 0x1a, 0x6b, 0x3a, 0x03, - 0xcf, 0x03, 0xd4, 0x82, 0x50, 0x3c, 0x37, 0xd7, 0xe1, 0xd4, 0xad, 0x2e, 0x55, 0x89, 0xd8, 0xc4, - 0xa9, 0xd1, 0x0a, 0xdd, 0xec, 0x50, 0xee, 0xa1, 0x34, 0x9c, 0x20, 0xf5, 0x7a, 0x9b, 0x72, 0x9e, - 0x06, 0xff, 0x83, 0x85, 0xc9, 0x8a, 0xfe, 0x8a, 0x52, 0x70, 0xbc, 0x4e, 0x1d, 0xd6, 0x4a, 0x8f, - 0x89, 0x73, 0xf9, 0xe5, 0x52, 0xe2, 0xd9, 0x5e, 0x36, 0xf6, 0x73, 0x2f, 0x1b, 0x33, 0x6f, 0xc0, - 0x54, 0x6f, 0x41, 0xee, 0x32, 0x87, 0x53, 0xb4, 0x02, 0x27, 0xaa, 0xf2, 0x48, 0x54, 0x4c, 0x16, - 0xa7, 0x2d, 0x7f, 0x5e, 0x9c, 0xea, 0x79, 0x59, 0x57, 0x58, 0xd3, 0xa9, 0xe8, 0x48, 0xf3, 0x29, - 0x80, 0xff, 0x8a, 0x6a, 0x6b, 0xb6, 0xad, 0x0a, 0xf2, 0xd1, 0x88, 0xd7, 0x20, 0x3c, 0x9e, 0xad, - 0xe0, 0x4c, 0x16, 0xe7, 0x7b, 0xba, 0xc9, 0xd7, 0xa6, 0x7b, 0x96, 0x49, 0x43, 0x0b, 0xaf, 0x04, - 0x32, 0x03, 0xa2, 0x3e, 0x01, 0x98, 0x1e, 0xe4, 0x50, 0xca, 0x28, 0x4c, 0x28, 0xde, 0x2e, 0xc9, - 0x1f, 0x43, 0xa5, 0x95, 0xac, 0xfd, 0xaf, 0xd9, 0xd8, 0x87, 0x6f, 0xd9, 0xf9, 0x46, 0xd3, 0x7b, - 0xd8, 0xa9, 0x5a, 0x35, 0xd6, 0xc2, 0x76, 0xd3, 0xa1, 0xd8, 0xae, 0xb6, 0x96, 0x79, 0x7d, 0x03, - 0x6f, 0x15, 0xb1, 0xb7, 0xed, 0x52, 0x2e, 0xc2, 0x79, 0xc5, 0x2f, 0x8d, 0xae, 0x87, 0xa8, 0xca, - 0x8d, 0x54, 0x25, 0x19, 0x83, 0xb2, 0xcc, 0x69, 0x35, 0xd3, 0x3b, 0xcc, 0x23, 0xf6, 0xed, 0x8e, - 0xeb, 0xda, 0xdb, 0x4a, 0xbd, 0xb9, 0xab, 0x64, 0xf6, 0x3c, 0x52, 0x32, 0x09, 0x8c, 0x73, 0x71, - 0x72, 0xfa, 0x22, 0x55, 0x61, 0x33, 0xaf, 0x76, 0x47, 0x76, 0x5e, 0x7f, 0xa0, 0x5f, 0xb5, 0xbf, - 0x73, 0x20, 0xb0, 0x73, 0x66, 0x19, 0xfe, 0xd3, 0x17, 0xad, 0x48, 0x57, 0x61, 0x9c, 0xb4, 0x58, - 0xc7, 0xf1, 0x46, 0x6e, 0x5a, 0xe9, 0xcf, 0x2e, 0x69, 0x45, 0x85, 0x9b, 0x29, 0x88, 0x44, 0xc5, - 0x32, 0x69, 0x93, 0x96, 0x5e, 0x34, 0xb3, 0xac, 0xae, 0x88, 0x3e, 0x55, 0x5d, 0x2e, 0xc2, 0xb8, - 0x2b, 0x4e, 0x54, 0x97, 0x19, 0x2b, 0xe4, 0xfe, 0x5b, 0x32, 0x49, 0xf7, 0x91, 0x09, 0x66, 0x1d, - 0x1a, 0xa2, 0xe2, 0xd5, 0xae, 0x0e, 0x7e, 0x93, 0x7a, 0xa4, 0x4e, 0x3c, 0xa2, 0xd5, 0xf6, 0xae, - 0x2f, 0xf8, 0xdd, 0xf5, 0x35, 0xdf, 0x03, 0x38, 0x13, 0xda, 0x46, 0x09, 0x58, 0x83, 0x93, 0x2d, - 0x75, 0xa6, 0x17, 0x77, 0x36, 0x54, 0x83, 0xce, 0x54, 0x2a, 0x8e, 0xb3, 0x4e, 0x6f, 0x27, 0x0b, - 0x70, 0xfa, 0x18, 0xb5, 0x7f, 0x20, 0xe1, 0xaf, 0xff, 0x5e, 0x70, 0x88, 0x03, 0xe2, 0x2e, 0xc3, - 0x84, 0xc6, 0x54, 0x23, 0x8c, 0xa4, 0xcd, 0x4f, 0x2a, 0x7e, 0x4c, 0xc0, 0x71, 0x51, 0x1f, 0xbd, - 0x06, 0x70, 0x42, 0x5d, 0x7a, 0xb4, 0x10, 0x5a, 0x24, 0xc4, 0x41, 0x8d, 0xc5, 0x08, 0x91, 0x92, - 0xd5, 0x5c, 0x7d, 0xf2, 0xf9, 0xc7, 0xab, 0xb1, 0x02, 0xc2, 0x38, 0xdc, 0xac, 0xa5, 0x01, 0xe0, - 0x1d, 0xe5, 0x6f, 0xbb, 0x78, 0x47, 0x4c, 0x60, 0x17, 0xbd, 0x01, 0x30, 0x19, 0x70, 0x24, 0x94, - 0x3f, 0xb9, 0xe7, 0xa0, 0x81, 0x1a, 0xcb, 0x11, 0xa3, 0x15, 0x25, 0x16, 0x94, 0x8b, 0x28, 0x17, - 0x91, 0x12, 0xbd, 0x00, 0x30, 0x19, 0x30, 0x92, 0x61, 0x74, 0x83, 0x56, 0x34, 0x8c, 0x2e, 0xc4, - 0x9d, 0xcc, 0x39, 0x41, 0x37, 0x8b, 0x66, 0x42, 0xe9, 0xa4, 0xbf, 0xa0, 0xe7, 0x00, 0x26, 0xb4, - 0x5b, 0xa0, 0x21, 0x2f, 0xa8, 0xcf, 0x7f, 0x8c, 0xa5, 0x28, 0xa1, 0x0a, 0xe4, 0x9c, 0x00, 0x39, - 0x8b, 0xe6, 0x86, 0x80, 0xf8, 0x2f, 0xf0, 0x31, 0x80, 0x71, 0xe9, 0x10, 0x28, 0x77, 0x72, 0x8f, - 0x1e, 0x3b, 0x32, 0x16, 0x46, 0x07, 0x46, 0x9a, 0x89, 0xf4, 0x22, 0xf4, 0x0e, 0xc0, 0xbf, 0x7a, - 0xae, 0x10, 0xb2, 0x4e, 0x6e, 0x10, 0x76, 0x3d, 0x0d, 0x1c, 0x39, 0x5e, 0x71, 0x5d, 0x10, 0x5c, - 0x16, 0xca, 0x87, 0x72, 0x89, 0xd1, 0xf0, 0xfb, 0xfa, 0x22, 0xfa, 0xb3, 0x7a, 0x0b, 0xe0, 0xdf, - 0xbd, 0x4e, 0x86, 0x46, 0x75, 0xee, 0xb7, 0x56, 0xe3, 0x7c, 0xf4, 0x04, 0xc5, 0x9a, 0x17, 0xac, - 0xf3, 0xe8, 0x4c, 0x14, 0xd6, 0xd2, 0xda, 0xfe, 0x61, 0x06, 0x1c, 0x1c, 0x66, 0xc0, 0xf7, 0xc3, - 0x0c, 0x78, 0x79, 0x94, 0x89, 0x1d, 0x1c, 0x65, 0x62, 0x5f, 0x8e, 0x32, 0xb1, 0xbb, 0xb9, 0x21, - 0x3f, 0x85, 0x8f, 0x64, 0x51, 0xf1, 0x8b, 0x58, 0x8d, 0x8b, 0xff, 0x65, 0x2b, 0xbf, 0x02, 0x00, - 0x00, 0xff, 0xff, 0x3f, 0x97, 0x02, 0xd9, 0x6f, 0x0a, 0x00, 0x00, + proto.RegisterType((*QueryBalanceRequest)(nil), "lbm.bank.v1beta1.QueryBalanceRequest") + proto.RegisterType((*QueryBalanceResponse)(nil), "lbm.bank.v1beta1.QueryBalanceResponse") + proto.RegisterType((*QueryAllBalancesRequest)(nil), "lbm.bank.v1beta1.QueryAllBalancesRequest") + proto.RegisterType((*QueryAllBalancesResponse)(nil), "lbm.bank.v1beta1.QueryAllBalancesResponse") + proto.RegisterType((*QueryTotalSupplyRequest)(nil), "lbm.bank.v1beta1.QueryTotalSupplyRequest") + proto.RegisterType((*QueryTotalSupplyResponse)(nil), "lbm.bank.v1beta1.QueryTotalSupplyResponse") + proto.RegisterType((*QuerySupplyOfRequest)(nil), "lbm.bank.v1beta1.QuerySupplyOfRequest") + proto.RegisterType((*QuerySupplyOfResponse)(nil), "lbm.bank.v1beta1.QuerySupplyOfResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "lbm.bank.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "lbm.bank.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryDenomsMetadataRequest)(nil), "lbm.bank.v1beta1.QueryDenomsMetadataRequest") + proto.RegisterType((*QueryDenomsMetadataResponse)(nil), "lbm.bank.v1beta1.QueryDenomsMetadataResponse") + proto.RegisterType((*QueryDenomMetadataRequest)(nil), "lbm.bank.v1beta1.QueryDenomMetadataRequest") + proto.RegisterType((*QueryDenomMetadataResponse)(nil), "lbm.bank.v1beta1.QueryDenomMetadataResponse") +} + +func init() { proto.RegisterFile("lbm/bank/v1beta1/query.proto", fileDescriptor_055af14811d23095) } + +var fileDescriptor_055af14811d23095 = []byte{ + // 824 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x3b, 0x6f, 0x13, 0x4b, + 0x14, 0xc7, 0x3d, 0xb9, 0x37, 0x8e, 0x33, 0xd6, 0xbd, 0x42, 0x83, 0x01, 0x67, 0x13, 0x6c, 0xb4, + 0x79, 0x98, 0x10, 0x67, 0x07, 0x9b, 0x08, 0x24, 0x84, 0x90, 0xe2, 0xa4, 0xa0, 0x89, 0x12, 0x0c, + 0x55, 0x0a, 0xd0, 0xac, 0xbd, 0x18, 0x2b, 0xbb, 0x3b, 0x1b, 0xcf, 0x3a, 0x22, 0x89, 0xd2, 0xa4, + 0x21, 0x74, 0x20, 0x44, 0x45, 0x13, 0x89, 0x8e, 0xcf, 0x41, 0x91, 0x32, 0x12, 0x0d, 0x15, 0xa0, + 0x84, 0x82, 0x8f, 0x81, 0x3c, 0x0f, 0x7b, 0x6d, 0xaf, 0x1f, 0x42, 0xe9, 0xec, 0x99, 0xf3, 0xf8, + 0xfd, 0xcf, 0x9c, 0x73, 0x6c, 0x38, 0x65, 0x9b, 0x0e, 0x36, 0x89, 0xbb, 0x85, 0x77, 0x72, 0xa6, + 0xe5, 0x93, 0x1c, 0xde, 0xae, 0x5b, 0xb5, 0x5d, 0xc3, 0xab, 0x51, 0x9f, 0xa2, 0x4b, 0xb6, 0xe9, + 0x18, 0x8d, 0x5b, 0x43, 0xde, 0x6a, 0x19, 0x61, 0xcf, 0x2c, 0x61, 0xd7, 0xf4, 0xf2, 0x48, 0xa5, + 0xea, 0x12, 0xbf, 0x4a, 0x5d, 0xe1, 0xaa, 0x25, 0x2a, 0xb4, 0x42, 0xf9, 0x47, 0xdc, 0xf8, 0x24, + 0x4f, 0xa7, 0x2a, 0x94, 0x56, 0x6c, 0x0b, 0x13, 0xaf, 0x8a, 0x89, 0xeb, 0x52, 0x9f, 0xbb, 0x30, + 0x79, 0x3b, 0xd9, 0x0c, 0xae, 0xc2, 0x96, 0x68, 0xd5, 0x6d, 0xbf, 0x0c, 0x90, 0x72, 0x30, 0x7e, + 0xa9, 0xaf, 0xc3, 0xcb, 0x8f, 0x1b, 0x3c, 0x05, 0x62, 0x13, 0xb7, 0x64, 0x15, 0xad, 0xed, 0xba, + 0xc5, 0x7c, 0x94, 0x84, 0x63, 0xa4, 0x5c, 0xae, 0x59, 0x8c, 0x25, 0xc1, 0x0d, 0x70, 0x73, 0xbc, + 0xa8, 0xbe, 0xa2, 0x04, 0x1c, 0x2d, 0x5b, 0x2e, 0x75, 0x92, 0x23, 0xfc, 0x5c, 0x7c, 0xb9, 0x1f, + 0x3b, 0x3a, 0x4e, 0x47, 0x7e, 0x1f, 0xa7, 0x23, 0xfa, 0x23, 0x98, 0x68, 0x0f, 0xc8, 0x3c, 0xea, + 0x32, 0x0b, 0xdd, 0x86, 0x63, 0xa6, 0x38, 0xe2, 0x11, 0xe3, 0xf9, 0xab, 0x86, 0xa8, 0x11, 0xb3, + 0x54, 0x8d, 0x8c, 0x15, 0x5a, 0x75, 0x8b, 0xca, 0x4c, 0x3f, 0x04, 0xf0, 0x1a, 0x0f, 0xb5, 0x6c, + 0xdb, 0x32, 0x1a, 0x1b, 0xcc, 0xb7, 0x02, 0x61, 0xab, 0xa4, 0x1c, 0x32, 0x9e, 0x9f, 0x6e, 0xa5, + 0x12, 0x8f, 0xa4, 0x12, 0x6e, 0x90, 0x8a, 0x92, 0x5c, 0x0c, 0xb8, 0x05, 0xe4, 0x7c, 0x01, 0x30, + 0xd9, 0x0d, 0x21, 0x35, 0x99, 0x30, 0x26, 0x61, 0x1b, 0x18, 0xff, 0xf4, 0x16, 0x55, 0x30, 0x4e, + 0xbe, 0xa7, 0x23, 0x9f, 0x7f, 0xa4, 0xe7, 0x2a, 0x55, 0xff, 0x65, 0xdd, 0x34, 0x4a, 0xd4, 0xc1, + 0x76, 0xd5, 0xb5, 0xb0, 0x6d, 0x3a, 0x8b, 0xac, 0xbc, 0x85, 0x77, 0xf2, 0xd8, 0xdf, 0xf5, 0x2c, + 0xc6, 0xcd, 0x59, 0xb1, 0x19, 0x17, 0xad, 0x86, 0xe8, 0x99, 0xe9, 0xaf, 0x47, 0xd0, 0x05, 0x05, + 0xe9, 0x13, 0xb2, 0x94, 0x4f, 0xa9, 0x4f, 0xec, 0x27, 0x75, 0xcf, 0xb3, 0x77, 0xa5, 0x6e, 0x7d, + 0x4f, 0x0a, 0x6c, 0xbb, 0x92, 0x02, 0x9f, 0xc1, 0x28, 0xe3, 0x27, 0x17, 0x2c, 0x4f, 0x46, 0xd5, + 0xb3, 0xb2, 0x59, 0x44, 0xda, 0xf5, 0x17, 0xea, 0x79, 0x9b, 0x4d, 0x06, 0x02, 0x4d, 0xa6, 0xaf, + 0xc1, 0x2b, 0x1d, 0xd6, 0x12, 0x73, 0x09, 0x46, 0x89, 0x43, 0xeb, 0xae, 0xdf, 0xbf, 0xb5, 0x0a, + 0xff, 0x36, 0x30, 0x8b, 0xd2, 0x56, 0x4f, 0x40, 0xc4, 0xc3, 0x6d, 0x90, 0x1a, 0x71, 0x54, 0x67, + 0xe9, 0x6b, 0x72, 0x20, 0xd4, 0xa9, 0x4c, 0x71, 0x17, 0x46, 0x3d, 0x7e, 0x22, 0x53, 0x24, 0x8d, + 0xce, 0x09, 0x37, 0x84, 0x87, 0x4a, 0x22, 0xac, 0x75, 0x02, 0x35, 0x1e, 0x6e, 0xb5, 0xa1, 0x80, + 0xad, 0x59, 0x3e, 0x29, 0x13, 0x9f, 0x28, 0x9d, 0xed, 0xcd, 0x0a, 0xfe, 0xaa, 0x59, 0xf5, 0x4f, + 0x00, 0x4e, 0x86, 0xe6, 0x90, 0xe8, 0x0f, 0xe1, 0xb8, 0x23, 0xcf, 0x54, 0x9b, 0x6a, 0xdd, 0xf4, + 0xca, 0x4d, 0xf2, 0xb7, 0x5c, 0x2e, 0xa8, 0x03, 0x73, 0x70, 0xa2, 0x05, 0xd9, 0x59, 0x87, 0xf0, + 0xf7, 0xde, 0x0c, 0xd6, 0xae, 0x4b, 0xd6, 0x03, 0x18, 0x53, 0x8c, 0xb2, 0x72, 0x83, 0x55, 0x35, + 0x3d, 0xf2, 0xaf, 0x63, 0x70, 0x94, 0x07, 0x47, 0xef, 0x00, 0x1c, 0x93, 0x93, 0x8d, 0x66, 0xbb, + 0x23, 0x84, 0x6c, 0x47, 0x6d, 0x6e, 0x90, 0x99, 0x40, 0xd4, 0xef, 0x1d, 0x7e, 0xfd, 0xf5, 0x7e, + 0x24, 0x87, 0x30, 0x2e, 0x51, 0xe6, 0x50, 0xd6, 0xb9, 0x85, 0xc5, 0x88, 0xe3, 0x7d, 0xb9, 0xbb, + 0x0e, 0xf0, 0x3e, 0x17, 0x7e, 0x80, 0x3e, 0x00, 0x18, 0x0f, 0x2c, 0x1c, 0x34, 0xdf, 0x23, 0x61, + 0xf7, 0x66, 0xd4, 0x6e, 0x0d, 0x63, 0x2a, 0xf9, 0x30, 0xe7, 0x9b, 0x47, 0x99, 0x21, 0xf9, 0xd0, + 0x1b, 0x00, 0xe3, 0x81, 0x3d, 0xd1, 0x93, 0xab, 0x7b, 0xcd, 0xf4, 0xe4, 0x0a, 0x59, 0x3b, 0xfa, + 0x34, 0xe7, 0xba, 0x8e, 0x26, 0x43, 0xb9, 0xc4, 0xee, 0x40, 0x47, 0x00, 0xc6, 0xd4, 0x26, 0x40, + 0xbd, 0x5e, 0xa4, 0x63, 0xb1, 0x68, 0x99, 0x81, 0x76, 0x12, 0x61, 0x81, 0x23, 0xcc, 0xa2, 0xe9, + 0x3e, 0x08, 0xcd, 0xe7, 0xda, 0x83, 0x51, 0x31, 0xfc, 0x68, 0xa6, 0x47, 0xfc, 0xb6, 0x1d, 0xa3, + 0xcd, 0x0e, 0xb0, 0x1a, 0xaa, 0x0c, 0x62, 0xc1, 0xa0, 0x63, 0x00, 0xff, 0x6b, 0x1b, 0x10, 0xb4, + 0xd0, 0x23, 0x7a, 0xd8, 0xe4, 0x69, 0xd9, 0xe1, 0x8c, 0x25, 0xd1, 0x12, 0x27, 0x32, 0x50, 0x36, + 0x94, 0x88, 0x57, 0x83, 0x3d, 0x57, 0x33, 0xd6, 0x2c, 0xcf, 0x47, 0x00, 0xff, 0x6f, 0xdf, 0x4d, + 0xa8, 0x6f, 0xda, 0xce, 0x35, 0xa9, 0x2d, 0x0e, 0x69, 0x2d, 0x29, 0xb3, 0x9c, 0x72, 0x0e, 0xcd, + 0x0c, 0x43, 0x59, 0x58, 0x3e, 0x39, 0x4b, 0x81, 0xd3, 0xb3, 0x14, 0xf8, 0x79, 0x96, 0x02, 0x6f, + 0xcf, 0x53, 0x91, 0xd3, 0xf3, 0x54, 0xe4, 0xdb, 0x79, 0x2a, 0xb2, 0x99, 0xe9, 0xf3, 0x6b, 0xf6, + 0x4a, 0x04, 0xe5, 0x3f, 0x6a, 0x66, 0x94, 0xff, 0x97, 0xba, 0xf3, 0x27, 0x00, 0x00, 0xff, 0xff, + 0x1f, 0x16, 0x43, 0x72, 0x14, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -783,7 +783,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) { out := new(QueryBalanceResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/Balance", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/Balance", in, out, opts...) if err != nil { return nil, err } @@ -792,7 +792,7 @@ func (c *queryClient) Balance(ctx context.Context, in *QueryBalanceRequest, opts func (c *queryClient) AllBalances(ctx context.Context, in *QueryAllBalancesRequest, opts ...grpc.CallOption) (*QueryAllBalancesResponse, error) { out := new(QueryAllBalancesResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/AllBalances", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/AllBalances", in, out, opts...) if err != nil { return nil, err } @@ -801,7 +801,7 @@ func (c *queryClient) AllBalances(ctx context.Context, in *QueryAllBalancesReque func (c *queryClient) TotalSupply(ctx context.Context, in *QueryTotalSupplyRequest, opts ...grpc.CallOption) (*QueryTotalSupplyResponse, error) { out := new(QueryTotalSupplyResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/TotalSupply", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/TotalSupply", in, out, opts...) if err != nil { return nil, err } @@ -810,7 +810,7 @@ func (c *queryClient) TotalSupply(ctx context.Context, in *QueryTotalSupplyReque func (c *queryClient) SupplyOf(ctx context.Context, in *QuerySupplyOfRequest, opts ...grpc.CallOption) (*QuerySupplyOfResponse, error) { out := new(QuerySupplyOfResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/SupplyOf", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/SupplyOf", in, out, opts...) if err != nil { return nil, err } @@ -819,7 +819,7 @@ func (c *queryClient) SupplyOf(ctx context.Context, in *QuerySupplyOfRequest, op func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -828,7 +828,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) DenomMetadata(ctx context.Context, in *QueryDenomMetadataRequest, opts ...grpc.CallOption) (*QueryDenomMetadataResponse, error) { out := new(QueryDenomMetadataResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/DenomMetadata", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/DenomMetadata", in, out, opts...) if err != nil { return nil, err } @@ -837,7 +837,7 @@ func (c *queryClient) DenomMetadata(ctx context.Context, in *QueryDenomMetadataR func (c *queryClient) DenomsMetadata(ctx context.Context, in *QueryDenomsMetadataRequest, opts ...grpc.CallOption) (*QueryDenomsMetadataResponse, error) { out := new(QueryDenomsMetadataResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/DenomsMetadata", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Query/DenomsMetadata", in, out, opts...) if err != nil { return nil, err } @@ -902,7 +902,7 @@ func _Query_Balance_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/Balance", + FullMethod: "/lbm.bank.v1beta1.Query/Balance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Balance(ctx, req.(*QueryBalanceRequest)) @@ -920,7 +920,7 @@ func _Query_AllBalances_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/AllBalances", + FullMethod: "/lbm.bank.v1beta1.Query/AllBalances", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllBalances(ctx, req.(*QueryAllBalancesRequest)) @@ -938,7 +938,7 @@ func _Query_TotalSupply_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/TotalSupply", + FullMethod: "/lbm.bank.v1beta1.Query/TotalSupply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TotalSupply(ctx, req.(*QueryTotalSupplyRequest)) @@ -956,7 +956,7 @@ func _Query_SupplyOf_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/SupplyOf", + FullMethod: "/lbm.bank.v1beta1.Query/SupplyOf", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SupplyOf(ctx, req.(*QuerySupplyOfRequest)) @@ -974,7 +974,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/Params", + FullMethod: "/lbm.bank.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -992,7 +992,7 @@ func _Query_DenomMetadata_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/DenomMetadata", + FullMethod: "/lbm.bank.v1beta1.Query/DenomMetadata", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DenomMetadata(ctx, req.(*QueryDenomMetadataRequest)) @@ -1010,7 +1010,7 @@ func _Query_DenomsMetadata_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Query/DenomsMetadata", + FullMethod: "/lbm.bank.v1beta1.Query/DenomsMetadata", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DenomsMetadata(ctx, req.(*QueryDenomsMetadataRequest)) @@ -1019,7 +1019,7 @@ func _Query_DenomsMetadata_Handler(srv interface{}, ctx context.Context, dec fun } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.bank.v1beta1.Query", + ServiceName: "lbm.bank.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1052,7 +1052,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/bank/v1beta1/query.proto", + Metadata: "lbm/bank/v1beta1/query.proto", } func (m *QueryBalanceRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/query.pb.gw.go b/x/bank/types/query.pb.gw.go index 06c7e2d04a..c4c879c2df 100644 --- a/x/bank/types/query.pb.gw.go +++ b/x/bank/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/bank/v1beta1/query.proto +// source: lbm/bank/v1beta1/query.proto /* Package types is a reverse proxy. diff --git a/x/bank/types/tx.pb.go b/x/bank/types/tx.pb.go index cab15a60ff..04fdaece19 100644 --- a/x/bank/types/tx.pb.go +++ b/x/bank/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/v1beta1/tx.proto +// source: lbm/bank/v1beta1/tx.proto package types @@ -41,7 +41,7 @@ func (m *MsgSend) Reset() { *m = MsgSend{} } func (m *MsgSend) String() string { return proto.CompactTextString(m) } func (*MsgSend) ProtoMessage() {} func (*MsgSend) Descriptor() ([]byte, []int) { - return fileDescriptor_1d8cb1613481f5b7, []int{0} + return fileDescriptor_549878a8fb2cb9ef, []int{0} } func (m *MsgSend) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *MsgSendResponse) Reset() { *m = MsgSendResponse{} } func (m *MsgSendResponse) String() string { return proto.CompactTextString(m) } func (*MsgSendResponse) ProtoMessage() {} func (*MsgSendResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1d8cb1613481f5b7, []int{1} + return fileDescriptor_549878a8fb2cb9ef, []int{1} } func (m *MsgSendResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ func (m *MsgMultiSend) Reset() { *m = MsgMultiSend{} } func (m *MsgMultiSend) String() string { return proto.CompactTextString(m) } func (*MsgMultiSend) ProtoMessage() {} func (*MsgMultiSend) Descriptor() ([]byte, []int) { - return fileDescriptor_1d8cb1613481f5b7, []int{2} + return fileDescriptor_549878a8fb2cb9ef, []int{2} } func (m *MsgMultiSend) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *MsgMultiSendResponse) Reset() { *m = MsgMultiSendResponse{} } func (m *MsgMultiSendResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiSendResponse) ProtoMessage() {} func (*MsgMultiSendResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1d8cb1613481f5b7, []int{3} + return fileDescriptor_549878a8fb2cb9ef, []int{3} } func (m *MsgMultiSendResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -198,44 +198,44 @@ func (m *MsgMultiSendResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgMultiSendResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgSend)(nil), "cosmos.bank.v1beta1.MsgSend") - proto.RegisterType((*MsgSendResponse)(nil), "cosmos.bank.v1beta1.MsgSendResponse") - proto.RegisterType((*MsgMultiSend)(nil), "cosmos.bank.v1beta1.MsgMultiSend") - proto.RegisterType((*MsgMultiSendResponse)(nil), "cosmos.bank.v1beta1.MsgMultiSendResponse") + proto.RegisterType((*MsgSend)(nil), "lbm.bank.v1beta1.MsgSend") + proto.RegisterType((*MsgSendResponse)(nil), "lbm.bank.v1beta1.MsgSendResponse") + proto.RegisterType((*MsgMultiSend)(nil), "lbm.bank.v1beta1.MsgMultiSend") + proto.RegisterType((*MsgMultiSendResponse)(nil), "lbm.bank.v1beta1.MsgMultiSendResponse") } -func init() { proto.RegisterFile("cosmos/bank/v1beta1/tx.proto", fileDescriptor_1d8cb1613481f5b7) } +func init() { proto.RegisterFile("lbm/bank/v1beta1/tx.proto", fileDescriptor_549878a8fb2cb9ef) } -var fileDescriptor_1d8cb1613481f5b7 = []byte{ - // 443 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x3f, 0x6f, 0xd3, 0x40, - 0x00, 0xc5, 0x7d, 0x4d, 0x94, 0x92, 0x6b, 0x25, 0x54, 0xb7, 0x40, 0x31, 0x95, 0x5d, 0x2c, 0x04, - 0x65, 0xe0, 0x4e, 0x0d, 0x0c, 0xc8, 0x4c, 0x31, 0x13, 0x48, 0x16, 0x92, 0x99, 0x60, 0x41, 0x76, - 0x7c, 0x18, 0x2b, 0xf6, 0x9d, 0x95, 0x3b, 0x47, 0xc9, 0x37, 0x40, 0x62, 0xe1, 0x23, 0x64, 0x46, - 0x7c, 0x90, 0x8c, 0x19, 0x99, 0x02, 0x4a, 0x96, 0xcc, 0xf9, 0x04, 0xc8, 0xe7, 0x3f, 0x89, 0x44, - 0x48, 0xb7, 0x9c, 0xde, 0xfb, 0xbd, 0xbc, 0xe7, 0x3b, 0x78, 0xd1, 0x63, 0x3c, 0x61, 0x1c, 0xfb, - 0x1e, 0xed, 0xe3, 0xe1, 0xb5, 0x4f, 0x84, 0x77, 0x8d, 0xc5, 0x08, 0xa5, 0x03, 0x26, 0x98, 0x7a, - 0x5a, 0xa8, 0x28, 0x57, 0x51, 0xa9, 0x6a, 0x67, 0x21, 0x0b, 0x99, 0xd4, 0x71, 0xfe, 0xab, 0xb0, - 0x6a, 0x7a, 0x1d, 0xc4, 0x49, 0x1d, 0xd4, 0x63, 0x11, 0xfd, 0x47, 0xdf, 0xfa, 0x23, 0x99, 0x2b, - 0x75, 0x73, 0x05, 0xe0, 0xa1, 0xc3, 0xc3, 0xf7, 0x84, 0x06, 0xaa, 0x05, 0x8f, 0x3f, 0x0f, 0x58, - 0xf2, 0xc9, 0x0b, 0x82, 0x01, 0xe1, 0xfc, 0x1c, 0x5c, 0x82, 0xab, 0xb6, 0x7d, 0x6f, 0x3d, 0x37, - 0x4e, 0xc7, 0x5e, 0x12, 0x5b, 0xe6, 0xb6, 0x6a, 0xba, 0x47, 0xf9, 0xb1, 0x5b, 0x9c, 0xd4, 0x17, - 0x10, 0x0a, 0x56, 0x93, 0x07, 0x92, 0xbc, 0xb3, 0x9e, 0x1b, 0x27, 0x05, 0xb9, 0xd1, 0x4c, 0xb7, - 0x2d, 0x58, 0x45, 0x79, 0xb0, 0xe5, 0x25, 0x2c, 0xa3, 0xe2, 0xbc, 0x71, 0xd9, 0xb8, 0x3a, 0xea, - 0xdc, 0x47, 0xf5, 0x72, 0x4e, 0xaa, 0xe5, 0xe8, 0x35, 0x8b, 0xa8, 0x8d, 0xa6, 0x73, 0x43, 0xf9, - 0xf1, 0xdb, 0x78, 0x1c, 0x46, 0xe2, 0x4b, 0xe6, 0xa3, 0x1e, 0x4b, 0x70, 0x1c, 0x51, 0x82, 0x63, - 0x3f, 0x79, 0xc6, 0x83, 0x3e, 0x1e, 0x76, 0xb0, 0x18, 0xa7, 0x84, 0x4b, 0x3b, 0x77, 0xcb, 0x60, - 0xeb, 0xd6, 0xd7, 0x89, 0xa1, 0xac, 0x26, 0x86, 0x62, 0x9e, 0xc0, 0xdb, 0xe5, 0x52, 0x97, 0xf0, - 0x94, 0x51, 0x4e, 0xcc, 0x6f, 0x00, 0x1e, 0x3b, 0x3c, 0x74, 0xb2, 0x58, 0x44, 0xf2, 0x13, 0xbc, - 0x84, 0xad, 0x88, 0xa6, 0x99, 0xc8, 0xc7, 0xe7, 0x85, 0x34, 0xb4, 0xe3, 0x2a, 0xd0, 0x9b, 0xdc, - 0x62, 0x37, 0xf3, 0x46, 0x6e, 0xe9, 0x57, 0x5f, 0xc1, 0x43, 0x96, 0x09, 0x89, 0x1e, 0x48, 0xf4, - 0xc1, 0x4e, 0xf4, 0x9d, 0xf4, 0x94, 0x6c, 0x45, 0x58, 0x4d, 0x59, 0xf0, 0x2e, 0x3c, 0xdb, 0x2e, - 0x53, 0xb5, 0xec, 0xfc, 0x04, 0xb0, 0xe1, 0xf0, 0x50, 0x7d, 0x0b, 0x9b, 0xb2, 0xe4, 0xc5, 0xce, - 0xe4, 0x72, 0x9b, 0xf6, 0x68, 0x9f, 0x5a, 0x65, 0xaa, 0x1f, 0x60, 0x7b, 0xb3, 0xfa, 0xe1, 0xff, - 0x90, 0xda, 0xa2, 0x3d, 0xbd, 0xd1, 0x52, 0x45, 0xdb, 0xdd, 0xe9, 0x42, 0x07, 0xb3, 0x85, 0x0e, - 0xfe, 0x2c, 0x74, 0xf0, 0x7d, 0xa9, 0x2b, 0xb3, 0xa5, 0xae, 0xfc, 0x5a, 0xea, 0xca, 0xc7, 0x27, - 0x7b, 0xee, 0x6e, 0x54, 0x3c, 0x51, 0x79, 0x85, 0x7e, 0x4b, 0x3e, 0xce, 0xe7, 0x7f, 0x03, 0x00, - 0x00, 0xff, 0xff, 0xe4, 0xce, 0x70, 0x01, 0x27, 0x03, 0x00, 0x00, +var fileDescriptor_549878a8fb2cb9ef = []byte{ + // 439 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x41, 0x8f, 0xd2, 0x40, + 0x00, 0x85, 0x3b, 0x0b, 0x61, 0x65, 0x76, 0x13, 0xdd, 0xba, 0xee, 0xb2, 0x35, 0x69, 0xd7, 0x1e, + 0xd6, 0xbd, 0x38, 0x13, 0x50, 0x13, 0xd3, 0x1b, 0xd5, 0x8b, 0x87, 0xc6, 0xa4, 0xdc, 0x3c, 0x68, + 0x5a, 0x3a, 0xd6, 0x86, 0x76, 0xa6, 0x61, 0xa6, 0x04, 0x7e, 0x80, 0x89, 0x47, 0x7f, 0x02, 0x67, + 0x7f, 0x09, 0x47, 0x8e, 0x9e, 0xd0, 0x40, 0x4c, 0x3c, 0xf3, 0x0b, 0x4c, 0xa7, 0x2d, 0xa0, 0x28, + 0xb7, 0x4e, 0xbe, 0xf7, 0x5e, 0xde, 0xeb, 0x0c, 0xbc, 0x8a, 0xfd, 0x04, 0xfb, 0x1e, 0x1d, 0xe0, + 0x51, 0xdb, 0x27, 0xc2, 0x6b, 0x63, 0x31, 0x46, 0xe9, 0x90, 0x09, 0xa6, 0xde, 0x8b, 0xfd, 0x04, + 0xe5, 0x08, 0x95, 0x48, 0x3b, 0x0f, 0x59, 0xc8, 0x24, 0xc4, 0xf9, 0x57, 0xa1, 0xd3, 0x1e, 0x16, + 0x11, 0x9c, 0x6c, 0x22, 0xfa, 0x2c, 0xa2, 0x7f, 0xc2, 0x9d, 0x7c, 0x99, 0x28, 0xa1, 0xf9, 0x13, + 0xc0, 0x63, 0x87, 0x87, 0x3d, 0x42, 0x03, 0xd5, 0x82, 0xa7, 0x1f, 0x86, 0x2c, 0x79, 0xef, 0x05, + 0xc1, 0x90, 0x70, 0xde, 0x02, 0xd7, 0xe0, 0xb6, 0x69, 0x5f, 0xae, 0x17, 0xc6, 0xfd, 0x89, 0x97, + 0xc4, 0x96, 0xb9, 0x4b, 0x4d, 0xf7, 0x24, 0x3f, 0x76, 0x8b, 0x93, 0xfa, 0x0c, 0x42, 0xc1, 0x36, + 0xce, 0x23, 0xe9, 0x7c, 0xb0, 0x5e, 0x18, 0x67, 0x85, 0x73, 0xcb, 0x4c, 0xb7, 0x29, 0x58, 0xe5, + 0x7a, 0x07, 0x1b, 0x5e, 0xc2, 0x32, 0x2a, 0x5a, 0xb5, 0xeb, 0xda, 0xed, 0x49, 0xe7, 0x02, 0x15, + 0x83, 0x39, 0xa9, 0x06, 0xa3, 0x97, 0x2c, 0xa2, 0x36, 0x9a, 0x2d, 0x0c, 0xe5, 0xeb, 0x77, 0xe3, + 0x26, 0x8c, 0xc4, 0xc7, 0xcc, 0x47, 0x7d, 0x96, 0xe0, 0x38, 0xa2, 0x04, 0xc7, 0x7e, 0xf2, 0x84, + 0x07, 0x03, 0x3c, 0xea, 0x60, 0x31, 0x49, 0x09, 0x97, 0x72, 0xee, 0x96, 0xa9, 0xd6, 0x9d, 0xcf, + 0x53, 0x43, 0xf9, 0x35, 0x35, 0x14, 0xf3, 0x0c, 0xde, 0x2d, 0x67, 0xba, 0x84, 0xa7, 0x8c, 0x72, + 0x62, 0x7e, 0x02, 0xf0, 0xd4, 0xe1, 0xa1, 0x93, 0xc5, 0x22, 0x92, 0xfb, 0x9f, 0xc3, 0x46, 0x44, + 0xd3, 0x4c, 0xe4, 0xcb, 0xf3, 0x36, 0x97, 0xe8, 0xef, 0xdf, 0x8f, 0x5e, 0xe7, 0xdc, 0xae, 0xe7, + 0x75, 0xdc, 0x52, 0xac, 0xbe, 0x80, 0xc7, 0x2c, 0x13, 0xd2, 0x77, 0x24, 0x7d, 0xad, 0x7d, 0xdf, + 0x1b, 0x29, 0x28, 0x8d, 0x95, 0xdc, 0xaa, 0xcb, 0x6a, 0x17, 0xf0, 0x7c, 0xb7, 0x46, 0xd5, 0xaf, + 0x33, 0x05, 0xb0, 0xe6, 0xf0, 0x50, 0x7d, 0x05, 0xeb, 0xb2, 0xde, 0xd5, 0x7e, 0x6c, 0x39, 0x49, + 0x7b, 0xf4, 0x5f, 0x54, 0xa5, 0xa9, 0x3d, 0xd8, 0xdc, 0x2e, 0xd5, 0xff, 0xa9, 0xdf, 0x70, 0xed, + 0xe6, 0x30, 0xaf, 0x42, 0xed, 0xee, 0x6c, 0xa9, 0x83, 0xf9, 0x52, 0x07, 0x3f, 0x96, 0x3a, 0xf8, + 0xb2, 0xd2, 0x95, 0xf9, 0x4a, 0x57, 0xbe, 0xad, 0x74, 0xe5, 0xed, 0xe3, 0x03, 0x37, 0x35, 0x2e, + 0x5e, 0xa3, 0xbc, 0x30, 0xbf, 0x21, 0xdf, 0xe1, 0xd3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xae, + 0xc5, 0xa7, 0xf4, 0x06, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -266,7 +266,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) Send(ctx context.Context, in *MsgSend, opts ...grpc.CallOption) (*MsgSendResponse, error) { out := new(MsgSendResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Msg/Send", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Msg/Send", in, out, opts...) if err != nil { return nil, err } @@ -275,7 +275,7 @@ func (c *msgClient) Send(ctx context.Context, in *MsgSend, opts ...grpc.CallOpti func (c *msgClient) MultiSend(ctx context.Context, in *MsgMultiSend, opts ...grpc.CallOption) (*MsgMultiSendResponse, error) { out := new(MsgMultiSendResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Msg/MultiSend", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.bank.v1beta1.Msg/MultiSend", in, out, opts...) if err != nil { return nil, err } @@ -315,7 +315,7 @@ func _Msg_Send_Handler(srv interface{}, ctx context.Context, dec func(interface{ } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Msg/Send", + FullMethod: "/lbm.bank.v1beta1.Msg/Send", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Send(ctx, req.(*MsgSend)) @@ -333,7 +333,7 @@ func _Msg_MultiSend_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.v1beta1.Msg/MultiSend", + FullMethod: "/lbm.bank.v1beta1.Msg/MultiSend", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).MultiSend(ctx, req.(*MsgMultiSend)) @@ -342,7 +342,7 @@ func _Msg_MultiSend_Handler(srv interface{}, ctx context.Context, dec func(inter } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.bank.v1beta1.Msg", + ServiceName: "lbm.bank.v1beta1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -355,7 +355,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/bank/v1beta1/tx.proto", + Metadata: "lbm/bank/v1beta1/tx.proto", } func (m *MsgSend) Marshal() (dAtA []byte, err error) { diff --git a/x/capability/types/capability.pb.go b/x/capability/types/capability.pb.go index 4cd858440a..2ff13ed906 100644 --- a/x/capability/types/capability.pb.go +++ b/x/capability/types/capability.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/capability/v1beta1/capability.proto +// source: lbm/capability/v1beta1/capability.proto package types @@ -32,7 +32,7 @@ type Capability struct { func (m *Capability) Reset() { *m = Capability{} } func (*Capability) ProtoMessage() {} func (*Capability) Descriptor() ([]byte, []int) { - return fileDescriptor_6308261edd8470a9, []int{0} + return fileDescriptor_eadd9300c2bfe8d3, []int{0} } func (m *Capability) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ type Owner struct { func (m *Owner) Reset() { *m = Owner{} } func (*Owner) ProtoMessage() {} func (*Owner) Descriptor() ([]byte, []int) { - return fileDescriptor_6308261edd8470a9, []int{1} + return fileDescriptor_eadd9300c2bfe8d3, []int{1} } func (m *Owner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ func (m *CapabilityOwners) Reset() { *m = CapabilityOwners{} } func (m *CapabilityOwners) String() string { return proto.CompactTextString(m) } func (*CapabilityOwners) ProtoMessage() {} func (*CapabilityOwners) Descriptor() ([]byte, []int) { - return fileDescriptor_6308261edd8470a9, []int{2} + return fileDescriptor_eadd9300c2bfe8d3, []int{2} } func (m *CapabilityOwners) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -154,37 +154,36 @@ func (m *CapabilityOwners) GetOwners() []Owner { } func init() { - proto.RegisterType((*Capability)(nil), "cosmos.capability.v1beta1.Capability") - proto.RegisterType((*Owner)(nil), "cosmos.capability.v1beta1.Owner") - proto.RegisterType((*CapabilityOwners)(nil), "cosmos.capability.v1beta1.CapabilityOwners") + proto.RegisterType((*Capability)(nil), "lbm.capability.v1beta1.Capability") + proto.RegisterType((*Owner)(nil), "lbm.capability.v1beta1.Owner") + proto.RegisterType((*CapabilityOwners)(nil), "lbm.capability.v1beta1.CapabilityOwners") } func init() { - proto.RegisterFile("cosmos/capability/v1beta1/capability.proto", fileDescriptor_6308261edd8470a9) -} - -var fileDescriptor_6308261edd8470a9 = []byte{ - // 306 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x2f, 0x33, - 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0x44, 0x12, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x84, - 0xa8, 0xd5, 0x43, 0x92, 0x80, 0xaa, 0x95, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd2, 0x07, - 0xb1, 0x20, 0x1a, 0x94, 0xac, 0xb8, 0xb8, 0x9c, 0xe1, 0x6a, 0x85, 0xd4, 0xb8, 0x58, 0x33, 0xf3, - 0x52, 0x52, 0x2b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x9c, 0x04, 0x3e, 0xdd, 0x93, 0xe7, 0xa9, - 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x02, 0x0b, 0x2b, 0x05, 0x41, 0xa4, 0xad, 0x58, 0x66, 0x2c, 0x90, - 0x67, 0x50, 0x4a, 0xe4, 0x62, 0xf5, 0x2f, 0xcf, 0x4b, 0x2d, 0x12, 0xd2, 0xe4, 0x62, 0xcb, 0xcd, - 0x4f, 0x29, 0xcd, 0x49, 0x05, 0xeb, 0xe3, 0x74, 0x12, 0xfc, 0x74, 0x4f, 0x9e, 0x17, 0xa2, 0x0f, - 0x22, 0xae, 0x14, 0x04, 0x55, 0x20, 0xa4, 0xcc, 0xc5, 0x92, 0x97, 0x98, 0x9b, 0x2a, 0xc1, 0x04, - 0x56, 0xc8, 0xff, 0xe9, 0x9e, 0x3c, 0x37, 0x44, 0x21, 0x48, 0x54, 0x29, 0x08, 0x2c, 0x69, 0xc5, - 0xd1, 0xb1, 0x40, 0x9e, 0x01, 0x6c, 0x45, 0x10, 0x97, 0x00, 0xc2, 0x79, 0x60, 0xcb, 0x8a, 0x85, - 0xec, 0xb8, 0xd8, 0xf2, 0xc1, 0x2c, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x05, 0x3d, 0x9c, - 0x9e, 0xd6, 0x03, 0x6b, 0x71, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0xcb, 0xc9, 0xfd, - 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, - 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, - 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x73, 0x32, 0xf3, 0x52, 0xf5, 0x73, 0x92, 0x72, 0x75, 0x8b, - 0x53, 0xb2, 0xf5, 0xcb, 0x8c, 0xf4, 0x2b, 0x90, 0xc3, 0xbf, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, - 0x0d, 0x1c, 0x84, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x3e, 0xb4, 0xe4, 0xa1, 0x01, - 0x00, 0x00, + proto.RegisterFile("lbm/capability/v1beta1/capability.proto", fileDescriptor_eadd9300c2bfe8d3) +} + +var fileDescriptor_eadd9300c2bfe8d3 = []byte{ + // 304 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcf, 0x49, 0xca, 0xd5, + 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, + 0x49, 0x34, 0x44, 0x12, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xcb, 0x49, 0xca, 0xd5, + 0x43, 0x12, 0x85, 0x2a, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd1, 0x07, 0xb1, 0x20, + 0xaa, 0x95, 0xac, 0xb8, 0xb8, 0x9c, 0xe1, 0x6a, 0x85, 0xd4, 0xb8, 0x58, 0x33, 0xf3, 0x52, 0x52, + 0x2b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x9c, 0x04, 0x3e, 0xdd, 0x93, 0xe7, 0xa9, 0x4c, 0xcc, + 0xcd, 0xb1, 0x52, 0x02, 0x0b, 0x2b, 0x05, 0x41, 0xa4, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x50, + 0x4a, 0xe4, 0x62, 0xf5, 0x2f, 0xcf, 0x4b, 0x2d, 0x12, 0xd2, 0xe4, 0x62, 0xcb, 0xcd, 0x4f, 0x29, + 0xcd, 0x49, 0x05, 0xeb, 0xe3, 0x74, 0x12, 0xfc, 0x74, 0x4f, 0x9e, 0x17, 0xa2, 0x0f, 0x22, 0xae, + 0x14, 0x04, 0x55, 0x20, 0xa4, 0xcc, 0xc5, 0x92, 0x97, 0x98, 0x9b, 0x2a, 0xc1, 0x04, 0x56, 0xc8, + 0xff, 0xe9, 0x9e, 0x3c, 0x37, 0x44, 0x21, 0x48, 0x54, 0x29, 0x08, 0x2c, 0x69, 0xc5, 0xd1, 0xb1, + 0x40, 0x9e, 0x01, 0x6c, 0x85, 0x3f, 0x97, 0x00, 0xc2, 0x79, 0x60, 0xcb, 0x8a, 0x85, 0xac, 0xb9, + 0xd8, 0xf2, 0xc1, 0x2c, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x59, 0x3d, 0xec, 0x3e, 0xd6, + 0x03, 0xab, 0x77, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0xc5, 0xc9, 0xfd, 0xc4, 0x23, + 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, + 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, + 0x92, 0xf3, 0x73, 0xf5, 0x73, 0x32, 0xf3, 0x52, 0xf5, 0x73, 0x92, 0x72, 0x75, 0x8b, 0x53, 0xb2, + 0xf5, 0xcb, 0x8c, 0xf4, 0x2b, 0x90, 0x43, 0xbe, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, + 0x7e, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x97, 0xbd, 0x48, 0x98, 0x01, 0x00, 0x00, } func (m *Capability) Marshal() (dAtA []byte, err error) { diff --git a/x/capability/types/genesis.pb.go b/x/capability/types/genesis.pb.go index 73e039c2f3..484ede3be2 100644 --- a/x/capability/types/genesis.pb.go +++ b/x/capability/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/capability/v1beta1/genesis.proto +// source: lbm/capability/v1beta1/genesis.proto package types @@ -35,7 +35,7 @@ func (m *GenesisOwners) Reset() { *m = GenesisOwners{} } func (m *GenesisOwners) String() string { return proto.CompactTextString(m) } func (*GenesisOwners) ProtoMessage() {} func (*GenesisOwners) Descriptor() ([]byte, []int) { - return fileDescriptor_94922dd16a11c23e, []int{0} + return fileDescriptor_525d215d9eeef247, []int{0} } func (m *GenesisOwners) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -91,7 +91,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_94922dd16a11c23e, []int{1} + return fileDescriptor_525d215d9eeef247, []int{1} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -135,34 +135,34 @@ func (m *GenesisState) GetOwners() []GenesisOwners { } func init() { - proto.RegisterType((*GenesisOwners)(nil), "cosmos.capability.v1beta1.GenesisOwners") - proto.RegisterType((*GenesisState)(nil), "cosmos.capability.v1beta1.GenesisState") + proto.RegisterType((*GenesisOwners)(nil), "lbm.capability.v1beta1.GenesisOwners") + proto.RegisterType((*GenesisState)(nil), "lbm.capability.v1beta1.GenesisState") } func init() { - proto.RegisterFile("cosmos/capability/v1beta1/genesis.proto", fileDescriptor_94922dd16a11c23e) + proto.RegisterFile("lbm/capability/v1beta1/genesis.proto", fileDescriptor_525d215d9eeef247) } -var fileDescriptor_94922dd16a11c23e = []byte{ - // 288 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x2f, 0x33, - 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x84, 0x28, 0xd4, 0x43, 0x28, 0xd4, 0x83, 0x2a, 0x94, 0x12, 0x49, - 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd2, 0x07, 0xb1, 0x20, 0x1a, 0xa4, 0xb4, 0x70, 0x9b, 0x8c, 0x64, - 0x06, 0x58, 0xad, 0xd2, 0x24, 0x46, 0x2e, 0x5e, 0x77, 0x88, 0x75, 0xfe, 0xe5, 0x79, 0xa9, 0x45, - 0xc5, 0x42, 0x22, 0x5c, 0xac, 0x99, 0x79, 0x29, 0xa9, 0x15, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x2c, - 0x41, 0x10, 0x8e, 0x50, 0x36, 0x17, 0x0f, 0x98, 0x11, 0x9f, 0x0f, 0x56, 0x25, 0xc1, 0xa4, 0xc0, - 0xa8, 0xc1, 0x6d, 0xa4, 0xad, 0x87, 0xd3, 0x6d, 0x7a, 0xce, 0x70, 0x21, 0x88, 0xc1, 0x4e, 0xd2, - 0x27, 0xee, 0xc9, 0x33, 0x7c, 0xba, 0x27, 0x2f, 0x5c, 0x99, 0x98, 0x9b, 0x63, 0xa5, 0x84, 0x6c, - 0x9c, 0x52, 0x10, 0x37, 0x98, 0x0b, 0x51, 0xa9, 0x94, 0xc3, 0xc5, 0x03, 0x75, 0x53, 0x70, 0x49, - 0x62, 0x49, 0x2a, 0x0e, 0x27, 0xb9, 0x71, 0xb1, 0xc1, 0x1d, 0xc3, 0xac, 0xc1, 0x6d, 0xa4, 0x81, - 0xc7, 0x31, 0x28, 0x5e, 0x74, 0x62, 0x01, 0xb9, 0x24, 0x08, 0xaa, 0xdb, 0xc9, 0xfd, 0xc4, 0x23, - 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, - 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, - 0x92, 0xf3, 0x73, 0xf5, 0x73, 0x32, 0xf3, 0x52, 0xf5, 0x73, 0x92, 0x72, 0x75, 0x8b, 0x53, 0xb2, - 0xf5, 0xcb, 0x8c, 0xf4, 0x2b, 0x90, 0x83, 0xb7, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, - 0xa4, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x81, 0x12, 0xa6, 0x1c, 0xda, 0x01, 0x00, 0x00, +var fileDescriptor_525d215d9eeef247 = []byte{ + // 286 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0x49, 0xca, 0xd5, + 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, + 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, + 0x17, 0x12, 0xcb, 0x49, 0xca, 0xd5, 0x43, 0xa8, 0xd2, 0x83, 0xaa, 0x92, 0x12, 0x49, 0xcf, 0x4f, + 0xcf, 0x07, 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0xa5, 0xd4, 0x71, 0x98, 0x89, 0x64, 0x00, 0x58, + 0xa1, 0x52, 0x3f, 0x23, 0x17, 0xaf, 0x3b, 0xc4, 0x22, 0xff, 0xf2, 0xbc, 0xd4, 0xa2, 0x62, 0x21, + 0x11, 0x2e, 0xd6, 0xcc, 0xbc, 0x94, 0xd4, 0x0a, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x96, 0x20, 0x08, + 0x47, 0x28, 0x83, 0x8b, 0x07, 0xcc, 0x88, 0xcf, 0x07, 0xab, 0x92, 0x60, 0x52, 0x60, 0xd4, 0xe0, + 0x36, 0xd2, 0xd0, 0xc3, 0xee, 0x2a, 0x3d, 0x67, 0xb8, 0x10, 0xc4, 0x54, 0x27, 0xe9, 0x13, 0xf7, + 0xe4, 0x19, 0x3e, 0xdd, 0x93, 0x17, 0xae, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x42, 0x36, 0x4b, 0x29, + 0x88, 0x1b, 0xcc, 0x85, 0xa8, 0x54, 0xca, 0xe4, 0xe2, 0x81, 0x3a, 0x28, 0xb8, 0x24, 0xb1, 0x24, + 0x15, 0x87, 0x7b, 0x9c, 0xb9, 0xd8, 0xe0, 0x2e, 0x61, 0xd6, 0xe0, 0x36, 0x52, 0xc5, 0xe5, 0x12, + 0x14, 0xcf, 0x39, 0xb1, 0x80, 0x9c, 0x11, 0x04, 0xd5, 0xea, 0xe4, 0x7e, 0xe2, 0x91, 0x1c, 0xe3, + 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, + 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, + 0xb9, 0xfa, 0x39, 0x99, 0x79, 0xa9, 0xfa, 0x39, 0x49, 0xb9, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x65, + 0x46, 0xfa, 0x15, 0xc8, 0x01, 0x5b, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x4c, 0x63, + 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x7d, 0x65, 0x51, 0xcb, 0x01, 0x00, 0x00, } func (m *GenesisOwners) Marshal() (dAtA []byte, err error) { diff --git a/x/crisis/types/codec.go b/x/crisis/types/codec.go index 07b45036b3..ecc94e4320 100644 --- a/x/crisis/types/codec.go +++ b/x/crisis/types/codec.go @@ -11,7 +11,7 @@ import ( // RegisterLegacyAminoCodec registers the necessary x/crisis interfaces and concrete types // on the provided LegacyAmino codec. These types are used for Amino JSON serialization. func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(&MsgVerifyInvariant{}, "cosmos-sdk/MsgVerifyInvariant", nil) + cdc.RegisterConcrete(&MsgVerifyInvariant{}, "lbm-sdk/MsgVerifyInvariant", nil) } func RegisterInterfaces(registry codectypes.InterfaceRegistry) { diff --git a/x/crisis/types/genesis.pb.go b/x/crisis/types/genesis.pb.go index 7198bd3496..1437170f08 100644 --- a/x/crisis/types/genesis.pb.go +++ b/x/crisis/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crisis/v1beta1/genesis.proto +// source: lbm/crisis/v1beta1/genesis.proto package types @@ -35,7 +35,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_7a9c2781aa8a27ae, []int{0} + return fileDescriptor_4162f4eac15fde8b, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -72,31 +72,29 @@ func (m *GenesisState) GetConstantFee() types.Coin { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.crisis.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "lbm.crisis.v1beta1.GenesisState") } -func init() { - proto.RegisterFile("cosmos/crisis/v1beta1/genesis.proto", fileDescriptor_7a9c2781aa8a27ae) -} +func init() { proto.RegisterFile("lbm/crisis/v1beta1/genesis.proto", fileDescriptor_4162f4eac15fde8b) } -var fileDescriptor_7a9c2781aa8a27ae = []byte{ - // 245 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4e, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, - 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x12, 0x85, 0x28, 0xd2, 0x83, 0x28, 0xd2, 0x83, 0x2a, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, - 0xab, 0xd0, 0x07, 0xb1, 0x20, 0x8a, 0xa5, 0xe4, 0xa0, 0x26, 0x26, 0x25, 0x16, 0xa7, 0xc2, 0xcd, - 0x4b, 0xce, 0xcf, 0xcc, 0x83, 0xc8, 0x2b, 0x65, 0x72, 0xf1, 0xb8, 0x43, 0x4c, 0x0f, 0x2e, 0x49, - 0x2c, 0x49, 0x15, 0x8a, 0xe4, 0xe2, 0x49, 0xce, 0xcf, 0x2b, 0x2e, 0x49, 0xcc, 0x2b, 0x89, 0x4f, - 0x4b, 0x4d, 0x95, 0x60, 0x56, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd4, 0x83, 0xda, 0x09, 0x32, 0x06, - 0x66, 0xa3, 0x9e, 0x73, 0x7e, 0x66, 0x9e, 0x93, 0xf4, 0x89, 0x7b, 0xf2, 0x0c, 0x9f, 0xee, 0xc9, - 0x0b, 0x57, 0x26, 0xe6, 0xe6, 0x58, 0x29, 0x21, 0x6b, 0x56, 0x0a, 0xe2, 0x86, 0x71, 0xdd, 0x52, - 0x53, 0x9d, 0x9c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, - 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x33, 0x3d, - 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x27, 0x33, 0x2f, 0x55, 0x3f, 0x27, - 0x29, 0x57, 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0xcc, 0x48, 0xbf, 0x02, 0x16, 0x18, 0x25, 0x95, 0x05, - 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x67, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x81, 0xac, 0x2e, - 0x80, 0x2a, 0x01, 0x00, 0x00, +var fileDescriptor_4162f4eac15fde8b = []byte{ + // 243 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0x49, 0xca, 0xd5, + 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, + 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0x49, + 0xca, 0xd5, 0x83, 0xa8, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x4b, 0xeb, + 0x83, 0x58, 0x10, 0x95, 0x52, 0xd2, 0x20, 0xb3, 0x92, 0x12, 0x8b, 0x53, 0xe1, 0x26, 0x25, 0xe7, + 0x67, 0xe6, 0x41, 0x24, 0x95, 0xd2, 0xb8, 0x78, 0xdc, 0x21, 0xe6, 0x06, 0x97, 0x24, 0x96, 0xa4, + 0x0a, 0x85, 0x71, 0xf1, 0x24, 0xe7, 0xe7, 0x15, 0x97, 0x24, 0xe6, 0x95, 0xc4, 0xa7, 0xa5, 0xa6, + 0x4a, 0x30, 0x2b, 0x30, 0x6a, 0x70, 0x1b, 0x89, 0xe9, 0x81, 0x6c, 0x03, 0x99, 0x01, 0xb3, 0x4b, + 0xcf, 0x39, 0x3f, 0x33, 0xcf, 0x49, 0xfa, 0xc4, 0x3d, 0x79, 0x86, 0x4f, 0xf7, 0xe4, 0x85, 0x2b, + 0x13, 0x73, 0x73, 0xac, 0x94, 0x90, 0x75, 0x2a, 0x05, 0x71, 0xc3, 0xb8, 0x6e, 0xa9, 0xa9, 0x4e, + 0xce, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, + 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x99, 0x9e, 0x59, 0x92, + 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x93, 0x99, 0x97, 0xaa, 0x9f, 0x93, 0x94, 0xab, + 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x66, 0xa4, 0x5f, 0x01, 0x0b, 0x83, 0x92, 0xca, 0x82, 0xd4, 0xe2, + 0x24, 0x36, 0xb0, 0x9b, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf5, 0x28, 0x5e, 0xcb, 0x1e, + 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/crisis/types/tx.pb.go b/x/crisis/types/tx.pb.go index fb66293d54..692499535a 100644 --- a/x/crisis/types/tx.pb.go +++ b/x/crisis/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crisis/v1beta1/tx.proto +// source: lbm/crisis/v1beta1/tx.proto package types @@ -39,7 +39,7 @@ func (m *MsgVerifyInvariant) Reset() { *m = MsgVerifyInvariant{} } func (m *MsgVerifyInvariant) String() string { return proto.CompactTextString(m) } func (*MsgVerifyInvariant) ProtoMessage() {} func (*MsgVerifyInvariant) Descriptor() ([]byte, []int) { - return fileDescriptor_61276163172fe867, []int{0} + return fileDescriptor_6b731fdb4a263d09, []int{0} } func (m *MsgVerifyInvariant) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *MsgVerifyInvariantResponse) Reset() { *m = MsgVerifyInvariantRe func (m *MsgVerifyInvariantResponse) String() string { return proto.CompactTextString(m) } func (*MsgVerifyInvariantResponse) ProtoMessage() {} func (*MsgVerifyInvariantResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_61276163172fe867, []int{1} + return fileDescriptor_6b731fdb4a263d09, []int{1} } func (m *MsgVerifyInvariantResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,35 +106,35 @@ func (m *MsgVerifyInvariantResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgVerifyInvariantResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgVerifyInvariant)(nil), "cosmos.crisis.v1beta1.MsgVerifyInvariant") - proto.RegisterType((*MsgVerifyInvariantResponse)(nil), "cosmos.crisis.v1beta1.MsgVerifyInvariantResponse") -} - -func init() { proto.RegisterFile("cosmos/crisis/v1beta1/tx.proto", fileDescriptor_61276163172fe867) } - -var fileDescriptor_61276163172fe867 = []byte{ - // 325 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, - 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xc8, 0xeb, 0x41, - 0xe4, 0xf5, 0xa0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, - 0xb1, 0xd2, 0x45, 0x46, 0x2e, 0x21, 0xdf, 0xe2, 0xf4, 0xb0, 0xd4, 0xa2, 0xcc, 0xb4, 0x4a, 0xcf, - 0xbc, 0xb2, 0xc4, 0xa2, 0xcc, 0xc4, 0xbc, 0x12, 0x21, 0x31, 0x2e, 0xb6, 0xe2, 0xd4, 0xbc, 0x94, - 0xd4, 0x22, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x28, 0x4f, 0x28, 0x84, 0x4b, 0x34, 0x13, - 0xa6, 0x28, 0x3e, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0x35, 0x3e, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x09, - 0xa4, 0xcc, 0x49, 0xe1, 0xd3, 0x3d, 0x79, 0x99, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0xac, 0xca, - 0x94, 0x82, 0x84, 0xe1, 0xe2, 0xbe, 0x60, 0x61, 0xbf, 0xc4, 0xdc, 0x54, 0x21, 0x67, 0x2e, 0x7e, - 0x84, 0xf2, 0xa2, 0xfc, 0xd2, 0x92, 0x54, 0x09, 0x66, 0xb0, 0x79, 0x52, 0x9f, 0xee, 0xc9, 0x8b, - 0xa1, 0x9b, 0x07, 0x56, 0xa0, 0x14, 0xc4, 0x07, 0x17, 0x09, 0x02, 0x09, 0x58, 0x71, 0x74, 0x2c, - 0x90, 0x67, 0x78, 0xb1, 0x40, 0x9e, 0x41, 0x49, 0x86, 0x4b, 0x0a, 0xd3, 0x4b, 0x41, 0xa9, 0xc5, - 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x46, 0x65, 0x5c, 0xcc, 0xbe, 0xc5, 0xe9, 0x42, 0xf9, 0x5c, 0xfc, - 0xe8, 0x9e, 0xd6, 0xd4, 0xc3, 0x1a, 0x72, 0x7a, 0x98, 0x86, 0x49, 0x19, 0x12, 0xad, 0x14, 0x66, - 0xaf, 0x93, 0xf3, 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, 0x69, 0xa6, 0x67, - 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xe7, 0x64, 0xe6, 0xa5, 0xea, 0xe7, 0x24, - 0xe5, 0xea, 0x16, 0xa7, 0x64, 0xeb, 0x97, 0x19, 0xe9, 0x57, 0xc0, 0xa2, 0xb9, 0xa4, 0xb2, 0x20, - 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x6b, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x98, 0x4b, 0x5e, - 0x7d, 0x04, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgVerifyInvariant)(nil), "lbm.crisis.v1beta1.MsgVerifyInvariant") + proto.RegisterType((*MsgVerifyInvariantResponse)(nil), "lbm.crisis.v1beta1.MsgVerifyInvariantResponse") +} + +func init() { proto.RegisterFile("lbm/crisis/v1beta1/tx.proto", fileDescriptor_6b731fdb4a263d09) } + +var fileDescriptor_6b731fdb4a263d09 = []byte{ + // 323 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xce, 0x49, 0xca, 0xd5, + 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, + 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0x49, 0xca, 0xd5, 0x83, 0x48, 0xea, + 0x41, 0x25, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xd2, 0xfa, 0x20, 0x16, 0x44, 0xa5, 0xd2, + 0x45, 0x46, 0x2e, 0x21, 0xdf, 0xe2, 0xf4, 0xb0, 0xd4, 0xa2, 0xcc, 0xb4, 0x4a, 0xcf, 0xbc, 0xb2, + 0xc4, 0xa2, 0xcc, 0xc4, 0xbc, 0x12, 0x21, 0x31, 0x2e, 0xb6, 0xe2, 0xd4, 0xbc, 0x94, 0xd4, 0x22, + 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x28, 0x4f, 0x28, 0x84, 0x4b, 0x34, 0x13, 0xa6, 0x28, + 0x3e, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0x35, 0x3e, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x09, 0xa4, 0xcc, + 0x49, 0xe1, 0xd3, 0x3d, 0x79, 0x99, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0xac, 0xca, 0x94, 0x82, + 0x84, 0xe1, 0xe2, 0xbe, 0x60, 0x61, 0xbf, 0xc4, 0xdc, 0x54, 0x21, 0x67, 0x2e, 0x7e, 0x84, 0xf2, + 0xa2, 0xfc, 0xd2, 0x92, 0x54, 0x09, 0x66, 0xb0, 0x79, 0x52, 0x9f, 0xee, 0xc9, 0x8b, 0xa1, 0x9b, + 0x07, 0x56, 0xa0, 0x14, 0xc4, 0x07, 0x17, 0x09, 0x02, 0x09, 0x58, 0x71, 0x74, 0x2c, 0x90, 0x67, + 0x78, 0xb1, 0x40, 0x9e, 0x41, 0x49, 0x86, 0x4b, 0x0a, 0xd3, 0x4b, 0x41, 0xa9, 0xc5, 0x05, 0xf9, + 0x79, 0xc5, 0xa9, 0x46, 0x05, 0x5c, 0xcc, 0xbe, 0xc5, 0xe9, 0x42, 0x99, 0x5c, 0xfc, 0xe8, 0x9e, + 0x56, 0xd3, 0xc3, 0x0c, 0x36, 0x3d, 0x4c, 0x93, 0xa4, 0xf4, 0x88, 0x53, 0x07, 0xb3, 0xd1, 0xc9, + 0xf9, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, + 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x34, 0xd3, 0x33, 0x4b, 0x32, + 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x73, 0x32, 0xf3, 0x52, 0xf5, 0x73, 0x92, 0x72, 0x75, + 0x8b, 0x53, 0xb2, 0xf5, 0xcb, 0x8c, 0xf4, 0x2b, 0x60, 0xb1, 0x5b, 0x52, 0x59, 0x90, 0x5a, 0x9c, + 0xc4, 0x06, 0x8e, 0x2f, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xed, 0x2b, 0x3e, 0x3c, 0xf8, + 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -163,7 +163,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) VerifyInvariant(ctx context.Context, in *MsgVerifyInvariant, opts ...grpc.CallOption) (*MsgVerifyInvariantResponse, error) { out := new(MsgVerifyInvariantResponse) - err := c.cc.Invoke(ctx, "/cosmos.crisis.v1beta1.Msg/VerifyInvariant", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.crisis.v1beta1.Msg/VerifyInvariant", in, out, opts...) if err != nil { return nil, err } @@ -198,7 +198,7 @@ func _Msg_VerifyInvariant_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.crisis.v1beta1.Msg/VerifyInvariant", + FullMethod: "/lbm.crisis.v1beta1.Msg/VerifyInvariant", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).VerifyInvariant(ctx, req.(*MsgVerifyInvariant)) @@ -207,7 +207,7 @@ func _Msg_VerifyInvariant_Handler(srv interface{}, ctx context.Context, dec func } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.crisis.v1beta1.Msg", + ServiceName: "lbm.crisis.v1beta1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -216,7 +216,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/crisis/v1beta1/tx.proto", + Metadata: "lbm/crisis/v1beta1/tx.proto", } func (m *MsgVerifyInvariant) Marshal() (dAtA []byte, err error) { diff --git a/x/distribution/legacy/v036/types.go b/x/distribution/legacy/v036/types.go index 3243322371..d434032e24 100644 --- a/x/distribution/legacy/v036/types.go +++ b/x/distribution/legacy/v036/types.go @@ -130,5 +130,5 @@ func (csp CommunityPoolSpendProposal) String() string { } func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(CommunityPoolSpendProposal{}, "cosmos-sdk/CommunityPoolSpendProposal", nil) + cdc.RegisterConcrete(CommunityPoolSpendProposal{}, "lbm-sdk/CommunityPoolSpendProposal", nil) } diff --git a/x/distribution/types/codec.go b/x/distribution/types/codec.go index 89f2830519..d581ea0ef5 100644 --- a/x/distribution/types/codec.go +++ b/x/distribution/types/codec.go @@ -12,11 +12,11 @@ import ( // RegisterLegacyAminoCodec registers the necessary x/distribution interfaces and concrete types // on the provided LegacyAmino codec. These types are used for Amino JSON serialization. func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(&MsgWithdrawDelegatorReward{}, "cosmos-sdk/MsgWithdrawDelegationReward", nil) - cdc.RegisterConcrete(&MsgWithdrawValidatorCommission{}, "cosmos-sdk/MsgWithdrawValidatorCommission", nil) - cdc.RegisterConcrete(&MsgSetWithdrawAddress{}, "cosmos-sdk/MsgModifyWithdrawAddress", nil) - cdc.RegisterConcrete(&MsgFundCommunityPool{}, "cosmos-sdk/MsgFundCommunityPool", nil) - cdc.RegisterConcrete(&CommunityPoolSpendProposal{}, "cosmos-sdk/CommunityPoolSpendProposal", nil) + cdc.RegisterConcrete(&MsgWithdrawDelegatorReward{}, "lbm-sdk/MsgWithdrawDelegationReward", nil) + cdc.RegisterConcrete(&MsgWithdrawValidatorCommission{}, "lbm-sdk/MsgWithdrawValidatorCommission", nil) + cdc.RegisterConcrete(&MsgSetWithdrawAddress{}, "lbm-sdk/MsgModifyWithdrawAddress", nil) + cdc.RegisterConcrete(&MsgFundCommunityPool{}, "lbm-sdk/MsgFundCommunityPool", nil) + cdc.RegisterConcrete(&CommunityPoolSpendProposal{}, "lbm-sdk/CommunityPoolSpendProposal", nil) } func RegisterInterfaces(registry types.InterfaceRegistry) { diff --git a/x/distribution/types/distribution.pb.go b/x/distribution/types/distribution.pb.go index 605bf2e3ad..03ef490d04 100644 --- a/x/distribution/types/distribution.pb.go +++ b/x/distribution/types/distribution.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/v1beta1/distribution.proto +// source: lbm/distribution/v1beta1/distribution.proto package types @@ -36,7 +36,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{0} + return fileDescriptor_c35fab4e7d34756c, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -93,7 +93,7 @@ func (m *ValidatorHistoricalRewards) Reset() { *m = ValidatorHistoricalR func (m *ValidatorHistoricalRewards) String() string { return proto.CompactTextString(m) } func (*ValidatorHistoricalRewards) ProtoMessage() {} func (*ValidatorHistoricalRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{1} + return fileDescriptor_c35fab4e7d34756c, []int{1} } func (m *ValidatorHistoricalRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -148,7 +148,7 @@ func (m *ValidatorCurrentRewards) Reset() { *m = ValidatorCurrentRewards func (m *ValidatorCurrentRewards) String() string { return proto.CompactTextString(m) } func (*ValidatorCurrentRewards) ProtoMessage() {} func (*ValidatorCurrentRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{2} + return fileDescriptor_c35fab4e7d34756c, []int{2} } func (m *ValidatorCurrentRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -201,7 +201,7 @@ func (m *ValidatorAccumulatedCommission) Reset() { *m = ValidatorAccumul func (m *ValidatorAccumulatedCommission) String() string { return proto.CompactTextString(m) } func (*ValidatorAccumulatedCommission) ProtoMessage() {} func (*ValidatorAccumulatedCommission) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{3} + return fileDescriptor_c35fab4e7d34756c, []int{3} } func (m *ValidatorAccumulatedCommission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -247,7 +247,7 @@ func (m *ValidatorOutstandingRewards) Reset() { *m = ValidatorOutstandin func (m *ValidatorOutstandingRewards) String() string { return proto.CompactTextString(m) } func (*ValidatorOutstandingRewards) ProtoMessage() {} func (*ValidatorOutstandingRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{4} + return fileDescriptor_c35fab4e7d34756c, []int{4} } func (m *ValidatorOutstandingRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -296,7 +296,7 @@ func (m *ValidatorSlashEvent) Reset() { *m = ValidatorSlashEvent{} } func (m *ValidatorSlashEvent) String() string { return proto.CompactTextString(m) } func (*ValidatorSlashEvent) ProtoMessage() {} func (*ValidatorSlashEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{5} + return fileDescriptor_c35fab4e7d34756c, []int{5} } func (m *ValidatorSlashEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -340,7 +340,7 @@ type ValidatorSlashEvents struct { func (m *ValidatorSlashEvents) Reset() { *m = ValidatorSlashEvents{} } func (*ValidatorSlashEvents) ProtoMessage() {} func (*ValidatorSlashEvents) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{6} + return fileDescriptor_c35fab4e7d34756c, []int{6} } func (m *ValidatorSlashEvents) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -385,7 +385,7 @@ func (m *FeePool) Reset() { *m = FeePool{} } func (m *FeePool) String() string { return proto.CompactTextString(m) } func (*FeePool) ProtoMessage() {} func (*FeePool) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{7} + return fileDescriptor_c35fab4e7d34756c, []int{7} } func (m *FeePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -434,7 +434,7 @@ type CommunityPoolSpendProposal struct { func (m *CommunityPoolSpendProposal) Reset() { *m = CommunityPoolSpendProposal{} } func (*CommunityPoolSpendProposal) ProtoMessage() {} func (*CommunityPoolSpendProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{8} + return fileDescriptor_c35fab4e7d34756c, []int{8} } func (m *CommunityPoolSpendProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +479,7 @@ func (m *DelegatorStartingInfo) Reset() { *m = DelegatorStartingInfo{} } func (m *DelegatorStartingInfo) String() string { return proto.CompactTextString(m) } func (*DelegatorStartingInfo) ProtoMessage() {} func (*DelegatorStartingInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{9} + return fileDescriptor_c35fab4e7d34756c, []int{9} } func (m *DelegatorStartingInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -533,7 +533,7 @@ func (m *DelegationDelegatorReward) Reset() { *m = DelegationDelegatorRe func (m *DelegationDelegatorReward) String() string { return proto.CompactTextString(m) } func (*DelegationDelegatorReward) ProtoMessage() {} func (*DelegationDelegatorReward) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{10} + return fileDescriptor_c35fab4e7d34756c, []int{10} } func (m *DelegationDelegatorReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -576,7 +576,7 @@ func (m *CommunityPoolSpendProposalWithDeposit) Reset() { *m = Community func (m *CommunityPoolSpendProposalWithDeposit) String() string { return proto.CompactTextString(m) } func (*CommunityPoolSpendProposalWithDeposit) ProtoMessage() {} func (*CommunityPoolSpendProposalWithDeposit) Descriptor() ([]byte, []int) { - return fileDescriptor_cd78a31ea281a992, []int{11} + return fileDescriptor_c35fab4e7d34756c, []int{11} } func (m *CommunityPoolSpendProposalWithDeposit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -606,95 +606,95 @@ func (m *CommunityPoolSpendProposalWithDeposit) XXX_DiscardUnknown() { var xxx_messageInfo_CommunityPoolSpendProposalWithDeposit proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "cosmos.distribution.v1beta1.Params") - proto.RegisterType((*ValidatorHistoricalRewards)(nil), "cosmos.distribution.v1beta1.ValidatorHistoricalRewards") - proto.RegisterType((*ValidatorCurrentRewards)(nil), "cosmos.distribution.v1beta1.ValidatorCurrentRewards") - proto.RegisterType((*ValidatorAccumulatedCommission)(nil), "cosmos.distribution.v1beta1.ValidatorAccumulatedCommission") - proto.RegisterType((*ValidatorOutstandingRewards)(nil), "cosmos.distribution.v1beta1.ValidatorOutstandingRewards") - proto.RegisterType((*ValidatorSlashEvent)(nil), "cosmos.distribution.v1beta1.ValidatorSlashEvent") - proto.RegisterType((*ValidatorSlashEvents)(nil), "cosmos.distribution.v1beta1.ValidatorSlashEvents") - proto.RegisterType((*FeePool)(nil), "cosmos.distribution.v1beta1.FeePool") - proto.RegisterType((*CommunityPoolSpendProposal)(nil), "cosmos.distribution.v1beta1.CommunityPoolSpendProposal") - proto.RegisterType((*DelegatorStartingInfo)(nil), "cosmos.distribution.v1beta1.DelegatorStartingInfo") - proto.RegisterType((*DelegationDelegatorReward)(nil), "cosmos.distribution.v1beta1.DelegationDelegatorReward") - proto.RegisterType((*CommunityPoolSpendProposalWithDeposit)(nil), "cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit") + proto.RegisterType((*Params)(nil), "lbm.distribution.v1beta1.Params") + proto.RegisterType((*ValidatorHistoricalRewards)(nil), "lbm.distribution.v1beta1.ValidatorHistoricalRewards") + proto.RegisterType((*ValidatorCurrentRewards)(nil), "lbm.distribution.v1beta1.ValidatorCurrentRewards") + proto.RegisterType((*ValidatorAccumulatedCommission)(nil), "lbm.distribution.v1beta1.ValidatorAccumulatedCommission") + proto.RegisterType((*ValidatorOutstandingRewards)(nil), "lbm.distribution.v1beta1.ValidatorOutstandingRewards") + proto.RegisterType((*ValidatorSlashEvent)(nil), "lbm.distribution.v1beta1.ValidatorSlashEvent") + proto.RegisterType((*ValidatorSlashEvents)(nil), "lbm.distribution.v1beta1.ValidatorSlashEvents") + proto.RegisterType((*FeePool)(nil), "lbm.distribution.v1beta1.FeePool") + proto.RegisterType((*CommunityPoolSpendProposal)(nil), "lbm.distribution.v1beta1.CommunityPoolSpendProposal") + proto.RegisterType((*DelegatorStartingInfo)(nil), "lbm.distribution.v1beta1.DelegatorStartingInfo") + proto.RegisterType((*DelegationDelegatorReward)(nil), "lbm.distribution.v1beta1.DelegationDelegatorReward") + proto.RegisterType((*CommunityPoolSpendProposalWithDeposit)(nil), "lbm.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit") } func init() { - proto.RegisterFile("cosmos/distribution/v1beta1/distribution.proto", fileDescriptor_cd78a31ea281a992) -} - -var fileDescriptor_cd78a31ea281a992 = []byte{ - // 1103 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xf6, 0x24, 0x8e, 0x93, 0x4e, 0xf3, 0xab, 0x13, 0x27, 0x71, 0x93, 0xe0, 0x8d, 0x46, 0xb4, - 0x4a, 0xa5, 0xd6, 0x26, 0xe1, 0x82, 0x22, 0x2e, 0xb1, 0x93, 0xaa, 0xe5, 0x87, 0x88, 0x36, 0x15, - 0x48, 0x5c, 0xac, 0xf1, 0xee, 0xc4, 0x1e, 0x75, 0xbd, 0x63, 0xcd, 0x8c, 0x9d, 0x44, 0x08, 0x89, - 0x23, 0x97, 0x0a, 0xb8, 0x21, 0xe0, 0x90, 0x1b, 0x3f, 0xc4, 0x1f, 0xd2, 0x63, 0xb9, 0x01, 0x87, - 0x05, 0x25, 0x17, 0xc4, 0xd1, 0x17, 0xae, 0x68, 0x77, 0x66, 0x77, 0x6d, 0xd7, 0x94, 0xb8, 0x52, - 0x6f, 0xde, 0x6f, 0xde, 0x7c, 0xf3, 0xbd, 0xef, 0x3d, 0xbf, 0x19, 0x58, 0x72, 0xb8, 0x6c, 0x71, - 0x59, 0x76, 0x99, 0x54, 0x82, 0xd5, 0x3b, 0x8a, 0x71, 0xbf, 0xdc, 0xdd, 0xae, 0x53, 0x45, 0xb6, - 0x07, 0xc0, 0x52, 0x5b, 0x70, 0xc5, 0xd1, 0xba, 0x8e, 0x2f, 0x0d, 0x2c, 0x99, 0xf8, 0xb5, 0x7c, - 0x83, 0x37, 0x78, 0x14, 0x57, 0x0e, 0x7f, 0xe9, 0x2d, 0x6b, 0x45, 0x73, 0x44, 0x9d, 0x48, 0x9a, - 0x50, 0x3b, 0x9c, 0x19, 0x4a, 0xfc, 0xcb, 0x24, 0xcc, 0x1d, 0x12, 0x41, 0x5a, 0x12, 0x31, 0x38, - 0xe7, 0xf0, 0x56, 0xab, 0xe3, 0x33, 0x75, 0x56, 0x53, 0xe4, 0xb4, 0x00, 0x36, 0xc1, 0xd6, 0xb5, - 0xca, 0xfe, 0xd3, 0xc0, 0xca, 0xfc, 0x1e, 0x58, 0xaf, 0x37, 0x98, 0x6a, 0x76, 0xea, 0x25, 0x87, - 0xb7, 0xca, 0x1e, 0xf3, 0x69, 0xd9, 0xab, 0xb7, 0xee, 0x49, 0xf7, 0x71, 0xb9, 0xbb, 0x53, 0x56, - 0x67, 0x6d, 0x2a, 0x4b, 0xfb, 0xd4, 0xe9, 0x05, 0x56, 0xfe, 0x8c, 0xb4, 0xbc, 0x5d, 0x3c, 0x40, - 0x85, 0xed, 0xd9, 0xe4, 0xfb, 0x11, 0x39, 0x45, 0x9f, 0xc2, 0x7c, 0x28, 0xa8, 0xd6, 0x16, 0xbc, - 0xcd, 0x25, 0x15, 0x35, 0x41, 0x4f, 0x88, 0x70, 0x0b, 0x13, 0xd1, 0x89, 0xef, 0x8e, 0x79, 0xe2, - 0xba, 0x3e, 0x71, 0x14, 0x23, 0xb6, 0x51, 0x08, 0x1f, 0x1a, 0xd4, 0x8e, 0x40, 0xf4, 0x19, 0x80, - 0xcb, 0x75, 0xee, 0x77, 0xe4, 0x73, 0x02, 0x26, 0x23, 0x01, 0xef, 0x8d, 0x29, 0x60, 0xc3, 0x08, - 0x18, 0x45, 0x89, 0xed, 0xa5, 0x08, 0x1f, 0x92, 0xf0, 0x08, 0x2e, 0x9f, 0x30, 0xd5, 0x74, 0x05, - 0x39, 0xa9, 0x11, 0xd7, 0x15, 0x35, 0xea, 0x93, 0xba, 0x47, 0xdd, 0x42, 0x76, 0x13, 0x6c, 0xcd, - 0x54, 0x36, 0x53, 0xd6, 0x91, 0x61, 0xd8, 0x5e, 0x8a, 0xf1, 0x3d, 0xd7, 0x15, 0x07, 0x1a, 0xdd, - 0xcd, 0x7e, 0x7d, 0x6e, 0x65, 0xf0, 0x93, 0x09, 0xb8, 0xf6, 0x21, 0xf1, 0x98, 0x4b, 0x14, 0x17, - 0x0f, 0x98, 0x54, 0x5c, 0x30, 0x87, 0x78, 0xfa, 0x64, 0x89, 0x7e, 0x04, 0x70, 0xd5, 0xe9, 0xb4, - 0x3a, 0x1e, 0x51, 0xac, 0x4b, 0x8d, 0xcc, 0x9a, 0x20, 0x8a, 0xf1, 0x02, 0xd8, 0x9c, 0xdc, 0xba, - 0xbe, 0xb3, 0x61, 0x1a, 0xb3, 0x14, 0x7a, 0x17, 0x37, 0x58, 0x98, 0x6b, 0x95, 0x33, 0xbf, 0x72, - 0x14, 0xba, 0xd3, 0x0b, 0xac, 0xa2, 0x29, 0xf4, 0x68, 0x2a, 0xfc, 0xd3, 0x1f, 0xd6, 0x9d, 0xab, - 0xf8, 0x17, 0x72, 0x4a, 0x7b, 0x39, 0xa5, 0xd1, 0x3a, 0xed, 0x90, 0x04, 0x55, 0xe1, 0x82, 0xa0, - 0xc7, 0x54, 0x50, 0xdf, 0xa1, 0x35, 0x87, 0x77, 0x7c, 0x15, 0xf5, 0xc8, 0x5c, 0x65, 0xad, 0x17, - 0x58, 0x2b, 0x5a, 0xc0, 0x50, 0x00, 0xb6, 0xe7, 0x13, 0xa4, 0x1a, 0x01, 0xdf, 0x01, 0xb8, 0x9a, - 0xf8, 0x51, 0xed, 0x08, 0x41, 0x7d, 0x15, 0x9b, 0xc1, 0xe0, 0xb4, 0x56, 0x2d, 0xaf, 0x94, 0xfb, - 0x76, 0x98, 0xfb, 0x78, 0x99, 0xc5, 0xfc, 0x68, 0x05, 0xe6, 0xda, 0x54, 0x30, 0xae, 0xdb, 0x3c, - 0x6b, 0x9b, 0x2f, 0xfc, 0x15, 0x80, 0xc5, 0x44, 0xde, 0x9e, 0x63, 0x8c, 0xa0, 0x6e, 0x95, 0xb7, - 0x5a, 0x4c, 0x4a, 0xc6, 0x7d, 0xc4, 0x21, 0x74, 0x92, 0xaf, 0x57, 0x25, 0xb4, 0xef, 0x08, 0xfc, - 0x0d, 0x80, 0xeb, 0x89, 0xa6, 0x0f, 0x3a, 0x4a, 0x2a, 0xe2, 0xbb, 0xcc, 0x6f, 0xc4, 0xb6, 0x7d, - 0x32, 0x9e, 0x6d, 0x55, 0xd3, 0x32, 0xf3, 0x71, 0xc5, 0xa2, 0xad, 0xf8, 0xe5, 0x8c, 0xc4, 0xdf, - 0x03, 0xb8, 0x94, 0x88, 0x3b, 0xf2, 0x88, 0x6c, 0x1e, 0x74, 0xa9, 0xaf, 0xd0, 0x7d, 0xb8, 0xd8, - 0x8d, 0xe1, 0x9a, 0xb1, 0x3a, 0x9c, 0x61, 0xd9, 0xca, 0x7a, 0x2f, 0xb0, 0x56, 0xf5, 0xd9, 0xc3, - 0x11, 0xd8, 0x5e, 0x48, 0xa0, 0xc3, 0x08, 0x41, 0x0f, 0xe0, 0xcc, 0xb1, 0x20, 0x4e, 0x38, 0x5d, - 0xcd, 0x44, 0xba, 0x3b, 0xce, 0x40, 0xb0, 0x93, 0xdd, 0xf8, 0x67, 0x00, 0xf3, 0x23, 0x94, 0x4a, - 0xf4, 0x04, 0xc0, 0x95, 0x54, 0x89, 0x0c, 0x57, 0x6a, 0x34, 0x5a, 0x32, 0x7e, 0xbe, 0x51, 0x7a, - 0xc1, 0xac, 0x2f, 0x8d, 0xe0, 0xac, 0xdc, 0x32, 0x1e, 0xbf, 0x36, 0x9c, 0x67, 0x3f, 0x3b, 0xb6, - 0xf3, 0xdd, 0x11, 0x7a, 0xcc, 0xe0, 0xf8, 0x16, 0xc0, 0xe9, 0xfb, 0x94, 0x1e, 0x72, 0xee, 0xa1, - 0x2f, 0x00, 0x9c, 0x4f, 0x67, 0x78, 0x9b, 0x73, 0xef, 0x4a, 0x95, 0x7e, 0xc7, 0xa8, 0x58, 0x1e, - 0xbe, 0x05, 0x42, 0x86, 0x31, 0x0b, 0x9e, 0x5e, 0x47, 0xa1, 0x22, 0x7c, 0x09, 0xe0, 0x5a, 0xb5, - 0x1f, 0x39, 0x6a, 0x53, 0xdf, 0xd5, 0x73, 0x95, 0x78, 0x28, 0x0f, 0xa7, 0x14, 0x53, 0x1e, 0xd5, - 0xd7, 0x96, 0xad, 0x3f, 0xd0, 0x26, 0xbc, 0xee, 0x52, 0xe9, 0x08, 0xd6, 0x4e, 0xcb, 0x69, 0xf7, - 0x43, 0x68, 0x03, 0x5e, 0x13, 0xd4, 0x61, 0x6d, 0x46, 0x7d, 0xa5, 0xe7, 0xbf, 0x9d, 0x02, 0x88, - 0xc0, 0x1c, 0x69, 0x45, 0x73, 0x27, 0x1b, 0x65, 0x7f, 0x73, 0x64, 0xf6, 0x51, 0xea, 0x25, 0xf3, - 0x97, 0xbb, 0xfd, 0xbf, 0x19, 0xea, 0xf4, 0x0c, 0xf1, 0xee, 0xec, 0xe7, 0xe7, 0x56, 0x26, 0xf4, - 0xff, 0xaf, 0xb0, 0x06, 0xff, 0x00, 0xb8, 0xbc, 0x4f, 0x3d, 0xda, 0x88, 0x4a, 0xa4, 0x88, 0x50, - 0xcc, 0x6f, 0x3c, 0xf4, 0x8f, 0xa3, 0x59, 0xd8, 0x16, 0xb4, 0xcb, 0x78, 0x78, 0xc9, 0xf4, 0x77, - 0x77, 0xdf, 0x2c, 0x1c, 0x0a, 0xc0, 0xf6, 0x7c, 0x8c, 0x98, 0xde, 0xb6, 0xe1, 0x94, 0x54, 0xe4, - 0x31, 0x35, 0x8d, 0xfd, 0xf6, 0x98, 0x37, 0xdd, 0xac, 0x3e, 0x26, 0xa2, 0xc0, 0xb6, 0xa6, 0x42, - 0x07, 0x30, 0xd7, 0xa4, 0xac, 0xd1, 0xd4, 0xf6, 0x65, 0x2b, 0xf7, 0xfe, 0x0e, 0xac, 0x05, 0x47, - 0xd0, 0x70, 0x82, 0xfb, 0x35, 0xbd, 0x94, 0x4a, 0x1c, 0x5a, 0xc0, 0xb6, 0xd9, 0x8c, 0x7f, 0x03, - 0xf0, 0xa6, 0xc9, 0x9c, 0x71, 0x3f, 0xf1, 0xc0, 0x5c, 0x98, 0x0f, 0xe1, 0x8d, 0xb4, 0xa5, 0xc3, - 0xab, 0x90, 0x4a, 0x69, 0x5e, 0x28, 0x1b, 0xbd, 0xc0, 0x2a, 0x0c, 0x77, 0xbd, 0x09, 0xc1, 0x76, - 0x3a, 0x13, 0xf6, 0x34, 0x84, 0x1a, 0x30, 0x97, 0xbc, 0x37, 0x5e, 0xc9, 0x24, 0x35, 0xf4, 0xbb, - 0x33, 0xa6, 0xb2, 0x00, 0x9f, 0x4f, 0xc0, 0x5b, 0xff, 0xdd, 0xbb, 0x1f, 0x31, 0xd5, 0xdc, 0xa7, - 0x6d, 0x2e, 0x99, 0x42, 0xb7, 0x07, 0xda, 0xb8, 0xb2, 0x98, 0x9a, 0x1e, 0xc1, 0x38, 0x6e, 0xec, - 0xb7, 0x46, 0x34, 0x76, 0x65, 0xa5, 0x17, 0x58, 0x48, 0x47, 0xf7, 0x2d, 0xe2, 0xc1, 0x86, 0xdf, - 0x79, 0xae, 0xe1, 0x2b, 0xf9, 0x5e, 0x60, 0x2d, 0xc6, 0xb3, 0xd9, 0x2c, 0xe1, 0xfe, 0xbf, 0xc1, - 0x9d, 0xbe, 0xbf, 0x41, 0xb8, 0xe1, 0x46, 0x2f, 0xb0, 0xe6, 0xf4, 0x06, 0x8d, 0xe3, 0xb8, 0x9d, - 0xd1, 0x5d, 0x38, 0xed, 0xea, 0x5c, 0x0a, 0x53, 0x51, 0x2c, 0x4a, 0x07, 0xbf, 0x59, 0xc0, 0x76, - 0x1c, 0x92, 0x5a, 0x54, 0x79, 0xff, 0x87, 0x8b, 0x22, 0x78, 0x7a, 0x51, 0x04, 0xcf, 0x2e, 0x8a, - 0xe0, 0xcf, 0x8b, 0x22, 0xf8, 0xf2, 0xb2, 0x98, 0x79, 0x76, 0x59, 0xcc, 0xfc, 0x7a, 0x59, 0xcc, - 0x7c, 0x5c, 0x7e, 0x81, 0xfb, 0xa7, 0x83, 0x0f, 0xe8, 0xa8, 0x18, 0xf5, 0x5c, 0xf4, 0xbe, 0x7d, - 0xf3, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x26, 0x0f, 0x93, 0x64, 0x0b, 0x00, 0x00, + proto.RegisterFile("lbm/distribution/v1beta1/distribution.proto", fileDescriptor_c35fab4e7d34756c) +} + +var fileDescriptor_c35fab4e7d34756c = []byte{ + // 1102 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6f, 0x1b, 0x45, + 0x1c, 0xf5, 0xb6, 0x8e, 0x93, 0x4e, 0xf3, 0xd5, 0x89, 0x93, 0xb8, 0x49, 0xf0, 0x46, 0x23, 0x5a, + 0xa5, 0xa2, 0xb1, 0x95, 0x70, 0x41, 0x11, 0x97, 0xd8, 0x49, 0xd5, 0xf2, 0x21, 0xa2, 0x4d, 0x05, + 0x12, 0x07, 0xac, 0xf1, 0xee, 0xc4, 0x1e, 0x75, 0x77, 0xc7, 0x9a, 0x19, 0x3b, 0xc9, 0x01, 0x89, + 0x23, 0xaa, 0x10, 0xe2, 0x46, 0xb9, 0xe5, 0xc4, 0xd7, 0x5f, 0xd2, 0x63, 0xb9, 0x20, 0xc4, 0xc1, + 0x54, 0xc9, 0x05, 0x71, 0xf4, 0x85, 0x2b, 0x9a, 0x9d, 0xd9, 0x5d, 0xdb, 0x71, 0x09, 0x46, 0x70, + 0xf3, 0xbe, 0xf9, 0xed, 0x9b, 0xf7, 0x7b, 0xf3, 0xf3, 0x9b, 0x05, 0x6f, 0xf8, 0xf5, 0xa0, 0xec, + 0x51, 0x21, 0x39, 0xad, 0xb7, 0x25, 0x65, 0x61, 0xb9, 0xb3, 0x55, 0x27, 0x12, 0x6f, 0x0d, 0x80, + 0xa5, 0x16, 0x67, 0x92, 0xc1, 0x82, 0x5f, 0x0f, 0x4a, 0x03, 0xb8, 0x29, 0x5e, 0xc9, 0x37, 0x58, + 0x83, 0x45, 0x45, 0x65, 0xf5, 0x4b, 0xd7, 0xaf, 0xac, 0x2a, 0xf2, 0x3a, 0x16, 0x24, 0x21, 0x75, + 0x19, 0x35, 0x64, 0xe8, 0xa7, 0xeb, 0x20, 0x77, 0x80, 0x39, 0x0e, 0x04, 0xa4, 0x60, 0xc6, 0x65, + 0x41, 0xd0, 0x0e, 0xa9, 0x3c, 0xad, 0x49, 0x7c, 0x52, 0xb0, 0xd6, 0xad, 0x8d, 0x1b, 0x95, 0xbd, + 0xe7, 0x5d, 0x3b, 0xf3, 0x6b, 0xd7, 0x7e, 0xbd, 0x41, 0x65, 0xb3, 0x5d, 0x2f, 0xb9, 0x2c, 0x28, + 0xfb, 0x34, 0x24, 0x65, 0xbf, 0x1e, 0x6c, 0x0a, 0xef, 0x49, 0xb9, 0xb3, 0x5d, 0x96, 0xa7, 0x2d, + 0x22, 0x4a, 0x7b, 0xc4, 0xed, 0x75, 0xed, 0xfc, 0x29, 0x0e, 0xfc, 0x1d, 0x34, 0x40, 0x85, 0x9c, + 0xe9, 0xe4, 0xf9, 0x31, 0x3e, 0x81, 0x9f, 0x82, 0xbc, 0x12, 0x54, 0x6b, 0x71, 0xd6, 0x62, 0x82, + 0xf0, 0x1a, 0x27, 0xc7, 0x98, 0x7b, 0x85, 0x6b, 0xd1, 0x8e, 0xef, 0x8e, 0xb9, 0xe3, 0xaa, 0xde, + 0x71, 0x14, 0x23, 0x72, 0xa0, 0x82, 0x0f, 0x0c, 0xea, 0x44, 0x20, 0xfc, 0xcc, 0x02, 0x8b, 0x75, + 0x16, 0xb6, 0xc5, 0x25, 0x01, 0xd7, 0x23, 0x01, 0xef, 0x8d, 0x29, 0x60, 0xcd, 0x08, 0x18, 0x45, + 0x89, 0x9c, 0x85, 0x08, 0x1f, 0x92, 0xf0, 0x18, 0x2c, 0x1e, 0x53, 0xd9, 0xf4, 0x38, 0x3e, 0xae, + 0x61, 0xcf, 0xe3, 0x35, 0x12, 0xe2, 0xba, 0x4f, 0xbc, 0x42, 0x76, 0xdd, 0xda, 0x98, 0xaa, 0xac, + 0xa7, 0xac, 0x23, 0xcb, 0x90, 0xb3, 0x10, 0xe3, 0xbb, 0x9e, 0xc7, 0xf7, 0x35, 0xba, 0x93, 0x7d, + 0x76, 0x66, 0x67, 0xd0, 0xd3, 0x6b, 0x60, 0xe5, 0x43, 0xec, 0x53, 0x0f, 0x4b, 0xc6, 0x1f, 0x52, + 0x21, 0x19, 0xa7, 0x2e, 0xf6, 0xf5, 0xce, 0x02, 0x7e, 0x6b, 0x81, 0x65, 0xb7, 0x1d, 0xb4, 0x7d, + 0x2c, 0x69, 0x87, 0x18, 0x99, 0x35, 0x8e, 0x25, 0x65, 0x05, 0x6b, 0xfd, 0xfa, 0xc6, 0xcd, 0xed, + 0xdb, 0x25, 0x35, 0x62, 0xca, 0xb8, 0x78, 0xb4, 0x54, 0xa3, 0x55, 0x46, 0xc3, 0xca, 0xa1, 0xb2, + 0xa6, 0xd7, 0xb5, 0x8b, 0xe6, 0x94, 0x47, 0xf3, 0xa0, 0x1f, 0x7f, 0xb3, 0xef, 0xfd, 0x13, 0xf3, + 0x14, 0xa7, 0x70, 0x16, 0x53, 0x1a, 0x2d, 0xd2, 0x51, 0x24, 0xb0, 0x0a, 0xe6, 0x38, 0x39, 0x22, + 0x9c, 0x84, 0x2e, 0xa9, 0xb9, 0xac, 0x1d, 0xca, 0x68, 0x40, 0x66, 0x2a, 0x2b, 0xbd, 0xae, 0xbd, + 0xa4, 0x05, 0x0c, 0x15, 0x20, 0x67, 0x36, 0x41, 0xaa, 0x11, 0xf0, 0x8d, 0x05, 0x96, 0x13, 0x33, + 0xaa, 0x6d, 0xce, 0x49, 0x28, 0x63, 0x27, 0x8e, 0xc0, 0xa4, 0x56, 0x2d, 0xae, 0x6e, 0x7c, 0x4b, + 0x35, 0x3e, 0x5e, 0x5b, 0x31, 0x39, 0x5c, 0x02, 0xb9, 0x16, 0xe1, 0x94, 0xe9, 0x01, 0xcf, 0x3a, + 0xe6, 0x09, 0x7d, 0x69, 0x81, 0x62, 0xa2, 0x6d, 0xd7, 0x35, 0x2e, 0x10, 0xaf, 0xca, 0x82, 0x80, + 0x0a, 0x41, 0x59, 0x08, 0x7d, 0x00, 0xdc, 0xe4, 0xe9, 0x7f, 0x51, 0xd9, 0xc7, 0x8f, 0xbe, 0xb6, + 0xc0, 0x6a, 0x22, 0xe8, 0x83, 0xb6, 0x14, 0x12, 0x87, 0x1e, 0x0d, 0x1b, 0xb1, 0x61, 0x27, 0x63, + 0x18, 0x56, 0x35, 0x93, 0x32, 0x1b, 0x1f, 0x54, 0xf4, 0x1e, 0xfa, 0x77, 0x16, 0xa2, 0xef, 0x2c, + 0xb0, 0x90, 0x28, 0x3b, 0xf4, 0xb1, 0x68, 0xee, 0x77, 0x48, 0x28, 0xe1, 0x03, 0x30, 0xdf, 0x89, + 0xe1, 0x9a, 0x31, 0x59, 0xe5, 0x56, 0xb6, 0xb2, 0xda, 0xeb, 0xda, 0xcb, 0x7a, 0xef, 0xe1, 0x0a, + 0xe4, 0xcc, 0x25, 0xd0, 0x41, 0x84, 0xc0, 0x87, 0x60, 0xea, 0x88, 0x63, 0x57, 0xc5, 0xa9, 0x49, + 0xa1, 0xfb, 0xe3, 0x84, 0x80, 0x93, 0xbc, 0x8d, 0x7e, 0xb0, 0x40, 0x7e, 0x84, 0x52, 0x01, 0x9f, + 0x5a, 0x60, 0x29, 0x55, 0x22, 0xd4, 0x4a, 0x8d, 0x44, 0x4b, 0xc6, 0xcc, 0xcd, 0xd2, 0xab, 0x92, + 0xbd, 0x34, 0x82, 0xb0, 0x72, 0xc7, 0x18, 0xfc, 0xda, 0x70, 0x93, 0xfd, 0xd4, 0xc8, 0xc9, 0x77, + 0x46, 0x88, 0x31, 0x49, 0xf1, 0xcc, 0x02, 0x93, 0x0f, 0x08, 0x39, 0x60, 0xcc, 0x87, 0x5f, 0x58, + 0x60, 0x36, 0x0d, 0xed, 0x16, 0x63, 0xfe, 0xd5, 0x67, 0xfc, 0x8e, 0x91, 0xb0, 0x38, 0x9c, 0xf9, + 0xea, 0xf5, 0x31, 0x8f, 0x3a, 0xbd, 0x7c, 0x94, 0x1c, 0xf4, 0xd2, 0x02, 0x2b, 0xd5, 0x7e, 0xe4, + 0xb0, 0x45, 0x42, 0x4f, 0xa7, 0x28, 0xf6, 0x61, 0x1e, 0x4c, 0x48, 0x2a, 0x7d, 0xa2, 0x2f, 0x29, + 0x47, 0x3f, 0xc0, 0x75, 0x70, 0xd3, 0x23, 0xc2, 0xe5, 0xb4, 0x95, 0x1e, 0xa4, 0xd3, 0x0f, 0xc1, + 0x35, 0x70, 0x83, 0x13, 0x97, 0xb6, 0x28, 0x09, 0xa5, 0x4e, 0x7b, 0x27, 0x05, 0xe0, 0x27, 0x20, + 0x87, 0x83, 0x28, 0x68, 0xb2, 0x51, 0xeb, 0x4b, 0x97, 0x5b, 0x8f, 0xfa, 0x2e, 0x99, 0xbf, 0xd9, + 0xdd, 0x2b, 0xdb, 0xd3, 0xbd, 0x19, 0xd6, 0x9d, 0xe9, 0xcf, 0xcf, 0xec, 0x8c, 0x72, 0xfe, 0x77, + 0xe5, 0xfe, 0x9f, 0x16, 0x58, 0xdc, 0x23, 0x3e, 0x69, 0x44, 0x87, 0x23, 0x31, 0x97, 0x34, 0x6c, + 0x3c, 0x0a, 0x8f, 0xa2, 0xe4, 0x6b, 0x71, 0xd2, 0xa1, 0x4c, 0xdd, 0x27, 0xfd, 0x43, 0xdd, 0x97, + 0x7c, 0x43, 0x05, 0xc8, 0x99, 0x8d, 0x11, 0x33, 0xd2, 0x0e, 0x98, 0x10, 0x12, 0x3f, 0x21, 0x66, + 0x9e, 0xdf, 0x1e, 0xf3, 0x52, 0x9b, 0xd6, 0xdb, 0x44, 0x14, 0xc8, 0xd1, 0x54, 0x70, 0x1f, 0xe4, + 0x9a, 0x84, 0x36, 0x9a, 0xda, 0xbb, 0x6c, 0x65, 0xf3, 0x8f, 0xae, 0x3d, 0xe7, 0x72, 0xa2, 0xf2, + 0x3a, 0xac, 0xe9, 0xa5, 0x54, 0xe2, 0xd0, 0x02, 0x72, 0xcc, 0xcb, 0xe8, 0x67, 0x0b, 0xdc, 0x36, + 0x9d, 0x53, 0x16, 0x26, 0x1e, 0x98, 0xbb, 0xf1, 0x11, 0xb8, 0x95, 0x0e, 0xb3, 0xba, 0xf5, 0x88, + 0x10, 0xe6, 0x63, 0x64, 0xad, 0xd7, 0xb5, 0x0b, 0xc3, 0xf3, 0x6e, 0x4a, 0x90, 0x93, 0x46, 0xc1, + 0xae, 0x86, 0xa0, 0x07, 0x72, 0xc9, 0xa7, 0xc5, 0x7f, 0x1f, 0x9d, 0x86, 0x7b, 0x67, 0xca, 0x1c, + 0xab, 0x85, 0xce, 0xae, 0x81, 0x3b, 0xaf, 0x9e, 0xda, 0x8f, 0xa8, 0x6c, 0xee, 0x91, 0x16, 0x13, + 0x54, 0xc2, 0xbb, 0x03, 0x03, 0x5c, 0x99, 0x4f, 0x1d, 0x8f, 0x60, 0x14, 0x8f, 0xf4, 0x5b, 0x23, + 0x46, 0xba, 0xb2, 0xd4, 0xeb, 0xda, 0x50, 0x57, 0xf7, 0x2d, 0xa2, 0xc1, 0x51, 0xdf, 0xbe, 0x34, + 0xea, 0x95, 0x7c, 0xaf, 0x6b, 0xcf, 0xc7, 0x79, 0x6c, 0x96, 0x50, 0xff, 0x1f, 0xe0, 0x5e, 0xdf, + 0x1f, 0x40, 0xbd, 0x70, 0xab, 0xd7, 0xb5, 0x67, 0xf4, 0x0b, 0x1a, 0x47, 0xf1, 0x2c, 0xc3, 0xfb, + 0x60, 0xd2, 0xd3, 0xbd, 0x14, 0x26, 0xa2, 0x5a, 0x98, 0x86, 0xbd, 0x59, 0x40, 0x4e, 0x5c, 0x92, + 0x5a, 0x54, 0x79, 0xff, 0xfb, 0xf3, 0xa2, 0xf5, 0xfc, 0xbc, 0x68, 0xbd, 0x38, 0x2f, 0x5a, 0x2f, + 0xcf, 0x8b, 0xd6, 0x57, 0x17, 0xc5, 0xcc, 0x8b, 0x8b, 0x62, 0xe6, 0x97, 0x8b, 0x62, 0xe6, 0xe3, + 0xf2, 0xdf, 0xb8, 0x7f, 0x32, 0xf8, 0x89, 0x1c, 0x1d, 0x46, 0x3d, 0x17, 0x7d, 0xc7, 0xbe, 0xf9, + 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0xad, 0x9a, 0xa2, 0x93, 0x43, 0x0b, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/distribution/types/genesis.pb.go b/x/distribution/types/genesis.pb.go index 2d2d1fd40e..e6ff23b7f9 100644 --- a/x/distribution/types/genesis.pb.go +++ b/x/distribution/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/v1beta1/genesis.proto +// source: lbm/distribution/v1beta1/genesis.proto package types @@ -39,7 +39,7 @@ func (m *DelegatorWithdrawInfo) Reset() { *m = DelegatorWithdrawInfo{} } func (m *DelegatorWithdrawInfo) String() string { return proto.CompactTextString(m) } func (*DelegatorWithdrawInfo) ProtoMessage() {} func (*DelegatorWithdrawInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{0} + return fileDescriptor_b2dc6994b6fb2b87, []int{0} } func (m *DelegatorWithdrawInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *ValidatorOutstandingRewardsRecord) Reset() { *m = ValidatorOuts func (m *ValidatorOutstandingRewardsRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorOutstandingRewardsRecord) ProtoMessage() {} func (*ValidatorOutstandingRewardsRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{1} + return fileDescriptor_b2dc6994b6fb2b87, []int{1} } func (m *ValidatorOutstandingRewardsRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *ValidatorAccumulatedCommissionRecord) Reset() { *m = ValidatorA func (m *ValidatorAccumulatedCommissionRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorAccumulatedCommissionRecord) ProtoMessage() {} func (*ValidatorAccumulatedCommissionRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{2} + return fileDescriptor_b2dc6994b6fb2b87, []int{2} } func (m *ValidatorAccumulatedCommissionRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -166,7 +166,7 @@ func (m *ValidatorHistoricalRewardsRecord) Reset() { *m = ValidatorHisto func (m *ValidatorHistoricalRewardsRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorHistoricalRewardsRecord) ProtoMessage() {} func (*ValidatorHistoricalRewardsRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{3} + return fileDescriptor_b2dc6994b6fb2b87, []int{3} } func (m *ValidatorHistoricalRewardsRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -207,7 +207,7 @@ func (m *ValidatorCurrentRewardsRecord) Reset() { *m = ValidatorCurrentR func (m *ValidatorCurrentRewardsRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorCurrentRewardsRecord) ProtoMessage() {} func (*ValidatorCurrentRewardsRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{4} + return fileDescriptor_b2dc6994b6fb2b87, []int{4} } func (m *ValidatorCurrentRewardsRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -250,7 +250,7 @@ func (m *DelegatorStartingInfoRecord) Reset() { *m = DelegatorStartingIn func (m *DelegatorStartingInfoRecord) String() string { return proto.CompactTextString(m) } func (*DelegatorStartingInfoRecord) ProtoMessage() {} func (*DelegatorStartingInfoRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{5} + return fileDescriptor_b2dc6994b6fb2b87, []int{5} } func (m *DelegatorStartingInfoRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -295,7 +295,7 @@ func (m *ValidatorSlashEventRecord) Reset() { *m = ValidatorSlashEventRe func (m *ValidatorSlashEventRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorSlashEventRecord) ProtoMessage() {} func (*ValidatorSlashEventRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{6} + return fileDescriptor_b2dc6994b6fb2b87, []int{6} } func (m *ValidatorSlashEventRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -352,7 +352,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_76eed0f9489db580, []int{7} + return fileDescriptor_b2dc6994b6fb2b87, []int{7} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -382,87 +382,87 @@ func (m *GenesisState) XXX_DiscardUnknown() { var xxx_messageInfo_GenesisState proto.InternalMessageInfo func init() { - proto.RegisterType((*DelegatorWithdrawInfo)(nil), "cosmos.distribution.v1beta1.DelegatorWithdrawInfo") - proto.RegisterType((*ValidatorOutstandingRewardsRecord)(nil), "cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord") - proto.RegisterType((*ValidatorAccumulatedCommissionRecord)(nil), "cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord") - proto.RegisterType((*ValidatorHistoricalRewardsRecord)(nil), "cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord") - proto.RegisterType((*ValidatorCurrentRewardsRecord)(nil), "cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord") - proto.RegisterType((*DelegatorStartingInfoRecord)(nil), "cosmos.distribution.v1beta1.DelegatorStartingInfoRecord") - proto.RegisterType((*ValidatorSlashEventRecord)(nil), "cosmos.distribution.v1beta1.ValidatorSlashEventRecord") - proto.RegisterType((*GenesisState)(nil), "cosmos.distribution.v1beta1.GenesisState") + proto.RegisterType((*DelegatorWithdrawInfo)(nil), "lbm.distribution.v1beta1.DelegatorWithdrawInfo") + proto.RegisterType((*ValidatorOutstandingRewardsRecord)(nil), "lbm.distribution.v1beta1.ValidatorOutstandingRewardsRecord") + proto.RegisterType((*ValidatorAccumulatedCommissionRecord)(nil), "lbm.distribution.v1beta1.ValidatorAccumulatedCommissionRecord") + proto.RegisterType((*ValidatorHistoricalRewardsRecord)(nil), "lbm.distribution.v1beta1.ValidatorHistoricalRewardsRecord") + proto.RegisterType((*ValidatorCurrentRewardsRecord)(nil), "lbm.distribution.v1beta1.ValidatorCurrentRewardsRecord") + proto.RegisterType((*DelegatorStartingInfoRecord)(nil), "lbm.distribution.v1beta1.DelegatorStartingInfoRecord") + proto.RegisterType((*ValidatorSlashEventRecord)(nil), "lbm.distribution.v1beta1.ValidatorSlashEventRecord") + proto.RegisterType((*GenesisState)(nil), "lbm.distribution.v1beta1.GenesisState") } func init() { - proto.RegisterFile("cosmos/distribution/v1beta1/genesis.proto", fileDescriptor_76eed0f9489db580) -} - -var fileDescriptor_76eed0f9489db580 = []byte{ - // 1031 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcd, 0x6f, 0x1b, 0x45, - 0x1c, 0xf5, 0x3a, 0x25, 0x49, 0xc7, 0x29, 0x0d, 0xdb, 0x7c, 0xb8, 0x4e, 0x6a, 0xa7, 0xd3, 0x22, - 0x52, 0x21, 0xbc, 0xad, 0x41, 0x80, 0x82, 0x40, 0xca, 0xa6, 0x14, 0x7a, 0x40, 0x8d, 0x26, 0x12, - 0x20, 0x2e, 0xd6, 0x7a, 0x77, 0x6c, 0x8f, 0x58, 0xef, 0x58, 0x3b, 0xe3, 0x0d, 0xe1, 0x1f, 0x80, - 0x23, 0x12, 0xe2, 0x80, 0x40, 0x28, 0x47, 0x84, 0x38, 0xf6, 0xce, 0xb5, 0xc7, 0x1e, 0x39, 0xa0, - 0x80, 0x92, 0x0b, 0xe7, 0x1c, 0x38, 0x70, 0x42, 0x3b, 0x33, 0xfb, 0x65, 0xaf, 0x8d, 0x93, 0x36, - 0x37, 0x7b, 0xfc, 0xdb, 0xf7, 0xde, 0xef, 0xcd, 0xef, 0x63, 0x0d, 0xee, 0xd8, 0x94, 0xf5, 0x28, - 0x33, 0x1c, 0xc2, 0xb8, 0x4f, 0x5a, 0x03, 0x4e, 0xa8, 0x67, 0x04, 0xf7, 0x5a, 0x98, 0x5b, 0xf7, - 0x8c, 0x0e, 0xf6, 0x30, 0x23, 0xac, 0xde, 0xf7, 0x29, 0xa7, 0xfa, 0x9a, 0x0c, 0xad, 0xa7, 0x43, - 0xeb, 0x2a, 0xb4, 0xb2, 0xd4, 0xa1, 0x1d, 0x2a, 0xe2, 0x8c, 0xf0, 0x93, 0x7c, 0xa4, 0x52, 0x55, - 0xe8, 0x2d, 0x8b, 0xe1, 0x18, 0xd5, 0xa6, 0xc4, 0x53, 0xbf, 0xd7, 0x27, 0xb1, 0x67, 0x78, 0x44, - 0x3c, 0x7c, 0xac, 0x81, 0xe5, 0xfb, 0xd8, 0xc5, 0x1d, 0x8b, 0x53, 0xff, 0x13, 0xc2, 0xbb, 0x8e, - 0x6f, 0xed, 0x3f, 0xf4, 0xda, 0x54, 0x7f, 0x08, 0x5e, 0x72, 0xa2, 0x1f, 0x9a, 0x96, 0xe3, 0xf8, - 0x98, 0xb1, 0xb2, 0xb6, 0xa1, 0x6d, 0x5e, 0x36, 0xd7, 0x4f, 0x8f, 0x6a, 0xe5, 0x03, 0xab, 0xe7, - 0x6e, 0xc1, 0x91, 0x10, 0x88, 0x16, 0xe3, 0xb3, 0x6d, 0x79, 0xa4, 0x3f, 0x00, 0x8b, 0xfb, 0x0a, - 0x3a, 0x46, 0x2a, 0x0a, 0xa4, 0xb5, 0xd3, 0xa3, 0xda, 0xaa, 0x44, 0x1a, 0x8e, 0x80, 0xe8, 0x6a, - 0x74, 0xa4, 0x70, 0xb6, 0xe6, 0xbf, 0x3e, 0xac, 0x15, 0xfe, 0x3e, 0xac, 0x15, 0xe0, 0xf7, 0x45, - 0x70, 0xf3, 0x63, 0xcb, 0x25, 0x4e, 0x48, 0xf3, 0x68, 0xc0, 0x19, 0xb7, 0x3c, 0x87, 0x78, 0x1d, - 0x84, 0xf7, 0x2d, 0xdf, 0x61, 0x08, 0xdb, 0xd4, 0x77, 0xc2, 0x14, 0x82, 0x28, 0x68, 0x7c, 0x0a, - 0x23, 0x21, 0x10, 0x2d, 0xc6, 0x67, 0x51, 0x0a, 0x3f, 0x69, 0xe0, 0x1a, 0x4d, 0x78, 0x9a, 0xbe, - 0x24, 0x2a, 0x17, 0x37, 0x66, 0x36, 0x4b, 0x8d, 0x75, 0x65, 0x7b, 0x3d, 0xbc, 0x96, 0xe8, 0x06, - 0xeb, 0xf7, 0xb1, 0xbd, 0x43, 0x89, 0x67, 0x3e, 0x7a, 0x72, 0x54, 0x2b, 0x9c, 0x1e, 0xd5, 0x2a, - 0x92, 0x2f, 0x07, 0x06, 0xfe, 0xf2, 0x67, 0xed, 0x4e, 0x87, 0xf0, 0xee, 0xa0, 0x55, 0xb7, 0x69, - 0xcf, 0x70, 0x89, 0x87, 0x0d, 0xb7, 0xd5, 0x7b, 0x8d, 0x39, 0x9f, 0x1b, 0x41, 0xc3, 0xe0, 0x07, - 0x7d, 0xcc, 0x22, 0x3c, 0x86, 0x74, 0x3a, 0x92, 0x71, 0xca, 0x9b, 0x7f, 0x34, 0x70, 0x3b, 0xf6, - 0x66, 0xdb, 0xb6, 0x07, 0xbd, 0x81, 0x6b, 0x71, 0xec, 0xec, 0xd0, 0x5e, 0x8f, 0x30, 0x46, 0xa8, - 0xf7, 0xfc, 0xed, 0x39, 0x00, 0x25, 0x2b, 0x61, 0x12, 0x97, 0x5b, 0x6a, 0xbc, 0x53, 0x9f, 0x50, - 0xdf, 0xf5, 0xc9, 0x12, 0xcd, 0x8a, 0x32, 0x4d, 0x97, 0x2a, 0x52, 0xe8, 0x10, 0xa5, 0xb9, 0x52, - 0x89, 0xff, 0xab, 0x81, 0x8d, 0x18, 0xf5, 0x43, 0xc2, 0x38, 0xf5, 0x89, 0x6d, 0xb9, 0x17, 0x56, - 0x13, 0x2b, 0x60, 0xb6, 0x8f, 0x7d, 0x42, 0x65, 0xbe, 0x97, 0x90, 0xfa, 0xa6, 0x13, 0x30, 0x17, - 0x95, 0xc7, 0x8c, 0x30, 0xe2, 0xad, 0xe9, 0x8c, 0x18, 0x91, 0x6c, 0xae, 0x28, 0x13, 0x5e, 0x94, - 0xaa, 0xa2, 0x6a, 0x41, 0x11, 0x7e, 0x2a, 0xf9, 0x3f, 0x34, 0x70, 0x23, 0x46, 0xda, 0x19, 0xf8, - 0x3e, 0xf6, 0xf8, 0x85, 0x65, 0xde, 0x4e, 0x32, 0x94, 0x57, 0xfd, 0xc6, 0x74, 0x19, 0x66, 0x75, - 0x9d, 0x25, 0xbd, 0xc7, 0x45, 0xb0, 0x16, 0xcf, 0xa9, 0x3d, 0x6e, 0xf9, 0x9c, 0x78, 0x9d, 0x70, - 0x4e, 0x25, 0xc9, 0x3d, 0xaf, 0x69, 0x95, 0xeb, 0x53, 0xf1, 0x5c, 0x3e, 0x0d, 0xc0, 0x15, 0xa6, - 0xb4, 0x36, 0x89, 0xd7, 0xa6, 0xaa, 0x1e, 0x1a, 0x13, 0xdd, 0xca, 0x4d, 0xd3, 0x5c, 0x57, 0x5e, - 0x2d, 0x49, 0xfa, 0x0c, 0x2c, 0x44, 0x0b, 0x2c, 0x15, 0x9b, 0xb2, 0xed, 0xc7, 0x22, 0xb8, 0x1e, - 0xbb, 0xbf, 0xe7, 0x5a, 0xac, 0xfb, 0x7e, 0x20, 0x2e, 0xe0, 0x02, 0x7a, 0xa1, 0x8b, 0x49, 0xa7, - 0xcb, 0xa3, 0x5e, 0x90, 0xdf, 0x52, 0x3d, 0x32, 0x93, 0xe9, 0x91, 0x2f, 0xc1, 0x72, 0x82, 0xcb, - 0x42, 0x61, 0x4d, 0x1c, 0x2a, 0x2b, 0x5f, 0x12, 0x0e, 0xdd, 0x9d, 0xae, 0x9e, 0x92, 0x8c, 0xcc, - 0x25, 0xe5, 0xcf, 0x82, 0x14, 0x2d, 0xc0, 0x20, 0xba, 0x16, 0x8c, 0x86, 0xa6, 0xec, 0xf9, 0xaa, - 0x04, 0x16, 0x3e, 0x90, 0x2b, 0x79, 0x8f, 0x5b, 0x1c, 0xeb, 0x08, 0xcc, 0xf6, 0x2d, 0xdf, 0xea, - 0x49, 0x1b, 0x4a, 0x8d, 0x5b, 0x13, 0x75, 0xec, 0x8a, 0x50, 0x73, 0x59, 0x51, 0x5f, 0x91, 0xd4, - 0x12, 0x00, 0x22, 0x85, 0xa4, 0x7f, 0x0a, 0xe6, 0xdb, 0x18, 0x37, 0xfb, 0x94, 0xba, 0xaa, 0x5b, - 0x6e, 0x4f, 0x44, 0x7d, 0x80, 0xf1, 0x2e, 0xa5, 0xae, 0xb9, 0xaa, 0x60, 0xaf, 0x4a, 0xd8, 0x08, - 0x03, 0xa2, 0xb9, 0xb6, 0x8c, 0xd0, 0xbf, 0xd3, 0x40, 0x39, 0x29, 0xe9, 0x78, 0x81, 0x86, 0x25, - 0x11, 0x8e, 0x9e, 0x99, 0xe9, 0x4b, 0x2d, 0xbd, 0xf9, 0xcd, 0x57, 0x14, 0x71, 0x6d, 0xb8, 0x69, - 0xb2, 0x0c, 0x10, 0xad, 0x38, 0x79, 0xcf, 0x8b, 0x0e, 0xea, 0xfb, 0x38, 0x20, 0x74, 0xc0, 0x9a, - 0x7d, 0x9f, 0xf6, 0x29, 0xc3, 0xbe, 0xb8, 0xd8, 0x4c, 0x5d, 0x8d, 0x84, 0x40, 0xb4, 0x18, 0x9d, - 0xed, 0xaa, 0x23, 0xfd, 0xdb, 0x31, 0x7b, 0xf7, 0x05, 0x91, 0xdd, 0x7b, 0xd3, 0x95, 0xc9, 0xb8, - 0x17, 0x04, 0x13, 0xfe, 0xff, 0x66, 0xce, 0x5b, 0xb6, 0xfa, 0x6f, 0x1a, 0xb8, 0x99, 0x6a, 0x8b, - 0x64, 0x1b, 0x35, 0xed, 0x78, 0x83, 0xb1, 0xf2, 0xac, 0xd0, 0xb8, 0xfd, 0x0c, 0x5b, 0x50, 0xc9, - 0xbc, 0xab, 0x64, 0x6e, 0x8e, 0x34, 0x64, 0x3e, 0x33, 0x44, 0xb5, 0x60, 0x22, 0x2e, 0xd3, 0x7f, - 0xd5, 0xc0, 0x7a, 0x82, 0xd3, 0x8d, 0x37, 0x4f, 0x6c, 0xf0, 0x9c, 0x10, 0xff, 0xee, 0x39, 0x37, - 0x97, 0x12, 0xfe, 0xaa, 0x12, 0x7e, 0x6b, 0x58, 0xf8, 0x28, 0x21, 0x44, 0x95, 0x60, 0x2c, 0x9c, - 0x7e, 0xa8, 0x81, 0xeb, 0xc9, 0xd3, 0xb6, 0x5c, 0x23, 0xb1, 0xd6, 0x79, 0xa1, 0x75, 0xeb, 0x3c, - 0x3b, 0x48, 0x09, 0xdd, 0x54, 0x42, 0x37, 0x86, 0x85, 0x0e, 0x51, 0x41, 0xb4, 0x1a, 0xe4, 0x03, - 0xe9, 0x3f, 0x64, 0x9a, 0x31, 0x33, 0x9f, 0x59, 0xf9, 0xb2, 0x50, 0xf8, 0xf6, 0xd9, 0xe7, 0xbe, - 0xd2, 0x37, 0xb6, 0x25, 0xb3, 0x3c, 0xe9, 0x96, 0x4c, 0xa3, 0xb0, 0xb0, 0x8f, 0x56, 0x72, 0x07, - 0x2e, 0x2b, 0x03, 0xa1, 0xed, 0xcd, 0xb3, 0x4e, 0x5c, 0xa5, 0xec, 0x65, 0xa5, 0xec, 0xc6, 0xb0, - 0x73, 0x69, 0x0e, 0x88, 0x96, 0x72, 0x06, 0x71, 0x6a, 0xbf, 0x9b, 0x1f, 0xfd, 0x7c, 0x5c, 0xd5, - 0x9e, 0x1c, 0x57, 0xb5, 0xa7, 0xc7, 0x55, 0xed, 0xaf, 0xe3, 0xaa, 0xf6, 0xcd, 0x49, 0xb5, 0xf0, - 0xf4, 0xa4, 0x5a, 0xf8, 0xfd, 0xa4, 0x5a, 0xf8, 0xcc, 0x98, 0xf0, 0x6e, 0xfc, 0x45, 0xf6, 0xbf, - 0x8e, 0x78, 0x55, 0x6e, 0xcd, 0x8a, 0x7f, 0x37, 0xaf, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xb4, - 0x0c, 0x86, 0x5c, 0x8d, 0x0d, 0x00, 0x00, + proto.RegisterFile("lbm/distribution/v1beta1/genesis.proto", fileDescriptor_b2dc6994b6fb2b87) +} + +var fileDescriptor_b2dc6994b6fb2b87 = []byte{ + // 1030 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x4d, 0x6f, 0x1b, 0x45, + 0x18, 0xf6, 0x3a, 0x25, 0x49, 0x27, 0x29, 0x0d, 0xdb, 0x7c, 0x38, 0x4e, 0x6a, 0x3b, 0xc3, 0x57, + 0x50, 0x55, 0x2f, 0x49, 0x41, 0xa0, 0x20, 0x21, 0x75, 0x53, 0x0a, 0x3d, 0xa0, 0x44, 0x13, 0x01, + 0x12, 0x17, 0x6b, 0xbd, 0x3b, 0xb6, 0x47, 0xac, 0x77, 0xac, 0x9d, 0xf1, 0x86, 0xfe, 0x03, 0x8e, + 0x15, 0x07, 0x04, 0x42, 0x48, 0x3d, 0x02, 0x37, 0x24, 0x8e, 0xfc, 0x80, 0x1e, 0x7b, 0x84, 0x4b, + 0x40, 0xc9, 0x85, 0x03, 0xa7, 0x70, 0xe0, 0x8a, 0x76, 0x66, 0xf6, 0xcb, 0xde, 0x4d, 0x9d, 0xa8, + 0xb9, 0xd9, 0xe3, 0x77, 0x9f, 0xe7, 0x79, 0x9f, 0x79, 0x3f, 0xd6, 0xe0, 0x35, 0xb7, 0xdd, 0x37, + 0x1c, 0xc2, 0xb8, 0x4f, 0xda, 0x43, 0x4e, 0xa8, 0x67, 0x04, 0x5b, 0x6d, 0xcc, 0xad, 0x2d, 0xa3, + 0x8b, 0x3d, 0xcc, 0x08, 0x6b, 0x0e, 0x7c, 0xca, 0xa9, 0x5e, 0x71, 0xdb, 0xfd, 0x66, 0x3a, 0xae, + 0xa9, 0xe2, 0xaa, 0x8b, 0x5d, 0xda, 0xa5, 0x22, 0xc8, 0x08, 0x3f, 0xc9, 0xf8, 0xea, 0x5a, 0x88, + 0xdb, 0xb6, 0x18, 0x8e, 0xf1, 0x6c, 0x4a, 0x3c, 0xf5, 0xe3, 0xad, 0x42, 0xd2, 0x0c, 0x83, 0x08, + 0x86, 0xbf, 0x6a, 0x60, 0xe9, 0x1e, 0x76, 0x71, 0xd7, 0xe2, 0xd4, 0xff, 0x8c, 0xf0, 0x9e, 0xe3, + 0x5b, 0x87, 0x0f, 0xbc, 0x0e, 0xd5, 0x1f, 0x80, 0x97, 0x9c, 0xe8, 0x87, 0x96, 0xe5, 0x38, 0x3e, + 0x66, 0xac, 0xa2, 0x35, 0xb4, 0xcd, 0xab, 0xe6, 0xfa, 0xe9, 0x51, 0xbd, 0xf2, 0xd0, 0xea, 0xbb, + 0x3b, 0x70, 0x2c, 0x04, 0xa2, 0x85, 0xf8, 0xec, 0xae, 0x3c, 0xd2, 0xef, 0x83, 0x85, 0x43, 0x05, + 0x1d, 0x23, 0x95, 0x05, 0xd2, 0xda, 0xe9, 0x51, 0x7d, 0x45, 0x22, 0x8d, 0x46, 0x40, 0x74, 0x3d, + 0x3a, 0x52, 0x38, 0x3b, 0xb3, 0x5f, 0x3d, 0xae, 0x97, 0xfe, 0x7e, 0x5c, 0x2f, 0xc1, 0x6f, 0xca, + 0x60, 0xe3, 0x53, 0xcb, 0x25, 0x4e, 0x48, 0xb3, 0x37, 0xe4, 0x8c, 0x5b, 0x9e, 0x43, 0xbc, 0x2e, + 0xc2, 0x87, 0x96, 0xef, 0x30, 0x84, 0x6d, 0xea, 0x3b, 0x61, 0x0a, 0x41, 0x14, 0x54, 0x9c, 0xc2, + 0x58, 0x08, 0x44, 0x0b, 0xf1, 0x59, 0x94, 0xc2, 0xf7, 0x1a, 0xb8, 0x41, 0x13, 0x9e, 0x96, 0x2f, + 0x89, 0x2a, 0xe5, 0xc6, 0xd4, 0xe6, 0xdc, 0xf6, 0x6a, 0x33, 0xbc, 0xc0, 0xf0, 0x42, 0xa2, 0x8b, + 0x6b, 0xde, 0xc3, 0xf6, 0x2e, 0x25, 0x9e, 0xb9, 0xf7, 0xe4, 0xa8, 0x5e, 0x3a, 0x3d, 0xaa, 0x57, + 0x25, 0x59, 0x0e, 0x06, 0xfc, 0xf9, 0xcf, 0xfa, 0x1b, 0x5d, 0xc2, 0x7b, 0xc3, 0x76, 0xd3, 0xa6, + 0x7d, 0xc3, 0x25, 0x1e, 0x36, 0xdc, 0x76, 0xff, 0x36, 0x73, 0xbe, 0x30, 0x82, 0x6d, 0x83, 0x3f, + 0x1c, 0x60, 0x16, 0xe1, 0x31, 0xa4, 0xd3, 0xb1, 0x74, 0x53, 0xc6, 0xfc, 0xab, 0x81, 0x57, 0x62, + 0x63, 0xee, 0xda, 0xf6, 0xb0, 0x3f, 0x74, 0x2d, 0x8e, 0x9d, 0x5d, 0xda, 0xef, 0x13, 0xc6, 0x08, + 0xf5, 0x9e, 0xbf, 0x37, 0x01, 0x98, 0xb3, 0x12, 0x26, 0x71, 0xb3, 0x73, 0xdb, 0xef, 0x36, 0x8b, + 0x6a, 0xba, 0x79, 0xb6, 0x3e, 0xb3, 0xaa, 0x1c, 0xd3, 0xa5, 0x84, 0x14, 0x34, 0x44, 0x69, 0xa2, + 0x54, 0xd6, 0xff, 0x69, 0xa0, 0x11, 0xa3, 0x7e, 0x44, 0x18, 0xa7, 0x3e, 0xb1, 0x2d, 0xf7, 0xd2, + 0xaa, 0x61, 0x19, 0x4c, 0x0f, 0xb0, 0x4f, 0xa8, 0x4c, 0xf6, 0x0a, 0x52, 0xdf, 0xf4, 0x0e, 0x98, + 0x89, 0x0a, 0x63, 0x4a, 0xb8, 0xf0, 0xd6, 0x04, 0x2e, 0x8c, 0xe9, 0x35, 0x97, 0x95, 0x03, 0x2f, + 0x4a, 0x49, 0x51, 0x9d, 0xa0, 0x08, 0x3c, 0x95, 0xf9, 0x1f, 0x1a, 0xb8, 0x19, 0x23, 0xed, 0x0e, + 0x7d, 0x1f, 0x7b, 0xfc, 0xd2, 0xd2, 0xb6, 0x93, 0xf4, 0xe4, 0x25, 0x6f, 0x4d, 0x90, 0x5e, 0x56, + 0xd4, 0x79, 0x72, 0xfb, 0xa5, 0x0c, 0xd6, 0xe2, 0xd9, 0x74, 0xc0, 0x2d, 0x9f, 0x13, 0xaf, 0x1b, + 0xce, 0xa6, 0x24, 0xb3, 0xe7, 0x35, 0xa1, 0x72, 0x4d, 0x2a, 0x5f, 0xc8, 0x24, 0x1f, 0x5c, 0x63, + 0x4a, 0x6b, 0x8b, 0x78, 0x1d, 0xaa, 0x2a, 0xc1, 0x28, 0xb6, 0x2a, 0x37, 0x47, 0x73, 0x5d, 0x19, + 0xb5, 0x28, 0xb9, 0x33, 0x98, 0x10, 0xcd, 0xb3, 0x54, 0x6c, 0xca, 0xb3, 0xef, 0xca, 0x60, 0x35, + 0xb6, 0xfe, 0xc0, 0xb5, 0x58, 0xef, 0x83, 0x40, 0xb8, 0x7f, 0x09, 0x2d, 0xd0, 0xc3, 0xa4, 0xdb, + 0xe3, 0x51, 0x0b, 0xc8, 0x6f, 0xa9, 0xd6, 0x98, 0xca, 0xb4, 0xc6, 0x21, 0x58, 0x4a, 0x70, 0x59, + 0x28, 0xac, 0x85, 0x43, 0x65, 0x95, 0x2b, 0xc2, 0x9e, 0xdb, 0x13, 0x54, 0x52, 0x92, 0x8e, 0xb9, + 0xa8, 0xcc, 0x99, 0x97, 0x8a, 0x05, 0x12, 0x44, 0x37, 0x82, 0xf1, 0xd0, 0x94, 0x37, 0xff, 0x00, + 0x30, 0xff, 0xa1, 0xdc, 0xbb, 0x07, 0xdc, 0xe2, 0x58, 0xdf, 0x03, 0xd3, 0x03, 0xcb, 0xb7, 0xfa, + 0xd2, 0x83, 0xb9, 0xed, 0x46, 0xb1, 0x88, 0x7d, 0x11, 0x67, 0x2e, 0x29, 0xde, 0x6b, 0x92, 0x57, + 0x3e, 0x0d, 0x91, 0x82, 0xd1, 0x3f, 0x01, 0xb3, 0x1d, 0x8c, 0x5b, 0x03, 0x4a, 0x5d, 0xd5, 0x21, + 0x1b, 0xc5, 0x90, 0xf7, 0x31, 0xde, 0xa7, 0xd4, 0x35, 0x57, 0x14, 0xe6, 0x75, 0x89, 0x19, 0x01, + 0x40, 0x34, 0xd3, 0x91, 0x11, 0xfa, 0xd7, 0x1a, 0xa8, 0x24, 0x65, 0x1c, 0x2f, 0xca, 0xb0, 0x12, + 0xc2, 0x41, 0x33, 0x35, 0x61, 0x79, 0xa5, 0xd7, 0xbb, 0xf9, 0xba, 0x62, 0xad, 0x8f, 0x76, 0x49, + 0x16, 0x1e, 0xa2, 0x65, 0x27, 0xef, 0x79, 0xd1, 0x32, 0x03, 0x1f, 0x07, 0x84, 0x0e, 0x59, 0x6b, + 0xe0, 0xd3, 0x01, 0x65, 0xd8, 0x17, 0x97, 0x99, 0xa9, 0xa5, 0xb1, 0x10, 0x88, 0x16, 0xa2, 0xb3, + 0x7d, 0x75, 0xa4, 0x3f, 0x2a, 0x58, 0xae, 0x2f, 0x88, 0xd4, 0xde, 0x9b, 0xa0, 0x34, 0x8a, 0x5e, + 0x01, 0x4c, 0xf8, 0xec, 0xf5, 0x9b, 0xb7, 0x51, 0xf5, 0xdf, 0x34, 0xb0, 0x91, 0xea, 0x83, 0x64, + 0xeb, 0xb4, 0xec, 0x78, 0x53, 0xb1, 0xca, 0xb4, 0x10, 0xf8, 0xfe, 0x45, 0x57, 0x9d, 0xd2, 0xf8, + 0xa6, 0xd2, 0xb8, 0x39, 0xd6, 0x7e, 0xf9, 0xb4, 0x10, 0xd5, 0x83, 0x33, 0x71, 0x99, 0xfe, 0x93, + 0x06, 0xd6, 0x13, 0x9c, 0x5e, 0xbc, 0x61, 0x62, 0x6b, 0x67, 0x84, 0xf2, 0x9d, 0x8b, 0xac, 0x27, + 0xa5, 0xfa, 0x96, 0x52, 0xfd, 0xf2, 0xa8, 0xea, 0x71, 0x36, 0x88, 0xaa, 0x41, 0x21, 0x9c, 0xfe, + 0x83, 0x06, 0x56, 0x93, 0xa7, 0x6d, 0xb9, 0x2e, 0x62, 0xa1, 0xb3, 0x42, 0xe8, 0x3b, 0xe7, 0x5e, + 0x34, 0x4a, 0xe5, 0xa6, 0x52, 0xd9, 0x18, 0x55, 0x39, 0xc2, 0x03, 0xd1, 0x4a, 0x90, 0x0f, 0xa4, + 0x7f, 0x9b, 0xe9, 0xbe, 0xcc, 0x1c, 0x66, 0x95, 0xab, 0x42, 0xde, 0xdb, 0xe7, 0x1c, 0xee, 0x4a, + 0x5c, 0x61, 0x0f, 0x66, 0x49, 0xd2, 0x3d, 0x98, 0x46, 0x61, 0x61, 0xe3, 0x2c, 0xe7, 0x4e, 0x55, + 0x56, 0x01, 0x42, 0xd8, 0x9d, 0x73, 0x8d, 0x55, 0x25, 0xeb, 0x55, 0x25, 0xeb, 0xe6, 0xa8, 0x67, + 0x69, 0x02, 0x88, 0x16, 0x73, 0xa6, 0x6d, 0x6a, 0x7d, 0x9b, 0x1f, 0xff, 0x78, 0x5c, 0xd3, 0x9e, + 0x1c, 0xd7, 0xb4, 0xa7, 0xc7, 0x35, 0xed, 0xaf, 0xe3, 0x9a, 0xf6, 0xe8, 0xa4, 0x56, 0x7a, 0x7a, + 0x52, 0x2b, 0xfd, 0x7e, 0x52, 0x2b, 0x7d, 0x6e, 0x9c, 0xf1, 0xc6, 0xfb, 0x65, 0xf6, 0xef, 0x8b, + 0x78, 0x01, 0x6e, 0x4f, 0x8b, 0x3f, 0x2c, 0x77, 0xfe, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x44, 0x0c, + 0xff, 0x2e, 0x54, 0x0d, 0x00, 0x00, } func (m *DelegatorWithdrawInfo) Marshal() (dAtA []byte, err error) { diff --git a/x/distribution/types/proposal.go b/x/distribution/types/proposal.go index af2a1d30b3..fa74351e0c 100644 --- a/x/distribution/types/proposal.go +++ b/x/distribution/types/proposal.go @@ -18,7 +18,7 @@ var _ govtypes.Content = &CommunityPoolSpendProposal{} func init() { govtypes.RegisterProposalType(ProposalTypeCommunityPoolSpend) - govtypes.RegisterProposalTypeCodec(&CommunityPoolSpendProposal{}, "cosmos-sdk/CommunityPoolSpendProposal") + govtypes.RegisterProposalTypeCodec(&CommunityPoolSpendProposal{}, "lbm-sdk/CommunityPoolSpendProposal") } // NewCommunityPoolSpendProposal creates a new community pool spned proposal. diff --git a/x/distribution/types/query.pb.go b/x/distribution/types/query.pb.go index 4fcd9a4f43..e198f18b3f 100644 --- a/x/distribution/types/query.pb.go +++ b/x/distribution/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/v1beta1/query.proto +// source: lbm/distribution/v1beta1/query.proto package types @@ -40,7 +40,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{0} + return fileDescriptor_e417f441d2b5e393, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -79,7 +79,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{1} + return fileDescriptor_e417f441d2b5e393, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -128,7 +128,7 @@ func (m *QueryValidatorOutstandingRewardsRequest) Reset() { func (m *QueryValidatorOutstandingRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorOutstandingRewardsRequest) ProtoMessage() {} func (*QueryValidatorOutstandingRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{2} + return fileDescriptor_e417f441d2b5e393, []int{2} } func (m *QueryValidatorOutstandingRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -176,7 +176,7 @@ func (m *QueryValidatorOutstandingRewardsResponse) Reset() { func (m *QueryValidatorOutstandingRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorOutstandingRewardsResponse) ProtoMessage() {} func (*QueryValidatorOutstandingRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{3} + return fileDescriptor_e417f441d2b5e393, []int{3} } func (m *QueryValidatorOutstandingRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -223,7 +223,7 @@ func (m *QueryValidatorCommissionRequest) Reset() { *m = QueryValidatorC func (m *QueryValidatorCommissionRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorCommissionRequest) ProtoMessage() {} func (*QueryValidatorCommissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{4} + return fileDescriptor_e417f441d2b5e393, []int{4} } func (m *QueryValidatorCommissionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -270,7 +270,7 @@ func (m *QueryValidatorCommissionResponse) Reset() { *m = QueryValidator func (m *QueryValidatorCommissionResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorCommissionResponse) ProtoMessage() {} func (*QueryValidatorCommissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{5} + return fileDescriptor_e417f441d2b5e393, []int{5} } func (m *QueryValidatorCommissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -323,7 +323,7 @@ func (m *QueryValidatorSlashesRequest) Reset() { *m = QueryValidatorSlas func (m *QueryValidatorSlashesRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorSlashesRequest) ProtoMessage() {} func (*QueryValidatorSlashesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{6} + return fileDescriptor_e417f441d2b5e393, []int{6} } func (m *QueryValidatorSlashesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -365,7 +365,7 @@ func (m *QueryValidatorSlashesResponse) Reset() { *m = QueryValidatorSla func (m *QueryValidatorSlashesResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorSlashesResponse) ProtoMessage() {} func (*QueryValidatorSlashesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{7} + return fileDescriptor_e417f441d2b5e393, []int{7} } func (m *QueryValidatorSlashesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -421,7 +421,7 @@ func (m *QueryDelegationRewardsRequest) Reset() { *m = QueryDelegationRe func (m *QueryDelegationRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegationRewardsRequest) ProtoMessage() {} func (*QueryDelegationRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{8} + return fileDescriptor_e417f441d2b5e393, []int{8} } func (m *QueryDelegationRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -461,7 +461,7 @@ func (m *QueryDelegationRewardsResponse) Reset() { *m = QueryDelegationR func (m *QueryDelegationRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegationRewardsResponse) ProtoMessage() {} func (*QueryDelegationRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{9} + return fileDescriptor_e417f441d2b5e393, []int{9} } func (m *QueryDelegationRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -508,7 +508,7 @@ func (m *QueryDelegationTotalRewardsRequest) Reset() { *m = QueryDelegat func (m *QueryDelegationTotalRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegationTotalRewardsRequest) ProtoMessage() {} func (*QueryDelegationTotalRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{10} + return fileDescriptor_e417f441d2b5e393, []int{10} } func (m *QueryDelegationTotalRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -550,7 +550,7 @@ func (m *QueryDelegationTotalRewardsResponse) Reset() { *m = QueryDelega func (m *QueryDelegationTotalRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegationTotalRewardsResponse) ProtoMessage() {} func (*QueryDelegationTotalRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{11} + return fileDescriptor_e417f441d2b5e393, []int{11} } func (m *QueryDelegationTotalRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -604,7 +604,7 @@ func (m *QueryDelegatorValidatorsRequest) Reset() { *m = QueryDelegatorV func (m *QueryDelegatorValidatorsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorsRequest) ProtoMessage() {} func (*QueryDelegatorValidatorsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{12} + return fileDescriptor_e417f441d2b5e393, []int{12} } func (m *QueryDelegatorValidatorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -644,7 +644,7 @@ func (m *QueryDelegatorValidatorsResponse) Reset() { *m = QueryDelegator func (m *QueryDelegatorValidatorsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorsResponse) ProtoMessage() {} func (*QueryDelegatorValidatorsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{13} + return fileDescriptor_e417f441d2b5e393, []int{13} } func (m *QueryDelegatorValidatorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -684,7 +684,7 @@ func (m *QueryDelegatorWithdrawAddressRequest) Reset() { *m = QueryDeleg func (m *QueryDelegatorWithdrawAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorWithdrawAddressRequest) ProtoMessage() {} func (*QueryDelegatorWithdrawAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{14} + return fileDescriptor_e417f441d2b5e393, []int{14} } func (m *QueryDelegatorWithdrawAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -724,7 +724,7 @@ func (m *QueryDelegatorWithdrawAddressResponse) Reset() { *m = QueryDele func (m *QueryDelegatorWithdrawAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorWithdrawAddressResponse) ProtoMessage() {} func (*QueryDelegatorWithdrawAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{15} + return fileDescriptor_e417f441d2b5e393, []int{15} } func (m *QueryDelegatorWithdrawAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -762,7 +762,7 @@ func (m *QueryCommunityPoolRequest) Reset() { *m = QueryCommunityPoolReq func (m *QueryCommunityPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryCommunityPoolRequest) ProtoMessage() {} func (*QueryCommunityPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{16} + return fileDescriptor_e417f441d2b5e393, []int{16} } func (m *QueryCommunityPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -802,7 +802,7 @@ func (m *QueryCommunityPoolResponse) Reset() { *m = QueryCommunityPoolRe func (m *QueryCommunityPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryCommunityPoolResponse) ProtoMessage() {} func (*QueryCommunityPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5efd02cbc06efdc9, []int{17} + return fileDescriptor_e417f441d2b5e393, []int{17} } func (m *QueryCommunityPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -839,102 +839,102 @@ func (m *QueryCommunityPoolResponse) GetPool() github_com_line_lbm_sdk_v2_types. } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.distribution.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.distribution.v1beta1.QueryParamsResponse") - proto.RegisterType((*QueryValidatorOutstandingRewardsRequest)(nil), "cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest") - proto.RegisterType((*QueryValidatorOutstandingRewardsResponse)(nil), "cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse") - proto.RegisterType((*QueryValidatorCommissionRequest)(nil), "cosmos.distribution.v1beta1.QueryValidatorCommissionRequest") - proto.RegisterType((*QueryValidatorCommissionResponse)(nil), "cosmos.distribution.v1beta1.QueryValidatorCommissionResponse") - proto.RegisterType((*QueryValidatorSlashesRequest)(nil), "cosmos.distribution.v1beta1.QueryValidatorSlashesRequest") - proto.RegisterType((*QueryValidatorSlashesResponse)(nil), "cosmos.distribution.v1beta1.QueryValidatorSlashesResponse") - proto.RegisterType((*QueryDelegationRewardsRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegationRewardsRequest") - proto.RegisterType((*QueryDelegationRewardsResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegationRewardsResponse") - proto.RegisterType((*QueryDelegationTotalRewardsRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest") - proto.RegisterType((*QueryDelegationTotalRewardsResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse") - proto.RegisterType((*QueryDelegatorValidatorsRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest") - proto.RegisterType((*QueryDelegatorValidatorsResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse") - proto.RegisterType((*QueryDelegatorWithdrawAddressRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest") - proto.RegisterType((*QueryDelegatorWithdrawAddressResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse") - proto.RegisterType((*QueryCommunityPoolRequest)(nil), "cosmos.distribution.v1beta1.QueryCommunityPoolRequest") - proto.RegisterType((*QueryCommunityPoolResponse)(nil), "cosmos.distribution.v1beta1.QueryCommunityPoolResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "lbm.distribution.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "lbm.distribution.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryValidatorOutstandingRewardsRequest)(nil), "lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest") + proto.RegisterType((*QueryValidatorOutstandingRewardsResponse)(nil), "lbm.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse") + proto.RegisterType((*QueryValidatorCommissionRequest)(nil), "lbm.distribution.v1beta1.QueryValidatorCommissionRequest") + proto.RegisterType((*QueryValidatorCommissionResponse)(nil), "lbm.distribution.v1beta1.QueryValidatorCommissionResponse") + proto.RegisterType((*QueryValidatorSlashesRequest)(nil), "lbm.distribution.v1beta1.QueryValidatorSlashesRequest") + proto.RegisterType((*QueryValidatorSlashesResponse)(nil), "lbm.distribution.v1beta1.QueryValidatorSlashesResponse") + proto.RegisterType((*QueryDelegationRewardsRequest)(nil), "lbm.distribution.v1beta1.QueryDelegationRewardsRequest") + proto.RegisterType((*QueryDelegationRewardsResponse)(nil), "lbm.distribution.v1beta1.QueryDelegationRewardsResponse") + proto.RegisterType((*QueryDelegationTotalRewardsRequest)(nil), "lbm.distribution.v1beta1.QueryDelegationTotalRewardsRequest") + proto.RegisterType((*QueryDelegationTotalRewardsResponse)(nil), "lbm.distribution.v1beta1.QueryDelegationTotalRewardsResponse") + proto.RegisterType((*QueryDelegatorValidatorsRequest)(nil), "lbm.distribution.v1beta1.QueryDelegatorValidatorsRequest") + proto.RegisterType((*QueryDelegatorValidatorsResponse)(nil), "lbm.distribution.v1beta1.QueryDelegatorValidatorsResponse") + proto.RegisterType((*QueryDelegatorWithdrawAddressRequest)(nil), "lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest") + proto.RegisterType((*QueryDelegatorWithdrawAddressResponse)(nil), "lbm.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse") + proto.RegisterType((*QueryCommunityPoolRequest)(nil), "lbm.distribution.v1beta1.QueryCommunityPoolRequest") + proto.RegisterType((*QueryCommunityPoolResponse)(nil), "lbm.distribution.v1beta1.QueryCommunityPoolResponse") } func init() { - proto.RegisterFile("cosmos/distribution/v1beta1/query.proto", fileDescriptor_5efd02cbc06efdc9) -} - -var fileDescriptor_5efd02cbc06efdc9 = []byte{ - // 1105 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x98, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xc7, 0x3d, 0x6e, 0x9a, 0xd2, 0x57, 0x4a, 0xd2, 0x69, 0x85, 0xcc, 0x26, 0xd8, 0xd1, 0x86, - 0x92, 0x94, 0xa8, 0xde, 0x26, 0x95, 0x0a, 0xb4, 0x20, 0xc8, 0xaf, 0x52, 0x44, 0x95, 0xa6, 0xa6, - 0x4a, 0xc2, 0x2f, 0x59, 0x63, 0xef, 0x68, 0xbd, 0x62, 0xbd, 0xe3, 0xee, 0x8c, 0x13, 0xa2, 0xaa, - 0x07, 0x28, 0x48, 0x48, 0x5c, 0x90, 0xb8, 0xf4, 0x98, 0x33, 0x77, 0x2e, 0xfc, 0x05, 0x3d, 0x56, - 0x42, 0x42, 0x3d, 0x01, 0x4a, 0x7a, 0xa8, 0x84, 0x38, 0x73, 0xad, 0x3c, 0x3b, 0x6b, 0xef, 0xda, - 0xeb, 0xf5, 0x2f, 0xf5, 0x66, 0xbd, 0x9d, 0xf7, 0x9d, 0xf7, 0x79, 0x33, 0x6f, 0xde, 0x93, 0x61, - 0xae, 0xcc, 0x78, 0x95, 0x71, 0xc3, 0xb4, 0xb9, 0xf0, 0xec, 0x52, 0x5d, 0xd8, 0xcc, 0x35, 0x76, - 0x17, 0x4b, 0x54, 0x90, 0x45, 0xe3, 0x6e, 0x9d, 0x7a, 0xfb, 0xf9, 0x9a, 0xc7, 0x04, 0xc3, 0x53, - 0xfe, 0xc2, 0x7c, 0x78, 0x61, 0x5e, 0x2d, 0xd4, 0xde, 0x52, 0x2a, 0x25, 0xc2, 0xa9, 0xef, 0xd5, - 0xd4, 0xa8, 0x11, 0xcb, 0x76, 0x89, 0x5c, 0x2d, 0x85, 0xb4, 0x73, 0x16, 0xb3, 0x98, 0xfc, 0x69, - 0x34, 0x7e, 0x29, 0xeb, 0xb4, 0xc5, 0x98, 0xe5, 0x50, 0x83, 0xd4, 0x6c, 0x83, 0xb8, 0x2e, 0x13, - 0xd2, 0x85, 0xab, 0xaf, 0xd9, 0xb0, 0x7e, 0xa0, 0x5c, 0x66, 0x76, 0xa0, 0x99, 0x4f, 0xa2, 0x88, - 0x44, 0x2c, 0xd7, 0xeb, 0xe7, 0x00, 0xdf, 0x6e, 0x44, 0xb9, 0x49, 0x3c, 0x52, 0xe5, 0x05, 0x7a, - 0xb7, 0x4e, 0xb9, 0xd0, 0x77, 0xe0, 0x6c, 0xc4, 0xca, 0x6b, 0xcc, 0xe5, 0x14, 0x2f, 0xc3, 0x78, - 0x4d, 0x5a, 0x32, 0x68, 0x06, 0xcd, 0x9f, 0x5a, 0x9a, 0xcd, 0x27, 0xa4, 0x22, 0xef, 0x3b, 0xaf, - 0x8c, 0x3d, 0xfa, 0x2b, 0x97, 0x2a, 0x28, 0x47, 0x7d, 0x0b, 0xe6, 0xa4, 0xf2, 0x16, 0x71, 0x6c, - 0x93, 0x08, 0xe6, 0xdd, 0xaa, 0x0b, 0x2e, 0x88, 0x6b, 0xda, 0xae, 0x55, 0xa0, 0x7b, 0xc4, 0x33, - 0x83, 0x20, 0xf0, 0x02, 0x9c, 0xd9, 0x0d, 0x56, 0x15, 0x89, 0x69, 0x7a, 0x94, 0xfb, 0x1b, 0x9f, - 0x2c, 0x4c, 0x36, 0x3f, 0x2c, 0xfb, 0x76, 0xfd, 0x7b, 0x04, 0xf3, 0xbd, 0x85, 0x15, 0xc7, 0x0e, - 0x9c, 0xf0, 0x7c, 0x93, 0x02, 0x79, 0x27, 0x11, 0x24, 0x41, 0x52, 0xd1, 0x05, 0x72, 0xfa, 0x06, - 0xe4, 0xa2, 0x51, 0xac, 0xb2, 0x6a, 0xd5, 0xe6, 0xdc, 0x66, 0xee, 0x50, 0x58, 0x3f, 0x20, 0x98, - 0xe9, 0x2e, 0xa8, 0x70, 0x08, 0x40, 0xb9, 0x69, 0x55, 0x44, 0xd7, 0xfa, 0x23, 0x5a, 0x2e, 0x97, - 0xeb, 0xd5, 0xba, 0x43, 0x04, 0x35, 0x5b, 0xc2, 0x0a, 0x2a, 0x24, 0xaa, 0xff, 0x8b, 0x60, 0x3a, - 0x1a, 0xc7, 0xa7, 0x0e, 0xe1, 0x15, 0x3a, 0xd4, 0x61, 0xe1, 0x39, 0x98, 0xe0, 0x82, 0x78, 0xc2, - 0x76, 0xad, 0x62, 0x85, 0xda, 0x56, 0x45, 0x64, 0xd2, 0x33, 0x68, 0x7e, 0xac, 0xf0, 0x4a, 0x60, - 0xbe, 0x21, 0xad, 0x78, 0x16, 0x4e, 0x53, 0x99, 0xee, 0x60, 0xd9, 0x31, 0xb9, 0xec, 0x65, 0xdf, - 0xa8, 0x16, 0x5d, 0x07, 0x68, 0x95, 0x56, 0x66, 0x4c, 0xe2, 0xbf, 0x19, 0xe0, 0x37, 0xea, 0x24, - 0xef, 0x57, 0x6f, 0xeb, 0x5e, 0x5a, 0x54, 0x85, 0x5d, 0x08, 0x79, 0x5e, 0x7d, 0xe9, 0xc7, 0x83, - 0x5c, 0xea, 0xe1, 0x41, 0x0e, 0xe9, 0xbf, 0x23, 0x78, 0xbd, 0x0b, 0xad, 0x4a, 0xf9, 0x26, 0x9c, - 0xe0, 0xbe, 0x29, 0x83, 0x66, 0x8e, 0xcd, 0x9f, 0x5a, 0xba, 0xd4, 0x5f, 0xbe, 0xa5, 0xce, 0xfa, - 0x2e, 0x75, 0x45, 0x70, 0x73, 0x94, 0x0c, 0xfe, 0x28, 0x42, 0x91, 0x96, 0x14, 0x73, 0x3d, 0x29, - 0xfc, 0x70, 0xc2, 0x18, 0xfa, 0x83, 0x20, 0xf8, 0x35, 0xea, 0x50, 0x4b, 0xda, 0x3a, 0x0b, 0xcb, - 0xf4, 0xbf, 0x75, 0x9e, 0x55, 0xf3, 0x43, 0x70, 0x56, 0xb1, 0x07, 0x9b, 0x8e, 0x3f, 0x58, 0x3f, - 0x85, 0xcf, 0x0e, 0x72, 0x29, 0xfd, 0x27, 0x04, 0xd9, 0x6e, 0x51, 0xa8, 0x1c, 0xda, 0xe1, 0x2a, - 0x6c, 0xe4, 0x70, 0x3a, 0x82, 0x1b, 0x80, 0xae, 0xd1, 0xf2, 0x2a, 0xb3, 0xdd, 0x95, 0xc5, 0x46, - 0xbe, 0x7e, 0xfd, 0x3b, 0x77, 0xc1, 0xb2, 0x45, 0xa5, 0x5e, 0xca, 0x97, 0x59, 0xd5, 0x70, 0x6c, - 0x97, 0x1a, 0x4e, 0xa9, 0x7a, 0x91, 0x9b, 0x5f, 0x1b, 0xbb, 0x4b, 0x86, 0xd8, 0xaf, 0x51, 0x1e, - 0x78, 0xf0, 0x56, 0x59, 0x7e, 0x01, 0x7a, 0x5b, 0x30, 0x77, 0x98, 0x20, 0xce, 0x08, 0x79, 0x09, - 0xa1, 0x3e, 0x45, 0x30, 0x9b, 0xa8, 0xae, 0x78, 0xb7, 0xda, 0x79, 0xaf, 0x24, 0xde, 0x99, 0x96, - 0xda, 0x5a, 0xb0, 0xb7, 0xaf, 0xd8, 0xf6, 0xe6, 0x60, 0x0a, 0xc7, 0x45, 0x63, 0xbf, 0x4c, 0xfa, - 0xc5, 0x64, 0xd1, 0x57, 0xd7, 0x77, 0xd4, 0xd3, 0xd6, 0x8c, 0xa6, 0x79, 0xa9, 0x47, 0x4d, 0xe0, - 0x4d, 0xf5, 0xc6, 0xc5, 0x2a, 0xab, 0xe4, 0x65, 0x01, 0x9a, 0xb7, 0xcd, 0xcf, 0xdf, 0xc9, 0x42, - 0xc8, 0x12, 0x52, 0xfb, 0x0a, 0xde, 0x88, 0xaa, 0x6d, 0xdb, 0xa2, 0x62, 0x7a, 0x64, 0x4f, 0x6d, - 0x3c, 0x62, 0xb0, 0x5f, 0xc2, 0xf9, 0x1e, 0xf2, 0x2a, 0xe2, 0x0b, 0x30, 0xb9, 0xa7, 0x3e, 0xb5, - 0xc9, 0x4f, 0xec, 0x45, 0x5d, 0x42, 0xea, 0x53, 0xf0, 0x9a, 0x54, 0x6f, 0x3c, 0xc6, 0x75, 0xd7, - 0x16, 0xfb, 0x9b, 0x8c, 0x39, 0x41, 0x57, 0xfe, 0x16, 0x81, 0x16, 0xf7, 0x55, 0x6d, 0x58, 0x86, - 0xb1, 0x1a, 0x63, 0xce, 0x8b, 0x2a, 0x26, 0x29, 0xbe, 0xf4, 0x64, 0x02, 0x8e, 0xcb, 0x18, 0xf0, - 0x43, 0x04, 0xe3, 0x7e, 0x8b, 0xc7, 0x46, 0xe2, 0x45, 0xee, 0x9c, 0x2f, 0xb4, 0x4b, 0xfd, 0x3b, - 0xf8, 0x70, 0xfa, 0xc2, 0x77, 0x7f, 0x3c, 0xfd, 0x25, 0x7d, 0x1e, 0xcf, 0x1a, 0x49, 0x03, 0x8e, - 0x3f, 0x64, 0xe0, 0x07, 0x69, 0x98, 0x4a, 0x68, 0xda, 0x78, 0xad, 0xf7, 0xf6, 0xbd, 0xe7, 0x13, - 0x6d, 0x7d, 0x44, 0x15, 0x45, 0xb6, 0x2d, 0xc9, 0x6e, 0xe3, 0x5b, 0x89, 0x64, 0xad, 0xab, 0x6e, - 0xdc, 0xeb, 0x78, 0x8f, 0xef, 0x1b, 0xac, 0xa5, 0x5f, 0x0c, 0xde, 0x85, 0x43, 0x04, 0x67, 0x63, - 0xc6, 0x06, 0xfc, 0xde, 0x00, 0x71, 0x77, 0x8c, 0x2f, 0xda, 0xfb, 0x43, 0x7a, 0x2b, 0xda, 0x0d, - 0x49, 0x7b, 0x03, 0x5f, 0x1f, 0x85, 0xb6, 0x35, 0x98, 0xe0, 0x3f, 0x11, 0x4c, 0xb6, 0x77, 0x69, - 0xfc, 0xee, 0x00, 0x31, 0x46, 0xe7, 0x18, 0xed, 0xea, 0x30, 0xae, 0x8a, 0xed, 0x13, 0xc9, 0xb6, - 0x8e, 0x57, 0x47, 0x61, 0x0b, 0xe6, 0x81, 0xff, 0x10, 0x9c, 0xe9, 0xe8, 0x9d, 0xb8, 0x8f, 0xf0, - 0xba, 0xb5, 0x7d, 0xed, 0xda, 0x50, 0xbe, 0x8a, 0xad, 0x28, 0xd9, 0x3e, 0xc3, 0xdb, 0x89, 0x6c, - 0xcd, 0x77, 0x93, 0x1b, 0xf7, 0x3a, 0x1e, 0xd7, 0xfb, 0x86, 0xba, 0x99, 0x71, 0xdc, 0xf8, 0x19, - 0x82, 0x57, 0xe3, 0x1b, 0x28, 0xfe, 0x60, 0x90, 0xc0, 0x63, 0x1a, 0xbb, 0xf6, 0xe1, 0xf0, 0x02, - 0x03, 0x1d, 0x6d, 0x7f, 0xf8, 0xb2, 0x30, 0x63, 0x7a, 0x5d, 0x3f, 0x85, 0xd9, 0xbd, 0xf9, 0xf6, - 0x53, 0x98, 0x09, 0x0d, 0xb6, 0xcf, 0xc2, 0xec, 0x41, 0xd8, 0xba, 0xdb, 0xf8, 0x7f, 0x04, 0x99, - 0x6e, 0x3d, 0x12, 0x2f, 0x0f, 0x10, 0x6b, 0x7c, 0xfb, 0xd6, 0x56, 0x46, 0x91, 0x50, 0xcc, 0x77, - 0x24, 0xf3, 0x06, 0xbe, 0x39, 0x0a, 0x73, 0x7b, 0x93, 0xc7, 0xbf, 0x21, 0x38, 0x1d, 0xe9, 0xd0, - 0xf8, 0x4a, 0xef, 0x58, 0xe3, 0x1a, 0xbe, 0xf6, 0xf6, 0xc0, 0x7e, 0x0a, 0xec, 0xb2, 0x04, 0xbb, - 0x88, 0x17, 0x12, 0xc1, 0xca, 0x81, 0x6f, 0xb1, 0xd1, 0xda, 0x57, 0x3e, 0x7e, 0x74, 0x98, 0x45, - 0x8f, 0x0f, 0xb3, 0xe8, 0x9f, 0xc3, 0x2c, 0xfa, 0xf9, 0x28, 0x9b, 0x7a, 0x7c, 0x94, 0x4d, 0x3d, - 0x39, 0xca, 0xa6, 0x3e, 0x37, 0x12, 0xa6, 0x84, 0x6f, 0xa2, 0xda, 0x72, 0x68, 0x28, 0x8d, 0xcb, - 0x3f, 0x17, 0x2e, 0x3f, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x9e, 0xc3, 0x72, 0x54, 0x11, 0x00, - 0x00, + proto.RegisterFile("lbm/distribution/v1beta1/query.proto", fileDescriptor_e417f441d2b5e393) +} + +var fileDescriptor_e417f441d2b5e393 = []byte{ + // 1109 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x98, 0x4d, 0x6f, 0x1b, 0x45, + 0x18, 0xc7, 0x3d, 0x6e, 0x9a, 0xd2, 0xa7, 0x94, 0xa4, 0xd3, 0x0a, 0xb9, 0x9b, 0x62, 0x5b, 0x9b, + 0x54, 0x49, 0x15, 0xe2, 0x55, 0x12, 0x5e, 0x4a, 0x05, 0x45, 0x79, 0x29, 0x2a, 0xa2, 0xa4, 0xad, + 0xfb, 0x12, 0xde, 0xcd, 0xd8, 0x3b, 0xac, 0x57, 0xac, 0x77, 0xdc, 0x9d, 0x71, 0x42, 0x54, 0x15, + 0x89, 0x72, 0xe9, 0x11, 0xc1, 0x85, 0x63, 0xc4, 0x91, 0x0b, 0x17, 0x3e, 0x44, 0x8f, 0x91, 0xb8, + 0x70, 0x40, 0x05, 0x25, 0x48, 0xf4, 0xca, 0x07, 0x40, 0x42, 0x9e, 0x9d, 0xf5, 0x7a, 0xed, 0x5d, + 0xdb, 0xb1, 0xd5, 0x9b, 0xf5, 0xec, 0x3c, 0xff, 0xf9, 0xff, 0x9e, 0x79, 0x79, 0x46, 0x86, 0x19, + 0xa7, 0x5c, 0x33, 0x4c, 0x9b, 0x0b, 0xcf, 0x2e, 0x37, 0x84, 0xcd, 0x5c, 0x63, 0x6b, 0xb1, 0x4c, + 0x05, 0x59, 0x34, 0xee, 0x35, 0xa8, 0xb7, 0x53, 0xa8, 0x7b, 0x4c, 0x30, 0x9c, 0x71, 0xca, 0xb5, + 0x42, 0xfb, 0xa8, 0x82, 0x1a, 0xa5, 0xcd, 0x36, 0xf3, 0xcb, 0x84, 0x53, 0x7f, 0x7c, 0x2b, 0xbb, + 0x4e, 0x2c, 0xdb, 0x25, 0x72, 0xa8, 0x94, 0xd0, 0xce, 0x58, 0xcc, 0x62, 0xf2, 0xa7, 0xd1, 0xfc, + 0xa5, 0xa2, 0xe7, 0x2c, 0xc6, 0x2c, 0x87, 0x1a, 0xa4, 0x6e, 0x1b, 0xc4, 0x75, 0x99, 0x90, 0x29, + 0x5c, 0x7d, 0x9d, 0x6a, 0x89, 0x07, 0xb2, 0x15, 0x66, 0x07, 0x82, 0xf3, 0x89, 0xce, 0x23, 0x46, + 0xe5, 0x60, 0xfd, 0x0c, 0xe0, 0x9b, 0x4d, 0x7f, 0x37, 0x88, 0x47, 0x6a, 0xbc, 0x48, 0xef, 0x35, + 0x28, 0x17, 0xfa, 0x1d, 0x38, 0x1d, 0x89, 0xf2, 0x3a, 0x73, 0x39, 0xc5, 0x97, 0x61, 0xbc, 0x2e, + 0x23, 0x19, 0x94, 0x47, 0x73, 0x27, 0x96, 0xf2, 0x85, 0x24, 0xfc, 0x82, 0x9f, 0xb9, 0x3a, 0xf6, + 0xf8, 0x49, 0x2e, 0x55, 0x54, 0x59, 0xfa, 0x5d, 0x98, 0x95, 0xb2, 0x77, 0x89, 0x63, 0x9b, 0x44, + 0x30, 0xef, 0x7a, 0x43, 0x70, 0x41, 0x5c, 0xd3, 0x76, 0xad, 0x22, 0xdd, 0x26, 0x9e, 0x19, 0x38, + 0xc0, 0xf3, 0x70, 0x6a, 0x2b, 0x18, 0x55, 0x22, 0xa6, 0xe9, 0x51, 0xee, 0xcf, 0x7a, 0xbc, 0x38, + 0xd9, 0xfa, 0xb0, 0xe2, 0xc7, 0xf5, 0x6f, 0x10, 0xcc, 0xf5, 0x17, 0x56, 0x10, 0x77, 0xe0, 0x98, + 0xe7, 0x87, 0x14, 0xc5, 0xab, 0xc9, 0x14, 0x3d, 0xf4, 0x14, 0x5a, 0xa0, 0xa5, 0x6f, 0x40, 0x2e, + 0x6a, 0x61, 0x8d, 0xd5, 0x6a, 0x36, 0xe7, 0x36, 0x73, 0x87, 0x62, 0x7a, 0x88, 0x20, 0x9f, 0x2c, + 0xa8, 0x58, 0x3e, 0x03, 0xa8, 0xb4, 0xa2, 0x0a, 0xe7, 0xe2, 0x00, 0x38, 0x2b, 0x95, 0x4a, 0xa3, + 0xd6, 0x70, 0x88, 0xa0, 0x66, 0xa8, 0xaa, 0x88, 0xda, 0x14, 0xf5, 0xa7, 0x08, 0xce, 0x45, 0x4d, + 0xdc, 0x72, 0x08, 0xaf, 0xd2, 0xa1, 0x96, 0x09, 0xcf, 0xc2, 0x04, 0x17, 0xc4, 0x13, 0xb6, 0x6b, + 0x95, 0xaa, 0xd4, 0xb6, 0xaa, 0x22, 0x93, 0xce, 0xa3, 0xb9, 0xb1, 0xe2, 0x0b, 0x41, 0xf8, 0xaa, + 0x8c, 0xe2, 0x69, 0x38, 0x49, 0x65, 0xad, 0x83, 0x61, 0x47, 0xe4, 0xb0, 0xe7, 0xfd, 0xa0, 0x1a, + 0xb4, 0x06, 0x10, 0x9e, 0xa5, 0xcc, 0x98, 0x64, 0x9f, 0x96, 0xec, 0xcd, 0x83, 0x51, 0xf0, 0x4f, + 0x69, 0xb8, 0x1d, 0x2d, 0xaa, 0x3c, 0x17, 0xdb, 0xd2, 0x2e, 0x3d, 0xf7, 0x68, 0x37, 0x97, 0xfa, + 0x71, 0x37, 0x87, 0xf4, 0x5f, 0x11, 0xbc, 0x94, 0x80, 0xaa, 0x8a, 0xfd, 0x3e, 0x1c, 0xe3, 0x7e, + 0x28, 0x83, 0xf2, 0x47, 0xe6, 0x4e, 0x2c, 0x2d, 0x0c, 0x50, 0x69, 0x29, 0x72, 0x65, 0x8b, 0xba, + 0x22, 0xd8, 0x30, 0x4a, 0x03, 0xaf, 0x47, 0xfc, 0xa7, 0xa5, 0xff, 0x99, 0xde, 0xfe, 0x7d, 0x23, + 0xed, 0x00, 0xfa, 0xb7, 0x81, 0xed, 0x75, 0xea, 0x50, 0x4b, 0xc6, 0xba, 0x4f, 0x92, 0xe9, 0x7f, + 0xeb, 0x5e, 0xa2, 0xd6, 0x87, 0x60, 0x89, 0x62, 0xd7, 0x33, 0x1d, 0xbf, 0x9e, 0x7e, 0xf1, 0x9e, + 0xee, 0xe6, 0x52, 0xfa, 0x23, 0x04, 0xd9, 0x24, 0x17, 0xaa, 0x7a, 0x5f, 0xb4, 0x1f, 0xbb, 0x66, + 0xf5, 0xce, 0x86, 0xac, 0x01, 0xe5, 0x3a, 0xad, 0xac, 0x31, 0xdb, 0x5d, 0x5d, 0x6c, 0x56, 0xea, + 0xe7, 0x3f, 0x73, 0x17, 0x2c, 0x5b, 0x54, 0x1b, 0xe5, 0x42, 0x85, 0xd5, 0x0c, 0xc7, 0x76, 0xa9, + 0xe1, 0x94, 0x6b, 0x0b, 0xdc, 0xfc, 0xd2, 0xd8, 0x5a, 0x32, 0xc4, 0x4e, 0x9d, 0xf2, 0x20, 0x83, + 0x87, 0xe7, 0xf0, 0x63, 0xd0, 0x3b, 0x9c, 0xdc, 0x66, 0x82, 0x38, 0x23, 0x14, 0xa5, 0x8d, 0xf3, + 0x09, 0x82, 0xe9, 0x9e, 0xea, 0x0a, 0xf6, 0x56, 0x27, 0xec, 0x72, 0xf2, 0x56, 0x09, 0xa5, 0xd6, + 0x83, 0x89, 0x7d, 0xb9, 0x8e, 0x1b, 0x06, 0x97, 0xe1, 0xa8, 0x68, 0x4e, 0x96, 0x49, 0x3f, 0x83, + 0xfa, 0xf9, 0xd2, 0xfa, 0x07, 0xea, 0x16, 0x6b, 0x59, 0x69, 0x6d, 0xe4, 0x51, 0x4b, 0x77, 0x4d, + 0x5d, 0x67, 0xb1, 0xca, 0xaa, 0x6c, 0x59, 0x80, 0xd6, 0x26, 0xf3, 0x2b, 0x77, 0xbc, 0xd8, 0x16, + 0x69, 0x53, 0xfb, 0x14, 0x66, 0xa2, 0x6a, 0x9b, 0xb6, 0xa8, 0x9a, 0x1e, 0xd9, 0x56, 0x13, 0x8f, + 0x68, 0xf6, 0x13, 0x38, 0xdf, 0x47, 0x5e, 0x39, 0xbe, 0x00, 0x93, 0xdb, 0xea, 0x53, 0x87, 0xfc, + 0xc4, 0x76, 0x34, 0xa5, 0x4d, 0x7d, 0x0a, 0xce, 0x4a, 0xf5, 0xe6, 0xd5, 0xdb, 0x70, 0x6d, 0xb1, + 0x73, 0x83, 0x31, 0x27, 0x68, 0xbd, 0x5f, 0x83, 0x16, 0xf7, 0x51, 0xcd, 0xf7, 0x39, 0x8c, 0xd5, + 0x19, 0x73, 0x9e, 0xc9, 0x11, 0x92, 0xca, 0x4b, 0x3f, 0x4d, 0xc0, 0x51, 0x69, 0x00, 0x7f, 0x8f, + 0x60, 0xdc, 0x6f, 0xe3, 0xf8, 0xe5, 0xe4, 0xed, 0xdb, 0xfd, 0x7a, 0xd0, 0x16, 0x06, 0x1c, 0xed, + 0x33, 0xe9, 0xf3, 0x0f, 0x7f, 0xfb, 0xfb, 0x87, 0xf4, 0x79, 0x3c, 0x6d, 0x54, 0x18, 0xaf, 0x31, + 0x1e, 0xff, 0x76, 0xf1, 0x9f, 0x10, 0xf8, 0x3f, 0x04, 0x53, 0x3d, 0xba, 0x32, 0x5e, 0xe9, 0x33, + 0x77, 0xff, 0xa7, 0x87, 0xb6, 0x3a, 0x8a, 0x84, 0x62, 0xda, 0x94, 0x4c, 0x37, 0xf1, 0xf5, 0x9e, + 0x4c, 0xe1, 0xd6, 0x36, 0xee, 0x77, 0x5d, 0xbb, 0x0f, 0x0c, 0x16, 0xea, 0x97, 0x82, 0x4b, 0xe0, + 0x0f, 0x04, 0xa7, 0x63, 0x5e, 0x04, 0xf8, 0x8d, 0x41, 0x4d, 0x77, 0x3d, 0x4b, 0xb4, 0x4b, 0xc3, + 0xa4, 0x2a, 0xce, 0x0d, 0xc9, 0x79, 0x15, 0xbf, 0x33, 0x0a, 0x67, 0xf8, 0xe0, 0xc0, 0x7b, 0x08, + 0x26, 0x3b, 0x1b, 0x30, 0x7e, 0x6d, 0x50, 0x83, 0xd1, 0xc7, 0x89, 0xf6, 0xfa, 0xa1, 0xf3, 0x14, + 0xd5, 0x7b, 0x92, 0xea, 0x0a, 0x5e, 0x1b, 0x85, 0x2a, 0xe8, 0xf3, 0xff, 0x20, 0x38, 0xd5, 0xd5, + 0x16, 0x71, 0x3f, 0x6f, 0x49, 0xed, 0x5c, 0xbb, 0x78, 0xf8, 0x44, 0x45, 0x55, 0x92, 0x54, 0x1f, + 0xe2, 0xcd, 0x9e, 0x54, 0xad, 0x5b, 0x91, 0x1b, 0xf7, 0xbb, 0xae, 0xce, 0x07, 0x86, 0xda, 0x87, + 0x71, 0xc4, 0x78, 0x1f, 0xc1, 0x8b, 0xf1, 0x8d, 0x11, 0xbf, 0x39, 0xb0, 0xeb, 0x98, 0x6e, 0xad, + 0xbd, 0x35, 0x64, 0xf6, 0xa1, 0x96, 0x73, 0x30, 0x70, 0x79, 0x00, 0x63, 0x7a, 0x58, 0xdf, 0x03, + 0x98, 0xdc, 0x51, 0xfb, 0x1e, 0xc0, 0x1e, 0x2d, 0x73, 0xc0, 0x03, 0xd8, 0x87, 0x2d, 0xdc, 0xc9, + 0xf8, 0x5f, 0x04, 0x99, 0xa4, 0xae, 0x87, 0x2f, 0x0f, 0x6a, 0x34, 0xbe, 0x1b, 0x6b, 0x6f, 0x0f, + 0x9d, 0xaf, 0x68, 0x6f, 0x4b, 0xda, 0x0d, 0x7c, 0x6d, 0x14, 0xda, 0xce, 0x86, 0x8d, 0x7f, 0x41, + 0x70, 0x32, 0xd2, 0x6e, 0xf1, 0x72, 0x1f, 0xa3, 0x71, 0x9d, 0x5b, 0x7b, 0xe5, 0x70, 0x49, 0x0a, + 0x69, 0x59, 0x22, 0x2d, 0xe0, 0xf9, 0x9e, 0x48, 0x95, 0x20, 0xb7, 0xd4, 0x6c, 0xd2, 0xab, 0xef, + 0x3e, 0xde, 0xcf, 0xa2, 0xbd, 0xfd, 0x2c, 0xfa, 0x6b, 0x3f, 0x8b, 0xbe, 0x3b, 0xc8, 0xa6, 0xf6, + 0x0e, 0xb2, 0xa9, 0xdf, 0x0f, 0xb2, 0xa9, 0x8f, 0x8c, 0x1e, 0xfd, 0xfe, 0xab, 0xa8, 0xb6, 0x6c, + 0xff, 0xe5, 0x71, 0xf9, 0x3f, 0xc0, 0xf2, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x97, 0xf7, 0x93, + 0x46, 0xf0, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -980,7 +980,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -989,7 +989,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) ValidatorOutstandingRewards(ctx context.Context, in *QueryValidatorOutstandingRewardsRequest, opts ...grpc.CallOption) (*QueryValidatorOutstandingRewardsResponse, error) { out := new(QueryValidatorOutstandingRewardsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/ValidatorOutstandingRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/ValidatorOutstandingRewards", in, out, opts...) if err != nil { return nil, err } @@ -998,7 +998,7 @@ func (c *queryClient) ValidatorOutstandingRewards(ctx context.Context, in *Query func (c *queryClient) ValidatorCommission(ctx context.Context, in *QueryValidatorCommissionRequest, opts ...grpc.CallOption) (*QueryValidatorCommissionResponse, error) { out := new(QueryValidatorCommissionResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/ValidatorCommission", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/ValidatorCommission", in, out, opts...) if err != nil { return nil, err } @@ -1007,7 +1007,7 @@ func (c *queryClient) ValidatorCommission(ctx context.Context, in *QueryValidato func (c *queryClient) ValidatorSlashes(ctx context.Context, in *QueryValidatorSlashesRequest, opts ...grpc.CallOption) (*QueryValidatorSlashesResponse, error) { out := new(QueryValidatorSlashesResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/ValidatorSlashes", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/ValidatorSlashes", in, out, opts...) if err != nil { return nil, err } @@ -1016,7 +1016,7 @@ func (c *queryClient) ValidatorSlashes(ctx context.Context, in *QueryValidatorSl func (c *queryClient) DelegationRewards(ctx context.Context, in *QueryDelegationRewardsRequest, opts ...grpc.CallOption) (*QueryDelegationRewardsResponse, error) { out := new(QueryDelegationRewardsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegationRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/DelegationRewards", in, out, opts...) if err != nil { return nil, err } @@ -1025,7 +1025,7 @@ func (c *queryClient) DelegationRewards(ctx context.Context, in *QueryDelegation func (c *queryClient) DelegationTotalRewards(ctx context.Context, in *QueryDelegationTotalRewardsRequest, opts ...grpc.CallOption) (*QueryDelegationTotalRewardsResponse, error) { out := new(QueryDelegationTotalRewardsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegationTotalRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/DelegationTotalRewards", in, out, opts...) if err != nil { return nil, err } @@ -1034,7 +1034,7 @@ func (c *queryClient) DelegationTotalRewards(ctx context.Context, in *QueryDeleg func (c *queryClient) DelegatorValidators(ctx context.Context, in *QueryDelegatorValidatorsRequest, opts ...grpc.CallOption) (*QueryDelegatorValidatorsResponse, error) { out := new(QueryDelegatorValidatorsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegatorValidators", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/DelegatorValidators", in, out, opts...) if err != nil { return nil, err } @@ -1043,7 +1043,7 @@ func (c *queryClient) DelegatorValidators(ctx context.Context, in *QueryDelegato func (c *queryClient) DelegatorWithdrawAddress(ctx context.Context, in *QueryDelegatorWithdrawAddressRequest, opts ...grpc.CallOption) (*QueryDelegatorWithdrawAddressResponse, error) { out := new(QueryDelegatorWithdrawAddressResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegatorWithdrawAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/DelegatorWithdrawAddress", in, out, opts...) if err != nil { return nil, err } @@ -1052,7 +1052,7 @@ func (c *queryClient) DelegatorWithdrawAddress(ctx context.Context, in *QueryDel func (c *queryClient) CommunityPool(ctx context.Context, in *QueryCommunityPoolRequest, opts ...grpc.CallOption) (*QueryCommunityPoolResponse, error) { out := new(QueryCommunityPoolResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/CommunityPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Query/CommunityPool", in, out, opts...) if err != nil { return nil, err } @@ -1128,7 +1128,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/Params", + FullMethod: "/lbm.distribution.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1146,7 +1146,7 @@ func _Query_ValidatorOutstandingRewards_Handler(srv interface{}, ctx context.Con } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/ValidatorOutstandingRewards", + FullMethod: "/lbm.distribution.v1beta1.Query/ValidatorOutstandingRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorOutstandingRewards(ctx, req.(*QueryValidatorOutstandingRewardsRequest)) @@ -1164,7 +1164,7 @@ func _Query_ValidatorCommission_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/ValidatorCommission", + FullMethod: "/lbm.distribution.v1beta1.Query/ValidatorCommission", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorCommission(ctx, req.(*QueryValidatorCommissionRequest)) @@ -1182,7 +1182,7 @@ func _Query_ValidatorSlashes_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/ValidatorSlashes", + FullMethod: "/lbm.distribution.v1beta1.Query/ValidatorSlashes", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorSlashes(ctx, req.(*QueryValidatorSlashesRequest)) @@ -1200,7 +1200,7 @@ func _Query_DelegationRewards_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/DelegationRewards", + FullMethod: "/lbm.distribution.v1beta1.Query/DelegationRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegationRewards(ctx, req.(*QueryDelegationRewardsRequest)) @@ -1218,7 +1218,7 @@ func _Query_DelegationTotalRewards_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/DelegationTotalRewards", + FullMethod: "/lbm.distribution.v1beta1.Query/DelegationTotalRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegationTotalRewards(ctx, req.(*QueryDelegationTotalRewardsRequest)) @@ -1236,7 +1236,7 @@ func _Query_DelegatorValidators_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/DelegatorValidators", + FullMethod: "/lbm.distribution.v1beta1.Query/DelegatorValidators", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorValidators(ctx, req.(*QueryDelegatorValidatorsRequest)) @@ -1254,7 +1254,7 @@ func _Query_DelegatorWithdrawAddress_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/DelegatorWithdrawAddress", + FullMethod: "/lbm.distribution.v1beta1.Query/DelegatorWithdrawAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorWithdrawAddress(ctx, req.(*QueryDelegatorWithdrawAddressRequest)) @@ -1272,7 +1272,7 @@ func _Query_CommunityPool_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Query/CommunityPool", + FullMethod: "/lbm.distribution.v1beta1.Query/CommunityPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).CommunityPool(ctx, req.(*QueryCommunityPoolRequest)) @@ -1281,7 +1281,7 @@ func _Query_CommunityPool_Handler(srv interface{}, ctx context.Context, dec func } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.distribution.v1beta1.Query", + ServiceName: "lbm.distribution.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1322,7 +1322,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/distribution/v1beta1/query.proto", + Metadata: "lbm/distribution/v1beta1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/distribution/types/query.pb.gw.go b/x/distribution/types/query.pb.gw.go index 7bbe7b7a29..72d366b580 100644 --- a/x/distribution/types/query.pb.gw.go +++ b/x/distribution/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/distribution/v1beta1/query.proto +// source: lbm/distribution/v1beta1/query.proto /* Package types is a reverse proxy. diff --git a/x/distribution/types/tx.pb.go b/x/distribution/types/tx.pb.go index cdffb4e8a7..8df2d897be 100644 --- a/x/distribution/types/tx.pb.go +++ b/x/distribution/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/v1beta1/tx.proto +// source: lbm/distribution/v1beta1/tx.proto package types @@ -41,7 +41,7 @@ func (m *MsgSetWithdrawAddress) Reset() { *m = MsgSetWithdrawAddress{} } func (m *MsgSetWithdrawAddress) String() string { return proto.CompactTextString(m) } func (*MsgSetWithdrawAddress) ProtoMessage() {} func (*MsgSetWithdrawAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{0} + return fileDescriptor_ec670e2c1ade6c31, []int{0} } func (m *MsgSetWithdrawAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *MsgSetWithdrawAddressResponse) Reset() { *m = MsgSetWithdrawAdd func (m *MsgSetWithdrawAddressResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetWithdrawAddressResponse) ProtoMessage() {} func (*MsgSetWithdrawAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{1} + return fileDescriptor_ec670e2c1ade6c31, []int{1} } func (m *MsgSetWithdrawAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,7 +118,7 @@ func (m *MsgWithdrawDelegatorReward) Reset() { *m = MsgWithdrawDelegator func (m *MsgWithdrawDelegatorReward) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawDelegatorReward) ProtoMessage() {} func (*MsgWithdrawDelegatorReward) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{2} + return fileDescriptor_ec670e2c1ade6c31, []int{2} } func (m *MsgWithdrawDelegatorReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -155,7 +155,7 @@ func (m *MsgWithdrawDelegatorRewardResponse) Reset() { *m = MsgWithdrawD func (m *MsgWithdrawDelegatorRewardResponse) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawDelegatorRewardResponse) ProtoMessage() {} func (*MsgWithdrawDelegatorRewardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{3} + return fileDescriptor_ec670e2c1ade6c31, []int{3} } func (m *MsgWithdrawDelegatorRewardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -194,7 +194,7 @@ func (m *MsgWithdrawValidatorCommission) Reset() { *m = MsgWithdrawValid func (m *MsgWithdrawValidatorCommission) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawValidatorCommission) ProtoMessage() {} func (*MsgWithdrawValidatorCommission) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{4} + return fileDescriptor_ec670e2c1ade6c31, []int{4} } func (m *MsgWithdrawValidatorCommission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -233,7 +233,7 @@ func (m *MsgWithdrawValidatorCommissionResponse) Reset() { func (m *MsgWithdrawValidatorCommissionResponse) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawValidatorCommissionResponse) ProtoMessage() {} func (*MsgWithdrawValidatorCommissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{5} + return fileDescriptor_ec670e2c1ade6c31, []int{5} } func (m *MsgWithdrawValidatorCommissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -273,7 +273,7 @@ func (m *MsgFundCommunityPool) Reset() { *m = MsgFundCommunityPool{} } func (m *MsgFundCommunityPool) String() string { return proto.CompactTextString(m) } func (*MsgFundCommunityPool) ProtoMessage() {} func (*MsgFundCommunityPool) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{6} + return fileDescriptor_ec670e2c1ade6c31, []int{6} } func (m *MsgFundCommunityPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -310,7 +310,7 @@ func (m *MsgFundCommunityPoolResponse) Reset() { *m = MsgFundCommunityPo func (m *MsgFundCommunityPoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgFundCommunityPoolResponse) ProtoMessage() {} func (*MsgFundCommunityPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ed4f433d965e58ca, []int{7} + return fileDescriptor_ec670e2c1ade6c31, []int{7} } func (m *MsgFundCommunityPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -340,58 +340,55 @@ func (m *MsgFundCommunityPoolResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgFundCommunityPoolResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgSetWithdrawAddress)(nil), "cosmos.distribution.v1beta1.MsgSetWithdrawAddress") - proto.RegisterType((*MsgSetWithdrawAddressResponse)(nil), "cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse") - proto.RegisterType((*MsgWithdrawDelegatorReward)(nil), "cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward") - proto.RegisterType((*MsgWithdrawDelegatorRewardResponse)(nil), "cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse") - proto.RegisterType((*MsgWithdrawValidatorCommission)(nil), "cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission") - proto.RegisterType((*MsgWithdrawValidatorCommissionResponse)(nil), "cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse") - proto.RegisterType((*MsgFundCommunityPool)(nil), "cosmos.distribution.v1beta1.MsgFundCommunityPool") - proto.RegisterType((*MsgFundCommunityPoolResponse)(nil), "cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse") -} - -func init() { - proto.RegisterFile("cosmos/distribution/v1beta1/tx.proto", fileDescriptor_ed4f433d965e58ca) -} - -var fileDescriptor_ed4f433d965e58ca = []byte{ - // 561 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x31, 0x6f, 0xd3, 0x40, - 0x1c, 0xc5, 0x7d, 0x2d, 0xaa, 0xe8, 0x31, 0xd0, 0x58, 0x45, 0x0d, 0x4e, 0x38, 0x57, 0x56, 0x55, - 0x65, 0xc1, 0x56, 0xc2, 0x80, 0x08, 0x03, 0x22, 0x41, 0x95, 0x3a, 0x44, 0x42, 0x46, 0x02, 0x89, - 0x05, 0x9d, 0x73, 0x27, 0xf7, 0x84, 0xed, 0x8b, 0x7c, 0xe7, 0xa4, 0x19, 0x91, 0x18, 0x18, 0x91, - 0xf8, 0x00, 0x94, 0x0d, 0x31, 0x33, 0xf2, 0x01, 0x32, 0x76, 0x64, 0x0a, 0x28, 0x59, 0x98, 0xfb, - 0x09, 0x50, 0xe2, 0xd8, 0x24, 0xb5, 0x93, 0x52, 0xca, 0x16, 0xfd, 0xef, 0xbd, 0xdf, 0xbd, 0xbf, - 0xf2, 0x2e, 0x81, 0x7b, 0x6d, 0x2e, 0x7c, 0x2e, 0x2c, 0xc2, 0x84, 0x0c, 0x99, 0x13, 0x49, 0xc6, - 0x03, 0xab, 0x5b, 0x75, 0xa8, 0xc4, 0x55, 0x4b, 0x1e, 0x9b, 0x9d, 0x90, 0x4b, 0xae, 0x96, 0x62, - 0x95, 0x39, 0xaf, 0x32, 0x67, 0x2a, 0x6d, 0xdb, 0xe5, 0x2e, 0x9f, 0xea, 0xac, 0xc9, 0xa7, 0xd8, - 0xa2, 0xa1, 0x19, 0xd8, 0xc1, 0x82, 0xa6, 0xc0, 0x36, 0x67, 0x41, 0x7c, 0x6e, 0x7c, 0x05, 0xf0, - 0x56, 0x4b, 0xb8, 0xcf, 0xa8, 0x7c, 0xc1, 0xe4, 0x11, 0x09, 0x71, 0xef, 0x31, 0x21, 0x21, 0x15, - 0x42, 0x3d, 0x84, 0x05, 0x42, 0x3d, 0xea, 0x62, 0xc9, 0xc3, 0x57, 0x38, 0x1e, 0x16, 0xc1, 0x2e, - 0xa8, 0x6c, 0x36, 0xca, 0x67, 0x43, 0xbd, 0xd8, 0xc7, 0xbe, 0x57, 0x37, 0x32, 0x12, 0xc3, 0xde, - 0x4a, 0x67, 0x09, 0xea, 0x00, 0x6e, 0xf5, 0x66, 0xf4, 0x94, 0xb4, 0x36, 0x25, 0x95, 0xce, 0x86, - 0xfa, 0x4e, 0x4c, 0x3a, 0xaf, 0x30, 0xec, 0x9b, 0xbd, 0xc5, 0x48, 0xf5, 0xeb, 0xef, 0x4e, 0x74, - 0xe5, 0xd7, 0x89, 0xae, 0x18, 0x3a, 0xbc, 0x93, 0x9b, 0xda, 0xa6, 0xa2, 0xc3, 0x03, 0x41, 0x8d, - 0x6f, 0x00, 0x6a, 0x2d, 0xe1, 0x26, 0xc7, 0x4f, 0x92, 0x48, 0x36, 0xed, 0xe1, 0x90, 0xfc, 0xcf, - 0xe5, 0x0e, 0x61, 0xa1, 0x8b, 0x3d, 0x46, 0x16, 0x50, 0x6b, 0xe7, 0x51, 0x19, 0x89, 0x61, 0x6f, - 0xa5, 0xb3, 0xec, 0x7e, 0x7b, 0xd0, 0x58, 0x9e, 0x3e, 0x5d, 0x32, 0x82, 0x68, 0x4e, 0xf5, 0x3c, - 0xc1, 0x35, 0xb9, 0xef, 0x33, 0x21, 0x18, 0x0f, 0xf2, 0xc3, 0x81, 0x2b, 0x86, 0xab, 0xc0, 0xfd, - 0xd5, 0xd7, 0xa6, 0x01, 0x3f, 0x01, 0xb8, 0xdd, 0x12, 0xee, 0x41, 0x14, 0x90, 0xc9, 0x69, 0x14, - 0x30, 0xd9, 0x7f, 0xca, 0xb9, 0xa7, 0x62, 0xb8, 0x81, 0x7d, 0x1e, 0x05, 0xb2, 0x08, 0x76, 0xd7, - 0x2b, 0x37, 0x6a, 0xb7, 0xcd, 0x59, 0xb5, 0x27, 0x3d, 0x4d, 0x2a, 0x6d, 0x36, 0x39, 0x0b, 0x1a, - 0xe6, 0x60, 0xa8, 0x2b, 0x5f, 0x7e, 0xe8, 0xfb, 0x2e, 0x93, 0x47, 0x91, 0x63, 0xb6, 0xb9, 0x6f, - 0x79, 0x2c, 0xa0, 0x96, 0xe7, 0xf8, 0x77, 0x05, 0x79, 0x6d, 0x75, 0x6b, 0x96, 0xec, 0x77, 0xa8, - 0x98, 0xca, 0x85, 0x3d, 0x03, 0xab, 0x65, 0xb8, 0x49, 0x68, 0x87, 0x0b, 0x26, 0x79, 0x18, 0x7f, - 0x1f, 0xf6, 0x9f, 0xc1, 0xdc, 0x36, 0x08, 0x96, 0xf3, 0x22, 0x26, 0x3b, 0xd4, 0x06, 0xd7, 0xe0, - 0x7a, 0x4b, 0xb8, 0xea, 0x5b, 0x00, 0xd5, 0x9c, 0x67, 0x52, 0x33, 0x57, 0x3c, 0x4a, 0x33, 0xb7, - 0xa4, 0x5a, 0xfd, 0xf2, 0x9e, 0x24, 0x8e, 0xfa, 0x01, 0xc0, 0x9d, 0x65, 0xad, 0xbe, 0x7f, 0x11, - 0x77, 0x89, 0x51, 0x7b, 0xf4, 0x8f, 0xc6, 0x34, 0xd5, 0x47, 0x00, 0x4b, 0xab, 0x7a, 0xf8, 0xf0, - 0x6f, 0x2f, 0xc8, 0x31, 0x6b, 0xcd, 0x2b, 0x98, 0xd3, 0x84, 0x6f, 0x00, 0x2c, 0x64, 0x7b, 0x58, - 0xbd, 0x08, 0x9d, 0xb1, 0x68, 0x0f, 0x2e, 0x6d, 0x49, 0x32, 0x34, 0x5a, 0x9f, 0x47, 0x08, 0x0c, - 0x46, 0x08, 0x9c, 0x8e, 0x10, 0xf8, 0x39, 0x42, 0xe0, 0xfd, 0x18, 0x29, 0xa7, 0x63, 0xa4, 0x7c, - 0x1f, 0x23, 0xe5, 0xa5, 0xb5, 0xa2, 0xe0, 0xc7, 0x8b, 0xff, 0x0c, 0xd3, 0xbe, 0x3b, 0x1b, 0xd3, - 0x9f, 0xf0, 0x7b, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x27, 0x0a, 0x6e, 0x6b, 0x3d, 0x06, 0x00, - 0x00, + proto.RegisterType((*MsgSetWithdrawAddress)(nil), "lbm.distribution.v1beta1.MsgSetWithdrawAddress") + proto.RegisterType((*MsgSetWithdrawAddressResponse)(nil), "lbm.distribution.v1beta1.MsgSetWithdrawAddressResponse") + proto.RegisterType((*MsgWithdrawDelegatorReward)(nil), "lbm.distribution.v1beta1.MsgWithdrawDelegatorReward") + proto.RegisterType((*MsgWithdrawDelegatorRewardResponse)(nil), "lbm.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse") + proto.RegisterType((*MsgWithdrawValidatorCommission)(nil), "lbm.distribution.v1beta1.MsgWithdrawValidatorCommission") + proto.RegisterType((*MsgWithdrawValidatorCommissionResponse)(nil), "lbm.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse") + proto.RegisterType((*MsgFundCommunityPool)(nil), "lbm.distribution.v1beta1.MsgFundCommunityPool") + proto.RegisterType((*MsgFundCommunityPoolResponse)(nil), "lbm.distribution.v1beta1.MsgFundCommunityPoolResponse") +} + +func init() { proto.RegisterFile("lbm/distribution/v1beta1/tx.proto", fileDescriptor_ec670e2c1ade6c31) } + +var fileDescriptor_ec670e2c1ade6c31 = []byte{ + // 560 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xb1, 0x6f, 0xd3, 0x40, + 0x14, 0xc6, 0x7d, 0x2d, 0xaa, 0xe8, 0x31, 0xd0, 0x58, 0x85, 0x46, 0x4e, 0xb0, 0x8b, 0x85, 0xaa, + 0x2c, 0xdc, 0xa9, 0x01, 0x01, 0xaa, 0x18, 0x20, 0x45, 0x95, 0x3a, 0x44, 0x42, 0x46, 0x02, 0x89, + 0x01, 0x64, 0xf7, 0x4e, 0xee, 0x09, 0xdb, 0x17, 0xf9, 0xce, 0x49, 0x23, 0x24, 0x66, 0x16, 0x24, + 0x56, 0x16, 0xd4, 0x11, 0x31, 0x30, 0x31, 0xf2, 0x07, 0x74, 0xec, 0xc8, 0x14, 0x50, 0xb2, 0x30, + 0xf7, 0x2f, 0x40, 0xb1, 0x63, 0x93, 0xd4, 0x8e, 0x45, 0x0b, 0x9b, 0xf5, 0xde, 0xf7, 0x7e, 0xf7, + 0x3d, 0xf9, 0xbb, 0x83, 0xd7, 0x3d, 0xc7, 0xc7, 0x84, 0x09, 0x19, 0x32, 0x27, 0x92, 0x8c, 0x07, + 0xb8, 0xbb, 0xe9, 0x50, 0x69, 0x6f, 0x62, 0x79, 0x80, 0x3a, 0x21, 0x97, 0x5c, 0xad, 0x7a, 0x8e, + 0x8f, 0xa6, 0x25, 0x68, 0x22, 0xd1, 0x56, 0x5d, 0xee, 0xf2, 0x58, 0x84, 0xc7, 0x5f, 0x89, 0x5e, + 0xab, 0x8d, 0x91, 0x8e, 0x2d, 0x68, 0x86, 0xda, 0xe3, 0x2c, 0x48, 0x9a, 0xe6, 0x57, 0x00, 0xaf, + 0xb4, 0x85, 0xfb, 0x84, 0xca, 0x67, 0x4c, 0xee, 0x93, 0xd0, 0xee, 0x3d, 0x24, 0x24, 0xa4, 0x42, + 0xa8, 0xbb, 0xb0, 0x42, 0xa8, 0x47, 0x5d, 0x5b, 0xf2, 0xf0, 0xa5, 0x9d, 0x14, 0xab, 0x60, 0x1d, + 0x34, 0x96, 0x5b, 0xf5, 0x93, 0x81, 0x51, 0xed, 0xdb, 0xbe, 0xb7, 0x65, 0xe6, 0x24, 0xa6, 0xb5, + 0x92, 0xd5, 0x52, 0xd4, 0x0e, 0x5c, 0xe9, 0x4d, 0xe8, 0x19, 0x69, 0x21, 0x26, 0xd5, 0x4e, 0x06, + 0xc6, 0x5a, 0x42, 0x3a, 0xad, 0x30, 0xad, 0xcb, 0xbd, 0x59, 0x4b, 0x5b, 0x17, 0xdf, 0x1e, 0x1a, + 0xca, 0xaf, 0x43, 0x43, 0x31, 0x0d, 0x78, 0xad, 0xd0, 0xb5, 0x45, 0x45, 0x87, 0x07, 0x82, 0x9a, + 0xdf, 0x00, 0xd4, 0xda, 0xc2, 0x4d, 0xdb, 0x8f, 0x52, 0x4b, 0x16, 0xed, 0xd9, 0x21, 0xf9, 0x9f, + 0xcb, 0xed, 0xc2, 0x4a, 0xd7, 0xf6, 0x18, 0x99, 0x41, 0x2d, 0x9c, 0x46, 0xe5, 0x24, 0xa6, 0xb5, + 0x92, 0xd5, 0xf2, 0xfb, 0xdd, 0x80, 0xe6, 0x7c, 0xf7, 0xd9, 0x92, 0x11, 0xd4, 0xa7, 0x54, 0x4f, + 0x53, 0xdc, 0x36, 0xf7, 0x7d, 0x26, 0x04, 0xe3, 0x41, 0xb1, 0x39, 0xf0, 0x8f, 0xe6, 0x1a, 0x70, + 0xa3, 0xfc, 0xd8, 0xcc, 0xe0, 0x47, 0x00, 0x57, 0xdb, 0xc2, 0xdd, 0x89, 0x02, 0x32, 0xee, 0x46, + 0x01, 0x93, 0xfd, 0xc7, 0x9c, 0x7b, 0xea, 0x0b, 0xb8, 0x64, 0xfb, 0x3c, 0x0a, 0x64, 0x15, 0xac, + 0x2f, 0x36, 0x2e, 0x35, 0xaf, 0xa2, 0x71, 0xa8, 0xc7, 0x21, 0x4d, 0xc3, 0x8c, 0xb6, 0x39, 0x0b, + 0x5a, 0xe8, 0x68, 0x60, 0x28, 0x9f, 0x7f, 0x18, 0x1b, 0x2e, 0x93, 0xfb, 0x91, 0x83, 0xf6, 0xb8, + 0x8f, 0x3d, 0x16, 0x50, 0xec, 0x39, 0xfe, 0x4d, 0x41, 0x5e, 0xe1, 0x6e, 0x13, 0xcb, 0x7e, 0x87, + 0x8a, 0x58, 0x2e, 0xac, 0x09, 0x55, 0xad, 0xc3, 0x65, 0x42, 0x3b, 0x5c, 0x30, 0xc9, 0xc3, 0xe4, + 0x67, 0x58, 0x7f, 0x0a, 0x53, 0xab, 0xe8, 0xb0, 0x5e, 0xe4, 0x2f, 0x5d, 0xa0, 0xf9, 0xe5, 0x02, + 0x5c, 0x6c, 0x0b, 0x57, 0x7d, 0x03, 0xd5, 0x82, 0x2b, 0x82, 0xd1, 0xbc, 0xab, 0x88, 0x0a, 0xd3, + 0xa9, 0xdd, 0x3d, 0xe3, 0x40, 0xea, 0x43, 0x7d, 0x07, 0xe0, 0xda, 0xbc, 0x2c, 0xdf, 0x2e, 0x85, + 0xce, 0x99, 0xd2, 0xee, 0x9f, 0x67, 0x2a, 0xf3, 0xf3, 0x01, 0xc0, 0x5a, 0x59, 0xee, 0xee, 0xfd, + 0x15, 0xbd, 0x60, 0x52, 0x7b, 0x70, 0xde, 0xc9, 0xcc, 0xdb, 0x6b, 0x58, 0xc9, 0x07, 0x0e, 0x95, + 0x62, 0x73, 0x7a, 0xed, 0xce, 0xd9, 0xf4, 0xe9, 0xe1, 0xad, 0xf6, 0xa7, 0xa1, 0x0e, 0x8e, 0x86, + 0x3a, 0x38, 0x1e, 0xea, 0xe0, 0xe7, 0x50, 0x07, 0xef, 0x47, 0xba, 0x72, 0x3c, 0xd2, 0x95, 0xef, + 0x23, 0x5d, 0x79, 0x8e, 0x4b, 0x62, 0x7c, 0x30, 0xfb, 0xec, 0xc7, 0xa9, 0x76, 0x96, 0xe2, 0x57, + 0xfa, 0xd6, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x80, 0x1e, 0xcf, 0x17, 0x06, 0x00, 0x00, } func (this *MsgSetWithdrawAddressResponse) Equal(that interface{}) bool { @@ -515,7 +512,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) SetWithdrawAddress(ctx context.Context, in *MsgSetWithdrawAddress, opts ...grpc.CallOption) (*MsgSetWithdrawAddressResponse, error) { out := new(MsgSetWithdrawAddressResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Msg/SetWithdrawAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Msg/SetWithdrawAddress", in, out, opts...) if err != nil { return nil, err } @@ -524,7 +521,7 @@ func (c *msgClient) SetWithdrawAddress(ctx context.Context, in *MsgSetWithdrawAd func (c *msgClient) WithdrawDelegatorReward(ctx context.Context, in *MsgWithdrawDelegatorReward, opts ...grpc.CallOption) (*MsgWithdrawDelegatorRewardResponse, error) { out := new(MsgWithdrawDelegatorRewardResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Msg/WithdrawDelegatorReward", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Msg/WithdrawDelegatorReward", in, out, opts...) if err != nil { return nil, err } @@ -533,7 +530,7 @@ func (c *msgClient) WithdrawDelegatorReward(ctx context.Context, in *MsgWithdraw func (c *msgClient) WithdrawValidatorCommission(ctx context.Context, in *MsgWithdrawValidatorCommission, opts ...grpc.CallOption) (*MsgWithdrawValidatorCommissionResponse, error) { out := new(MsgWithdrawValidatorCommissionResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Msg/WithdrawValidatorCommission", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Msg/WithdrawValidatorCommission", in, out, opts...) if err != nil { return nil, err } @@ -542,7 +539,7 @@ func (c *msgClient) WithdrawValidatorCommission(ctx context.Context, in *MsgWith func (c *msgClient) FundCommunityPool(ctx context.Context, in *MsgFundCommunityPool, opts ...grpc.CallOption) (*MsgFundCommunityPoolResponse, error) { out := new(MsgFundCommunityPoolResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Msg/FundCommunityPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.distribution.v1beta1.Msg/FundCommunityPool", in, out, opts...) if err != nil { return nil, err } @@ -596,7 +593,7 @@ func _Msg_SetWithdrawAddress_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Msg/SetWithdrawAddress", + FullMethod: "/lbm.distribution.v1beta1.Msg/SetWithdrawAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SetWithdrawAddress(ctx, req.(*MsgSetWithdrawAddress)) @@ -614,7 +611,7 @@ func _Msg_WithdrawDelegatorReward_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Msg/WithdrawDelegatorReward", + FullMethod: "/lbm.distribution.v1beta1.Msg/WithdrawDelegatorReward", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WithdrawDelegatorReward(ctx, req.(*MsgWithdrawDelegatorReward)) @@ -632,7 +629,7 @@ func _Msg_WithdrawValidatorCommission_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Msg/WithdrawValidatorCommission", + FullMethod: "/lbm.distribution.v1beta1.Msg/WithdrawValidatorCommission", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WithdrawValidatorCommission(ctx, req.(*MsgWithdrawValidatorCommission)) @@ -650,7 +647,7 @@ func _Msg_FundCommunityPool_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.v1beta1.Msg/FundCommunityPool", + FullMethod: "/lbm.distribution.v1beta1.Msg/FundCommunityPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).FundCommunityPool(ctx, req.(*MsgFundCommunityPool)) @@ -659,7 +656,7 @@ func _Msg_FundCommunityPool_Handler(srv interface{}, ctx context.Context, dec fu } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.distribution.v1beta1.Msg", + ServiceName: "lbm.distribution.v1beta1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -680,7 +677,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/distribution/v1beta1/tx.proto", + Metadata: "lbm/distribution/v1beta1/tx.proto", } func (m *MsgSetWithdrawAddress) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/legacy/v040/migrate_test.go b/x/evidence/legacy/v040/migrate_test.go index e85d2d93a7..481f956c9e 100644 --- a/x/evidence/legacy/v040/migrate_test.go +++ b/x/evidence/legacy/v040/migrate_test.go @@ -32,7 +32,7 @@ func TestMigrate(t *testing.T) { } migrated := v040evidence.Migrate(evidenceGenState) - expected := `{"evidence":[{"@type":"/cosmos.evidence.v1beta1.Equivocation","height":"20","time":"0001-01-01T00:00:00Z","power":"100","consensus_address":"cosmosvalcons1xxkueklal9vejv9unqu80w9vptyepfa99x2a3w"}]}` + expected := `{"evidence":[{"@type":"/lbm.evidence.v1beta1.Equivocation","height":"20","time":"0001-01-01T00:00:00Z","power":"100","consensus_address":"cosmosvalcons1xxkueklal9vejv9unqu80w9vptyepfa99x2a3w"}]}` bz, err := clientCtx.JSONMarshaler.MarshalJSON(migrated) require.NoError(t, err) diff --git a/x/evidence/types/codec.go b/x/evidence/types/codec.go index 666ea66ea5..8a5f56696a 100644 --- a/x/evidence/types/codec.go +++ b/x/evidence/types/codec.go @@ -13,14 +13,14 @@ import ( // evidence module. func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*exported.Evidence)(nil), nil) - cdc.RegisterConcrete(&MsgSubmitEvidence{}, "cosmos-sdk/MsgSubmitEvidence", nil) - cdc.RegisterConcrete(&Equivocation{}, "cosmos-sdk/Equivocation", nil) + cdc.RegisterConcrete(&MsgSubmitEvidence{}, "lbm-sdk/MsgSubmitEvidence", nil) + cdc.RegisterConcrete(&Equivocation{}, "lbm-sdk/Equivocation", nil) } func RegisterInterfaces(registry types.InterfaceRegistry) { registry.RegisterImplementations((*sdk.Msg)(nil), &MsgSubmitEvidence{}) registry.RegisterInterface( - "cosmos.evidence.v1beta1.Evidence", + "lbm.evidence.v1beta1.Evidence", (*exported.Evidence)(nil), &Equivocation{}, ) diff --git a/x/evidence/types/evidence.pb.go b/x/evidence/types/evidence.pb.go index 00a5b64f38..9f887affd7 100644 --- a/x/evidence/types/evidence.pb.go +++ b/x/evidence/types/evidence.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/v1beta1/evidence.proto +// source: lbm/evidence/v1beta1/evidence.proto package types @@ -39,7 +39,7 @@ type Equivocation struct { func (m *Equivocation) Reset() { *m = Equivocation{} } func (*Equivocation) ProtoMessage() {} func (*Equivocation) Descriptor() ([]byte, []int) { - return fileDescriptor_dd143e71a177f0dd, []int{0} + return fileDescriptor_4abcb1d50004f77c, []int{0} } func (m *Equivocation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -69,36 +69,36 @@ func (m *Equivocation) XXX_DiscardUnknown() { var xxx_messageInfo_Equivocation proto.InternalMessageInfo func init() { - proto.RegisterType((*Equivocation)(nil), "cosmos.evidence.v1beta1.Equivocation") + proto.RegisterType((*Equivocation)(nil), "lbm.evidence.v1beta1.Equivocation") } func init() { - proto.RegisterFile("cosmos/evidence/v1beta1/evidence.proto", fileDescriptor_dd143e71a177f0dd) + proto.RegisterFile("lbm/evidence/v1beta1/evidence.proto", fileDescriptor_4abcb1d50004f77c) } -var fileDescriptor_dd143e71a177f0dd = []byte{ - // 329 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0x3f, 0x4f, 0xfa, 0x40, - 0x1c, 0xc6, 0xef, 0x7e, 0xf0, 0x23, 0x5a, 0x19, 0xb4, 0x21, 0xda, 0x10, 0x73, 0x47, 0x18, 0x0c, - 0x89, 0xb1, 0x17, 0x70, 0x31, 0x6c, 0x92, 0x38, 0xb0, 0x12, 0x27, 0x17, 0xd3, 0x3f, 0x67, 0xb9, - 0xd8, 0xf6, 0x5b, 0xb9, 0x6b, 0x95, 0x77, 0xe0, 0xc8, 0xe8, 0xc8, 0xe8, 0x4b, 0x61, 0x93, 0xd1, - 0x09, 0x4d, 0x59, 0x9c, 0x7d, 0x05, 0x86, 0x1e, 0xe0, 0xe0, 0x76, 0xcf, 0x93, 0xcf, 0xf3, 0x49, - 0xee, 0x6b, 0x9c, 0x78, 0x20, 0x23, 0x90, 0x8c, 0x67, 0xc2, 0xe7, 0xb1, 0xc7, 0x59, 0xd6, 0x76, - 0xb9, 0x72, 0xda, 0xdb, 0xc2, 0x4e, 0x46, 0xa0, 0xc0, 0x3c, 0xd2, 0x9c, 0xbd, 0xad, 0xd7, 0x5c, - 0xbd, 0x16, 0x40, 0x00, 0x05, 0xc3, 0x56, 0x2f, 0x8d, 0xd7, 0x69, 0x00, 0x10, 0x84, 0x9c, 0x15, - 0xc9, 0x4d, 0xef, 0x98, 0x12, 0x11, 0x97, 0xca, 0x89, 0x12, 0x0d, 0x34, 0xdf, 0xb0, 0x51, 0xbd, - 0x7a, 0x48, 0x45, 0x06, 0x9e, 0xa3, 0x04, 0xc4, 0xe6, 0xa1, 0x51, 0x19, 0x72, 0x11, 0x0c, 0x95, - 0x85, 0x1b, 0xb8, 0x55, 0x1a, 0xac, 0x93, 0x79, 0x61, 0x94, 0x57, 0x5b, 0xeb, 0x5f, 0x03, 0xb7, - 0xf6, 0x3a, 0x75, 0x5b, 0x8b, 0xed, 0x8d, 0xd8, 0xbe, 0xde, 0x88, 0x7b, 0x3b, 0xb3, 0x05, 0x45, - 0x93, 0x0f, 0x8a, 0x07, 0xc5, 0xc2, 0xac, 0x19, 0xff, 0x13, 0x78, 0xe4, 0x23, 0xab, 0x54, 0x08, - 0x75, 0x30, 0xfb, 0xc6, 0x81, 0x07, 0xb1, 0xe4, 0xb1, 0x4c, 0xe5, 0xad, 0xe3, 0xfb, 0x23, 0x2e, - 0xa5, 0x55, 0x6e, 0xe0, 0xd6, 0x6e, 0xef, 0xf8, 0x7b, 0x41, 0xad, 0xb1, 0x13, 0x85, 0xdd, 0xe6, - 0x1f, 0xa4, 0x39, 0xd8, 0xdf, 0x76, 0x97, 0xba, 0xea, 0x56, 0x9f, 0xa7, 0x14, 0xbd, 0x4c, 0x29, - 0xfa, 0x9a, 0x52, 0xd4, 0xeb, 0xbf, 0xe6, 0x04, 0xcf, 0x72, 0x82, 0xe7, 0x39, 0xc1, 0x9f, 0x39, - 0xc1, 0x93, 0x25, 0x41, 0xf3, 0x25, 0x41, 0xef, 0x4b, 0x82, 0x6e, 0x4e, 0x03, 0xa1, 0x86, 0xa9, - 0x6b, 0x7b, 0x10, 0xb1, 0x50, 0xc4, 0x9c, 0x85, 0x6e, 0x74, 0x26, 0xfd, 0x7b, 0x96, 0x75, 0xd8, - 0xd3, 0xef, 0xf5, 0xd5, 0x38, 0xe1, 0xd2, 0xad, 0x14, 0xbf, 0x3b, 0xff, 0x09, 0x00, 0x00, 0xff, - 0xff, 0x25, 0xc0, 0xcd, 0x43, 0x9d, 0x01, 0x00, 0x00, +var fileDescriptor_4abcb1d50004f77c = []byte{ + // 326 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0xb1, 0x4e, 0xc2, 0x40, + 0x1c, 0xc6, 0xef, 0x04, 0x89, 0x56, 0x06, 0x6d, 0x88, 0x69, 0x88, 0xb9, 0x23, 0xb8, 0x90, 0x18, + 0x7b, 0x01, 0x17, 0xc3, 0x26, 0x89, 0x03, 0x2b, 0x71, 0x72, 0x31, 0xbd, 0xf6, 0x2c, 0x17, 0xef, + 0x7a, 0x95, 0xbb, 0x56, 0x79, 0x03, 0x47, 0x46, 0x47, 0x46, 0x1f, 0x85, 0x4d, 0x46, 0x27, 0x34, + 0x65, 0x71, 0xf6, 0x09, 0x0c, 0x2d, 0xe0, 0xe0, 0x76, 0xdf, 0x97, 0xdf, 0xf7, 0x4b, 0xee, 0x6f, + 0x9d, 0x0a, 0x2a, 0x09, 0x4b, 0x79, 0xc0, 0x22, 0x9f, 0x91, 0xb4, 0x4d, 0x99, 0xf1, 0xda, 0xdb, + 0xc2, 0x8d, 0x47, 0xca, 0x28, 0xbb, 0x26, 0xa8, 0x74, 0xb7, 0xdd, 0x1a, 0xaa, 0xd7, 0x42, 0x15, + 0xaa, 0x1c, 0x20, 0xab, 0x57, 0xc1, 0xd6, 0x71, 0xa8, 0x54, 0x28, 0x18, 0xc9, 0x13, 0x4d, 0xee, + 0x89, 0xe1, 0x92, 0x69, 0xe3, 0xc9, 0xb8, 0x00, 0x9a, 0xef, 0xd0, 0xaa, 0x5e, 0x3f, 0x26, 0x3c, + 0x55, 0xbe, 0x67, 0xb8, 0x8a, 0xec, 0x63, 0xab, 0x32, 0x64, 0x3c, 0x1c, 0x1a, 0x07, 0x36, 0x60, + 0xab, 0x34, 0x58, 0x27, 0xfb, 0xd2, 0x2a, 0xaf, 0xb6, 0xce, 0x4e, 0x03, 0xb6, 0x0e, 0x3a, 0x75, + 0xb7, 0x10, 0xbb, 0x1b, 0xb1, 0x7b, 0xb3, 0x11, 0xf7, 0xf6, 0x66, 0x0b, 0x0c, 0x26, 0x9f, 0x18, + 0x0e, 0xf2, 0x85, 0x5d, 0xb3, 0x76, 0x63, 0xf5, 0xc4, 0x46, 0x4e, 0x29, 0x17, 0x16, 0xc1, 0xee, + 0x5b, 0x47, 0xbe, 0x8a, 0x34, 0x8b, 0x74, 0xa2, 0xef, 0xbc, 0x20, 0x18, 0x31, 0xad, 0x9d, 0x72, + 0x03, 0xb6, 0xf6, 0x7b, 0x27, 0x3f, 0x0b, 0xec, 0x8c, 0x3d, 0x29, 0xba, 0xcd, 0x7f, 0x48, 0x73, + 0x70, 0xb8, 0xed, 0xae, 0x8a, 0xaa, 0x5b, 0x7d, 0x99, 0x62, 0xf0, 0x3a, 0xc5, 0xe0, 0x7b, 0x8a, + 0x41, 0xaf, 0xff, 0x96, 0x21, 0x38, 0xcb, 0x10, 0x9c, 0x67, 0x08, 0x7e, 0x65, 0x08, 0x4e, 0x96, + 0x08, 0xcc, 0x97, 0x08, 0x7c, 0x2c, 0x11, 0xb8, 0x3d, 0x0b, 0xb9, 0x19, 0x26, 0xd4, 0xf5, 0x95, + 0x24, 0x82, 0x47, 0x8c, 0x08, 0x2a, 0xcf, 0x75, 0xf0, 0x40, 0xd2, 0x0e, 0x79, 0xfe, 0x3b, 0xbd, + 0x19, 0xc7, 0x4c, 0xd3, 0x4a, 0xfe, 0xbb, 0x8b, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x72, 0xe9, + 0x5f, 0x5a, 0x97, 0x01, 0x00, 0x00, } func (m *Equivocation) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/types/genesis.pb.go b/x/evidence/types/genesis.pb.go index b7f1c2291d..8d1ac968a8 100644 --- a/x/evidence/types/genesis.pb.go +++ b/x/evidence/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/v1beta1/genesis.proto +// source: lbm/evidence/v1beta1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_c610c52c26e0e202, []int{0} + return fileDescriptor_0dced28ba40ddafd, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -70,28 +70,28 @@ func (m *GenesisState) GetEvidence() []*types.Any { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.evidence.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "lbm.evidence.v1beta1.GenesisState") } func init() { - proto.RegisterFile("cosmos/evidence/v1beta1/genesis.proto", fileDescriptor_c610c52c26e0e202) + proto.RegisterFile("lbm/evidence/v1beta1/genesis.proto", fileDescriptor_0dced28ba40ddafd) } -var fileDescriptor_c610c52c26e0e202 = []byte{ - // 202 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4d, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, - 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x12, 0x87, 0x28, 0xd3, 0x83, 0x29, 0xd3, 0x83, 0x2a, 0x93, 0x92, 0x4c, 0xcf, 0xcf, - 0x4f, 0xcf, 0x49, 0xd5, 0x07, 0x2b, 0x4b, 0x2a, 0x4d, 0xd3, 0x4f, 0xcc, 0xab, 0x84, 0xe8, 0x51, - 0x72, 0xe0, 0xe2, 0x71, 0x87, 0x18, 0x12, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xc0, 0xc5, 0x01, - 0xd3, 0x2e, 0xc1, 0xa8, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa2, 0x07, 0xd1, 0xad, 0x07, 0xd3, 0xad, - 0xe7, 0x98, 0x57, 0x19, 0x04, 0x57, 0xe5, 0xe4, 0x7a, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, - 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, - 0x72, 0x0c, 0x51, 0xda, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x39, - 0x99, 0x79, 0xa9, 0xfa, 0x39, 0x49, 0xb9, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x65, 0x46, 0xfa, 0x15, - 0x08, 0xcf, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x8d, 0x37, 0x06, 0x04, 0x00, 0x00, - 0xff, 0xff, 0x4e, 0x45, 0x47, 0x8f, 0xec, 0x00, 0x00, 0x00, +var fileDescriptor_0dced28ba40ddafd = []byte{ + // 200 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xca, 0x49, 0xca, 0xd5, + 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, + 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, + 0xc9, 0x49, 0xca, 0xd5, 0x83, 0xa9, 0xd1, 0x83, 0xaa, 0x91, 0x92, 0x4c, 0xcf, 0xcf, 0x4f, 0xcf, + 0x49, 0xd5, 0x07, 0xab, 0x49, 0x2a, 0x4d, 0xd3, 0x4f, 0xcc, 0xab, 0x84, 0x68, 0x50, 0x72, 0xe0, + 0xe2, 0x71, 0x87, 0x98, 0x10, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xc0, 0xc5, 0x01, 0xd3, 0x2e, + 0xc1, 0xa8, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa2, 0x07, 0xd1, 0xad, 0x07, 0xd3, 0xad, 0xe7, 0x98, + 0x57, 0x19, 0x04, 0x57, 0xe5, 0xe4, 0x7a, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, + 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, + 0x51, 0xda, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x39, 0x99, 0x79, + 0xa9, 0xfa, 0x39, 0x49, 0xb9, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0x08, 0x9f, + 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x8d, 0x37, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, + 0xbf, 0x65, 0x07, 0x73, 0xe6, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/types/query.pb.go b/x/evidence/types/query.pb.go index 165e3452ab..f4dadbcd91 100644 --- a/x/evidence/types/query.pb.go +++ b/x/evidence/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/v1beta1/query.proto +// source: lbm/evidence/v1beta1/query.proto package types @@ -42,7 +42,7 @@ func (m *QueryEvidenceRequest) Reset() { *m = QueryEvidenceRequest{} } func (m *QueryEvidenceRequest) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceRequest) ProtoMessage() {} func (*QueryEvidenceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_07043de1a84d215a, []int{0} + return fileDescriptor_b6ab5279ee6baaac, []int{0} } func (m *QueryEvidenceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *QueryEvidenceResponse) Reset() { *m = QueryEvidenceResponse{} } func (m *QueryEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceResponse) ProtoMessage() {} func (*QueryEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_07043de1a84d215a, []int{1} + return fileDescriptor_b6ab5279ee6baaac, []int{1} } func (m *QueryEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -135,7 +135,7 @@ func (m *QueryAllEvidenceRequest) Reset() { *m = QueryAllEvidenceRequest func (m *QueryAllEvidenceRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllEvidenceRequest) ProtoMessage() {} func (*QueryAllEvidenceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_07043de1a84d215a, []int{2} + return fileDescriptor_b6ab5279ee6baaac, []int{2} } func (m *QueryAllEvidenceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -184,7 +184,7 @@ func (m *QueryAllEvidenceResponse) Reset() { *m = QueryAllEvidenceRespon func (m *QueryAllEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllEvidenceResponse) ProtoMessage() {} func (*QueryAllEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_07043de1a84d215a, []int{3} + return fileDescriptor_b6ab5279ee6baaac, []int{3} } func (m *QueryAllEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -228,48 +228,46 @@ func (m *QueryAllEvidenceResponse) GetPagination() *query.PageResponse { } func init() { - proto.RegisterType((*QueryEvidenceRequest)(nil), "cosmos.evidence.v1beta1.QueryEvidenceRequest") - proto.RegisterType((*QueryEvidenceResponse)(nil), "cosmos.evidence.v1beta1.QueryEvidenceResponse") - proto.RegisterType((*QueryAllEvidenceRequest)(nil), "cosmos.evidence.v1beta1.QueryAllEvidenceRequest") - proto.RegisterType((*QueryAllEvidenceResponse)(nil), "cosmos.evidence.v1beta1.QueryAllEvidenceResponse") + proto.RegisterType((*QueryEvidenceRequest)(nil), "lbm.evidence.v1beta1.QueryEvidenceRequest") + proto.RegisterType((*QueryEvidenceResponse)(nil), "lbm.evidence.v1beta1.QueryEvidenceResponse") + proto.RegisterType((*QueryAllEvidenceRequest)(nil), "lbm.evidence.v1beta1.QueryAllEvidenceRequest") + proto.RegisterType((*QueryAllEvidenceResponse)(nil), "lbm.evidence.v1beta1.QueryAllEvidenceResponse") } -func init() { - proto.RegisterFile("cosmos/evidence/v1beta1/query.proto", fileDescriptor_07043de1a84d215a) -} +func init() { proto.RegisterFile("lbm/evidence/v1beta1/query.proto", fileDescriptor_b6ab5279ee6baaac) } -var fileDescriptor_07043de1a84d215a = []byte{ - // 468 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x6f, 0xd4, 0x30, - 0x18, 0xc6, 0xcf, 0x87, 0x40, 0x95, 0x5b, 0x16, 0xeb, 0x50, 0x4b, 0x84, 0x02, 0xa4, 0x12, 0xff, - 0x6b, 0x5f, 0xae, 0x13, 0x63, 0x4f, 0x2a, 0x94, 0x0d, 0x22, 0xb1, 0xb0, 0x20, 0x3b, 0x35, 0x49, - 0x44, 0x62, 0xa7, 0x67, 0xe7, 0xd4, 0x08, 0xb1, 0xf0, 0x09, 0x90, 0x10, 0x23, 0x1b, 0x1f, 0x86, - 0x09, 0x55, 0x62, 0x61, 0x42, 0xe8, 0x8e, 0x4f, 0xc1, 0x84, 0x62, 0x3b, 0xd7, 0xeb, 0xb5, 0xe5, - 0x60, 0x73, 0xec, 0xf7, 0x79, 0x9e, 0x5f, 0xde, 0xf7, 0x85, 0x9b, 0xb1, 0x54, 0x85, 0x54, 0x84, - 0x8f, 0xb3, 0x7d, 0x2e, 0x62, 0x4e, 0xc6, 0x21, 0xe3, 0x9a, 0x86, 0xe4, 0xa0, 0xe2, 0xa3, 0x1a, - 0x97, 0x23, 0xa9, 0x25, 0x5a, 0xb7, 0x45, 0xb8, 0x2d, 0xc2, 0xae, 0xc8, 0xbb, 0xe7, 0xd4, 0x8c, - 0x2a, 0x6e, 0x15, 0x33, 0x7d, 0x49, 0x93, 0x4c, 0x50, 0x9d, 0x49, 0x61, 0x4d, 0xbc, 0x5e, 0x22, - 0x13, 0x69, 0x8e, 0xa4, 0x39, 0xb9, 0xdb, 0xab, 0x89, 0x94, 0x49, 0xce, 0x89, 0xf9, 0x62, 0xd5, - 0x2b, 0x42, 0x85, 0x4b, 0xf5, 0xae, 0xb9, 0x27, 0x5a, 0x66, 0x84, 0x0a, 0x21, 0xb5, 0x71, 0x53, - 0xf6, 0x35, 0x28, 0x60, 0xef, 0x59, 0x13, 0xb8, 0xeb, 0x98, 0x22, 0x7e, 0x50, 0x71, 0xa5, 0xd1, - 0x73, 0x78, 0xb9, 0xc5, 0x7c, 0x99, 0x52, 0x95, 0x6e, 0x80, 0x1b, 0xe0, 0xce, 0xda, 0xb0, 0xff, - 0xfb, 0xc7, 0xf5, 0x07, 0x49, 0xa6, 0xd3, 0x8a, 0xe1, 0x58, 0x16, 0x24, 0xcf, 0x04, 0x27, 0x52, - 0xe9, 0x11, 0x8d, 0xa5, 0x20, 0x79, 0xc6, 0x14, 0x61, 0xb5, 0xe6, 0x0a, 0xef, 0xf1, 0xc3, 0x61, - 0x73, 0x88, 0xd6, 0x5a, 0x9b, 0x3d, 0xaa, 0xd2, 0xe0, 0x09, 0xbc, 0xb2, 0x10, 0xa7, 0x4a, 0x29, - 0x14, 0x47, 0x7d, 0xb8, 0xd2, 0x16, 0x9a, 0xa8, 0xd5, 0x41, 0x0f, 0x5b, 0x70, 0xdc, 0xfe, 0x13, - 0xde, 0x11, 0x75, 0x34, 0xab, 0x0a, 0x28, 0x5c, 0x37, 0x56, 0x3b, 0x79, 0xbe, 0x08, 0xff, 0x08, - 0xc2, 0xe3, 0xbe, 0x39, 0xbb, 0x5b, 0xd8, 0x75, 0xbf, 0x69, 0x32, 0xb6, 0x63, 0x71, 0x4d, 0xc6, - 0x4f, 0x69, 0xd2, 0x6a, 0xa3, 0x39, 0x65, 0xf0, 0x11, 0xc0, 0x8d, 0xd3, 0x19, 0x67, 0x12, 0x5f, - 0x58, 0x4e, 0x8c, 0x1e, 0x9f, 0xc0, 0xea, 0x1a, 0xac, 0xdb, 0x4b, 0xb1, 0x6c, 0xdc, 0x3c, 0xd7, - 0xe0, 0x6b, 0x17, 0x5e, 0x34, 0x5c, 0xe8, 0x33, 0x80, 0x2b, 0x2d, 0x19, 0xda, 0xc2, 0xe7, 0x2c, - 0x18, 0x3e, 0x6b, 0xc4, 0x1e, 0xfe, 0xd7, 0x72, 0x4b, 0x10, 0x3c, 0x7c, 0xf7, 0xed, 0xd7, 0x87, - 0xee, 0x36, 0x0a, 0xc9, 0x79, 0xcb, 0x3e, 0xbb, 0x78, 0x73, 0x62, 0x77, 0xde, 0xa2, 0x4f, 0x00, - 0xae, 0xce, 0xf5, 0x10, 0xf5, 0xff, 0x1e, 0x7d, 0x7a, 0xa4, 0x5e, 0xf8, 0x1f, 0x0a, 0xc7, 0x7b, - 0xd7, 0xf0, 0x6e, 0xa2, 0x9b, 0x4b, 0x79, 0x87, 0xbb, 0x5f, 0x26, 0x3e, 0x38, 0x9a, 0xf8, 0xe0, - 0xe7, 0xc4, 0x07, 0xef, 0xa7, 0x7e, 0xe7, 0x68, 0xea, 0x77, 0xbe, 0x4f, 0xfd, 0xce, 0x8b, 0xfb, - 0x8b, 0xcb, 0x9e, 0xb3, 0x62, 0x4b, 0xed, 0xbf, 0x26, 0xe3, 0x01, 0x39, 0x3c, 0x76, 0xd4, 0x75, - 0xc9, 0x15, 0xbb, 0x64, 0x06, 0xbf, 0xfd, 0x27, 0x00, 0x00, 0xff, 0xff, 0x77, 0xd8, 0xbf, 0x9c, - 0x0e, 0x04, 0x00, 0x00, +var fileDescriptor_b6ab5279ee6baaac = []byte{ + // 472 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x4f, 0x6f, 0xd3, 0x30, + 0x18, 0xc6, 0xeb, 0x22, 0xd0, 0xe4, 0x8d, 0x8b, 0x55, 0xc4, 0x88, 0x50, 0x18, 0x19, 0x12, 0x7f, + 0xc6, 0xec, 0xb5, 0x3b, 0x71, 0x5c, 0x61, 0xd2, 0xb8, 0x41, 0x24, 0x2e, 0x1c, 0x40, 0x76, 0x66, + 0x92, 0x08, 0xc7, 0xce, 0x6a, 0xa7, 0x5a, 0x84, 0xb8, 0xf0, 0x09, 0x10, 0x1c, 0xb8, 0xf1, 0x61, + 0x38, 0x71, 0x9c, 0xc4, 0x85, 0x13, 0x42, 0x2d, 0x9f, 0x82, 0xd3, 0x14, 0xc7, 0xe9, 0xba, 0xb6, + 0xda, 0x7a, 0x73, 0xec, 0xe7, 0x7d, 0x9f, 0x5f, 0x9e, 0xf7, 0x85, 0x1b, 0x82, 0x65, 0x84, 0x0f, + 0xd3, 0x43, 0x2e, 0x23, 0x4e, 0x86, 0x5d, 0xc6, 0x0d, 0xed, 0x92, 0xa3, 0x82, 0x0f, 0x4a, 0x9c, + 0x0f, 0x94, 0x51, 0xa8, 0x23, 0x58, 0x86, 0x1b, 0x05, 0x76, 0x0a, 0xef, 0x7e, 0x55, 0xc7, 0xa8, + 0xe6, 0xb5, 0x76, 0x52, 0x99, 0xd3, 0x38, 0x95, 0xd4, 0xa4, 0x4a, 0xd6, 0xe5, 0x5e, 0x27, 0x56, + 0xb1, 0xb2, 0x47, 0x52, 0x9d, 0xdc, 0xed, 0xad, 0x58, 0xa9, 0x58, 0x70, 0x62, 0xbf, 0x58, 0xf1, + 0x8e, 0x50, 0xe9, 0xfc, 0xbc, 0xdb, 0xee, 0x89, 0xe6, 0x29, 0xa1, 0x52, 0x2a, 0x63, 0xbb, 0xe9, + 0xfa, 0x35, 0xc8, 0x60, 0xe7, 0x65, 0x65, 0xb8, 0xef, 0x80, 0x42, 0x7e, 0x54, 0x70, 0x6d, 0xd0, + 0x2b, 0x78, 0xbd, 0x61, 0x7c, 0x9b, 0x50, 0x9d, 0xac, 0x83, 0x0d, 0xf0, 0x60, 0xad, 0xbf, 0xf3, + 0xff, 0xcf, 0x9d, 0xc7, 0x71, 0x6a, 0x92, 0x82, 0xe1, 0x48, 0x65, 0x44, 0xa4, 0x92, 0x13, 0xa5, + 0xcd, 0x80, 0x46, 0x4a, 0x12, 0x91, 0x32, 0x4d, 0x58, 0x69, 0xb8, 0xc6, 0x07, 0xfc, 0xb8, 0x5f, + 0x1d, 0xc2, 0xb5, 0xa6, 0xcd, 0x01, 0xd5, 0x49, 0xf0, 0x1c, 0xde, 0x98, 0xb1, 0xd3, 0xb9, 0x92, + 0x9a, 0xa3, 0x1d, 0xb8, 0xd2, 0x08, 0xad, 0xd5, 0x6a, 0xaf, 0x83, 0x6b, 0x70, 0xdc, 0xfc, 0x13, + 0xde, 0x93, 0x65, 0x38, 0x51, 0x05, 0x6f, 0xe0, 0x4d, 0xdb, 0x6a, 0x4f, 0x88, 0x59, 0xf8, 0xa7, + 0x10, 0x9e, 0xe5, 0xe6, 0xda, 0x6d, 0xe2, 0x2a, 0xf7, 0x2a, 0x61, 0x5c, 0x4f, 0xc3, 0x25, 0x8c, + 0x5f, 0xd0, 0xb8, 0x29, 0x0c, 0xa7, 0xca, 0x82, 0x2f, 0x00, 0xae, 0xcf, 0x1b, 0x2c, 0xc4, 0xbd, + 0x72, 0x39, 0x2e, 0x7a, 0x76, 0x8e, 0xa9, 0x6d, 0x99, 0xee, 0x5d, 0xcc, 0x54, 0x7b, 0x4d, 0x43, + 0xf5, 0x7e, 0xb4, 0xe1, 0x55, 0x0b, 0x85, 0xbe, 0x03, 0xb8, 0xd2, 0x60, 0xa1, 0x47, 0x78, 0xd1, + 0x52, 0xe1, 0x45, 0x93, 0xf5, 0xb6, 0x96, 0xd2, 0xd6, 0xde, 0xc1, 0x93, 0x4f, 0xbf, 0xfe, 0x7d, + 0x6d, 0xef, 0xa2, 0x2e, 0x89, 0x94, 0xce, 0x94, 0x9e, 0x5f, 0xed, 0xc9, 0xc5, 0x87, 0x73, 0xfb, + 0xf2, 0x11, 0x7d, 0x03, 0x70, 0x75, 0x2a, 0x3a, 0xb4, 0x7d, 0x81, 0xef, 0xfc, 0x0c, 0x3d, 0xbc, + 0xac, 0xdc, 0x91, 0x3e, 0xb4, 0xa4, 0x9b, 0xe8, 0xee, 0xa5, 0xa4, 0xfd, 0xfd, 0x9f, 0x23, 0x1f, + 0x9c, 0x8c, 0x7c, 0xf0, 0x77, 0xe4, 0x83, 0xcf, 0x63, 0xbf, 0x75, 0x32, 0xf6, 0x5b, 0xbf, 0xc7, + 0x7e, 0xeb, 0xf5, 0xd6, 0xec, 0x6a, 0x0b, 0x96, 0x6d, 0xeb, 0xc3, 0xf7, 0x64, 0xd8, 0x23, 0xc7, + 0x67, 0x1d, 0x4d, 0x99, 0x73, 0xcd, 0xae, 0xd9, 0x49, 0xef, 0x9e, 0x06, 0x00, 0x00, 0xff, 0xff, + 0x39, 0x77, 0xb1, 0xf5, 0xf3, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -300,7 +298,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Evidence(ctx context.Context, in *QueryEvidenceRequest, opts ...grpc.CallOption) (*QueryEvidenceResponse, error) { out := new(QueryEvidenceResponse) - err := c.cc.Invoke(ctx, "/cosmos.evidence.v1beta1.Query/Evidence", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.evidence.v1beta1.Query/Evidence", in, out, opts...) if err != nil { return nil, err } @@ -309,7 +307,7 @@ func (c *queryClient) Evidence(ctx context.Context, in *QueryEvidenceRequest, op func (c *queryClient) AllEvidence(ctx context.Context, in *QueryAllEvidenceRequest, opts ...grpc.CallOption) (*QueryAllEvidenceResponse, error) { out := new(QueryAllEvidenceResponse) - err := c.cc.Invoke(ctx, "/cosmos.evidence.v1beta1.Query/AllEvidence", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.evidence.v1beta1.Query/AllEvidence", in, out, opts...) if err != nil { return nil, err } @@ -349,7 +347,7 @@ func _Query_Evidence_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.evidence.v1beta1.Query/Evidence", + FullMethod: "/lbm.evidence.v1beta1.Query/Evidence", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Evidence(ctx, req.(*QueryEvidenceRequest)) @@ -367,7 +365,7 @@ func _Query_AllEvidence_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.evidence.v1beta1.Query/AllEvidence", + FullMethod: "/lbm.evidence.v1beta1.Query/AllEvidence", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllEvidence(ctx, req.(*QueryAllEvidenceRequest)) @@ -376,7 +374,7 @@ func _Query_AllEvidence_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.evidence.v1beta1.Query", + ServiceName: "lbm.evidence.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -389,7 +387,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/evidence/v1beta1/query.proto", + Metadata: "lbm/evidence/v1beta1/query.proto", } func (m *QueryEvidenceRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/types/query.pb.gw.go b/x/evidence/types/query.pb.gw.go index e15d163524..bf3de6f97b 100644 --- a/x/evidence/types/query.pb.gw.go +++ b/x/evidence/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/evidence/v1beta1/query.proto +// source: lbm/evidence/v1beta1/query.proto /* Package types is a reverse proxy. diff --git a/x/evidence/types/tx.pb.go b/x/evidence/types/tx.pb.go index b060466d84..0393134b40 100644 --- a/x/evidence/types/tx.pb.go +++ b/x/evidence/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/v1beta1/tx.proto +// source: lbm/evidence/v1beta1/tx.proto package types @@ -42,7 +42,7 @@ func (m *MsgSubmitEvidence) Reset() { *m = MsgSubmitEvidence{} } func (m *MsgSubmitEvidence) String() string { return proto.CompactTextString(m) } func (*MsgSubmitEvidence) ProtoMessage() {} func (*MsgSubmitEvidence) Descriptor() ([]byte, []int) { - return fileDescriptor_3e3242cb23c956e0, []int{0} + return fileDescriptor_11f17dcfee8ec832, []int{0} } func (m *MsgSubmitEvidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -81,7 +81,7 @@ func (m *MsgSubmitEvidenceResponse) Reset() { *m = MsgSubmitEvidenceResp func (m *MsgSubmitEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*MsgSubmitEvidenceResponse) ProtoMessage() {} func (*MsgSubmitEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3e3242cb23c956e0, []int{1} + return fileDescriptor_11f17dcfee8ec832, []int{1} } func (m *MsgSubmitEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,35 +118,35 @@ func (m *MsgSubmitEvidenceResponse) GetHash() []byte { } func init() { - proto.RegisterType((*MsgSubmitEvidence)(nil), "cosmos.evidence.v1beta1.MsgSubmitEvidence") - proto.RegisterType((*MsgSubmitEvidenceResponse)(nil), "cosmos.evidence.v1beta1.MsgSubmitEvidenceResponse") -} - -func init() { proto.RegisterFile("cosmos/evidence/v1beta1/tx.proto", fileDescriptor_3e3242cb23c956e0) } - -var fileDescriptor_3e3242cb23c956e0 = []byte{ - // 324 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, - 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, - 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, - 0xb1, 0x20, 0xca, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xbc, 0xa4, 0xd2, - 0x34, 0xfd, 0xc4, 0xbc, 0x4a, 0x98, 0x14, 0xc4, 0xa4, 0x78, 0x88, 0x1e, 0xa8, 0xb1, 0x60, 0x8e, - 0x52, 0x35, 0x97, 0xa0, 0x6f, 0x71, 0x7a, 0x70, 0x69, 0x52, 0x6e, 0x66, 0x89, 0x2b, 0xd4, 0x22, - 0x21, 0x19, 0x2e, 0xce, 0x62, 0xb0, 0x48, 0x49, 0x6a, 0x91, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x67, - 0x10, 0x42, 0x40, 0xc8, 0x8e, 0x8b, 0x03, 0xe6, 0x24, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x6e, 0x23, - 0x11, 0x3d, 0x88, 0xdd, 0x7a, 0x30, 0xbb, 0xf5, 0x1c, 0xf3, 0x2a, 0x9d, 0x78, 0x4e, 0x6d, 0xd1, - 0xe5, 0x80, 0x99, 0x19, 0x04, 0xd7, 0x63, 0xc5, 0xd1, 0xb1, 0x40, 0x9e, 0xe1, 0xc5, 0x02, 0x79, - 0x06, 0x25, 0x7d, 0x2e, 0x49, 0x0c, 0xcb, 0x83, 0x52, 0x8b, 0x0b, 0xf2, 0xf3, 0x8a, 0x53, 0x85, - 0x84, 0xb8, 0x58, 0x32, 0x12, 0x8b, 0x33, 0x24, 0x58, 0x14, 0x18, 0x35, 0x78, 0x82, 0xc0, 0x6c, - 0xa3, 0x72, 0x2e, 0x66, 0xdf, 0xe2, 0x74, 0xa1, 0x02, 0x2e, 0x3e, 0x34, 0x17, 0x6b, 0xe9, 0xe1, - 0x08, 0x2c, 0x3d, 0x0c, 0x0b, 0xa4, 0x8c, 0x88, 0x57, 0x0b, 0x73, 0x8c, 0x93, 0xe7, 0x8a, 0x47, - 0x72, 0x8c, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, - 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9d, 0x9e, 0x59, - 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x93, 0x99, 0x97, 0xaa, 0x9f, 0x93, 0x94, - 0xab, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x66, 0xa4, 0x5f, 0x81, 0x88, 0xe1, 0x92, 0xca, 0x82, 0xd4, - 0xe2, 0x24, 0x36, 0x70, 0x20, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x36, 0x20, 0xe1, 0xab, - 0x01, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgSubmitEvidence)(nil), "lbm.evidence.v1beta1.MsgSubmitEvidence") + proto.RegisterType((*MsgSubmitEvidenceResponse)(nil), "lbm.evidence.v1beta1.MsgSubmitEvidenceResponse") +} + +func init() { proto.RegisterFile("lbm/evidence/v1beta1/tx.proto", fileDescriptor_11f17dcfee8ec832) } + +var fileDescriptor_11f17dcfee8ec832 = []byte{ + // 325 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0x49, 0xca, 0xd5, + 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, + 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc9, 0x49, 0xca, 0xd5, 0x83, + 0x49, 0xeb, 0x41, 0xa5, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x0a, 0xf4, 0x41, 0x2c, 0x88, + 0x5a, 0x29, 0xc9, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, 0x54, 0x7d, 0x30, 0x2f, 0xa9, 0x34, 0x4d, 0x3f, + 0x31, 0xaf, 0x12, 0x26, 0x95, 0x9c, 0x5f, 0x9c, 0x9b, 0x5f, 0x1c, 0x0f, 0xd1, 0x03, 0xe1, 0x40, + 0xa4, 0x94, 0xaa, 0xb9, 0x04, 0x7d, 0x8b, 0xd3, 0x83, 0x4b, 0x93, 0x72, 0x33, 0x4b, 0x5c, 0xa1, + 0x16, 0x09, 0xc9, 0x70, 0x71, 0x16, 0x83, 0x45, 0x4a, 0x52, 0x8b, 0x24, 0x18, 0x15, 0x18, 0x35, + 0x38, 0x83, 0x10, 0x02, 0x42, 0x76, 0x5c, 0x1c, 0x30, 0x27, 0x49, 0x30, 0x29, 0x30, 0x6a, 0x70, + 0x1b, 0x89, 0xe8, 0x41, 0xec, 0xd6, 0x83, 0xd9, 0xad, 0xe7, 0x98, 0x57, 0xe9, 0xc4, 0x73, 0x6a, + 0x8b, 0x2e, 0x07, 0xcc, 0xcc, 0x20, 0xb8, 0x1e, 0x2b, 0x8e, 0x8e, 0x05, 0xf2, 0x0c, 0x2f, 0x16, + 0xc8, 0x33, 0x28, 0xe9, 0x73, 0x49, 0x62, 0x58, 0x1e, 0x94, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, + 0x2a, 0x24, 0xc4, 0xc5, 0x92, 0x91, 0x58, 0x9c, 0x21, 0xc1, 0xa2, 0xc0, 0xa8, 0xc1, 0x13, 0x04, + 0x66, 0x1b, 0x15, 0x72, 0x31, 0xfb, 0x16, 0xa7, 0x0b, 0x65, 0x71, 0xf1, 0xa1, 0xb9, 0x58, 0x5d, + 0x0f, 0x5b, 0x48, 0xe9, 0x61, 0x98, 0x2e, 0xa5, 0x4f, 0xa4, 0x42, 0x98, 0x33, 0x9c, 0x3c, 0x57, + 0x3c, 0x92, 0x63, 0x3c, 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, 0xed, 0xf4, + 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xcc, 0xbc, 0x54, 0xfd, 0x9c, + 0xa4, 0x5c, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x32, 0x23, 0xfd, 0x0a, 0x44, 0xc4, 0x96, 0x54, 0x16, + 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x83, 0xc7, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xdd, 0xdf, 0xc0, + 0x1f, 0xf5, 0x01, 0x00, 0x00, } func (this *MsgSubmitEvidenceResponse) Equal(that interface{}) bool { @@ -201,7 +201,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) SubmitEvidence(ctx context.Context, in *MsgSubmitEvidence, opts ...grpc.CallOption) (*MsgSubmitEvidenceResponse, error) { out := new(MsgSubmitEvidenceResponse) - err := c.cc.Invoke(ctx, "/cosmos.evidence.v1beta1.Msg/SubmitEvidence", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.evidence.v1beta1.Msg/SubmitEvidence", in, out, opts...) if err != nil { return nil, err } @@ -237,7 +237,7 @@ func _Msg_SubmitEvidence_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.evidence.v1beta1.Msg/SubmitEvidence", + FullMethod: "/lbm.evidence.v1beta1.Msg/SubmitEvidence", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SubmitEvidence(ctx, req.(*MsgSubmitEvidence)) @@ -246,7 +246,7 @@ func _Msg_SubmitEvidence_Handler(srv interface{}, ctx context.Context, dec func( } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.evidence.v1beta1.Msg", + ServiceName: "lbm.evidence.v1beta1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -255,7 +255,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/evidence/v1beta1/tx.proto", + Metadata: "lbm/evidence/v1beta1/tx.proto", } func (m *MsgSubmitEvidence) Marshal() (dAtA []byte, err error) { diff --git a/x/genutil/legacy/v039/migrate_test.go b/x/genutil/legacy/v039/migrate_test.go index 299ab60f3a..903fe70301 100644 --- a/x/genutil/legacy/v039/migrate_test.go +++ b/x/genutil/legacy/v039/migrate_test.go @@ -22,7 +22,7 @@ var genAuthState = []byte(`{ }, "accounts": [ { - "type": "cosmos-sdk/Account", + "type": "lbm-sdk/Account", "value": { "address": "cosmos19hz3ee9e3lj9mne4jggj3v8hxjrpre22jukj9y", "coins": [ @@ -37,7 +37,7 @@ var genAuthState = []byte(`{ } }, { - "type": "cosmos-sdk/ModuleAccount", + "type": "lbm-sdk/ModuleAccount", "value": { "address": "cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh", "coins": [ @@ -57,7 +57,7 @@ var genAuthState = []byte(`{ } }, { - "type": "cosmos-sdk/ContinuousVestingAccount", + "type": "lbm-sdk/ContinuousVestingAccount", "value": { "address": "cosmos1vtzxzyjv506dvhl9pa527xsugf5gez4fnqxq0n", "coins": [ @@ -82,7 +82,7 @@ var genAuthState = []byte(`{ } }, { - "type": "cosmos-sdk/DelayedVestingAccount", + "type": "lbm-sdk/DelayedVestingAccount", "value": { "address": "cosmos1prxkcqclweqa0g28p7vmf6z78ghyeckm4qak30", "coins": [ @@ -108,7 +108,7 @@ var genAuthState = []byte(`{ ] }`) -var expectedGenAuthState = []byte(`{"params":{"max_memo_characters":"10","tx_sig_limit":"10","tx_size_cost_per_byte":"10","sig_verify_cost_ed25519":"10","sig_verify_cost_secp256k1":"10"},"accounts":[{"type":"cosmos-sdk/Account","value":{"address":"cosmos19hz3ee9e3lj9mne4jggj3v8hxjrpre22jukj9y","coins":[{"denom":"stake","amount":"400000"}],"public_key":{"type":"tendermint/PubKeySecp256k1","value":"AvIgV7K2WX8qv4VoIPlG88cj7vAQE0CbHe36LZ1jZUr4"},"account_number":"1","sequence":"1"}},{"type":"cosmos-sdk/ModuleAccount","value":{"address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","coins":[{"denom":"stake","amount":"400000000"}],"public_key":"","account_number":"2","sequence":"4","name":"bonded_tokens_pool","permissions":["burner","staking"]}},{"type":"cosmos-sdk/ContinuousVestingAccount","value":{"address":"cosmos1vtzxzyjv506dvhl9pa527xsugf5gez4fnqxq0n","coins":[{"denom":"stake","amount":"10000205"}],"public_key":{"type":"tendermint/PubKeySecp256k1","value":"A0w7VOA5Tf3MQx0naEP5fRdg+jy08sF3rN0jh6mK0z5B"},"account_number":"3","sequence":"5","original_vesting":[{"denom":"stake","amount":"10000205"}],"delegated_free":[],"delegated_vesting":[],"end_time":"1596125048","start_time":"1595952248"}},{"type":"cosmos-sdk/DelayedVestingAccount","value":{"address":"cosmos1prxkcqclweqa0g28p7vmf6z78ghyeckm4qak30","coins":[{"denom":"stake","amount":"10000205"}],"public_key":{"type":"tendermint/PubKeySecp256k1","value":"A7LsdbGpcqI6Ls9Wk/xJIymG67ssrWr2XcXimmj20hFf"},"account_number":"4","sequence":"15","original_vesting":[{"denom":"stake","amount":"10000205"}],"delegated_free":[],"delegated_vesting":[],"end_time":"1596125048"}}]}`) +var expectedGenAuthState = []byte(`{"params":{"max_memo_characters":"10","tx_sig_limit":"10","tx_size_cost_per_byte":"10","sig_verify_cost_ed25519":"10","sig_verify_cost_secp256k1":"10"},"accounts":[{"type":"lbm-sdk/Account","value":{"address":"cosmos19hz3ee9e3lj9mne4jggj3v8hxjrpre22jukj9y","coins":[{"denom":"stake","amount":"400000"}],"public_key":{"type":"tendermint/PubKeySecp256k1","value":"AvIgV7K2WX8qv4VoIPlG88cj7vAQE0CbHe36LZ1jZUr4"},"account_number":"1","sequence":"1"}},{"type":"lbm-sdk/ModuleAccount","value":{"address":"cosmos1fl48vsnmsdzcv85q5d2q4z5ajdha8yu34mf0eh","coins":[{"denom":"stake","amount":"400000000"}],"public_key":"","account_number":"2","sequence":"4","name":"bonded_tokens_pool","permissions":["burner","staking"]}},{"type":"lbm-sdk/ContinuousVestingAccount","value":{"address":"cosmos1vtzxzyjv506dvhl9pa527xsugf5gez4fnqxq0n","coins":[{"denom":"stake","amount":"10000205"}],"public_key":{"type":"tendermint/PubKeySecp256k1","value":"A0w7VOA5Tf3MQx0naEP5fRdg+jy08sF3rN0jh6mK0z5B"},"account_number":"3","sequence":"5","original_vesting":[{"denom":"stake","amount":"10000205"}],"delegated_free":[],"delegated_vesting":[],"end_time":"1596125048","start_time":"1595952248"}},{"type":"lbm-sdk/DelayedVestingAccount","value":{"address":"cosmos1prxkcqclweqa0g28p7vmf6z78ghyeckm4qak30","coins":[{"denom":"stake","amount":"10000205"}],"public_key":{"type":"tendermint/PubKeySecp256k1","value":"A7LsdbGpcqI6Ls9Wk/xJIymG67ssrWr2XcXimmj20hFf"},"account_number":"4","sequence":"15","original_vesting":[{"denom":"stake","amount":"10000205"}],"delegated_free":[],"delegated_vesting":[],"end_time":"1596125048"}}]}`) func TestMigrate(t *testing.T) { genesis := types.AppMap{ diff --git a/x/genutil/types/genesis.pb.go b/x/genutil/types/genesis.pb.go index 565fa904e8..4ed0e52551 100644 --- a/x/genutil/types/genesis.pb.go +++ b/x/genutil/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/genutil/v1beta1/genesis.proto +// source: lbm/genutil/v1beta1/genesis.proto package types @@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_31771d25e8d8f90f, []int{0} + return fileDescriptor_afd61f18e67df406, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -71,31 +71,28 @@ func (m *GenesisState) GetGenTxs() []encoding_json.RawMessage { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.genutil.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "lbm.genutil.v1beta1.GenesisState") } -func init() { - proto.RegisterFile("cosmos/genutil/v1beta1/genesis.proto", fileDescriptor_31771d25e8d8f90f) -} +func init() { proto.RegisterFile("lbm/genutil/v1beta1/genesis.proto", fileDescriptor_afd61f18e67df406) } -var fileDescriptor_31771d25e8d8f90f = []byte{ - // 241 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4f, 0xcd, 0x2b, 0x2d, 0xc9, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, - 0x49, 0x34, 0x04, 0xf1, 0x53, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xc4, - 0x20, 0xaa, 0xf4, 0xa0, 0xaa, 0xf4, 0xa0, 0xaa, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x4a, - 0xf4, 0x41, 0x2c, 0x88, 0x6a, 0xa5, 0x04, 0x2e, 0x1e, 0x77, 0x88, 0xf6, 0xe0, 0x92, 0xc4, 0x92, - 0x54, 0xa1, 0x00, 0x2e, 0xf6, 0xf4, 0xd4, 0xbc, 0xf8, 0x92, 0x8a, 0x62, 0x09, 0x46, 0x05, 0x66, - 0x0d, 0x1e, 0x27, 0xf3, 0x57, 0xf7, 0xe4, 0xd9, 0xd2, 0x53, 0xf3, 0x4a, 0x2a, 0x8a, 0x3f, 0xdd, - 0x93, 0xe7, 0xad, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x82, 0xf0, 0x95, 0x7e, 0xdd, 0x93, 0x97, 0x48, - 0xcd, 0x4b, 0xce, 0x4f, 0xc9, 0xcc, 0x4b, 0xd7, 0xcf, 0x2a, 0xce, 0xcf, 0xd3, 0x0b, 0x4a, 0x2c, - 0xf7, 0x4d, 0x2d, 0x2e, 0x4e, 0x4c, 0x4f, 0x0d, 0x02, 0x69, 0x0a, 0xa9, 0x28, 0x76, 0x72, 0x39, - 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, 0xad, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, - 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xcc, 0xbc, 0x54, 0xfd, 0x9c, 0xa4, 0x5c, 0xdd, 0xe2, - 0x94, 0x6c, 0xfd, 0x32, 0x23, 0xfd, 0x0a, 0xb8, 0x2f, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0xce, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x0a, 0xbb, 0x4e, 0x04, 0x01, 0x00, - 0x00, +var fileDescriptor_afd61f18e67df406 = []byte{ + // 239 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcc, 0x49, 0xca, 0xd5, + 0x4f, 0x4f, 0xcd, 0x2b, 0x2d, 0xc9, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0x04, + 0xf1, 0x53, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x84, 0x73, 0x92, 0x72, + 0xf5, 0xa0, 0x4a, 0xf4, 0xa0, 0x4a, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xf2, 0xfa, 0x20, + 0x16, 0x44, 0xa9, 0x52, 0x02, 0x17, 0x8f, 0x3b, 0x44, 0x6f, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x50, + 0x00, 0x17, 0x7b, 0x7a, 0x6a, 0x5e, 0x7c, 0x49, 0x45, 0xb1, 0x04, 0xa3, 0x02, 0xb3, 0x06, 0x8f, + 0x93, 0xf9, 0xab, 0x7b, 0xf2, 0x6c, 0xe9, 0xa9, 0x79, 0x25, 0x15, 0xc5, 0x9f, 0xee, 0xc9, 0xf3, + 0x56, 0x26, 0xe6, 0xe6, 0x58, 0x29, 0x41, 0xf8, 0x4a, 0xbf, 0xee, 0xc9, 0x4b, 0xa4, 0xe6, 0x25, + 0xe7, 0xa7, 0x64, 0xe6, 0xa5, 0xeb, 0x67, 0x15, 0xe7, 0xe7, 0xe9, 0x05, 0x25, 0x96, 0xfb, 0xa6, + 0x16, 0x17, 0x27, 0xa6, 0xa7, 0x06, 0x81, 0x34, 0x85, 0x54, 0x14, 0x3b, 0xb9, 0x9c, 0x78, 0x24, + 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, + 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x56, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x72, 0x7e, 0xae, 0x7e, 0x4e, 0x66, 0x5e, 0xaa, 0x7e, 0x4e, 0x52, 0xae, 0x6e, 0x71, 0x4a, 0xb6, + 0x7e, 0x99, 0x91, 0x7e, 0x05, 0xdc, 0x8b, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xe7, + 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x39, 0x8d, 0x8f, 0xfe, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/legacy/v036/types.go b/x/gov/legacy/v036/types.go index a18a4cb3ce..72bf02c557 100644 --- a/x/gov/legacy/v036/types.go +++ b/x/gov/legacy/v036/types.go @@ -129,5 +129,5 @@ func ValidateAbstract(c Content) error { func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*Content)(nil), nil) - cdc.RegisterConcrete(TextProposal{}, "cosmos-sdk/TextProposal", nil) + cdc.RegisterConcrete(TextProposal{}, "lbm-sdk/TextProposal", nil) } diff --git a/x/gov/legacy/v040/migrate_test.go b/x/gov/legacy/v040/migrate_test.go index 448ec1fe60..cc0961866f 100644 --- a/x/gov/legacy/v040/migrate_test.go +++ b/x/gov/legacy/v040/migrate_test.go @@ -103,7 +103,7 @@ func TestMigrate(t *testing.T) { "proposals": [ { "content": { - "@type": "/cosmos.gov.v1beta1.TextProposal", + "@type": "/lbm.gov.v1beta1.TextProposal", "description": "bar_text", "title": "foo_text" }, @@ -123,7 +123,7 @@ func TestMigrate(t *testing.T) { }, { "content": { - "@type": "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal", + "@type": "/lbm.distribution.v1beta1.CommunityPoolSpendProposal", "amount": [ { "amount": "2", @@ -150,7 +150,7 @@ func TestMigrate(t *testing.T) { }, { "content": { - "@type": "/cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal", + "@type": "/lbm.upgrade.v1beta1.CancelSoftwareUpgradeProposal", "description": "bar_cancel_upgrade", "title": "foo_cancel_upgrade" }, @@ -170,7 +170,7 @@ func TestMigrate(t *testing.T) { }, { "content": { - "@type": "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal", + "@type": "/lbm.upgrade.v1beta1.SoftwareUpgradeProposal", "description": "bar_software_upgrade", "plan": { "height": "123", @@ -197,7 +197,7 @@ func TestMigrate(t *testing.T) { }, { "content": { - "@type": "/cosmos.params.v1beta1.ParameterChangeProposal", + "@type": "/lbm.params.v1beta1.ParameterChangeProposal", "changes": [ { "key": "foo_param_change_key", diff --git a/x/gov/types/codec.go b/x/gov/types/codec.go index b8123a7a85..ae308bef93 100644 --- a/x/gov/types/codec.go +++ b/x/gov/types/codec.go @@ -12,10 +12,10 @@ import ( // governance module. func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*Content)(nil), nil) - cdc.RegisterConcrete(&MsgSubmitProposal{}, "cosmos-sdk/MsgSubmitProposal", nil) - cdc.RegisterConcrete(&MsgDeposit{}, "cosmos-sdk/MsgDeposit", nil) - cdc.RegisterConcrete(&MsgVote{}, "cosmos-sdk/MsgVote", nil) - cdc.RegisterConcrete(&TextProposal{}, "cosmos-sdk/TextProposal", nil) + cdc.RegisterConcrete(&MsgSubmitProposal{}, "lbm-sdk/MsgSubmitProposal", nil) + cdc.RegisterConcrete(&MsgDeposit{}, "lbm-sdk/MsgDeposit", nil) + cdc.RegisterConcrete(&MsgVote{}, "lbm-sdk/MsgVote", nil) + cdc.RegisterConcrete(&TextProposal{}, "lbm-sdk/TextProposal", nil) } func RegisterInterfaces(registry types.InterfaceRegistry) { @@ -25,7 +25,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { &MsgDeposit{}, ) registry.RegisterInterface( - "cosmos.gov.v1beta1.Content", + "lbm.gov.v1beta1.Content", (*Content)(nil), &TextProposal{}, ) diff --git a/x/gov/types/genesis.pb.go b/x/gov/types/genesis.pb.go index 24150ca85b..d345be0343 100644 --- a/x/gov/types/genesis.pb.go +++ b/x/gov/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/v1beta1/genesis.proto +// source: lbm/gov/v1beta1/genesis.proto package types @@ -45,7 +45,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_43cd825e0fa7a627, []int{0} + return fileDescriptor_ccdc73bc8806a7f1, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,41 +124,41 @@ func (m *GenesisState) GetTallyParams() TallyParams { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.gov.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "lbm.gov.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/gov/v1beta1/genesis.proto", fileDescriptor_43cd825e0fa7a627) } +func init() { proto.RegisterFile("lbm/gov/v1beta1/genesis.proto", fileDescriptor_ccdc73bc8806a7f1) } -var fileDescriptor_43cd825e0fa7a627 = []byte{ +var fileDescriptor_ccdc73bc8806a7f1 = []byte{ // 436 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x41, 0x8b, 0xd3, 0x40, - 0x14, 0xc7, 0x1b, 0xb7, 0x5d, 0x77, 0xa7, 0xad, 0xe8, 0x58, 0x21, 0x6c, 0x6b, 0x12, 0x73, 0x90, - 0x5e, 0x4c, 0xd8, 0x7a, 0x13, 0x04, 0x09, 0x82, 0xec, 0x41, 0x58, 0xa3, 0x78, 0xf0, 0x52, 0xd2, - 0x66, 0x18, 0x83, 0x49, 0x5f, 0xe8, 0x1b, 0x07, 0xfb, 0x2d, 0xfc, 0x1c, 0x7e, 0x92, 0x3d, 0xee, - 0xd1, 0x53, 0x95, 0xf6, 0xe4, 0x75, 0x3f, 0x81, 0x64, 0x66, 0xa2, 0x59, 0x8c, 0x7b, 0x4b, 0xde, - 0xfc, 0xe7, 0xf7, 0x7b, 0xf3, 0x78, 0xc4, 0x5b, 0x02, 0x16, 0x80, 0x21, 0x07, 0x19, 0xca, 0xd3, - 0x05, 0x13, 0xc9, 0x69, 0xc8, 0xd9, 0x8a, 0x61, 0x86, 0x41, 0xb9, 0x06, 0x01, 0x94, 0xea, 0x44, - 0xc0, 0x41, 0x06, 0x26, 0x71, 0x32, 0xe2, 0xc0, 0x41, 0x1d, 0x87, 0xd5, 0x97, 0x4e, 0x9e, 0x4c, - 0xda, 0x58, 0x20, 0xf5, 0xa9, 0xff, 0xab, 0x4b, 0x06, 0xaf, 0x34, 0xf9, 0xad, 0x48, 0x04, 0xa3, - 0x6f, 0xc8, 0x08, 0x45, 0xb2, 0x16, 0xd9, 0x8a, 0xcf, 0xcb, 0x35, 0x94, 0x80, 0x49, 0x3e, 0xcf, - 0x52, 0xdb, 0xf2, 0xac, 0x69, 0x37, 0x72, 0xaf, 0xb6, 0xee, 0x78, 0x93, 0x14, 0xf9, 0x33, 0xbf, - 0x2d, 0xe5, 0xc7, 0xb4, 0x2e, 0x9f, 0x9b, 0xea, 0x59, 0x4a, 0xcf, 0xc8, 0x51, 0xca, 0x4a, 0xc0, - 0x4c, 0xa0, 0x7d, 0xcb, 0x3b, 0x98, 0xf6, 0x67, 0xe3, 0xe0, 0xdf, 0xf6, 0x83, 0x97, 0x3a, 0x13, - 0xdd, 0xbd, 0xd8, 0xba, 0x9d, 0x6f, 0x3f, 0xdc, 0x23, 0x53, 0xc0, 0xf8, 0xcf, 0x75, 0xfa, 0x9c, - 0xf4, 0x24, 0x08, 0x86, 0xf6, 0x81, 0xe2, 0xd8, 0x6d, 0x9c, 0xf7, 0x20, 0x58, 0x34, 0x34, 0x90, - 0x5e, 0xf5, 0x87, 0xb1, 0xbe, 0x45, 0x5f, 0x93, 0xe3, 0xba, 0x5b, 0xb4, 0xbb, 0x0a, 0x31, 0x69, - 0x43, 0xd4, 0xcd, 0x47, 0xf7, 0x0c, 0xe6, 0xb8, 0xae, 0x60, 0xfc, 0x97, 0x40, 0x39, 0xb9, 0x63, - 0x3a, 0x9b, 0x97, 0xc9, 0x3a, 0x29, 0xd0, 0xee, 0x79, 0xd6, 0xb4, 0x3f, 0x7b, 0x74, 0xc3, 0xf3, - 0xce, 0x55, 0x30, 0x7a, 0x58, 0x81, 0xaf, 0xb6, 0xee, 0x03, 0x3d, 0xcc, 0xeb, 0x18, 0x3f, 0x1e, - 0xa6, 0xcd, 0x34, 0x5d, 0x92, 0xa1, 0x04, 0x3d, 0x6c, 0xed, 0x39, 0x54, 0x1e, 0xef, 0x3f, 0xcf, - 0xaf, 0xc6, 0xaf, 0x35, 0x13, 0xa3, 0x19, 0x69, 0xcd, 0x35, 0x88, 0x1f, 0x0f, 0x64, 0x23, 0x4b, - 0xe7, 0x64, 0x20, 0x92, 0x3c, 0xdf, 0xd4, 0x8e, 0xdb, 0xca, 0xe1, 0xb6, 0x39, 0xde, 0x55, 0x39, - 0xa3, 0x18, 0x1b, 0xc5, 0x7d, 0xad, 0x68, 0x22, 0xfc, 0xb8, 0x2f, 0x1a, 0xc9, 0x17, 0x17, 0x3b, - 0xc7, 0xba, 0xdc, 0x39, 0xd6, 0xcf, 0x9d, 0x63, 0x7d, 0xdd, 0x3b, 0x9d, 0xcb, 0xbd, 0xd3, 0xf9, - 0xbe, 0x77, 0x3a, 0x1f, 0x1e, 0xf3, 0x4c, 0x7c, 0xfc, 0xbc, 0x08, 0x96, 0x50, 0x84, 0x79, 0xb6, - 0x62, 0x61, 0xbe, 0x28, 0x9e, 0x60, 0xfa, 0x29, 0x94, 0xb3, 0xf0, 0x8b, 0xda, 0x5c, 0xb1, 0x29, - 0x19, 0x2e, 0x0e, 0xd5, 0xd2, 0x3e, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x6f, 0x12, 0xb3, - 0x20, 0x03, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xcd, 0x8e, 0xd3, 0x30, + 0x14, 0x85, 0x13, 0xa6, 0x1d, 0x66, 0xdc, 0x96, 0x1f, 0xd3, 0x91, 0x32, 0x3f, 0x4d, 0xaa, 0x2c, + 0x50, 0x37, 0xc4, 0x9a, 0xb2, 0x9b, 0x15, 0x8a, 0x10, 0x08, 0x56, 0x43, 0x40, 0x2c, 0x10, 0x52, + 0x71, 0x88, 0x15, 0x22, 0x9c, 0x3a, 0x8a, 0x8d, 0x45, 0xdf, 0x82, 0xe7, 0xe0, 0x49, 0x66, 0x39, + 0x3b, 0x58, 0x15, 0xd4, 0xbe, 0x41, 0x9f, 0x00, 0xc5, 0x76, 0x20, 0x25, 0x9d, 0x5d, 0x72, 0xef, + 0x39, 0xdf, 0xb9, 0xbe, 0xba, 0x60, 0x44, 0xe3, 0x1c, 0xa5, 0x4c, 0x22, 0x79, 0x1e, 0x13, 0x81, + 0xcf, 0x51, 0x4a, 0xe6, 0x84, 0x67, 0x3c, 0x28, 0x4a, 0x26, 0x18, 0xbc, 0x4b, 0xe3, 0x3c, 0x48, + 0x99, 0x0c, 0x4c, 0xfb, 0x64, 0x98, 0xb2, 0x94, 0xa9, 0x1e, 0xaa, 0xbe, 0xb4, 0xec, 0xe4, 0xb8, + 0x45, 0x61, 0x52, 0xb7, 0xfc, 0x1f, 0x1d, 0xd0, 0x7f, 0xae, 0x99, 0xaf, 0x05, 0x16, 0x04, 0xbe, + 0x02, 0x43, 0x2e, 0x70, 0x29, 0xb2, 0x79, 0x3a, 0x2b, 0x4a, 0x56, 0x30, 0x8e, 0xe9, 0x2c, 0x4b, + 0x1c, 0x7b, 0x6c, 0x4f, 0x3a, 0xa1, 0xb7, 0x59, 0x7a, 0xa7, 0x0b, 0x9c, 0xd3, 0x0b, 0x7f, 0x97, + 0xca, 0x8f, 0x60, 0x5d, 0xbe, 0x34, 0xd5, 0x17, 0x09, 0x7c, 0x06, 0x0e, 0x12, 0x52, 0x30, 0x9e, + 0x09, 0xee, 0xdc, 0x1a, 0xef, 0x4d, 0x7a, 0x53, 0x27, 0xf8, 0x6f, 0xf0, 0xe0, 0xa9, 0x16, 0x84, + 0xf7, 0xae, 0x96, 0x9e, 0xf5, 0xfd, 0x97, 0x77, 0x60, 0x0a, 0x3c, 0xfa, 0xeb, 0x85, 0x17, 0xa0, + 0x2b, 0x99, 0x20, 0xdc, 0xd9, 0x53, 0x90, 0xa3, 0x16, 0xe4, 0x2d, 0x13, 0x24, 0x1c, 0x18, 0x42, + 0xb7, 0xfa, 0xe3, 0x91, 0xb6, 0xc0, 0x97, 0xe0, 0xb0, 0x9e, 0x93, 0x3b, 0x1d, 0xe5, 0x3f, 0x6e, + 0xf9, 0xeb, 0x99, 0xc3, 0xfb, 0x86, 0x71, 0x58, 0x57, 0x78, 0xf4, 0xcf, 0x0e, 0x13, 0x70, 0xc7, + 0xcc, 0x34, 0x2b, 0x70, 0x89, 0x73, 0xee, 0x74, 0xc7, 0xf6, 0xa4, 0x37, 0x75, 0x6f, 0x7a, 0xd5, + 0xa5, 0x52, 0x85, 0xa3, 0x8a, 0xba, 0x59, 0x7a, 0x47, 0x7a, 0x81, 0xdb, 0x0c, 0x3f, 0x1a, 0x24, + 0x4d, 0x35, 0xfc, 0x00, 0x06, 0x92, 0xe9, 0x05, 0xeb, 0x90, 0x7d, 0x15, 0x32, 0xda, 0xf5, 0xea, + 0x6a, 0xdf, 0x3a, 0xe3, 0xcc, 0x64, 0x0c, 0x75, 0xc6, 0x16, 0xc1, 0x8f, 0xfa, 0xb2, 0xa1, 0x85, + 0xef, 0x41, 0x5f, 0x60, 0x4a, 0x17, 0x75, 0xc0, 0x6d, 0x15, 0x70, 0xd6, 0x0a, 0x78, 0x53, 0x89, + 0x0c, 0xff, 0xd4, 0xf0, 0x1f, 0x68, 0x7e, 0xd3, 0xef, 0x47, 0x3d, 0xd1, 0x50, 0x3e, 0xb9, 0x5a, + 0xb9, 0xf6, 0xf5, 0xca, 0xb5, 0x7f, 0xaf, 0x5c, 0xfb, 0xdb, 0xda, 0xb5, 0xae, 0xd7, 0xae, 0xf5, + 0x73, 0xed, 0x5a, 0xef, 0x1e, 0xa6, 0x99, 0xf8, 0xf4, 0x25, 0x0e, 0x3e, 0xb2, 0x1c, 0xd1, 0x6c, + 0x4e, 0x10, 0x8d, 0xf3, 0x47, 0x3c, 0xf9, 0x8c, 0xe4, 0x14, 0x7d, 0x55, 0x77, 0x2a, 0x16, 0x05, + 0xe1, 0xf1, 0xbe, 0x3a, 0xd1, 0xc7, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x64, 0x6e, 0xb6, 0xcc, + 0x05, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/types/gov.pb.go b/x/gov/types/gov.pb.go index 79555114fc..a9ef94f5c2 100644 --- a/x/gov/types/gov.pb.go +++ b/x/gov/types/gov.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/v1beta1/gov.proto +// source: lbm/gov/v1beta1/gov.proto package types @@ -69,7 +69,7 @@ func (x VoteOption) String() string { } func (VoteOption) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{0} + return fileDescriptor_ac6b6490ef95bb56, []int{0} } // ProposalStatus enumerates the valid statuses of a proposal. @@ -118,7 +118,7 @@ func (x ProposalStatus) String() string { } func (ProposalStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{1} + return fileDescriptor_ac6b6490ef95bb56, []int{1} } // TextProposal defines a standard text proposal whose changes need to be @@ -131,7 +131,7 @@ type TextProposal struct { func (m *TextProposal) Reset() { *m = TextProposal{} } func (*TextProposal) ProtoMessage() {} func (*TextProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{0} + return fileDescriptor_ac6b6490ef95bb56, []int{0} } func (m *TextProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -171,7 +171,7 @@ type Deposit struct { func (m *Deposit) Reset() { *m = Deposit{} } func (*Deposit) ProtoMessage() {} func (*Deposit) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{1} + return fileDescriptor_ac6b6490ef95bb56, []int{1} } func (m *Deposit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -204,7 +204,7 @@ var xxx_messageInfo_Deposit proto.InternalMessageInfo type Proposal struct { ProposalId uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"id" yaml:"id"` Content *types1.Any `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"` - Status ProposalStatus `protobuf:"varint,3,opt,name=status,proto3,enum=cosmos.gov.v1beta1.ProposalStatus" json:"status,omitempty" yaml:"proposal_status"` + Status ProposalStatus `protobuf:"varint,3,opt,name=status,proto3,enum=lbm.gov.v1beta1.ProposalStatus" json:"status,omitempty" yaml:"proposal_status"` FinalTallyResult TallyResult `protobuf:"bytes,4,opt,name=final_tally_result,json=finalTallyResult,proto3" json:"final_tally_result" yaml:"final_tally_result"` SubmitTime time.Time `protobuf:"bytes,5,opt,name=submit_time,json=submitTime,proto3,stdtime" json:"submit_time" yaml:"submit_time"` DepositEndTime time.Time `protobuf:"bytes,6,opt,name=deposit_end_time,json=depositEndTime,proto3,stdtime" json:"deposit_end_time" yaml:"deposit_end_time"` @@ -216,7 +216,7 @@ type Proposal struct { func (m *Proposal) Reset() { *m = Proposal{} } func (*Proposal) ProtoMessage() {} func (*Proposal) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{2} + return fileDescriptor_ac6b6490ef95bb56, []int{2} } func (m *Proposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -256,7 +256,7 @@ type TallyResult struct { func (m *TallyResult) Reset() { *m = TallyResult{} } func (*TallyResult) ProtoMessage() {} func (*TallyResult) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{3} + return fileDescriptor_ac6b6490ef95bb56, []int{3} } func (m *TallyResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -290,13 +290,13 @@ var xxx_messageInfo_TallyResult proto.InternalMessageInfo type Vote struct { ProposalId uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty" yaml:"proposal_id"` Voter string `protobuf:"bytes,2,opt,name=voter,proto3" json:"voter,omitempty"` - Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.gov.v1beta1.VoteOption" json:"option,omitempty"` + Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=lbm.gov.v1beta1.VoteOption" json:"option,omitempty"` } func (m *Vote) Reset() { *m = Vote{} } func (*Vote) ProtoMessage() {} func (*Vote) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{4} + return fileDescriptor_ac6b6490ef95bb56, []int{4} } func (m *Vote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -337,7 +337,7 @@ type DepositParams struct { func (m *DepositParams) Reset() { *m = DepositParams{} } func (*DepositParams) ProtoMessage() {} func (*DepositParams) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{5} + return fileDescriptor_ac6b6490ef95bb56, []int{5} } func (m *DepositParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -375,7 +375,7 @@ type VotingParams struct { func (m *VotingParams) Reset() { *m = VotingParams{} } func (*VotingParams) ProtoMessage() {} func (*VotingParams) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{6} + return fileDescriptor_ac6b6490ef95bb56, []int{6} } func (m *VotingParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -419,7 +419,7 @@ type TallyParams struct { func (m *TallyParams) Reset() { *m = TallyParams{} } func (*TallyParams) ProtoMessage() {} func (*TallyParams) Descriptor() ([]byte, []int) { - return fileDescriptor_6e82113c1a9a4b7c, []int{7} + return fileDescriptor_ac6b6490ef95bb56, []int{7} } func (m *TallyParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -449,109 +449,109 @@ func (m *TallyParams) XXX_DiscardUnknown() { var xxx_messageInfo_TallyParams proto.InternalMessageInfo func init() { - proto.RegisterEnum("cosmos.gov.v1beta1.VoteOption", VoteOption_name, VoteOption_value) - proto.RegisterEnum("cosmos.gov.v1beta1.ProposalStatus", ProposalStatus_name, ProposalStatus_value) - proto.RegisterType((*TextProposal)(nil), "cosmos.gov.v1beta1.TextProposal") - proto.RegisterType((*Deposit)(nil), "cosmos.gov.v1beta1.Deposit") - proto.RegisterType((*Proposal)(nil), "cosmos.gov.v1beta1.Proposal") - proto.RegisterType((*TallyResult)(nil), "cosmos.gov.v1beta1.TallyResult") - proto.RegisterType((*Vote)(nil), "cosmos.gov.v1beta1.Vote") - proto.RegisterType((*DepositParams)(nil), "cosmos.gov.v1beta1.DepositParams") - proto.RegisterType((*VotingParams)(nil), "cosmos.gov.v1beta1.VotingParams") - proto.RegisterType((*TallyParams)(nil), "cosmos.gov.v1beta1.TallyParams") -} - -func init() { proto.RegisterFile("cosmos/gov/v1beta1/gov.proto", fileDescriptor_6e82113c1a9a4b7c) } - -var fileDescriptor_6e82113c1a9a4b7c = []byte{ - // 1387 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x57, 0xdf, 0x6f, 0xdb, 0x54, - 0x1b, 0x8e, 0xd3, 0xdf, 0x27, 0x69, 0xeb, 0x9d, 0x76, 0x6d, 0xea, 0x6f, 0x9f, 0xed, 0xcf, 0xdf, - 0x84, 0xa6, 0xa9, 0x4b, 0x58, 0x41, 0x20, 0x3a, 0x84, 0x48, 0x1a, 0x17, 0x82, 0xa6, 0x26, 0x72, - 0xbc, 0x8c, 0x81, 0x90, 0xe5, 0x34, 0x67, 0xa9, 0xc1, 0xf6, 0x09, 0xf1, 0x49, 0x69, 0xc4, 0x0d, - 0x57, 0x68, 0x0a, 0x12, 0xda, 0x1d, 0xe3, 0x22, 0xd2, 0x24, 0xee, 0xb8, 0xe6, 0x92, 0x0b, 0x2e, - 0x27, 0x04, 0xd2, 0x84, 0x84, 0x34, 0x71, 0x91, 0xb1, 0x4e, 0x42, 0xd3, 0x2e, 0x2b, 0xfe, 0x00, - 0x64, 0x9f, 0xe3, 0xc6, 0x49, 0x2a, 0x42, 0xb8, 0xb3, 0xdf, 0xf3, 0x3e, 0xcf, 0xf3, 0x9e, 0xc7, - 0xef, 0xfb, 0xa6, 0x05, 0x17, 0xf6, 0xb1, 0xe7, 0x60, 0x2f, 0x53, 0xc7, 0x87, 0x99, 0xc3, 0xab, - 0x55, 0x44, 0xcc, 0xab, 0xfe, 0x73, 0xba, 0xd1, 0xc4, 0x04, 0x43, 0x48, 0x4f, 0xd3, 0x7e, 0x84, - 0x9d, 0x0a, 0x22, 0x43, 0x54, 0x4d, 0x0f, 0x9d, 0x42, 0xf6, 0xb1, 0xe5, 0x52, 0x8c, 0xb0, 0x5a, - 0xc7, 0x75, 0x1c, 0x3c, 0x66, 0xfc, 0x27, 0x16, 0xdd, 0xa0, 0x28, 0x83, 0x1e, 0x30, 0x5a, 0x7a, - 0x24, 0xd5, 0x31, 0xae, 0xdb, 0x28, 0x13, 0xbc, 0x55, 0x5b, 0xb7, 0x33, 0xc4, 0x72, 0x90, 0x47, - 0x4c, 0xa7, 0x11, 0x62, 0x87, 0x13, 0x4c, 0xb7, 0xcd, 0x8e, 0xc4, 0xe1, 0xa3, 0x5a, 0xab, 0x69, - 0x12, 0x0b, 0xb3, 0x62, 0x94, 0x9b, 0x20, 0xa9, 0xa3, 0x23, 0x52, 0x6a, 0xe2, 0x06, 0xf6, 0x4c, - 0x1b, 0xae, 0x82, 0x19, 0x62, 0x11, 0x1b, 0xa5, 0x38, 0x99, 0xbb, 0xb4, 0xa0, 0xd1, 0x17, 0x28, - 0x83, 0x44, 0x0d, 0x79, 0xfb, 0x4d, 0xab, 0xe1, 0x43, 0x53, 0xf1, 0xe0, 0x2c, 0x1a, 0xda, 0x5e, - 0x7e, 0x76, 0x5f, 0xe2, 0x7e, 0xf9, 0xee, 0xca, 0xdc, 0x0e, 0x76, 0x09, 0x72, 0x89, 0xf2, 0x33, - 0x07, 0xe6, 0xf2, 0xa8, 0x81, 0x3d, 0x8b, 0xc0, 0x57, 0x41, 0xa2, 0xc1, 0x04, 0x0c, 0xab, 0x16, - 0x50, 0x4f, 0xe7, 0xd6, 0x4e, 0x7a, 0x12, 0x6c, 0x9b, 0x8e, 0xbd, 0xad, 0x44, 0x0e, 0x15, 0x0d, - 0x84, 0x6f, 0x85, 0x1a, 0xbc, 0x00, 0x16, 0x6a, 0x94, 0x03, 0x37, 0x99, 0x6a, 0x3f, 0x00, 0x4d, - 0x30, 0x6b, 0x3a, 0xb8, 0xe5, 0x92, 0xd4, 0x94, 0x3c, 0x75, 0x29, 0xb1, 0xb5, 0x91, 0x66, 0xb6, - 0xf9, 0xce, 0x87, 0x9f, 0x23, 0xbd, 0x83, 0x2d, 0x37, 0x97, 0x7e, 0xd0, 0x93, 0x62, 0xdf, 0x3e, - 0x96, 0x5e, 0xa8, 0x5b, 0xe4, 0xa0, 0x55, 0x4d, 0xef, 0x63, 0x27, 0x63, 0x5b, 0x2e, 0xca, 0xd8, - 0x55, 0xe7, 0x8a, 0x57, 0xfb, 0x28, 0x73, 0xb8, 0x95, 0x21, 0xed, 0x06, 0xf2, 0x82, 0x74, 0x4f, - 0x63, 0xc4, 0xdb, 0xf3, 0x77, 0xee, 0x4b, 0xb1, 0x67, 0xf7, 0xa5, 0x98, 0xf2, 0xe7, 0x2c, 0x98, - 0x3f, 0x75, 0xe9, 0xe5, 0xb3, 0x2e, 0xb4, 0xf2, 0xbc, 0x27, 0xc5, 0xad, 0xda, 0x49, 0x4f, 0x5a, - 0xa0, 0xd7, 0x1a, 0xbe, 0xcd, 0x35, 0x30, 0xb7, 0x4f, 0xdd, 0x09, 0xee, 0x92, 0xd8, 0x5a, 0x4d, - 0xd3, 0xaf, 0x93, 0x0e, 0xbf, 0x4e, 0x3a, 0xeb, 0xb6, 0x73, 0x89, 0x1f, 0xfb, 0x36, 0x6a, 0x21, - 0x02, 0x56, 0xc0, 0xac, 0x47, 0x4c, 0xd2, 0xf2, 0x52, 0x53, 0x32, 0x77, 0x69, 0x69, 0x4b, 0x49, - 0x8f, 0xb6, 0x5e, 0x3a, 0x2c, 0xb0, 0x1c, 0x64, 0xe6, 0x84, 0x93, 0x9e, 0xb4, 0x36, 0x64, 0x31, - 0x25, 0x51, 0x34, 0xc6, 0x06, 0x1b, 0x00, 0xde, 0xb6, 0x5c, 0xd3, 0x36, 0x88, 0x69, 0xdb, 0x6d, - 0xa3, 0x89, 0xbc, 0x96, 0x4d, 0x52, 0xd3, 0x41, 0x7d, 0xd2, 0x59, 0x1a, 0xba, 0x9f, 0xa7, 0x05, - 0x69, 0xb9, 0xff, 0xf9, 0xb6, 0x9e, 0xf4, 0xa4, 0x0d, 0x2a, 0x32, 0x4a, 0xa4, 0x68, 0x7c, 0x10, - 0x8c, 0x80, 0xe0, 0xfb, 0x20, 0xe1, 0xb5, 0xaa, 0x8e, 0x45, 0x0c, 0xbf, 0x8f, 0x53, 0x33, 0x81, - 0x94, 0x30, 0x62, 0x85, 0x1e, 0x36, 0x79, 0x4e, 0x64, 0x2a, 0xac, 0x5b, 0x22, 0x60, 0xe5, 0xee, - 0x63, 0x89, 0xd3, 0x00, 0x8d, 0xf8, 0x00, 0x68, 0x01, 0x9e, 0x35, 0x88, 0x81, 0xdc, 0x1a, 0x55, - 0x98, 0x1d, 0xab, 0xf0, 0x7f, 0xa6, 0xb0, 0x4e, 0x15, 0x86, 0x19, 0xa8, 0xcc, 0x12, 0x0b, 0xab, - 0x6e, 0x2d, 0x90, 0xfa, 0x9c, 0x03, 0x8b, 0x04, 0x13, 0xd3, 0x36, 0xd8, 0x41, 0x6a, 0x6e, 0x5c, - 0x1b, 0xee, 0x32, 0x9d, 0x55, 0xaa, 0x33, 0x80, 0x56, 0x26, 0x68, 0xcf, 0x64, 0x80, 0x0c, 0xc7, - 0xcb, 0x06, 0xe7, 0x0e, 0x31, 0xb1, 0xdc, 0xba, 0xff, 0x71, 0x9b, 0xcc, 0xd6, 0xf9, 0xb1, 0x97, - 0xbe, 0xc8, 0x8a, 0x49, 0xd1, 0x62, 0x46, 0x28, 0xe8, 0xad, 0x97, 0x69, 0xbc, 0xec, 0x87, 0x83, - 0x6b, 0xdf, 0x06, 0x2c, 0xd4, 0x37, 0x78, 0x61, 0xac, 0x96, 0xc2, 0xb4, 0xd6, 0x06, 0xb4, 0x06, - 0xfd, 0x5d, 0xa4, 0x51, 0x66, 0xef, 0xf6, 0xb4, 0xbf, 0x51, 0x94, 0x1f, 0xe2, 0x20, 0x11, 0x6d, - 0x9e, 0x37, 0xc0, 0x54, 0x1b, 0x79, 0x74, 0x3b, 0xe5, 0x36, 0x7d, 0xd6, 0xdf, 0x7a, 0xd2, 0xc5, - 0xb1, 0xb6, 0x15, 0x5c, 0xa2, 0xf9, 0x40, 0xb8, 0x0b, 0xe6, 0xcc, 0xaa, 0x47, 0x4c, 0x8b, 0x6d, - 0xb1, 0x09, 0x39, 0x42, 0x30, 0x7c, 0x1d, 0xc4, 0x5d, 0x1c, 0x8c, 0xe2, 0xa4, 0x14, 0x71, 0x17, - 0x43, 0x04, 0x92, 0x2e, 0x36, 0x3e, 0xb1, 0xc8, 0x81, 0x71, 0x88, 0x08, 0x0e, 0xc6, 0x6d, 0x21, - 0xb7, 0x33, 0x09, 0xcf, 0x49, 0x4f, 0x5a, 0xa1, 0x66, 0x46, 0x99, 0x14, 0x0d, 0xb8, 0xf8, 0xa6, - 0x45, 0x0e, 0x2a, 0x88, 0x60, 0x66, 0xe1, 0x57, 0x1c, 0x98, 0xae, 0x60, 0x82, 0xfe, 0xfd, 0x1a, - 0x5e, 0x05, 0x33, 0x87, 0x98, 0xa0, 0x70, 0x05, 0xd3, 0x17, 0xf8, 0x0a, 0x98, 0xc5, 0xf4, 0xf7, - 0x80, 0x6e, 0x24, 0xf1, 0xac, 0x6d, 0xe1, 0x0b, 0x17, 0x83, 0x2c, 0x8d, 0x65, 0x6f, 0xcf, 0xdf, - 0x0b, 0x77, 0xea, 0xf7, 0x71, 0xb0, 0xc8, 0x9a, 0xb8, 0x64, 0x36, 0x4d, 0xc7, 0x83, 0x5f, 0x73, - 0x20, 0xe1, 0x58, 0xee, 0xe9, 0x44, 0x71, 0xe3, 0x26, 0xea, 0x03, 0xdf, 0xb3, 0xe7, 0x3d, 0xe9, - 0x7c, 0x04, 0xb5, 0x89, 0x1d, 0x8b, 0x20, 0xa7, 0x41, 0xda, 0xfd, 0xbb, 0x45, 0x8e, 0x27, 0x19, - 0x34, 0xe0, 0x58, 0x6e, 0x38, 0x66, 0x5f, 0x72, 0x00, 0x3a, 0xe6, 0x51, 0x48, 0x63, 0x34, 0x50, - 0xd3, 0xc2, 0x35, 0xb6, 0xca, 0x37, 0x46, 0x9a, 0x3f, 0xcf, 0x7e, 0x68, 0x73, 0x2a, 0x2b, 0xf1, - 0xc2, 0x28, 0x78, 0xa0, 0x52, 0xb6, 0x44, 0x47, 0xb3, 0x94, 0x7b, 0xfe, 0x78, 0xf0, 0x8e, 0x79, - 0x14, 0x9a, 0x45, 0xc3, 0x5f, 0x70, 0x20, 0x59, 0x09, 0x66, 0x86, 0xb9, 0xf7, 0x29, 0x60, 0x33, - 0x14, 0xd6, 0xc6, 0x8d, 0xab, 0xed, 0x1a, 0xab, 0x6d, 0x7d, 0x00, 0x37, 0x50, 0xd6, 0xea, 0xc0, - 0xc8, 0x46, 0x2b, 0x4a, 0xd2, 0x18, 0xab, 0xe6, 0xd7, 0x70, 0x52, 0x59, 0x31, 0xef, 0x82, 0xd9, - 0x8f, 0x5b, 0xb8, 0xd9, 0x72, 0x82, 0x2a, 0x92, 0xb9, 0x37, 0xff, 0x71, 0x77, 0xe7, 0xd1, 0xfe, - 0xf3, 0x9e, 0xc4, 0x53, 0x74, 0xbf, 0x16, 0x8d, 0xf1, 0x41, 0x13, 0x2c, 0x90, 0x83, 0x26, 0xf2, - 0x0e, 0xb0, 0x4d, 0xed, 0x4f, 0x4e, 0x30, 0x3a, 0x94, 0x7c, 0xe5, 0x94, 0x20, 0xc2, 0xdf, 0x67, - 0x85, 0x77, 0x38, 0xb0, 0xe4, 0xcf, 0x93, 0xd1, 0x17, 0x9a, 0x0a, 0x84, 0xcc, 0x09, 0x85, 0x52, - 0x83, 0x2c, 0x03, 0xce, 0x9e, 0x67, 0xce, 0x0e, 0x64, 0x28, 0xda, 0xa2, 0x1f, 0xd0, 0xc3, 0xf7, - 0xcb, 0x7f, 0x70, 0x00, 0xf4, 0xa7, 0x08, 0x6e, 0x82, 0xf5, 0x4a, 0x51, 0x57, 0x8d, 0x62, 0x49, - 0x2f, 0x14, 0xf7, 0x8c, 0x1b, 0x7b, 0xe5, 0x92, 0xba, 0x53, 0xd8, 0x2d, 0xa8, 0x79, 0x3e, 0x26, - 0x2c, 0x77, 0xba, 0x72, 0x82, 0x26, 0xaa, 0xbe, 0x08, 0x54, 0xc0, 0x72, 0x34, 0xfb, 0x96, 0x5a, - 0xe6, 0x39, 0x61, 0xb1, 0xd3, 0x95, 0x17, 0x68, 0xd6, 0x2d, 0xe4, 0xc1, 0xcb, 0x60, 0x25, 0x9a, - 0x93, 0xcd, 0x95, 0xf5, 0x6c, 0x61, 0x8f, 0x8f, 0x0b, 0xe7, 0x3a, 0x5d, 0x79, 0x91, 0xe6, 0x65, - 0xd9, 0xda, 0x93, 0xc1, 0x52, 0x34, 0x77, 0xaf, 0xc8, 0x4f, 0x09, 0xc9, 0x4e, 0x57, 0x9e, 0xa7, - 0x69, 0x7b, 0x18, 0x6e, 0x81, 0xd4, 0x60, 0x86, 0x71, 0xb3, 0xa0, 0xbf, 0x6d, 0x54, 0x54, 0xbd, - 0xc8, 0x4f, 0x0b, 0xab, 0x9d, 0xae, 0xcc, 0x87, 0xb9, 0xe1, 0x9e, 0x12, 0xa6, 0xef, 0x7c, 0x23, - 0xc6, 0x2e, 0xff, 0x14, 0x07, 0x4b, 0x83, 0x7f, 0xc0, 0xc0, 0x34, 0xf8, 0x4f, 0x49, 0x2b, 0x96, - 0x8a, 0xe5, 0xec, 0x75, 0xa3, 0xac, 0x67, 0xf5, 0x1b, 0xe5, 0xa1, 0x0b, 0x07, 0x57, 0xa1, 0xc9, - 0x7b, 0x96, 0x0d, 0xaf, 0x01, 0x71, 0x38, 0x3f, 0xaf, 0x96, 0x8a, 0xe5, 0x82, 0x6e, 0x94, 0x54, - 0xad, 0x50, 0xcc, 0xf3, 0x9c, 0xb0, 0xde, 0xe9, 0xca, 0x2b, 0x14, 0x32, 0x30, 0x4e, 0xf0, 0x35, - 0xf0, 0xdf, 0x61, 0x70, 0xa5, 0xa8, 0x17, 0xf6, 0xde, 0x0a, 0xb1, 0x71, 0x61, 0xad, 0xd3, 0x95, - 0x21, 0xc5, 0x56, 0x22, 0xbd, 0x0f, 0x37, 0xc1, 0xda, 0x30, 0xb4, 0x94, 0x2d, 0x97, 0xd5, 0x3c, - 0x3f, 0x25, 0xf0, 0x9d, 0xae, 0x9c, 0xa4, 0x98, 0x92, 0xe9, 0x79, 0xa8, 0x06, 0x5f, 0x04, 0xa9, - 0xe1, 0x6c, 0x4d, 0x7d, 0x47, 0xdd, 0xd1, 0xd5, 0x3c, 0x3f, 0x2d, 0xc0, 0x4e, 0x57, 0x5e, 0xa2, - 0xf9, 0x1a, 0xfa, 0x10, 0xed, 0x13, 0x74, 0x26, 0xff, 0x6e, 0xb6, 0x70, 0x5d, 0xcd, 0xf3, 0x33, - 0x51, 0xfe, 0x5d, 0xd3, 0xb2, 0x51, 0x8d, 0xda, 0x99, 0xbb, 0xfe, 0xe0, 0x89, 0x18, 0x7b, 0xf4, - 0x44, 0x8c, 0x7d, 0x76, 0x2c, 0xc6, 0x1e, 0x1c, 0x8b, 0xdc, 0xc3, 0x63, 0x91, 0xfb, 0xfd, 0x58, - 0xe4, 0xee, 0x3e, 0x15, 0x63, 0x0f, 0x9f, 0x8a, 0xb1, 0x47, 0x4f, 0xc5, 0xd8, 0x7b, 0x7f, 0xb7, - 0x08, 0x8f, 0x82, 0x7f, 0x7a, 0x82, 0x6e, 0xae, 0xce, 0x06, 0xbb, 0xe3, 0xa5, 0xbf, 0x02, 0x00, - 0x00, 0xff, 0xff, 0xf9, 0xc9, 0xb5, 0x9f, 0x0f, 0x0d, 0x00, 0x00, + proto.RegisterEnum("lbm.gov.v1beta1.VoteOption", VoteOption_name, VoteOption_value) + proto.RegisterEnum("lbm.gov.v1beta1.ProposalStatus", ProposalStatus_name, ProposalStatus_value) + proto.RegisterType((*TextProposal)(nil), "lbm.gov.v1beta1.TextProposal") + proto.RegisterType((*Deposit)(nil), "lbm.gov.v1beta1.Deposit") + proto.RegisterType((*Proposal)(nil), "lbm.gov.v1beta1.Proposal") + proto.RegisterType((*TallyResult)(nil), "lbm.gov.v1beta1.TallyResult") + proto.RegisterType((*Vote)(nil), "lbm.gov.v1beta1.Vote") + proto.RegisterType((*DepositParams)(nil), "lbm.gov.v1beta1.DepositParams") + proto.RegisterType((*VotingParams)(nil), "lbm.gov.v1beta1.VotingParams") + proto.RegisterType((*TallyParams)(nil), "lbm.gov.v1beta1.TallyParams") +} + +func init() { proto.RegisterFile("lbm/gov/v1beta1/gov.proto", fileDescriptor_ac6b6490ef95bb56) } + +var fileDescriptor_ac6b6490ef95bb56 = []byte{ + // 1392 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x57, 0xcf, 0x6b, 0x1b, 0xd7, + 0x16, 0xd6, 0xc8, 0xbf, 0xaf, 0x64, 0x7b, 0x72, 0xad, 0xd8, 0xf2, 0x24, 0x4f, 0x33, 0x6f, 0x5e, + 0x78, 0x84, 0xe0, 0x48, 0x2f, 0xce, 0x83, 0x52, 0xa7, 0x94, 0x4a, 0xd6, 0xb8, 0x55, 0x09, 0x92, + 0x18, 0x4d, 0x94, 0xa6, 0xa5, 0x1d, 0x46, 0xd2, 0x8d, 0x3c, 0xed, 0xcc, 0x5c, 0x55, 0x73, 0xe5, + 0x5a, 0x74, 0x53, 0xe8, 0x26, 0xa8, 0x50, 0xb2, 0x28, 0x25, 0x1b, 0x41, 0xa0, 0xbb, 0xae, 0xbb, + 0xe9, 0xae, 0xcb, 0x10, 0xba, 0x08, 0x85, 0x42, 0xe8, 0x42, 0x69, 0x1c, 0x28, 0x21, 0xdd, 0xf9, + 0x2f, 0x28, 0x33, 0xf7, 0x8e, 0x35, 0x92, 0x42, 0x5c, 0x75, 0x37, 0xf7, 0xdc, 0xef, 0x7c, 0xdf, + 0x39, 0xe7, 0x9e, 0x73, 0x64, 0x83, 0x4d, 0xab, 0x66, 0x67, 0x9a, 0xf8, 0x20, 0x73, 0x70, 0xa5, + 0x86, 0x88, 0x71, 0xc5, 0xfb, 0x4e, 0xb7, 0xda, 0x98, 0x60, 0xb8, 0x6a, 0xd5, 0xec, 0xb4, 0x77, + 0x64, 0x57, 0xc2, 0x39, 0x0f, 0x5b, 0x33, 0x5c, 0x74, 0x02, 0xae, 0x63, 0xd3, 0xa1, 0x68, 0x21, + 0xd1, 0xc4, 0x4d, 0xec, 0x7f, 0x66, 0xbc, 0x2f, 0x66, 0xdd, 0xac, 0x63, 0xd7, 0xc6, 0xae, 0x4e, + 0x2f, 0xe8, 0x81, 0x5d, 0x89, 0x4d, 0x8c, 0x9b, 0x16, 0xca, 0xf8, 0xa7, 0x5a, 0xe7, 0x76, 0x86, + 0x98, 0x36, 0x72, 0x89, 0x61, 0xb7, 0x02, 0xdf, 0x71, 0x80, 0xe1, 0x74, 0xd9, 0x55, 0x6a, 0xfc, + 0xaa, 0xd1, 0x69, 0x1b, 0xc4, 0xc4, 0x2c, 0x18, 0xf9, 0x26, 0x88, 0x6b, 0xe8, 0x90, 0x94, 0xdb, + 0xb8, 0x85, 0x5d, 0xc3, 0x82, 0x09, 0x30, 0x47, 0x4c, 0x62, 0xa1, 0x24, 0x27, 0x71, 0x17, 0x97, + 0x54, 0x7a, 0x80, 0x12, 0x88, 0x35, 0x90, 0x5b, 0x6f, 0x9b, 0x2d, 0xcf, 0x35, 0x19, 0xf5, 0xef, + 0xc2, 0xa6, 0x9d, 0xd5, 0xe7, 0xf7, 0x45, 0xee, 0x97, 0x1f, 0x2e, 0x2f, 0xec, 0x62, 0x87, 0x20, + 0x87, 0xc8, 0x0f, 0x39, 0xb0, 0x90, 0x47, 0x2d, 0xec, 0x9a, 0x04, 0xbe, 0x06, 0x62, 0x2d, 0x26, + 0xa0, 0x9b, 0x0d, 0x9f, 0x7a, 0x36, 0xb7, 0x7e, 0x3c, 0x10, 0x61, 0xd7, 0xb0, 0xad, 0x1d, 0x39, + 0x74, 0x29, 0xab, 0x20, 0x38, 0x15, 0x1a, 0xf0, 0x3c, 0x58, 0x6a, 0x50, 0x0e, 0xdc, 0x66, 0xaa, + 0x43, 0x03, 0xfc, 0x08, 0xcc, 0x1b, 0x36, 0xee, 0x38, 0x24, 0x39, 0x23, 0xcd, 0x5c, 0x8c, 0x6d, + 0xaf, 0xa7, 0xbd, 0x77, 0xf0, 0xca, 0x1e, 0x3c, 0x44, 0x7a, 0x17, 0x9b, 0x4e, 0x2e, 0xfd, 0x60, + 0x20, 0x46, 0xbe, 0x7f, 0x22, 0xfe, 0xb7, 0x69, 0x92, 0xfd, 0x4e, 0x2d, 0x5d, 0xc7, 0x76, 0xc6, + 0x32, 0x1d, 0x94, 0xb1, 0x6a, 0xf6, 0x65, 0xb7, 0xf1, 0x49, 0xe6, 0x60, 0x3b, 0x43, 0xba, 0x2d, + 0xe4, 0xfa, 0x70, 0x57, 0x65, 0xac, 0x3b, 0x8b, 0x77, 0xee, 0x8b, 0x91, 0xe7, 0xf7, 0xc5, 0x88, + 0xfc, 0xe7, 0x3c, 0x58, 0x3c, 0x29, 0xd1, 0xff, 0x5f, 0x96, 0xcd, 0xda, 0x8b, 0x81, 0x18, 0x35, + 0x1b, 0xc7, 0x03, 0x71, 0x89, 0xe6, 0x34, 0x9e, 0xca, 0x35, 0xb0, 0x50, 0xa7, 0xa5, 0xf1, 0x13, + 0x89, 0x6d, 0x27, 0xd2, 0xf4, 0x69, 0xd2, 0xc1, 0xd3, 0xa4, 0xb3, 0x4e, 0x37, 0x17, 0x7b, 0x38, + 0xac, 0xa1, 0x1a, 0x78, 0xc0, 0x0a, 0x98, 0x77, 0x89, 0x41, 0x3a, 0x6e, 0x72, 0x46, 0xe2, 0x2e, + 0xae, 0x6c, 0x8b, 0xe9, 0xb1, 0x8e, 0x4b, 0x07, 0xd1, 0x55, 0x7c, 0x58, 0x4e, 0x38, 0x1e, 0x88, + 0xeb, 0x63, 0xc5, 0xa5, 0x0c, 0xb2, 0xca, 0xa8, 0xa0, 0x0d, 0xe0, 0x6d, 0xd3, 0x31, 0x2c, 0x9d, + 0x18, 0x96, 0xd5, 0xd5, 0xdb, 0xc8, 0xed, 0x58, 0x24, 0x39, 0xeb, 0x07, 0x77, 0x7e, 0x42, 0x40, + 0xf3, 0x40, 0xaa, 0x8f, 0xc9, 0xfd, 0xdb, 0x2b, 0xe8, 0xf1, 0x40, 0xdc, 0xa4, 0x0a, 0x93, 0x2c, + 0xb2, 0xca, 0xfb, 0xc6, 0x90, 0x13, 0xfc, 0x00, 0xc4, 0xdc, 0x4e, 0xcd, 0x36, 0x89, 0xee, 0xb5, + 0x6f, 0x72, 0xce, 0xd7, 0x11, 0x26, 0x8a, 0xa0, 0x05, 0xbd, 0x9d, 0x4b, 0x31, 0x15, 0xd6, 0x24, + 0x21, 0x67, 0xf9, 0xee, 0x13, 0x91, 0x53, 0x01, 0xb5, 0x78, 0x0e, 0xd0, 0x04, 0x3c, 0xeb, 0x0b, + 0x1d, 0x39, 0x0d, 0xaa, 0x30, 0x7f, 0xaa, 0xc2, 0x7f, 0x98, 0xc2, 0x06, 0x55, 0x18, 0x67, 0xa0, + 0x32, 0x2b, 0xcc, 0xac, 0x38, 0x0d, 0x5f, 0xea, 0x4b, 0x0e, 0x2c, 0x13, 0x4c, 0x0c, 0x4b, 0x67, + 0x17, 0xc9, 0x85, 0x57, 0x76, 0xdf, 0x1e, 0x13, 0x49, 0x50, 0x91, 0x11, 0x57, 0x79, 0x8a, 0xae, + 0x8c, 0xfb, 0x9e, 0xc1, 0x48, 0x59, 0xe0, 0xcc, 0x01, 0x26, 0xa6, 0xd3, 0xf4, 0x9e, 0xb5, 0xcd, + 0x6a, 0xba, 0x78, 0x6a, 0xc6, 0x17, 0x58, 0x30, 0x49, 0x1a, 0xcc, 0x04, 0x05, 0x4d, 0x79, 0x95, + 0xda, 0x2b, 0x9e, 0xd9, 0xcf, 0xf9, 0x36, 0x60, 0xa6, 0x61, 0x75, 0x97, 0x4e, 0xd5, 0x92, 0x99, + 0xd6, 0xfa, 0x88, 0xd6, 0x68, 0x71, 0x97, 0xa9, 0x95, 0xd5, 0x76, 0x67, 0xd6, 0xdb, 0x22, 0xf2, + 0x4f, 0x51, 0x10, 0x0b, 0x77, 0xce, 0x9b, 0x60, 0xa6, 0x8b, 0x5c, 0xba, 0x91, 0x72, 0x5b, 0x1e, + 0xeb, 0x6f, 0x03, 0xf1, 0xc2, 0xa9, 0x65, 0x2b, 0x38, 0x44, 0xf5, 0x1c, 0xe1, 0x1e, 0x58, 0x30, + 0x6a, 0x2e, 0x31, 0x4c, 0xb6, 0xb9, 0xa6, 0xe4, 0x08, 0x9c, 0xe1, 0x1b, 0x20, 0xea, 0x60, 0x7f, + 0x02, 0xa7, 0xa5, 0x88, 0x3a, 0x18, 0x22, 0x10, 0x77, 0xb0, 0xfe, 0x99, 0x49, 0xf6, 0xf5, 0x03, + 0x44, 0xb0, 0x3f, 0x68, 0x4b, 0xb9, 0xdd, 0x69, 0x78, 0x8e, 0x07, 0xe2, 0x1a, 0x2d, 0x66, 0x98, + 0x49, 0x56, 0x81, 0x83, 0x6f, 0x9a, 0x64, 0xbf, 0x8a, 0x08, 0x66, 0x25, 0xfc, 0x86, 0x03, 0xb3, + 0x55, 0x4c, 0xd0, 0x3f, 0x5f, 0xbd, 0x09, 0x30, 0x77, 0x80, 0x09, 0x0a, 0xd6, 0x2e, 0x3d, 0xc0, + 0xab, 0x60, 0x1e, 0xd3, 0xdf, 0x00, 0xba, 0x88, 0xce, 0x4d, 0xec, 0x09, 0x4f, 0xb5, 0xe4, 0x43, + 0x54, 0x06, 0xdd, 0x59, 0xbc, 0x17, 0xec, 0xd1, 0x1f, 0xa3, 0x60, 0x99, 0x75, 0x70, 0xd9, 0x68, + 0x1b, 0xb6, 0x0b, 0xbf, 0xe5, 0x40, 0xcc, 0x36, 0x9d, 0x93, 0x59, 0xe2, 0x5e, 0x39, 0x4b, 0x1f, + 0x7a, 0xd5, 0x7a, 0x31, 0x10, 0xcf, 0x86, 0x5c, 0xb6, 0xb0, 0x6d, 0x12, 0x64, 0xb7, 0x48, 0x77, + 0x98, 0x55, 0xe8, 0x7a, 0x9a, 0x11, 0x03, 0xb6, 0xe9, 0x04, 0x03, 0xf6, 0x35, 0x07, 0xa0, 0x6d, + 0x1c, 0x06, 0x34, 0x7a, 0x0b, 0xb5, 0x4d, 0xdc, 0x60, 0xbb, 0x7b, 0x73, 0xa2, 0xed, 0xf3, 0xec, + 0x67, 0x35, 0xa7, 0xb0, 0x10, 0xcf, 0x4f, 0x3a, 0x8f, 0x44, 0xca, 0x76, 0xe7, 0x24, 0x4a, 0xbe, + 0xe7, 0x0d, 0x06, 0x6f, 0x1b, 0x87, 0x41, 0xa5, 0xa8, 0xf9, 0x2b, 0x0e, 0xc4, 0xab, 0xfe, 0xb4, + 0xb0, 0xd2, 0x7d, 0x0e, 0xd8, 0xf4, 0x04, 0xb1, 0x71, 0xa7, 0xc5, 0x76, 0x8d, 0xc5, 0xb6, 0x31, + 0xe2, 0x37, 0x12, 0x56, 0x62, 0x64, 0x58, 0xc3, 0x11, 0xc5, 0xa9, 0x8d, 0x45, 0xf3, 0x6b, 0x30, + 0xa3, 0x2c, 0x98, 0xf7, 0xc0, 0xfc, 0xa7, 0x1d, 0xdc, 0xee, 0xd8, 0x7e, 0x14, 0xf1, 0xdc, 0x5b, + 0x7f, 0xbb, 0xaf, 0xf3, 0xa8, 0xfe, 0x62, 0x20, 0xf2, 0xd4, 0x7b, 0x18, 0x8b, 0xca, 0xf8, 0xa0, + 0x01, 0x96, 0xc8, 0x7e, 0x1b, 0xb9, 0xfb, 0xd8, 0xa2, 0xe5, 0x8f, 0x4f, 0x31, 0x34, 0x94, 0x7c, + 0xed, 0x84, 0x20, 0xc4, 0x3f, 0x64, 0x85, 0x77, 0x38, 0xb0, 0xe2, 0x4d, 0x92, 0x3e, 0x14, 0x9a, + 0xf1, 0x85, 0x8c, 0x29, 0x85, 0x92, 0xa3, 0x2c, 0x23, 0x95, 0x3d, 0xcb, 0x2a, 0x3b, 0x82, 0x90, + 0xd5, 0x65, 0xcf, 0xa0, 0x05, 0xe7, 0x4b, 0x7f, 0x70, 0x00, 0x0c, 0x47, 0x08, 0x6e, 0x81, 0x8d, + 0x6a, 0x49, 0x53, 0xf4, 0x52, 0x59, 0x2b, 0x94, 0x8a, 0xfa, 0x8d, 0x62, 0xa5, 0xac, 0xec, 0x16, + 0xf6, 0x0a, 0x4a, 0x9e, 0x8f, 0x08, 0xab, 0xbd, 0xbe, 0x14, 0xa3, 0x40, 0xc5, 0x13, 0x81, 0x32, + 0x58, 0x0d, 0xa3, 0x6f, 0x29, 0x15, 0x9e, 0x13, 0x96, 0x7b, 0x7d, 0x69, 0x89, 0xa2, 0x6e, 0x21, + 0x17, 0x5e, 0x02, 0x6b, 0x61, 0x4c, 0x36, 0x57, 0xd1, 0xb2, 0x85, 0x22, 0x1f, 0x15, 0xce, 0xf4, + 0xfa, 0xd2, 0x32, 0xc5, 0x65, 0xd9, 0xc2, 0x93, 0xc0, 0x4a, 0x18, 0x5b, 0x2c, 0xf1, 0x33, 0x42, + 0xbc, 0xd7, 0x97, 0x16, 0x29, 0xac, 0x88, 0xe1, 0x36, 0x48, 0x8e, 0x22, 0xf4, 0x9b, 0x05, 0xed, + 0x1d, 0xbd, 0xaa, 0x68, 0x25, 0x7e, 0x56, 0x48, 0xf4, 0xfa, 0x12, 0x1f, 0x60, 0x83, 0x0d, 0x25, + 0xcc, 0xde, 0xf9, 0x2e, 0x15, 0xb9, 0xf4, 0x73, 0x14, 0xac, 0x8c, 0xfe, 0xd1, 0x02, 0xd3, 0xe0, + 0x5c, 0x59, 0x2d, 0x95, 0x4b, 0x95, 0xec, 0x75, 0xbd, 0xa2, 0x65, 0xb5, 0x1b, 0x95, 0xb1, 0x84, + 0xfd, 0x54, 0x28, 0xb8, 0x68, 0x5a, 0xf0, 0x1a, 0x48, 0x8d, 0xe3, 0xf3, 0x4a, 0xb9, 0x54, 0x29, + 0x68, 0x7a, 0x59, 0x51, 0x0b, 0xa5, 0x3c, 0xcf, 0x09, 0x1b, 0xbd, 0xbe, 0xb4, 0x46, 0x5d, 0x46, + 0xc6, 0x09, 0xbe, 0x0e, 0xfe, 0x35, 0xee, 0x5c, 0x2d, 0x69, 0x85, 0xe2, 0xdb, 0x81, 0x6f, 0x54, + 0x58, 0xef, 0xf5, 0x25, 0x48, 0x7d, 0xab, 0xa1, 0xde, 0x87, 0x5b, 0x60, 0x7d, 0xdc, 0xb5, 0x9c, + 0xad, 0x54, 0x94, 0x3c, 0x3f, 0x23, 0xf0, 0xbd, 0xbe, 0x14, 0xa7, 0x3e, 0x65, 0xc3, 0x75, 0x51, + 0x03, 0xfe, 0x0f, 0x24, 0xc7, 0xd1, 0xaa, 0xf2, 0xae, 0xb2, 0xab, 0x29, 0x79, 0x7e, 0x56, 0x80, + 0xbd, 0xbe, 0xb4, 0x42, 0xf1, 0x2a, 0xfa, 0x18, 0xd5, 0x09, 0x7a, 0x29, 0xff, 0x5e, 0xb6, 0x70, + 0x5d, 0xc9, 0xf3, 0x73, 0x61, 0xfe, 0x3d, 0xc3, 0xb4, 0x50, 0x83, 0x96, 0x33, 0x77, 0xfd, 0xc1, + 0xd3, 0x54, 0xe4, 0xf1, 0xd3, 0x54, 0xe4, 0x8b, 0xa3, 0x54, 0xe4, 0xc1, 0x51, 0x8a, 0x7b, 0x74, + 0x94, 0xe2, 0x7e, 0x3f, 0x4a, 0x71, 0x77, 0x9f, 0xa5, 0x22, 0x8f, 0x9e, 0xa5, 0x22, 0x8f, 0x9f, + 0xa5, 0x22, 0xef, 0xbf, 0x6a, 0x11, 0x1e, 0xfa, 0xff, 0xdc, 0xf8, 0xdd, 0x5c, 0x9b, 0xf7, 0x77, + 0xc7, 0xd5, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xac, 0xee, 0x0a, 0x8f, 0xf4, 0x0c, 0x00, 0x00, } func (this *TextProposal) Equal(that interface{}) bool { diff --git a/x/gov/types/msgs_test.go b/x/gov/types/msgs_test.go index 281ad1f57f..442bcd81d2 100644 --- a/x/gov/types/msgs_test.go +++ b/x/gov/types/msgs_test.go @@ -64,7 +64,7 @@ func TestMsgDepositGetSignBytes(t *testing.T) { msg := NewMsgDeposit(addr, 0, coinsPos) res := msg.GetSignBytes() - expected := `{"type":"cosmos-sdk/MsgDeposit","value":{"amount":[{"amount":"1000","denom":"stake"}],"depositor":"cosmos1v9jxgu33kfsgr5","proposal_id":"0"}}` + expected := `{"type":"lbm-sdk/MsgDeposit","value":{"amount":[{"amount":"1000","denom":"stake"}],"depositor":"cosmos1v9jxgu33kfsgr5","proposal_id":"0"}}` require.Equal(t, expected, string(res)) } @@ -127,6 +127,6 @@ func TestMsgSubmitProposal_GetSignBytes(t *testing.T) { bz = msg.GetSignBytes() }) require.Equal(t, - `{"type":"cosmos-sdk/MsgSubmitProposal","value":{"content":{"type":"cosmos-sdk/TextProposal","value":{"description":"abcd","title":"test"}},"initial_deposit":[]}}`, + `{"type":"lbm-sdk/MsgSubmitProposal","value":{"content":{"type":"lbm-sdk/TextProposal","value":{"description":"abcd","title":"test"}},"initial_deposit":[]}}`, string(bz)) } diff --git a/x/gov/types/query.pb.go b/x/gov/types/query.pb.go index 9ed55ac76a..2788f6b1d0 100644 --- a/x/gov/types/query.pb.go +++ b/x/gov/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/v1beta1/query.proto +// source: lbm/gov/v1beta1/query.proto package types @@ -40,7 +40,7 @@ func (m *QueryProposalRequest) Reset() { *m = QueryProposalRequest{} } func (m *QueryProposalRequest) String() string { return proto.CompactTextString(m) } func (*QueryProposalRequest) ProtoMessage() {} func (*QueryProposalRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{0} + return fileDescriptor_030e1843516fcefd, []int{0} } func (m *QueryProposalRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *QueryProposalResponse) Reset() { *m = QueryProposalResponse{} } func (m *QueryProposalResponse) String() string { return proto.CompactTextString(m) } func (*QueryProposalResponse) ProtoMessage() {} func (*QueryProposalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{1} + return fileDescriptor_030e1843516fcefd, []int{1} } func (m *QueryProposalResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +124,7 @@ func (m *QueryProposalResponse) GetProposal() Proposal { // QueryProposalsRequest is the request type for the Query/Proposals RPC method. type QueryProposalsRequest struct { // proposal_status defines the status of the proposals. - ProposalStatus ProposalStatus `protobuf:"varint,1,opt,name=proposal_status,json=proposalStatus,proto3,enum=cosmos.gov.v1beta1.ProposalStatus" json:"proposal_status,omitempty"` + ProposalStatus ProposalStatus `protobuf:"varint,1,opt,name=proposal_status,json=proposalStatus,proto3,enum=lbm.gov.v1beta1.ProposalStatus" json:"proposal_status,omitempty"` // voter defines the voter address for the proposals. Voter string `protobuf:"bytes,2,opt,name=voter,proto3" json:"voter,omitempty"` // depositor defines the deposit addresses from the proposals. @@ -137,7 +137,7 @@ func (m *QueryProposalsRequest) Reset() { *m = QueryProposalsRequest{} } func (m *QueryProposalsRequest) String() string { return proto.CompactTextString(m) } func (*QueryProposalsRequest) ProtoMessage() {} func (*QueryProposalsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{2} + return fileDescriptor_030e1843516fcefd, []int{2} } func (m *QueryProposalsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -178,7 +178,7 @@ func (m *QueryProposalsResponse) Reset() { *m = QueryProposalsResponse{} func (m *QueryProposalsResponse) String() string { return proto.CompactTextString(m) } func (*QueryProposalsResponse) ProtoMessage() {} func (*QueryProposalsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{3} + return fileDescriptor_030e1843516fcefd, []int{3} } func (m *QueryProposalsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -233,7 +233,7 @@ func (m *QueryVoteRequest) Reset() { *m = QueryVoteRequest{} } func (m *QueryVoteRequest) String() string { return proto.CompactTextString(m) } func (*QueryVoteRequest) ProtoMessage() {} func (*QueryVoteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{4} + return fileDescriptor_030e1843516fcefd, []int{4} } func (m *QueryVoteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -272,7 +272,7 @@ func (m *QueryVoteResponse) Reset() { *m = QueryVoteResponse{} } func (m *QueryVoteResponse) String() string { return proto.CompactTextString(m) } func (*QueryVoteResponse) ProtoMessage() {} func (*QueryVoteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{5} + return fileDescriptor_030e1843516fcefd, []int{5} } func (m *QueryVoteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -320,7 +320,7 @@ func (m *QueryVotesRequest) Reset() { *m = QueryVotesRequest{} } func (m *QueryVotesRequest) String() string { return proto.CompactTextString(m) } func (*QueryVotesRequest) ProtoMessage() {} func (*QueryVotesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{6} + return fileDescriptor_030e1843516fcefd, []int{6} } func (m *QueryVotesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -375,7 +375,7 @@ func (m *QueryVotesResponse) Reset() { *m = QueryVotesResponse{} } func (m *QueryVotesResponse) String() string { return proto.CompactTextString(m) } func (*QueryVotesResponse) ProtoMessage() {} func (*QueryVotesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{7} + return fileDescriptor_030e1843516fcefd, []int{7} } func (m *QueryVotesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -429,7 +429,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{8} + return fileDescriptor_030e1843516fcefd, []int{8} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +479,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{9} + return fileDescriptor_030e1843516fcefd, []int{9} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -541,7 +541,7 @@ func (m *QueryDepositRequest) Reset() { *m = QueryDepositRequest{} } func (m *QueryDepositRequest) String() string { return proto.CompactTextString(m) } func (*QueryDepositRequest) ProtoMessage() {} func (*QueryDepositRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{10} + return fileDescriptor_030e1843516fcefd, []int{10} } func (m *QueryDepositRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -580,7 +580,7 @@ func (m *QueryDepositResponse) Reset() { *m = QueryDepositResponse{} } func (m *QueryDepositResponse) String() string { return proto.CompactTextString(m) } func (*QueryDepositResponse) ProtoMessage() {} func (*QueryDepositResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{11} + return fileDescriptor_030e1843516fcefd, []int{11} } func (m *QueryDepositResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -628,7 +628,7 @@ func (m *QueryDepositsRequest) Reset() { *m = QueryDepositsRequest{} } func (m *QueryDepositsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDepositsRequest) ProtoMessage() {} func (*QueryDepositsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{12} + return fileDescriptor_030e1843516fcefd, []int{12} } func (m *QueryDepositsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -682,7 +682,7 @@ func (m *QueryDepositsResponse) Reset() { *m = QueryDepositsResponse{} } func (m *QueryDepositsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDepositsResponse) ProtoMessage() {} func (*QueryDepositsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{13} + return fileDescriptor_030e1843516fcefd, []int{13} } func (m *QueryDepositsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -735,7 +735,7 @@ func (m *QueryTallyResultRequest) Reset() { *m = QueryTallyResultRequest func (m *QueryTallyResultRequest) String() string { return proto.CompactTextString(m) } func (*QueryTallyResultRequest) ProtoMessage() {} func (*QueryTallyResultRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{14} + return fileDescriptor_030e1843516fcefd, []int{14} } func (m *QueryTallyResultRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -781,7 +781,7 @@ func (m *QueryTallyResultResponse) Reset() { *m = QueryTallyResultRespon func (m *QueryTallyResultResponse) String() string { return proto.CompactTextString(m) } func (*QueryTallyResultResponse) ProtoMessage() {} func (*QueryTallyResultResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e35c0d133e91c0a2, []int{15} + return fileDescriptor_030e1843516fcefd, []int{15} } func (m *QueryTallyResultResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -818,89 +818,89 @@ func (m *QueryTallyResultResponse) GetTally() TallyResult { } func init() { - proto.RegisterType((*QueryProposalRequest)(nil), "cosmos.gov.v1beta1.QueryProposalRequest") - proto.RegisterType((*QueryProposalResponse)(nil), "cosmos.gov.v1beta1.QueryProposalResponse") - proto.RegisterType((*QueryProposalsRequest)(nil), "cosmos.gov.v1beta1.QueryProposalsRequest") - proto.RegisterType((*QueryProposalsResponse)(nil), "cosmos.gov.v1beta1.QueryProposalsResponse") - proto.RegisterType((*QueryVoteRequest)(nil), "cosmos.gov.v1beta1.QueryVoteRequest") - proto.RegisterType((*QueryVoteResponse)(nil), "cosmos.gov.v1beta1.QueryVoteResponse") - proto.RegisterType((*QueryVotesRequest)(nil), "cosmos.gov.v1beta1.QueryVotesRequest") - proto.RegisterType((*QueryVotesResponse)(nil), "cosmos.gov.v1beta1.QueryVotesResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.gov.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.gov.v1beta1.QueryParamsResponse") - proto.RegisterType((*QueryDepositRequest)(nil), "cosmos.gov.v1beta1.QueryDepositRequest") - proto.RegisterType((*QueryDepositResponse)(nil), "cosmos.gov.v1beta1.QueryDepositResponse") - proto.RegisterType((*QueryDepositsRequest)(nil), "cosmos.gov.v1beta1.QueryDepositsRequest") - proto.RegisterType((*QueryDepositsResponse)(nil), "cosmos.gov.v1beta1.QueryDepositsResponse") - proto.RegisterType((*QueryTallyResultRequest)(nil), "cosmos.gov.v1beta1.QueryTallyResultRequest") - proto.RegisterType((*QueryTallyResultResponse)(nil), "cosmos.gov.v1beta1.QueryTallyResultResponse") -} - -func init() { proto.RegisterFile("cosmos/gov/v1beta1/query.proto", fileDescriptor_e35c0d133e91c0a2) } - -var fileDescriptor_e35c0d133e91c0a2 = []byte{ - // 968 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x41, 0x6f, 0x1b, 0x55, - 0x10, 0xf6, 0x4b, 0x9c, 0xd6, 0x9e, 0xb4, 0x01, 0x86, 0x00, 0x96, 0x09, 0x76, 0x58, 0xd1, 0xd4, - 0xa4, 0xd4, 0x8f, 0x38, 0x05, 0xd4, 0x16, 0x50, 0x88, 0x50, 0x5b, 0x54, 0x09, 0x15, 0xa7, 0x02, - 0x89, 0x03, 0xd1, 0xba, 0x5e, 0x2d, 0x2b, 0x1c, 0xbf, 0xad, 0xdf, 0xb3, 0x45, 0x14, 0x22, 0x24, - 0x4e, 0x20, 0x2e, 0xa0, 0x22, 0x6e, 0x88, 0x4a, 0x95, 0xf8, 0x2d, 0x3d, 0x56, 0x82, 0x03, 0x27, - 0x84, 0x12, 0x0e, 0x88, 0xdf, 0xc0, 0x01, 0xed, 0xdb, 0x79, 0xeb, 0x5d, 0x67, 0x9d, 0xb5, 0x4b, - 0xd5, 0x9b, 0x77, 0xde, 0x37, 0x33, 0xdf, 0x37, 0x33, 0x6f, 0x5e, 0x02, 0x95, 0x5b, 0x42, 0xee, - 0x08, 0xc9, 0x5d, 0x31, 0xe0, 0x83, 0xb5, 0x96, 0xa3, 0xec, 0x35, 0x7e, 0xbb, 0xef, 0xf4, 0x76, - 0xeb, 0x7e, 0x4f, 0x28, 0x81, 0x18, 0x9e, 0xd7, 0x5d, 0x31, 0xa8, 0xd3, 0x79, 0x79, 0x95, 0x7c, - 0x5a, 0xb6, 0x74, 0x42, 0x70, 0xe4, 0xea, 0xdb, 0xae, 0xd7, 0xb5, 0x95, 0x27, 0xba, 0xa1, 0x7f, - 0x79, 0xd1, 0x15, 0xae, 0xd0, 0x3f, 0x79, 0xf0, 0x8b, 0xac, 0x4b, 0xae, 0x10, 0x6e, 0xc7, 0xe1, - 0xb6, 0xef, 0x71, 0xbb, 0xdb, 0x15, 0x4a, 0xbb, 0x48, 0x73, 0x9a, 0xc2, 0x29, 0xc8, 0xaf, 0x4f, - 0xad, 0x37, 0x60, 0xf1, 0x83, 0x20, 0xe7, 0x8d, 0x9e, 0xf0, 0x85, 0xb4, 0x3b, 0x4d, 0xe7, 0x76, - 0xdf, 0x91, 0x0a, 0xab, 0x30, 0xef, 0x93, 0x69, 0xdb, 0x6b, 0x97, 0xd8, 0x32, 0xab, 0xe5, 0x9b, - 0x60, 0x4c, 0xef, 0xb5, 0xad, 0x8f, 0xe0, 0x99, 0x11, 0x47, 0xe9, 0x8b, 0xae, 0x74, 0xf0, 0x6d, - 0x28, 0x18, 0x98, 0x76, 0x9b, 0x6f, 0x2c, 0xd5, 0x8f, 0xca, 0xae, 0x1b, 0xbf, 0xcd, 0xfc, 0xfd, - 0x3f, 0xaa, 0xb9, 0x66, 0xe4, 0x63, 0xfd, 0xc3, 0x46, 0x22, 0x4b, 0xc3, 0xe9, 0x3a, 0x3c, 0x11, - 0x71, 0x92, 0xca, 0x56, 0x7d, 0xa9, 0x13, 0x2c, 0x34, 0xac, 0xe3, 0x12, 0x6c, 0x69, 0x64, 0x73, - 0xc1, 0x4f, 0x7c, 0xe3, 0x22, 0xcc, 0x0d, 0x84, 0x72, 0x7a, 0xa5, 0x99, 0x65, 0x56, 0x2b, 0x36, - 0xc3, 0x0f, 0x5c, 0x82, 0x62, 0xdb, 0xf1, 0x85, 0xf4, 0x94, 0xe8, 0x95, 0x66, 0xf5, 0xc9, 0xd0, - 0x80, 0x57, 0x00, 0x86, 0x2d, 0x29, 0xe5, 0xb5, 0xb8, 0x15, 0x93, 0x3b, 0xe8, 0x5f, 0x3d, 0x6c, - 0x76, 0x44, 0xc1, 0x76, 0x1d, 0x22, 0xdf, 0x8c, 0x79, 0x5e, 0x2a, 0x7c, 0x7d, 0xb7, 0x9a, 0xfb, - 0xfb, 0x6e, 0x35, 0x67, 0xdd, 0x63, 0xf0, 0xec, 0xa8, 0x58, 0xaa, 0xe3, 0x06, 0x14, 0x0d, 0xe5, - 0x40, 0xe7, 0xec, 0x84, 0x85, 0x1c, 0x3a, 0xe1, 0xd5, 0x04, 0xdd, 0x19, 0x4d, 0xf7, 0x6c, 0x26, - 0xdd, 0x30, 0x7d, 0x9c, 0xaf, 0xb5, 0x05, 0x4f, 0x6a, 0x92, 0x1f, 0x0a, 0xe5, 0x4c, 0x3a, 0x20, - 0xe9, 0x05, 0x8e, 0x49, 0xbf, 0x0a, 0x4f, 0xc5, 0x82, 0x92, 0xe8, 0x06, 0xe4, 0x03, 0x1c, 0x0d, - 0x4e, 0x29, 0x4d, 0x6f, 0x80, 0x27, 0xad, 0x1a, 0x6b, 0x7d, 0x11, 0x0b, 0x24, 0x27, 0xa6, 0x77, - 0x25, 0xa5, 0x38, 0x0f, 0xd1, 0x4b, 0xeb, 0x0e, 0x03, 0x8c, 0xa7, 0x27, 0x21, 0x17, 0x42, 0xf5, - 0xa6, 0x73, 0x59, 0x4a, 0x42, 0xf0, 0xa3, 0xeb, 0xd8, 0x6b, 0x44, 0xea, 0x86, 0xdd, 0xb3, 0x77, - 0x12, 0x45, 0xd1, 0x86, 0x6d, 0xb5, 0xeb, 0x87, 0x45, 0x2e, 0x06, 0x6e, 0x81, 0xe9, 0xe6, 0xae, - 0xef, 0x58, 0xff, 0x32, 0x78, 0x3a, 0xe1, 0x47, 0x6a, 0xae, 0xc3, 0xe9, 0x81, 0x50, 0x5e, 0xd7, - 0xdd, 0x0e, 0xc1, 0xd4, 0x9f, 0xe5, 0x31, 0xaa, 0xbc, 0xae, 0x1b, 0x06, 0x20, 0x75, 0xa7, 0x06, - 0x31, 0x1b, 0xbe, 0x0f, 0x0b, 0x74, 0xa5, 0x4c, 0xb4, 0x50, 0xe8, 0x8b, 0x69, 0xd1, 0xde, 0x0d, - 0x91, 0x89, 0x70, 0xa7, 0xdb, 0x71, 0x23, 0x5e, 0x83, 0x53, 0xca, 0xee, 0x74, 0x76, 0x4d, 0xb4, - 0x59, 0x1d, 0xad, 0x9a, 0x16, 0xed, 0x66, 0x80, 0x4b, 0xc4, 0x9a, 0x57, 0x43, 0x93, 0xf5, 0x09, - 0xa9, 0xa7, 0xa4, 0x13, 0xcf, 0x52, 0x62, 0x6b, 0xcc, 0x8c, 0x6c, 0x8d, 0xd8, 0xc8, 0x6f, 0xd1, - 0xb2, 0x8d, 0xe2, 0x53, 0x79, 0x2f, 0xc3, 0x49, 0x82, 0x53, 0x61, 0x9f, 0x3f, 0xa6, 0x14, 0x44, - 0xdc, 0x78, 0x58, 0x5f, 0x26, 0x83, 0x3e, 0xfe, 0x1b, 0xf0, 0xb3, 0x59, 0xd8, 0x43, 0x06, 0xa4, - 0xeb, 0x2d, 0x28, 0x10, 0x4b, 0x73, 0x0f, 0x26, 0x10, 0x16, 0xb9, 0x3c, 0xba, 0xdb, 0x70, 0x09, - 0x9e, 0xd3, 0x04, 0x75, 0xfb, 0x9b, 0x8e, 0xec, 0x77, 0xd4, 0x14, 0xef, 0x5c, 0xe9, 0xa8, 0x6f, - 0xd4, 0xb7, 0x39, 0x3d, 0x3e, 0xd4, 0xb5, 0xf1, 0x23, 0x17, 0xfa, 0x99, 0xbb, 0xae, 0x7d, 0x1a, - 0xbf, 0x15, 0x61, 0x4e, 0x47, 0xc6, 0x1f, 0x18, 0x14, 0xcc, 0x16, 0xc7, 0x5a, 0x5a, 0x90, 0xb4, - 0x27, 0xba, 0xfc, 0xf2, 0x04, 0xc8, 0x90, 0xa8, 0xb5, 0xfe, 0xd5, 0xaf, 0x7f, 0xdd, 0x99, 0x39, - 0x8f, 0xe7, 0x78, 0xca, 0x1f, 0x03, 0xd1, 0x83, 0xc1, 0xf7, 0x62, 0xa5, 0xd8, 0xc7, 0x6f, 0x18, - 0x14, 0xa3, 0x67, 0x09, 0xb3, 0xb3, 0x99, 0xc9, 0x2b, 0xaf, 0x4e, 0x02, 0x25, 0x66, 0x67, 0x34, - 0xb3, 0x2a, 0xbe, 0x70, 0x2c, 0x33, 0xfc, 0x91, 0x41, 0x3e, 0x58, 0x97, 0xf8, 0xd2, 0xd8, 0xd8, - 0xb1, 0xc7, 0xa9, 0x7c, 0x26, 0x03, 0x45, 0xc9, 0xdf, 0xd1, 0xc9, 0x2f, 0xe3, 0xc5, 0x29, 0xca, - 0xc2, 0xf5, 0xa6, 0xe6, 0x7b, 0xfa, 0x39, 0xdb, 0xc7, 0xef, 0x19, 0xcc, 0xe9, 0xcd, 0x8f, 0xc7, - 0xe7, 0x8c, 0x8a, 0xb3, 0x92, 0x05, 0x23, 0x6e, 0x17, 0x35, 0xb7, 0x75, 0x5c, 0x9b, 0x9a, 0x1b, - 0x7e, 0xcb, 0xe0, 0x04, 0xed, 0xc6, 0xf1, 0xd9, 0x12, 0x2f, 0x43, 0xf9, 0x6c, 0x26, 0x8e, 0x68, - 0xbd, 0xaa, 0x69, 0xad, 0x62, 0x2d, 0x95, 0x96, 0xc6, 0xf2, 0xbd, 0xd8, 0x23, 0xb3, 0x8f, 0xbf, - 0x30, 0x38, 0x49, 0x37, 0x1c, 0xc7, 0xa7, 0x49, 0xae, 0xdc, 0x72, 0x2d, 0x1b, 0x48, 0x84, 0xae, - 0x69, 0x42, 0x9b, 0xb8, 0x31, 0x4d, 0x9d, 0xcc, 0x8a, 0xe1, 0x7b, 0xd1, 0x9a, 0xde, 0xc7, 0x9f, - 0x18, 0x14, 0xcc, 0x0a, 0xc3, 0x4c, 0x02, 0x32, 0xfb, 0x1a, 0x8e, 0xee, 0x43, 0xeb, 0x4d, 0xcd, - 0xf5, 0x75, 0xbc, 0xf0, 0x30, 0x5c, 0xf1, 0x1e, 0x83, 0xf9, 0xd8, 0x36, 0xc1, 0x73, 0x63, 0x13, - 0x1f, 0xdd, 0x73, 0xe5, 0x57, 0x26, 0x03, 0xff, 0x9f, 0xe1, 0xd3, 0x6b, 0x6d, 0x73, 0xe3, 0xfe, - 0x41, 0x85, 0x3d, 0x38, 0xa8, 0xb0, 0x3f, 0x0f, 0x2a, 0xec, 0xbb, 0xc3, 0x4a, 0xee, 0xc1, 0x61, - 0x25, 0xf7, 0xfb, 0x61, 0x25, 0xf7, 0xf1, 0x8a, 0xeb, 0xa9, 0x4f, 0xfb, 0xad, 0xfa, 0x2d, 0xb1, - 0xc3, 0x3b, 0x5e, 0xd7, 0xe1, 0x9d, 0xd6, 0xce, 0x79, 0xd9, 0xfe, 0x8c, 0x0f, 0x1a, 0xfc, 0x73, - 0x9d, 0x21, 0x18, 0x18, 0xd9, 0x3a, 0xa1, 0xff, 0x33, 0x59, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, - 0x83, 0xaf, 0xa3, 0xc7, 0x4d, 0x0d, 0x00, 0x00, + proto.RegisterType((*QueryProposalRequest)(nil), "lbm.gov.v1beta1.QueryProposalRequest") + proto.RegisterType((*QueryProposalResponse)(nil), "lbm.gov.v1beta1.QueryProposalResponse") + proto.RegisterType((*QueryProposalsRequest)(nil), "lbm.gov.v1beta1.QueryProposalsRequest") + proto.RegisterType((*QueryProposalsResponse)(nil), "lbm.gov.v1beta1.QueryProposalsResponse") + proto.RegisterType((*QueryVoteRequest)(nil), "lbm.gov.v1beta1.QueryVoteRequest") + proto.RegisterType((*QueryVoteResponse)(nil), "lbm.gov.v1beta1.QueryVoteResponse") + proto.RegisterType((*QueryVotesRequest)(nil), "lbm.gov.v1beta1.QueryVotesRequest") + proto.RegisterType((*QueryVotesResponse)(nil), "lbm.gov.v1beta1.QueryVotesResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "lbm.gov.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "lbm.gov.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryDepositRequest)(nil), "lbm.gov.v1beta1.QueryDepositRequest") + proto.RegisterType((*QueryDepositResponse)(nil), "lbm.gov.v1beta1.QueryDepositResponse") + proto.RegisterType((*QueryDepositsRequest)(nil), "lbm.gov.v1beta1.QueryDepositsRequest") + proto.RegisterType((*QueryDepositsResponse)(nil), "lbm.gov.v1beta1.QueryDepositsResponse") + proto.RegisterType((*QueryTallyResultRequest)(nil), "lbm.gov.v1beta1.QueryTallyResultRequest") + proto.RegisterType((*QueryTallyResultResponse)(nil), "lbm.gov.v1beta1.QueryTallyResultResponse") +} + +func init() { proto.RegisterFile("lbm/gov/v1beta1/query.proto", fileDescriptor_030e1843516fcefd) } + +var fileDescriptor_030e1843516fcefd = []byte{ + // 969 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcf, 0x6f, 0x1b, 0x55, + 0x10, 0xf6, 0x4b, 0x9c, 0xd6, 0x9e, 0xb4, 0x29, 0x3c, 0x52, 0x70, 0x4d, 0x6a, 0x97, 0x6d, 0xd3, + 0x06, 0x50, 0xfd, 0x48, 0xc2, 0xaf, 0xa6, 0x20, 0x95, 0x34, 0x48, 0x41, 0x5c, 0x82, 0x1b, 0x71, + 0xe0, 0x40, 0xb4, 0xae, 0x57, 0xcb, 0x8a, 0xb5, 0xdf, 0xd6, 0x6f, 0x6d, 0x61, 0x05, 0x5f, 0x40, + 0x48, 0x48, 0x08, 0x54, 0x89, 0x03, 0xe2, 0x50, 0x29, 0x07, 0xfe, 0x98, 0x1e, 0x2b, 0x71, 0xe1, + 0x84, 0x50, 0xd2, 0x03, 0x77, 0xfe, 0x01, 0xb4, 0xb3, 0xf3, 0xd6, 0xbb, 0xfe, 0xb1, 0xb6, 0x21, + 0xea, 0xcd, 0xfb, 0xf6, 0x9b, 0x99, 0xef, 0x9b, 0x99, 0xfd, 0x9e, 0x0c, 0x2f, 0xbb, 0xb5, 0x86, + 0xb0, 0x65, 0x47, 0x74, 0xd6, 0x6b, 0x96, 0x6f, 0xae, 0x8b, 0x07, 0x6d, 0xab, 0xd5, 0xad, 0x78, + 0x2d, 0xe9, 0x4b, 0x7e, 0xc1, 0xad, 0x35, 0x2a, 0xb6, 0xec, 0x54, 0xe8, 0x65, 0xf1, 0x46, 0x80, + 0xae, 0x99, 0xca, 0x0a, 0x61, 0x51, 0x90, 0x67, 0xda, 0x4e, 0xd3, 0xf4, 0x1d, 0xd9, 0x0c, 0x23, + 0x8b, 0xcb, 0xb6, 0xb4, 0x25, 0xfe, 0x14, 0xc1, 0x2f, 0x3a, 0x5d, 0xb1, 0xa5, 0xb4, 0x5d, 0x4b, + 0x98, 0x9e, 0x23, 0xcc, 0x66, 0x53, 0xfa, 0x18, 0xa2, 0xe8, 0xed, 0xa5, 0x41, 0x2a, 0x41, 0x65, + 0x7c, 0x65, 0xbc, 0x03, 0xcb, 0x9f, 0x04, 0x05, 0xf7, 0x5a, 0xd2, 0x93, 0xca, 0x74, 0xab, 0xd6, + 0x83, 0xb6, 0xa5, 0x7c, 0x5e, 0x86, 0x45, 0x8f, 0x8e, 0x0e, 0x9c, 0x7a, 0x81, 0x5d, 0x61, 0x6b, + 0xd9, 0x2a, 0xe8, 0xa3, 0x8f, 0xea, 0xc6, 0x3e, 0x5c, 0x1c, 0x08, 0x54, 0x9e, 0x6c, 0x2a, 0x8b, + 0xdf, 0x86, 0x9c, 0x86, 0x61, 0xd8, 0xe2, 0xc6, 0xa5, 0xca, 0x80, 0xda, 0x8a, 0x0e, 0xda, 0xce, + 0x3e, 0xfe, 0xb3, 0x9c, 0xa9, 0x46, 0x01, 0xc6, 0x53, 0x36, 0x90, 0x56, 0x69, 0x42, 0xbb, 0x70, + 0x21, 0x22, 0xa4, 0x7c, 0xd3, 0x6f, 0x2b, 0xcc, 0xbe, 0xb4, 0x51, 0x1e, 0x9b, 0xfd, 0x1e, 0xc2, + 0xaa, 0x4b, 0x5e, 0xe2, 0x99, 0x2f, 0xc3, 0x42, 0x47, 0xfa, 0x56, 0xab, 0x30, 0x77, 0x85, 0xad, + 0xe5, 0xab, 0xe1, 0x03, 0x5f, 0x81, 0x7c, 0xdd, 0xf2, 0xa4, 0x72, 0x7c, 0xd9, 0x2a, 0xcc, 0xe3, + 0x9b, 0xfe, 0x01, 0xbf, 0x0b, 0xd0, 0x9f, 0x44, 0x21, 0x8b, 0xb2, 0xae, 0x62, 0xe1, 0x60, 0x66, + 0x95, 0x70, 0xb4, 0x51, 0x7d, 0xd3, 0xb6, 0x88, 0x76, 0x35, 0x16, 0xb6, 0x95, 0xfb, 0xfe, 0xa8, + 0x9c, 0xf9, 0xfb, 0xa8, 0x9c, 0x31, 0x1e, 0x31, 0x78, 0x71, 0x50, 0x26, 0xb5, 0xef, 0x7d, 0xc8, + 0x6b, 0xbe, 0x81, 0xc2, 0xf9, 0x69, 0xfa, 0xd7, 0x8f, 0xe0, 0x3b, 0x09, 0xa2, 0x73, 0x48, 0xf4, + 0x5a, 0x3a, 0xd1, 0xb0, 0x70, 0x9c, 0xa9, 0x71, 0x0f, 0x9e, 0x43, 0x7a, 0x9f, 0x4a, 0xdf, 0x9a, + 0x76, 0x23, 0x46, 0xf7, 0x35, 0x26, 0x7a, 0x07, 0x9e, 0x8f, 0x25, 0x25, 0xb9, 0x02, 0xb2, 0x01, + 0x8e, 0x36, 0xe5, 0xe2, 0x90, 0xd2, 0x00, 0x4c, 0x2a, 0x11, 0x68, 0x74, 0x63, 0x59, 0xd4, 0xd4, + 0xdc, 0xee, 0x8e, 0x68, 0xcb, 0xac, 0xf3, 0x33, 0x7e, 0x64, 0xc0, 0xe3, 0xb5, 0x49, 0xc2, 0x7a, + 0xa8, 0x5b, 0x4f, 0x2b, 0x55, 0x43, 0x88, 0x3c, 0xa5, 0x29, 0xbd, 0x45, 0x74, 0xf6, 0xcc, 0x96, + 0xd9, 0x48, 0xf4, 0x02, 0x0f, 0x0e, 0xfc, 0xae, 0x17, 0x36, 0x36, 0x1f, 0x84, 0x05, 0x47, 0xfb, + 0x5d, 0xcf, 0x32, 0xfe, 0x61, 0xf0, 0x42, 0x22, 0x8e, 0x74, 0xec, 0xc2, 0xf9, 0x8e, 0xf4, 0x9d, + 0xa6, 0x7d, 0x10, 0x82, 0x69, 0x26, 0x97, 0x47, 0xe9, 0x71, 0x9a, 0x76, 0x18, 0x4d, 0xba, 0xce, + 0x75, 0x62, 0x67, 0xfc, 0x63, 0x58, 0xa2, 0x4f, 0x47, 0xa7, 0x0a, 0x25, 0x96, 0x86, 0x52, 0xed, + 0x84, 0xb0, 0x44, 0xae, 0xf3, 0xf5, 0xf8, 0x21, 0xff, 0x10, 0xce, 0xf9, 0xa6, 0xeb, 0x76, 0x75, + 0xaa, 0x79, 0x4c, 0xb5, 0x32, 0x94, 0x6a, 0x3f, 0x00, 0x25, 0x12, 0x2d, 0xfa, 0xfd, 0x23, 0xe3, + 0x73, 0x12, 0x4d, 0x15, 0xa7, 0xde, 0x9c, 0x84, 0x2f, 0xcc, 0x0d, 0xf8, 0x42, 0x6c, 0xbb, 0xf7, + 0xc8, 0x48, 0xa3, 0xfc, 0xd4, 0xd5, 0x77, 0xe1, 0x2c, 0xc1, 0xa9, 0x9f, 0x85, 0x71, 0x4d, 0x20, + 0xd6, 0x1a, 0x6e, 0x7c, 0x9d, 0xcc, 0xf8, 0x8c, 0x97, 0xfd, 0x57, 0xed, 0xc4, 0xfd, 0xf2, 0xa4, + 0x68, 0x0b, 0x72, 0x44, 0x51, 0xaf, 0xfc, 0x24, 0x49, 0x11, 0xfe, 0x94, 0x16, 0x7f, 0x0b, 0x5e, + 0x42, 0x6a, 0x38, 0xf2, 0xaa, 0xa5, 0xda, 0xae, 0x3f, 0xc3, 0xbd, 0x55, 0x18, 0x8e, 0x8d, 0x66, + 0xb5, 0x80, 0x2b, 0x43, 0x93, 0x1a, 0xb3, 0x63, 0x61, 0x90, 0xfe, 0xa0, 0x31, 0x60, 0xe3, 0xb7, + 0x3c, 0x2c, 0x60, 0x5a, 0xfe, 0x13, 0x83, 0x9c, 0xb6, 0x67, 0xbe, 0x3a, 0x94, 0x61, 0xd4, 0x65, + 0x5b, 0xbc, 0x3e, 0x09, 0x16, 0xf2, 0x33, 0x36, 0xbf, 0xf9, 0xfd, 0xe9, 0xcf, 0x73, 0x37, 0xf9, + 0xeb, 0xe2, 0xbe, 0x54, 0x0d, 0xa9, 0x12, 0x77, 0x7a, 0x74, 0x07, 0x88, 0xc3, 0x58, 0x07, 0x7a, + 0xfc, 0x5b, 0x06, 0xf9, 0xe8, 0x9a, 0xe1, 0x13, 0x4a, 0xe9, 0x25, 0x2b, 0xde, 0x98, 0x88, 0x23, + 0x4e, 0xab, 0xc8, 0xa9, 0xcc, 0x2f, 0xa7, 0x72, 0xe2, 0x0f, 0x19, 0x64, 0x03, 0x1f, 0xe4, 0xaf, + 0x8c, 0x4e, 0x1c, 0xbb, 0x69, 0x8a, 0x46, 0x1a, 0x84, 0xca, 0x7e, 0x80, 0x65, 0x6f, 0xf3, 0x5b, + 0x33, 0xb4, 0x42, 0xa0, 0xf9, 0x8a, 0x43, 0xbc, 0x98, 0x7a, 0xfc, 0x07, 0x06, 0x0b, 0xe8, 0xe4, + 0x3c, 0xa5, 0x60, 0xd4, 0x90, 0xab, 0xa9, 0x18, 0x62, 0x75, 0x0b, 0x59, 0x6d, 0xf2, 0xf5, 0x99, + 0x59, 0xf1, 0xef, 0x18, 0x9c, 0x21, 0xc7, 0x1b, 0x53, 0x2a, 0x61, 0xf3, 0xc5, 0x6b, 0xe9, 0x20, + 0x22, 0xf4, 0x06, 0x12, 0x7a, 0x8d, 0xaf, 0x8d, 0x24, 0x84, 0x58, 0x71, 0x18, 0xbb, 0x2e, 0x7a, + 0xfc, 0x88, 0xc1, 0x59, 0xfa, 0x7a, 0xf9, 0x98, 0x1a, 0x49, 0x0b, 0x2d, 0xae, 0x4e, 0x40, 0x11, + 0x95, 0x5d, 0xa4, 0xb2, 0xcd, 0xef, 0xcc, 0xd2, 0x1b, 0x6d, 0x1c, 0xe2, 0x30, 0xf2, 0xdc, 0x1e, + 0xff, 0x85, 0x41, 0x4e, 0xbb, 0x12, 0x4f, 0xaf, 0xae, 0x26, 0x7c, 0x62, 0x83, 0xe6, 0x66, 0xbc, + 0x87, 0x2c, 0xdf, 0xe6, 0x6f, 0xfe, 0x17, 0x96, 0xfc, 0x11, 0x83, 0xc5, 0x98, 0x47, 0xf0, 0xb5, + 0xd1, 0x55, 0x87, 0x7d, 0xab, 0xf8, 0xea, 0x14, 0xc8, 0xff, 0xb3, 0x64, 0x68, 0x53, 0xdb, 0x77, + 0x1e, 0x1f, 0x97, 0xd8, 0x93, 0xe3, 0x12, 0xfb, 0xeb, 0xb8, 0xc4, 0x1e, 0x9e, 0x94, 0x32, 0x4f, + 0x4e, 0x4a, 0x99, 0x3f, 0x4e, 0x4a, 0x99, 0xcf, 0xae, 0xdb, 0x8e, 0xff, 0x45, 0xbb, 0x56, 0xb9, + 0x2f, 0x1b, 0xc2, 0x75, 0x9a, 0x96, 0x70, 0x6b, 0x8d, 0x9b, 0xaa, 0xfe, 0xa5, 0xe8, 0x6c, 0x88, + 0xaf, 0xb0, 0x42, 0xb0, 0x1e, 0xaa, 0x76, 0x06, 0xff, 0x36, 0x6c, 0xfe, 0x1b, 0x00, 0x00, 0xff, + 0xff, 0xe6, 0x7f, 0x3d, 0xe9, 0xde, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -943,7 +943,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Proposal(ctx context.Context, in *QueryProposalRequest, opts ...grpc.CallOption) (*QueryProposalResponse, error) { out := new(QueryProposalResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Proposal", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Proposal", in, out, opts...) if err != nil { return nil, err } @@ -952,7 +952,7 @@ func (c *queryClient) Proposal(ctx context.Context, in *QueryProposalRequest, op func (c *queryClient) Proposals(ctx context.Context, in *QueryProposalsRequest, opts ...grpc.CallOption) (*QueryProposalsResponse, error) { out := new(QueryProposalsResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Proposals", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Proposals", in, out, opts...) if err != nil { return nil, err } @@ -961,7 +961,7 @@ func (c *queryClient) Proposals(ctx context.Context, in *QueryProposalsRequest, func (c *queryClient) Vote(ctx context.Context, in *QueryVoteRequest, opts ...grpc.CallOption) (*QueryVoteResponse, error) { out := new(QueryVoteResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Vote", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Vote", in, out, opts...) if err != nil { return nil, err } @@ -970,7 +970,7 @@ func (c *queryClient) Vote(ctx context.Context, in *QueryVoteRequest, opts ...gr func (c *queryClient) Votes(ctx context.Context, in *QueryVotesRequest, opts ...grpc.CallOption) (*QueryVotesResponse, error) { out := new(QueryVotesResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Votes", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Votes", in, out, opts...) if err != nil { return nil, err } @@ -979,7 +979,7 @@ func (c *queryClient) Votes(ctx context.Context, in *QueryVotesRequest, opts ... func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -988,7 +988,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Deposit(ctx context.Context, in *QueryDepositRequest, opts ...grpc.CallOption) (*QueryDepositResponse, error) { out := new(QueryDepositResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Deposit", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Deposit", in, out, opts...) if err != nil { return nil, err } @@ -997,7 +997,7 @@ func (c *queryClient) Deposit(ctx context.Context, in *QueryDepositRequest, opts func (c *queryClient) Deposits(ctx context.Context, in *QueryDepositsRequest, opts ...grpc.CallOption) (*QueryDepositsResponse, error) { out := new(QueryDepositsResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Deposits", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/Deposits", in, out, opts...) if err != nil { return nil, err } @@ -1006,7 +1006,7 @@ func (c *queryClient) Deposits(ctx context.Context, in *QueryDepositsRequest, op func (c *queryClient) TallyResult(ctx context.Context, in *QueryTallyResultRequest, opts ...grpc.CallOption) (*QueryTallyResultResponse, error) { out := new(QueryTallyResultResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/TallyResult", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Query/TallyResult", in, out, opts...) if err != nil { return nil, err } @@ -1076,7 +1076,7 @@ func _Query_Proposal_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Proposal", + FullMethod: "/lbm.gov.v1beta1.Query/Proposal", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Proposal(ctx, req.(*QueryProposalRequest)) @@ -1094,7 +1094,7 @@ func _Query_Proposals_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Proposals", + FullMethod: "/lbm.gov.v1beta1.Query/Proposals", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Proposals(ctx, req.(*QueryProposalsRequest)) @@ -1112,7 +1112,7 @@ func _Query_Vote_Handler(srv interface{}, ctx context.Context, dec func(interfac } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Vote", + FullMethod: "/lbm.gov.v1beta1.Query/Vote", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Vote(ctx, req.(*QueryVoteRequest)) @@ -1130,7 +1130,7 @@ func _Query_Votes_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Votes", + FullMethod: "/lbm.gov.v1beta1.Query/Votes", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Votes(ctx, req.(*QueryVotesRequest)) @@ -1148,7 +1148,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Params", + FullMethod: "/lbm.gov.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1166,7 +1166,7 @@ func _Query_Deposit_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Deposit", + FullMethod: "/lbm.gov.v1beta1.Query/Deposit", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Deposit(ctx, req.(*QueryDepositRequest)) @@ -1184,7 +1184,7 @@ func _Query_Deposits_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/Deposits", + FullMethod: "/lbm.gov.v1beta1.Query/Deposits", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Deposits(ctx, req.(*QueryDepositsRequest)) @@ -1202,7 +1202,7 @@ func _Query_TallyResult_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Query/TallyResult", + FullMethod: "/lbm.gov.v1beta1.Query/TallyResult", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TallyResult(ctx, req.(*QueryTallyResultRequest)) @@ -1211,7 +1211,7 @@ func _Query_TallyResult_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.gov.v1beta1.Query", + ServiceName: "lbm.gov.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1248,7 +1248,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/gov/v1beta1/query.proto", + Metadata: "lbm/gov/v1beta1/query.proto", } func (m *QueryProposalRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/types/query.pb.gw.go b/x/gov/types/query.pb.gw.go index 52814511b9..2084e8960d 100644 --- a/x/gov/types/query.pb.gw.go +++ b/x/gov/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: cosmos/gov/v1beta1/query.proto +// source: lbm/gov/v1beta1/query.proto /* Package types is a reverse proxy. diff --git a/x/gov/types/tx.pb.go b/x/gov/types/tx.pb.go index 4b62671624..a376f5977a 100644 --- a/x/gov/types/tx.pb.go +++ b/x/gov/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/v1beta1/tx.proto +// source: lbm/gov/v1beta1/tx.proto package types @@ -43,7 +43,7 @@ type MsgSubmitProposal struct { func (m *MsgSubmitProposal) Reset() { *m = MsgSubmitProposal{} } func (*MsgSubmitProposal) ProtoMessage() {} func (*MsgSubmitProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_3c053992595e3dce, []int{0} + return fileDescriptor_4ac4aac0fb082f49, []int{0} } func (m *MsgSubmitProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -81,7 +81,7 @@ func (m *MsgSubmitProposalResponse) Reset() { *m = MsgSubmitProposalResp func (m *MsgSubmitProposalResponse) String() string { return proto.CompactTextString(m) } func (*MsgSubmitProposalResponse) ProtoMessage() {} func (*MsgSubmitProposalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3c053992595e3dce, []int{1} + return fileDescriptor_4ac4aac0fb082f49, []int{1} } func (m *MsgSubmitProposalResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,13 +121,13 @@ func (m *MsgSubmitProposalResponse) GetProposalId() uint64 { type MsgVote struct { ProposalId uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id" yaml:"proposal_id"` Voter string `protobuf:"bytes,2,opt,name=voter,proto3" json:"voter,omitempty"` - Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.gov.v1beta1.VoteOption" json:"option,omitempty"` + Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=lbm.gov.v1beta1.VoteOption" json:"option,omitempty"` } func (m *MsgVote) Reset() { *m = MsgVote{} } func (*MsgVote) ProtoMessage() {} func (*MsgVote) Descriptor() ([]byte, []int) { - return fileDescriptor_3c053992595e3dce, []int{2} + return fileDescriptor_4ac4aac0fb082f49, []int{2} } func (m *MsgVote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -164,7 +164,7 @@ func (m *MsgVoteResponse) Reset() { *m = MsgVoteResponse{} } func (m *MsgVoteResponse) String() string { return proto.CompactTextString(m) } func (*MsgVoteResponse) ProtoMessage() {} func (*MsgVoteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3c053992595e3dce, []int{3} + return fileDescriptor_4ac4aac0fb082f49, []int{3} } func (m *MsgVoteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -203,7 +203,7 @@ type MsgDeposit struct { func (m *MsgDeposit) Reset() { *m = MsgDeposit{} } func (*MsgDeposit) ProtoMessage() {} func (*MsgDeposit) Descriptor() ([]byte, []int) { - return fileDescriptor_3c053992595e3dce, []int{4} + return fileDescriptor_4ac4aac0fb082f49, []int{4} } func (m *MsgDeposit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -240,7 +240,7 @@ func (m *MsgDepositResponse) Reset() { *m = MsgDepositResponse{} } func (m *MsgDepositResponse) String() string { return proto.CompactTextString(m) } func (*MsgDepositResponse) ProtoMessage() {} func (*MsgDepositResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3c053992595e3dce, []int{5} + return fileDescriptor_4ac4aac0fb082f49, []int{5} } func (m *MsgDepositResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -270,55 +270,55 @@ func (m *MsgDepositResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgDepositResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgSubmitProposal)(nil), "cosmos.gov.v1beta1.MsgSubmitProposal") - proto.RegisterType((*MsgSubmitProposalResponse)(nil), "cosmos.gov.v1beta1.MsgSubmitProposalResponse") - proto.RegisterType((*MsgVote)(nil), "cosmos.gov.v1beta1.MsgVote") - proto.RegisterType((*MsgVoteResponse)(nil), "cosmos.gov.v1beta1.MsgVoteResponse") - proto.RegisterType((*MsgDeposit)(nil), "cosmos.gov.v1beta1.MsgDeposit") - proto.RegisterType((*MsgDepositResponse)(nil), "cosmos.gov.v1beta1.MsgDepositResponse") + proto.RegisterType((*MsgSubmitProposal)(nil), "lbm.gov.v1beta1.MsgSubmitProposal") + proto.RegisterType((*MsgSubmitProposalResponse)(nil), "lbm.gov.v1beta1.MsgSubmitProposalResponse") + proto.RegisterType((*MsgVote)(nil), "lbm.gov.v1beta1.MsgVote") + proto.RegisterType((*MsgVoteResponse)(nil), "lbm.gov.v1beta1.MsgVoteResponse") + proto.RegisterType((*MsgDeposit)(nil), "lbm.gov.v1beta1.MsgDeposit") + proto.RegisterType((*MsgDepositResponse)(nil), "lbm.gov.v1beta1.MsgDepositResponse") } -func init() { proto.RegisterFile("cosmos/gov/v1beta1/tx.proto", fileDescriptor_3c053992595e3dce) } +func init() { proto.RegisterFile("lbm/gov/v1beta1/tx.proto", fileDescriptor_4ac4aac0fb082f49) } -var fileDescriptor_3c053992595e3dce = []byte{ - // 592 bytes of a gzipped FileDescriptorProto +var fileDescriptor_4ac4aac0fb082f49 = []byte{ + // 591 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xb6, 0x93, 0x92, 0xd0, 0x8b, 0x94, 0xd2, 0x53, 0x84, 0x12, 0xb7, 0xb2, 0x23, 0xa3, 0x56, - 0x59, 0x72, 0x56, 0x83, 0xc4, 0x50, 0x16, 0x48, 0x11, 0x2a, 0x43, 0x04, 0x18, 0x89, 0x81, 0x25, - 0xb2, 0x13, 0xd7, 0x58, 0xd8, 0x7e, 0x56, 0xee, 0x12, 0x35, 0x1b, 0x23, 0x42, 0x20, 0x31, 0x32, - 0x66, 0x66, 0x43, 0xe2, 0x47, 0x54, 0x4c, 0x1d, 0x19, 0x50, 0x40, 0xc9, 0x00, 0x62, 0xec, 0x2f, - 0x40, 0xbe, 0xb3, 0xd3, 0xaa, 0x49, 0x03, 0x95, 0xba, 0xf9, 0xbd, 0xef, 0x7d, 0x9f, 0xee, 0xfb, - 0xee, 0xf9, 0xd0, 0x46, 0x07, 0x68, 0x00, 0xd4, 0x70, 0x61, 0x60, 0x0c, 0x76, 0x6c, 0x87, 0x59, - 0x3b, 0x06, 0x3b, 0x24, 0x51, 0x0f, 0x18, 0x60, 0x2c, 0x40, 0xe2, 0xc2, 0x80, 0x24, 0xa0, 0xa2, - 0x26, 0x04, 0xdb, 0xa2, 0xce, 0x8c, 0xd1, 0x01, 0x2f, 0x14, 0x1c, 0x65, 0x73, 0x81, 0x60, 0xcc, - 0x17, 0x68, 0x45, 0xa0, 0x6d, 0x5e, 0x19, 0x89, 0xbc, 0x80, 0x4a, 0x2e, 0xb8, 0x20, 0xfa, 0xf1, - 0x57, 0x4a, 0x70, 0x01, 0x5c, 0xdf, 0x31, 0x78, 0x65, 0xf7, 0x0f, 0x0c, 0x2b, 0x1c, 0x0a, 0x48, - 0x7f, 0x9f, 0x41, 0xeb, 0x2d, 0xea, 0x3e, 0xeb, 0xdb, 0x81, 0xc7, 0x9e, 0xf4, 0x20, 0x02, 0x6a, - 0xf9, 0xf8, 0x2e, 0xca, 0x77, 0x20, 0x64, 0x4e, 0xc8, 0xca, 0x72, 0x55, 0xae, 0x15, 0x1a, 0x25, - 0x22, 0x24, 0x48, 0x2a, 0x41, 0xee, 0x87, 0xc3, 0x66, 0xe1, 0xeb, 0x97, 0x7a, 0x7e, 0x4f, 0x0c, - 0x9a, 0x29, 0x03, 0xbf, 0x93, 0xd1, 0x9a, 0x17, 0x7a, 0xcc, 0xb3, 0xfc, 0x76, 0xd7, 0x89, 0x80, - 0x7a, 0xac, 0x9c, 0xa9, 0x66, 0x6b, 0x85, 0x46, 0x85, 0x24, 0x87, 0x8d, 0x7d, 0xa7, 0x61, 0x90, - 0x3d, 0xf0, 0xc2, 0xe6, 0xfe, 0xd1, 0x58, 0x93, 0x4e, 0xc6, 0xda, 0xcd, 0xa1, 0x15, 0xf8, 0xbb, - 0xfa, 0x39, 0xbe, 0xfe, 0xe9, 0x87, 0xb6, 0xed, 0x7a, 0xec, 0x65, 0xdf, 0x26, 0x1d, 0x08, 0x0c, - 0xdf, 0x0b, 0x1d, 0xc3, 0xb7, 0x83, 0x3a, 0xed, 0xbe, 0x32, 0x06, 0x0d, 0x83, 0x0d, 0x23, 0x87, - 0x72, 0x21, 0x6a, 0x16, 0x13, 0xee, 0x03, 0x41, 0xc5, 0x0a, 0xba, 0x1e, 0x71, 0x5f, 0x4e, 0xaf, - 0x9c, 0xad, 0xca, 0xb5, 0x55, 0x73, 0x56, 0xef, 0xde, 0x78, 0x33, 0xd2, 0xa4, 0x8f, 0x23, 0x4d, - 0xfa, 0x3d, 0xd2, 0xa4, 0xd7, 0xdf, 0xab, 0x92, 0xde, 0x41, 0x95, 0xb9, 0x38, 0x4c, 0x87, 0x46, - 0x10, 0x52, 0x07, 0x3f, 0x44, 0x85, 0x28, 0xe9, 0xb5, 0xbd, 0x2e, 0x8f, 0x66, 0xa5, 0xb9, 0xf5, - 0x67, 0xac, 0x9d, 0x6d, 0x9f, 0x8c, 0x35, 0x2c, 0x4c, 0x9c, 0x69, 0xea, 0x26, 0x4a, 0xab, 0x47, - 0x5d, 0xfd, 0xb3, 0x8c, 0xf2, 0x2d, 0xea, 0x3e, 0x07, 0x76, 0x65, 0x9a, 0xb8, 0x84, 0xae, 0x0d, - 0x80, 0x39, 0xbd, 0x72, 0x86, 0x7b, 0x14, 0x05, 0xbe, 0x83, 0x72, 0x10, 0x31, 0x0f, 0x42, 0x6e, - 0xbd, 0xd8, 0x50, 0xc9, 0xfc, 0x36, 0x92, 0xf8, 0x1c, 0x8f, 0xf9, 0x94, 0x99, 0x4c, 0x2f, 0x08, - 0x66, 0x1d, 0xad, 0x25, 0x47, 0x4e, 0xe3, 0xd0, 0x7f, 0xc9, 0x08, 0xb5, 0xa8, 0x9b, 0x06, 0x7d, - 0x55, 0x4e, 0x36, 0xd1, 0x6a, 0x72, 0xed, 0x90, 0xba, 0x39, 0x6d, 0x60, 0x0b, 0xe5, 0xac, 0x00, - 0xfa, 0x21, 0x2b, 0x67, 0xff, 0xb5, 0x53, 0x24, 0xde, 0xa9, 0x4b, 0x6c, 0x4e, 0x22, 0xbc, 0xc0, - 0x7c, 0x09, 0xe1, 0x53, 0xa3, 0xa9, 0xff, 0xc6, 0xdb, 0x0c, 0xca, 0xb6, 0xa8, 0x8b, 0x0f, 0x50, - 0xf1, 0xdc, 0xff, 0xb3, 0xb5, 0x28, 0xe6, 0xb9, 0xbd, 0x52, 0xea, 0xff, 0x35, 0x36, 0x5b, 0xbf, - 0x7d, 0xb4, 0xc2, 0x57, 0x66, 0xe3, 0x02, 0x5a, 0x0c, 0x2a, 0xb7, 0x96, 0x80, 0x33, 0xa5, 0xa7, - 0x28, 0x9f, 0xde, 0x9a, 0x7a, 0xc1, 0x7c, 0x82, 0x2b, 0xdb, 0xcb, 0xf1, 0x54, 0xb2, 0x79, 0xef, - 0x68, 0xa2, 0xca, 0xc7, 0x13, 0x55, 0xfe, 0x39, 0x51, 0xe5, 0x0f, 0x53, 0x55, 0x3a, 0x9e, 0xaa, - 0xd2, 0xb7, 0xa9, 0x2a, 0xbd, 0x58, 0x16, 0xff, 0x21, 0x7f, 0xe2, 0xf8, 0x25, 0xd8, 0x39, 0xfe, - 0xb6, 0xdc, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xee, 0xd5, 0x42, 0x4e, 0x05, 0x00, 0x00, + 0x14, 0xb6, 0x9b, 0x92, 0xd0, 0x8b, 0x94, 0x50, 0x2b, 0xaa, 0x5c, 0x07, 0xd9, 0x91, 0x11, 0x28, + 0x42, 0xea, 0x59, 0x4d, 0xb7, 0xb2, 0x40, 0x8a, 0x10, 0x08, 0x45, 0x20, 0x23, 0x31, 0x30, 0x10, + 0xec, 0xc4, 0x18, 0x0b, 0xfb, 0x9e, 0x95, 0xbb, 0x44, 0xcd, 0xc6, 0x08, 0x4c, 0x8c, 0x8c, 0x99, + 0x19, 0x98, 0xf8, 0x11, 0x15, 0x53, 0x47, 0x06, 0x14, 0x50, 0xc2, 0x80, 0x18, 0x3b, 0x31, 0x22, + 0x9f, 0x7d, 0x69, 0x95, 0x84, 0x20, 0xa4, 0x6e, 0x7e, 0xef, 0xfb, 0xde, 0xa7, 0xfb, 0xbe, 0x7b, + 0x3e, 0xa4, 0x86, 0x6e, 0x64, 0xf9, 0x30, 0xb0, 0x06, 0xbb, 0xae, 0xc7, 0x9c, 0x5d, 0x8b, 0x1d, + 0xe2, 0xb8, 0x07, 0x0c, 0x94, 0x72, 0xe8, 0x46, 0xd8, 0x87, 0x01, 0xce, 0x10, 0xad, 0x9a, 0x50, + 0x5d, 0x87, 0x7a, 0x33, 0x6e, 0x07, 0x02, 0x92, 0xb2, 0xb5, 0xed, 0x79, 0x9d, 0x64, 0x32, 0x83, + 0x3a, 0x40, 0x23, 0xa0, 0x6d, 0x5e, 0x59, 0x69, 0x91, 0x41, 0x15, 0x1f, 0x7c, 0x48, 0xfb, 0xc9, + 0x97, 0x18, 0xf0, 0x01, 0xfc, 0xd0, 0xb3, 0x78, 0xe5, 0xf6, 0x9f, 0x5b, 0x0e, 0x19, 0xa6, 0x90, + 0xf9, 0x76, 0x0d, 0x6d, 0xb6, 0xa8, 0xff, 0xa8, 0xef, 0x46, 0x01, 0x7b, 0xd8, 0x83, 0x18, 0xa8, + 0x13, 0x2a, 0x37, 0x50, 0xa1, 0x03, 0x84, 0x79, 0x84, 0xa9, 0x72, 0x4d, 0xae, 0x17, 0x1b, 0x15, + 0x9c, 0x4a, 0x60, 0x21, 0x81, 0x6f, 0x91, 0x61, 0xb3, 0xf8, 0xf9, 0xd3, 0x4e, 0xe1, 0x20, 0x25, + 0xda, 0x62, 0x42, 0x79, 0x23, 0xa3, 0x72, 0x40, 0x02, 0x16, 0x38, 0x61, 0xbb, 0xeb, 0xc5, 0x40, + 0x03, 0xa6, 0xae, 0xd5, 0x72, 0xf5, 0x62, 0x63, 0x0b, 0x27, 0x11, 0x24, 0x8e, 0x45, 0x06, 0xf8, + 0x00, 0x02, 0xd2, 0xbc, 0x7b, 0x34, 0x36, 0xa4, 0x93, 0xb1, 0xb1, 0x35, 0x74, 0xa2, 0x70, 0xdf, + 0x9c, 0x1b, 0x36, 0x3f, 0x7c, 0x33, 0xae, 0xf9, 0x01, 0x7b, 0xd1, 0x77, 0x71, 0x07, 0x22, 0x2b, + 0x0c, 0x88, 0x67, 0x85, 0x6e, 0xb4, 0x43, 0xbb, 0x2f, 0xad, 0x41, 0xc3, 0x62, 0xc3, 0xd8, 0xa3, + 0x5c, 0x88, 0xda, 0xa5, 0x6c, 0xf6, 0x76, 0x3a, 0xaa, 0x68, 0xe8, 0x62, 0xcc, 0x4d, 0x79, 0x3d, + 0x35, 0x57, 0x93, 0xeb, 0x1b, 0xf6, 0xac, 0xde, 0xbf, 0xf4, 0x7a, 0x64, 0x48, 0xef, 0x47, 0x86, + 0xf4, 0x73, 0x64, 0x48, 0xaf, 0xbe, 0xd6, 0x24, 0xb3, 0x83, 0xb6, 0x17, 0xb2, 0xb0, 0x3d, 0x1a, + 0x03, 0xa1, 0x9e, 0x72, 0x07, 0x15, 0xe3, 0xac, 0xd7, 0x0e, 0xba, 0x3c, 0x97, 0xf5, 0xe6, 0xd5, + 0x5f, 0x63, 0xe3, 0x6c, 0xfb, 0x64, 0x6c, 0x28, 0xa9, 0x89, 0x33, 0x4d, 0xd3, 0x46, 0xa2, 0xba, + 0xd7, 0x35, 0x3f, 0xca, 0xa8, 0xd0, 0xa2, 0xfe, 0x63, 0x60, 0xe7, 0xa6, 0xa9, 0x54, 0xd0, 0x85, + 0x01, 0x30, 0xaf, 0xa7, 0xae, 0x71, 0x8f, 0x69, 0xa1, 0xec, 0xa1, 0x3c, 0xc4, 0x2c, 0x00, 0xc2, + 0xad, 0x97, 0x1a, 0x55, 0x3c, 0xb7, 0x81, 0x38, 0x39, 0xc4, 0x03, 0x4e, 0xb1, 0x33, 0xea, 0x92, + 0x54, 0x36, 0x51, 0x39, 0x3b, 0xaf, 0xc8, 0xc2, 0xfc, 0x21, 0x23, 0xd4, 0xa2, 0xbe, 0x48, 0xf9, + 0xbc, 0x6c, 0x5c, 0x46, 0x1b, 0xd9, 0x9d, 0x83, 0xb0, 0x72, 0xda, 0x50, 0x9e, 0xa2, 0xbc, 0x13, + 0x41, 0x9f, 0x30, 0x35, 0xb7, 0x72, 0x9b, 0x70, 0xb2, 0x4d, 0xff, 0xb1, 0x33, 0x99, 0xea, 0x12, + 0xe7, 0x15, 0xa4, 0x9c, 0xba, 0x14, 0xe6, 0x1b, 0xbf, 0x65, 0x94, 0x6b, 0x51, 0x5f, 0x79, 0x86, + 0x4a, 0x73, 0xbf, 0x8d, 0xb9, 0x10, 0xf0, 0xc2, 0x3a, 0x69, 0xd7, 0xff, 0xcd, 0x99, 0xad, 0x5c, + 0x13, 0xad, 0xf3, 0x35, 0x51, 0x97, 0xcd, 0x24, 0x88, 0x56, 0xfb, 0x1b, 0x32, 0xd3, 0xb8, 0x8f, + 0x0a, 0xe2, 0x9a, 0xaa, 0xcb, 0xc8, 0x19, 0xa8, 0x5d, 0x59, 0x01, 0x0a, 0xb1, 0xe6, 0xcd, 0xa3, + 0x89, 0x2e, 0x1f, 0x4f, 0x74, 0xf9, 0xfb, 0x44, 0x97, 0xdf, 0x4d, 0x75, 0xe9, 0x78, 0xaa, 0x4b, + 0x5f, 0xa6, 0xba, 0xf4, 0x64, 0x55, 0xd8, 0x87, 0xfc, 0x1d, 0xe3, 0x91, 0xbb, 0x79, 0xfe, 0x80, + 0xec, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0xcb, 0xa1, 0x5a, 0xc0, 0x27, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -351,7 +351,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) SubmitProposal(ctx context.Context, in *MsgSubmitProposal, opts ...grpc.CallOption) (*MsgSubmitProposalResponse, error) { out := new(MsgSubmitProposalResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Msg/SubmitProposal", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Msg/SubmitProposal", in, out, opts...) if err != nil { return nil, err } @@ -360,7 +360,7 @@ func (c *msgClient) SubmitProposal(ctx context.Context, in *MsgSubmitProposal, o func (c *msgClient) Vote(ctx context.Context, in *MsgVote, opts ...grpc.CallOption) (*MsgVoteResponse, error) { out := new(MsgVoteResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Msg/Vote", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Msg/Vote", in, out, opts...) if err != nil { return nil, err } @@ -369,7 +369,7 @@ func (c *msgClient) Vote(ctx context.Context, in *MsgVote, opts ...grpc.CallOpti func (c *msgClient) Deposit(ctx context.Context, in *MsgDeposit, opts ...grpc.CallOption) (*MsgDepositResponse, error) { out := new(MsgDepositResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Msg/Deposit", in, out, opts...) + err := c.cc.Invoke(ctx, "/lbm.gov.v1beta1.Msg/Deposit", in, out, opts...) if err != nil { return nil, err } @@ -414,7 +414,7 @@ func _Msg_SubmitProposal_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Msg/SubmitProposal", + FullMethod: "/lbm.gov.v1beta1.Msg/SubmitProposal", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SubmitProposal(ctx, req.(*MsgSubmitProposal)) @@ -432,7 +432,7 @@ func _Msg_Vote_Handler(srv interface{}, ctx context.Context, dec func(interface{ } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Msg/Vote", + FullMethod: "/lbm.gov.v1beta1.Msg/Vote", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Vote(ctx, req.(*MsgVote)) @@ -450,7 +450,7 @@ func _Msg_Deposit_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.v1beta1.Msg/Deposit", + FullMethod: "/lbm.gov.v1beta1.Msg/Deposit", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Deposit(ctx, req.(*MsgDeposit)) @@ -459,7 +459,7 @@ func _Msg_Deposit_Handler(srv interface{}, ctx context.Context, dec func(interfa } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.gov.v1beta1.Msg", + ServiceName: "lbm.gov.v1beta1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -476,7 +476,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/gov/v1beta1/tx.proto", + Metadata: "lbm/gov/v1beta1/tx.proto", } func (m *MsgSubmitProposal) Marshal() (dAtA []byte, err error) { diff --git a/x/ibc/applications/transfer/types/codec.go b/x/ibc/applications/transfer/types/codec.go index 3b4cf45953..3678cb3dac 100644 --- a/x/ibc/applications/transfer/types/codec.go +++ b/x/ibc/applications/transfer/types/codec.go @@ -10,7 +10,7 @@ import ( // RegisterLegacyAminoCodec registers the necessary x/ibc transfer interfaces and concrete types // on the provided LegacyAmino codec. These types are used for Amino JSON serialization. func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(&MsgTransfer{}, "cosmos-sdk/MsgTransfer", nil) + cdc.RegisterConcrete(&MsgTransfer{}, "lbm-sdk/MsgTransfer", nil) } // RegisterInterfaces register the ibc transfer module interfaces to protobuf diff --git a/x/ibc/applications/transfer/types/msgs_test.go b/x/ibc/applications/transfer/types/msgs_test.go index 78d770cf35..a1c8a608f8 100644 --- a/x/ibc/applications/transfer/types/msgs_test.go +++ b/x/ibc/applications/transfer/types/msgs_test.go @@ -54,7 +54,7 @@ func TestMsgTransferType(t *testing.T) { func TestMsgTransferGetSignBytes(t *testing.T) { msg := NewMsgTransfer(validPort, validChannel, coin, addr1, addr2, timeoutHeight, 0) - expected := fmt.Sprintf(`{"type":"cosmos-sdk/MsgTransfer","value":{"receiver":"%s","sender":"%s","source_channel":"testchannel","source_port":"testportid","timeout_height":{"revision_height":"10"},"token":{"amount":"100","denom":"atom"}}}`, addr2, addr1) + expected := fmt.Sprintf(`{"type":"lbm-sdk/MsgTransfer","value":{"receiver":"%s","sender":"%s","source_channel":"testchannel","source_port":"testportid","timeout_height":{"revision_height":"10"},"token":{"amount":"100","denom":"atom"}}}`, addr2, addr1) require.NotPanics(t, func() { res := msg.GetSignBytes() require.Equal(t, expected, string(res)) diff --git a/x/ibc/applications/transfer/types/query.pb.go b/x/ibc/applications/transfer/types/query.pb.go index 5f7e4174b8..021a1b0bfa 100644 --- a/x/ibc/applications/transfer/types/query.pb.go +++ b/x/ibc/applications/transfer/types/query.pb.go @@ -325,40 +325,40 @@ func init() { var fileDescriptor_a638e2800a01538c = []byte{ // 532 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x3f, 0x6f, 0xd3, 0x40, - 0x14, 0xcf, 0x95, 0x12, 0x89, 0x17, 0xc4, 0x70, 0x54, 0x10, 0x59, 0x95, 0x5b, 0x59, 0x08, 0x02, - 0x85, 0x3b, 0x1c, 0xa0, 0x30, 0x54, 0x0c, 0x15, 0x02, 0xb1, 0x95, 0x80, 0x18, 0x60, 0x40, 0x67, - 0xe7, 0x70, 0x2c, 0x62, 0x9f, 0xeb, 0x73, 0x22, 0x2a, 0xc4, 0xc2, 0x27, 0x40, 0x62, 0x47, 0xcc, - 0xec, 0x0c, 0x6c, 0x8c, 0x1d, 0x2b, 0xb1, 0x30, 0x01, 0x4a, 0xf8, 0x20, 0xc8, 0x77, 0xe7, 0xc6, - 0x51, 0x90, 0x89, 0xb7, 0xd3, 0xcb, 0xfb, 0xbd, 0xdf, 0x9f, 0xf7, 0x62, 0xe8, 0x84, 0x9e, 0x4f, - 0x59, 0x92, 0x0c, 0x43, 0x9f, 0x65, 0xa1, 0x88, 0x25, 0xcd, 0x52, 0x16, 0xcb, 0x97, 0x3c, 0xa5, - 0x63, 0x97, 0xee, 0x8f, 0x78, 0x7a, 0x40, 0x92, 0x54, 0x64, 0x02, 0xaf, 0x87, 0x9e, 0x4f, 0xca, - 0x9d, 0xa4, 0xe8, 0x24, 0x63, 0xd7, 0x5a, 0x0b, 0x44, 0x20, 0x54, 0x23, 0xcd, 0x5f, 0x1a, 0x63, - 0x5d, 0xf1, 0x85, 0x8c, 0x84, 0xa4, 0x1e, 0x93, 0x5c, 0x0f, 0xa3, 0x63, 0xd7, 0xe3, 0x19, 0x73, - 0x69, 0xc2, 0x82, 0x30, 0x56, 0x83, 0x4c, 0xef, 0x56, 0xa5, 0x92, 0x63, 0x2e, 0xdd, 0xbc, 0x1e, - 0x08, 0x11, 0x0c, 0x39, 0x65, 0x49, 0x48, 0x59, 0x1c, 0x8b, 0xcc, 0x48, 0x52, 0xbf, 0x3a, 0x57, - 0xe1, 0xdc, 0xa3, 0x9c, 0xec, 0x1e, 0x8f, 0x45, 0xf4, 0x24, 0x65, 0x3e, 0xef, 0xf1, 0xfd, 0x11, - 0x97, 0x19, 0xc6, 0xb0, 0x3a, 0x60, 0x72, 0xd0, 0x46, 0x9b, 0xa8, 0x73, 0xaa, 0xa7, 0xde, 0x4e, - 0x1f, 0xce, 0x2f, 0x74, 0xcb, 0x44, 0xc4, 0x92, 0xe3, 0x87, 0xd0, 0xea, 0xe7, 0xd5, 0x17, 0x59, - 0x5e, 0x56, 0xa8, 0x56, 0xb7, 0x43, 0xaa, 0x92, 0x20, 0xa5, 0x31, 0xd0, 0x3f, 0x7e, 0x3b, 0x6c, - 0x81, 0x45, 0x16, 0xa2, 0xee, 0x03, 0xcc, 0xd2, 0x30, 0x24, 0x17, 0x89, 0x8e, 0x8e, 0xe4, 0xd1, - 0x11, 0xbd, 0x07, 0x13, 0x1d, 0xd9, 0x63, 0x41, 0x61, 0xa8, 0x57, 0x42, 0x3a, 0xdf, 0x10, 0xb4, - 0x17, 0x39, 0x8c, 0x95, 0xe7, 0x70, 0xba, 0x64, 0x45, 0xb6, 0xd1, 0xe6, 0x89, 0x3a, 0x5e, 0x76, - 0xcf, 0x1c, 0xfe, 0xdc, 0x68, 0x7c, 0xfe, 0xb5, 0xd1, 0x34, 0x73, 0x5b, 0x33, 0x6f, 0x12, 0x3f, - 0x98, 0x73, 0xb0, 0xa2, 0x1c, 0x5c, 0xfa, 0xaf, 0x03, 0xad, 0x6c, 0xce, 0xc2, 0x1a, 0x60, 0xe5, - 0x60, 0x8f, 0xa5, 0x2c, 0x2a, 0x02, 0x72, 0x1e, 0xc3, 0xd9, 0xb9, 0xaa, 0xb1, 0xb4, 0x03, 0xcd, - 0x44, 0x55, 0x4c, 0x66, 0x17, 0xaa, 0xcd, 0x18, 0xb4, 0xc1, 0x74, 0x3f, 0xae, 0xc2, 0x49, 0x35, - 0x15, 0x7f, 0x45, 0x00, 0x33, 0xa7, 0xf8, 0x66, 0xf5, 0x98, 0x7f, 0x5f, 0x96, 0x75, 0xab, 0x26, - 0x4a, 0x7b, 0x70, 0xee, 0xbe, 0xfb, 0xfe, 0xe7, 0xc3, 0xca, 0x1d, 0xbc, 0x4d, 0xab, 0xce, 0x5f, - 0xff, 0x65, 0xca, 0xfb, 0xa3, 0x6f, 0xf2, 0xdb, 0x7d, 0x8b, 0xbf, 0x20, 0x68, 0x95, 0xd6, 0x8d, - 0xeb, 0xc9, 0x28, 0x12, 0xb6, 0xb6, 0xeb, 0xc2, 0x8c, 0xfc, 0xdb, 0x4a, 0xbe, 0x8b, 0x69, 0x4d, - 0xf9, 0xf8, 0x13, 0x82, 0xa6, 0x5e, 0x08, 0xbe, 0xbe, 0x04, 0xf7, 0xdc, 0x3d, 0x58, 0x6e, 0x0d, - 0x84, 0x11, 0xea, 0x2a, 0xa1, 0x5b, 0xf8, 0xf2, 0x12, 0x42, 0xf5, 0x81, 0xec, 0x3e, 0x3d, 0x9c, - 0xd8, 0xe8, 0x68, 0x62, 0xa3, 0xdf, 0x13, 0x1b, 0xbd, 0x9f, 0xda, 0x8d, 0xa3, 0xa9, 0xdd, 0xf8, - 0x31, 0xb5, 0x1b, 0xcf, 0x76, 0x82, 0x30, 0x1b, 0x8c, 0x3c, 0xe2, 0x8b, 0x88, 0x0e, 0xc3, 0x98, - 0xd3, 0xa1, 0x17, 0x5d, 0x93, 0xfd, 0x57, 0x74, 0xdc, 0xa5, 0xaf, 0x2b, 0x08, 0xb2, 0x83, 0x84, - 0x4b, 0xaf, 0xa9, 0x3e, 0x52, 0x37, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0x64, 0xd0, 0x4e, 0xef, - 0x7b, 0x05, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x73, 0xa5, 0x44, 0xe2, 0x05, 0x31, 0x1c, 0x15, 0x54, 0x56, 0xe5, 0x56, 0xa6, 0x12, + 0x41, 0x85, 0x3b, 0x1c, 0xa0, 0x30, 0x54, 0x0c, 0xa5, 0x0b, 0x5b, 0x09, 0x88, 0x01, 0x24, 0xd0, + 0xd9, 0x39, 0x1c, 0x0b, 0xdb, 0xe7, 0xfa, 0x9c, 0x88, 0x0a, 0xb1, 0xf0, 0x09, 0x90, 0xd8, 0x11, + 0x33, 0x3b, 0x03, 0x03, 0x7b, 0xc7, 0x4a, 0x2c, 0x4c, 0x80, 0x12, 0x3e, 0x08, 0xf2, 0xdd, 0xb9, + 0x71, 0x14, 0x64, 0xd5, 0xdb, 0xe9, 0xe5, 0xfd, 0xdf, 0xfb, 0xfd, 0xdf, 0x7b, 0x31, 0x74, 0x43, + 0xcf, 0xa7, 0x2c, 0x4d, 0xa3, 0xd0, 0x67, 0x79, 0x28, 0x12, 0x49, 0xf3, 0x8c, 0x25, 0xf2, 0x15, + 0xcf, 0xe8, 0xd8, 0xa5, 0x07, 0x23, 0x9e, 0x1d, 0x92, 0x34, 0x13, 0xb9, 0xc0, 0x6b, 0xa1, 0xe7, + 0x93, 0x6a, 0x26, 0x29, 0x33, 0xc9, 0xd8, 0xb5, 0x56, 0x02, 0x11, 0x08, 0x95, 0x48, 0x8b, 0x97, + 0xd6, 0x58, 0x57, 0x23, 0x2f, 0xa6, 0x1e, 0x93, 0x5c, 0x57, 0xa2, 0x63, 0xd7, 0xe3, 0x39, 0x73, + 0x69, 0xca, 0x82, 0x30, 0x51, 0x55, 0x4c, 0xe2, 0x56, 0x2d, 0xc6, 0x49, 0x23, 0x9d, 0xbc, 0x16, + 0x08, 0x11, 0x44, 0x9c, 0xb2, 0x34, 0xa4, 0x2c, 0x49, 0x44, 0x6e, 0x78, 0xd4, 0xaf, 0xce, 0x75, + 0xb8, 0xf4, 0xa8, 0x68, 0xb6, 0xc7, 0x13, 0x11, 0x3f, 0xc9, 0x98, 0xcf, 0xfb, 0xfc, 0x60, 0xc4, + 0x65, 0x8e, 0x31, 0x2c, 0x0f, 0x99, 0x1c, 0xae, 0xa2, 0x0d, 0xd4, 0x3d, 0xd7, 0x57, 0x6f, 0x67, + 0x00, 0x97, 0x17, 0xb2, 0x65, 0x2a, 0x12, 0xc9, 0xf1, 0x43, 0xe8, 0x0c, 0x8a, 0xe8, 0xcb, 0xbc, + 0x08, 0x2b, 0x55, 0xa7, 0xd7, 0x25, 0x75, 0x63, 0x20, 0x95, 0x32, 0x30, 0x38, 0x79, 0x3b, 0x2f, + 0x16, 0xba, 0xc8, 0x12, 0xea, 0x01, 0xc0, 0x6c, 0x1a, 0xa6, 0xc9, 0x15, 0x12, 0x79, 0x31, 0x29, + 0xe6, 0x46, 0xf4, 0x06, 0xcc, 0xdc, 0xc8, 0x3e, 0x0b, 0x4a, 0x37, 0xfd, 0x8a, 0xcc, 0xf9, 0x8e, + 0x60, 0x75, 0xb1, 0x81, 0xf1, 0xf1, 0x1c, 0xce, 0x57, 0x7c, 0xc8, 0x55, 0xb4, 0x71, 0xa6, 0x89, + 0x91, 0xdd, 0x0b, 0x47, 0xbf, 0xd6, 0x5b, 0x5f, 0x7e, 0xaf, 0xb7, 0x4d, 0xdd, 0xce, 0xcc, 0x98, + 0xc4, 0x7b, 0x73, 0xf8, 0x4b, 0x0a, 0x7f, 0xb3, 0x1e, 0x5f, 0x63, 0xcd, 0xf1, 0xaf, 0x00, 0x56, + 0xf8, 0xfb, 0x2c, 0x63, 0x71, 0x39, 0x1a, 0xe7, 0x31, 0x5c, 0x9c, 0x8b, 0x1a, 0x3f, 0x3b, 0xd0, + 0x4e, 0x55, 0xc4, 0x4c, 0x6b, 0xb3, 0xde, 0x89, 0x51, 0x1b, 0x4d, 0xef, 0xd3, 0x32, 0x9c, 0x55, + 0x55, 0xf1, 0x37, 0x04, 0x30, 0xb3, 0x89, 0x6f, 0xd7, 0x97, 0xf9, 0xff, 0x4d, 0x59, 0x77, 0x1a, + 0xaa, 0xb4, 0x07, 0xe7, 0xfe, 0xfb, 0x1f, 0x7f, 0x3f, 0x2e, 0xdd, 0xc3, 0xdb, 0xb4, 0xee, 0xf0, + 0xf5, 0x9f, 0xa5, 0xba, 0x3c, 0xfa, 0xb6, 0xb8, 0xda, 0x77, 0xf8, 0x2b, 0x82, 0x4e, 0x65, 0xd7, + 0xb8, 0x19, 0x46, 0x39, 0x61, 0x6b, 0xbb, 0xa9, 0xcc, 0xe0, 0xdf, 0x55, 0xf8, 0x2e, 0xa6, 0x0d, + 0xf1, 0xf1, 0x67, 0x04, 0x6d, 0xbd, 0x10, 0x7c, 0xf3, 0x14, 0xbd, 0xe7, 0xee, 0xc1, 0x72, 0x1b, + 0x28, 0x0c, 0xa8, 0xab, 0x40, 0xb7, 0xf0, 0xb5, 0x53, 0x80, 0xea, 0x03, 0xd9, 0x7d, 0x7a, 0x34, + 0xb1, 0xd1, 0xf1, 0xc4, 0x46, 0x7f, 0x26, 0x36, 0xfa, 0x30, 0xb5, 0x5b, 0xc7, 0x53, 0xbb, 0xf5, + 0x73, 0x6a, 0xb7, 0x9e, 0xed, 0x04, 0x61, 0x3e, 0x1c, 0x79, 0xc4, 0x17, 0x31, 0x8d, 0xc2, 0x84, + 0xd3, 0xc8, 0x8b, 0x6f, 0xc8, 0xc1, 0x6b, 0x3a, 0xee, 0xd1, 0x37, 0x35, 0x0d, 0xf2, 0xc3, 0x94, + 0x4b, 0xaf, 0xad, 0x3e, 0x4f, 0xb7, 0xfe, 0x05, 0x00, 0x00, 0xff, 0xff, 0x71, 0x88, 0x22, 0x22, + 0x72, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc/applications/transfer/types/tx.pb.go b/x/ibc/applications/transfer/types/tx.pb.go index 0788d5546a..7e7506927f 100644 --- a/x/ibc/applications/transfer/types/tx.pb.go +++ b/x/ibc/applications/transfer/types/tx.pb.go @@ -132,38 +132,38 @@ func init() { } var fileDescriptor_7401ed9bed2f8e09 = []byte{ - // 493 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0x6d, 0x92, 0x86, 0xb0, 0x51, 0x2b, 0x58, 0x68, 0xe5, 0x46, 0xc5, 0x8e, 0x2c, 0x21, - 0x85, 0x03, 0xbb, 0x72, 0x10, 0x42, 0xaa, 0x38, 0xa0, 0xf4, 0x02, 0x87, 0x4a, 0xc8, 0xaa, 0x38, - 0x70, 0x29, 0xf6, 0x76, 0x70, 0x56, 0xb5, 0x77, 0xad, 0xdd, 0x8d, 0xd5, 0xbe, 0x01, 0x47, 0x1e, - 0xa1, 0x67, 0x9e, 0xa4, 0xc7, 0x1e, 0x39, 0x45, 0x28, 0xb9, 0x70, 0xce, 0x13, 0x20, 0xff, 0x49, - 0x48, 0x0e, 0x20, 0x4e, 0xde, 0x99, 0xef, 0x37, 0xfb, 0x69, 0x76, 0xc6, 0xe8, 0x19, 0x8f, 0x19, - 0x8d, 0xf2, 0x3c, 0xe5, 0x2c, 0x32, 0x5c, 0x0a, 0x4d, 0x8d, 0x8a, 0x84, 0xfe, 0x02, 0x8a, 0x16, - 0x01, 0x35, 0x57, 0x24, 0x57, 0xd2, 0x48, 0x7c, 0xc4, 0x63, 0x46, 0x36, 0x31, 0xb2, 0xc2, 0x48, - 0x11, 0xf4, 0x9f, 0x24, 0x32, 0x91, 0x15, 0x48, 0xcb, 0x53, 0x5d, 0xd3, 0x77, 0x99, 0xd4, 0x99, - 0xd4, 0x34, 0x8e, 0x34, 0xd0, 0x22, 0x88, 0xc1, 0x44, 0x01, 0x65, 0x92, 0x8b, 0x46, 0xf7, 0x4a, - 0x6b, 0x26, 0x15, 0x50, 0x96, 0x72, 0x10, 0xa6, 0x34, 0xac, 0x4f, 0x35, 0xe0, 0x7f, 0x6f, 0xa1, - 0xde, 0xa9, 0x4e, 0xce, 0x1a, 0x27, 0xfc, 0x1a, 0xf5, 0xb4, 0x9c, 0x2a, 0x06, 0xe7, 0xb9, 0x54, - 0xc6, 0xb1, 0x07, 0xf6, 0xf0, 0xc1, 0xf8, 0x60, 0x39, 0xf3, 0xf0, 0x75, 0x94, 0xa5, 0xc7, 0xfe, - 0x86, 0xe8, 0x87, 0xa8, 0x8e, 0x3e, 0x48, 0x65, 0xf0, 0x5b, 0xb4, 0xd7, 0x68, 0x6c, 0x12, 0x09, - 0x01, 0xa9, 0x73, 0xaf, 0xaa, 0x3d, 0x5c, 0xce, 0xbc, 0xfd, 0xad, 0xda, 0x46, 0xf7, 0xc3, 0xdd, - 0x3a, 0x71, 0x52, 0xc7, 0xf8, 0x15, 0xda, 0x31, 0xf2, 0x12, 0x84, 0xd3, 0x1a, 0xd8, 0xc3, 0xde, - 0xe8, 0x90, 0xd4, 0xbd, 0x91, 0xb2, 0x37, 0xd2, 0xf4, 0x46, 0x4e, 0x24, 0x17, 0xe3, 0xf6, 0xed, - 0xcc, 0xb3, 0xc2, 0x9a, 0xc6, 0x07, 0xa8, 0xa3, 0x41, 0x5c, 0x80, 0x72, 0xda, 0xa5, 0x61, 0xd8, - 0x44, 0xb8, 0x8f, 0xba, 0x0a, 0x18, 0xf0, 0x02, 0x94, 0xb3, 0x53, 0x29, 0xeb, 0x18, 0x7f, 0x46, - 0x7b, 0x86, 0x67, 0x20, 0xa7, 0xe6, 0x7c, 0x02, 0x3c, 0x99, 0x18, 0xa7, 0x53, 0x79, 0xf6, 0x49, - 0x39, 0x83, 0xf2, 0xbd, 0x48, 0xf3, 0x4a, 0x45, 0x40, 0xde, 0x55, 0xc4, 0xf8, 0x69, 0x69, 0xfa, - 0xa7, 0x99, 0xed, 0x7a, 0x3f, 0xdc, 0x6d, 0x12, 0x35, 0x8d, 0xdf, 0xa3, 0x47, 0x2b, 0xa2, 0xfc, - 0x6a, 0x13, 0x65, 0xb9, 0x73, 0x7f, 0x60, 0x0f, 0xdb, 0xe3, 0xa3, 0xe5, 0xcc, 0x73, 0xb6, 0x2f, - 0x59, 0x23, 0x7e, 0xf8, 0xb0, 0xc9, 0x9d, 0xad, 0x52, 0xc7, 0xdd, 0xaf, 0x37, 0x9e, 0xf5, 0xeb, - 0xc6, 0xb3, 0xfc, 0x7d, 0xf4, 0x78, 0x63, 0x56, 0x21, 0xe8, 0x5c, 0x0a, 0x0d, 0x23, 0x89, 0x5a, - 0xa7, 0x3a, 0xc1, 0x13, 0xd4, 0x5d, 0x8f, 0xf1, 0x39, 0xf9, 0xd7, 0x32, 0x91, 0x8d, 0x5b, 0xfa, - 0xc1, 0x7f, 0xa3, 0x2b, 0xc3, 0xf1, 0xc7, 0xdb, 0xb9, 0x6b, 0xdf, 0xcd, 0x5d, 0xfb, 0xe7, 0xdc, - 0xb5, 0xbf, 0x2d, 0x5c, 0xeb, 0x6e, 0xe1, 0x5a, 0x3f, 0x16, 0xae, 0xf5, 0xe9, 0x4d, 0xc2, 0xcd, - 0x64, 0x1a, 0x13, 0x26, 0x33, 0x9a, 0x72, 0x01, 0x34, 0x8d, 0xb3, 0x17, 0xfa, 0xe2, 0x92, 0x16, - 0x23, 0x7a, 0x45, 0xff, 0xfe, 0x1f, 0x98, 0xeb, 0x1c, 0x74, 0xdc, 0xa9, 0x76, 0xf2, 0xe5, 0xef, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x7d, 0x1b, 0x9e, 0x31, 0x03, 0x00, 0x00, + // 491 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x6d, 0x92, 0x86, 0x70, 0x51, 0x2b, 0x38, 0x68, 0x64, 0x4c, 0xb1, 0x23, 0x4b, 0x48, + 0x61, 0xe0, 0x4e, 0x0e, 0x03, 0x52, 0xc5, 0x80, 0xdc, 0x05, 0x86, 0x4a, 0xc8, 0xaa, 0x18, 0x58, + 0x8a, 0x7d, 0x3d, 0xec, 0x53, 0xed, 0x3b, 0xeb, 0xee, 0x62, 0xb5, 0xff, 0x01, 0x23, 0x7f, 0x42, + 0x37, 0xfe, 0x95, 0x8e, 0x19, 0x99, 0x22, 0x94, 0x2c, 0xcc, 0xf9, 0x0b, 0x90, 0x7f, 0x24, 0x24, + 0x03, 0xa8, 0x93, 0xef, 0xbd, 0xef, 0xe7, 0xdd, 0x57, 0xef, 0xdd, 0x33, 0x78, 0xc1, 0x62, 0x82, + 0xa3, 0xa2, 0xc8, 0x18, 0x89, 0x34, 0x13, 0x5c, 0x61, 0x2d, 0x23, 0xae, 0xbe, 0x52, 0x89, 0x4b, + 0x1f, 0xeb, 0x2b, 0x54, 0x48, 0xa1, 0x05, 0x3c, 0x62, 0x31, 0x41, 0xdb, 0x18, 0x5a, 0x63, 0xa8, + 0xf4, 0xed, 0x27, 0x89, 0x48, 0x44, 0x0d, 0xe2, 0xea, 0xd4, 0xd4, 0xd8, 0xcf, 0xb2, 0x38, 0xc7, + 0x71, 0xa4, 0x28, 0x2e, 0xfd, 0x98, 0xea, 0xc8, 0xc7, 0x44, 0x30, 0xde, 0x8a, 0x6e, 0xe5, 0x4b, + 0x84, 0xa4, 0x98, 0x64, 0x8c, 0x72, 0x5d, 0xb9, 0x35, 0xa7, 0x06, 0xf0, 0x7e, 0x74, 0xc0, 0xe0, + 0x54, 0x25, 0x67, 0xad, 0x0d, 0x7c, 0x03, 0x06, 0x4a, 0x4c, 0x25, 0xa1, 0xe7, 0x85, 0x90, 0xda, + 0x32, 0x47, 0xe6, 0xf8, 0x41, 0x30, 0x5c, 0xcd, 0x5d, 0x78, 0x1d, 0xe5, 0xd9, 0xb1, 0xb7, 0x25, + 0x7a, 0x21, 0x68, 0xa2, 0x8f, 0x42, 0x6a, 0xf8, 0x0e, 0x1c, 0xb4, 0x1a, 0x49, 0x23, 0xce, 0x69, + 0x66, 0xdd, 0xab, 0x6b, 0x9f, 0xae, 0xe6, 0xee, 0xe1, 0x4e, 0x6d, 0xab, 0x7b, 0xe1, 0x7e, 0x93, + 0x38, 0x69, 0x62, 0x38, 0x01, 0x7b, 0x5a, 0x5c, 0x52, 0x6e, 0x75, 0x46, 0xe6, 0x78, 0x30, 0x19, + 0xa2, 0x2c, 0xce, 0x51, 0xd5, 0x18, 0x6a, 0x1b, 0x43, 0x27, 0x82, 0xf1, 0xa0, 0x7b, 0x3b, 0x77, + 0x8d, 0xb0, 0x41, 0xe1, 0x10, 0xf4, 0x14, 0xe5, 0x17, 0x54, 0x5a, 0xdd, 0xca, 0x2d, 0x6c, 0x23, + 0x68, 0x83, 0xbe, 0xa4, 0x84, 0xb2, 0x92, 0x4a, 0x6b, 0xaf, 0x56, 0x36, 0x31, 0xfc, 0x02, 0x0e, + 0x34, 0xcb, 0xa9, 0x98, 0xea, 0xf3, 0x94, 0xb2, 0x24, 0xd5, 0x56, 0xaf, 0x36, 0xb4, 0x51, 0x35, + 0xfd, 0x6a, 0x58, 0xa8, 0x1d, 0x51, 0xe9, 0xa3, 0xf7, 0x35, 0x11, 0x3c, 0xaf, 0x4c, 0xff, 0x76, + 0xb2, 0x5b, 0xef, 0x85, 0xfb, 0x6d, 0xa2, 0xa1, 0xe1, 0x07, 0xf0, 0x68, 0x4d, 0x54, 0x5f, 0xa5, + 0xa3, 0xbc, 0xb0, 0xee, 0x8f, 0xcc, 0x71, 0x37, 0x38, 0x5a, 0xcd, 0x5d, 0x6b, 0xf7, 0x92, 0x0d, + 0xe2, 0x85, 0x0f, 0xdb, 0xdc, 0xd9, 0x3a, 0x75, 0xdc, 0xff, 0x76, 0xe3, 0x1a, 0xbf, 0x6f, 0x5c, + 0xc3, 0x3b, 0x04, 0x8f, 0xb7, 0x1e, 0x2a, 0xa4, 0xaa, 0x10, 0x5c, 0xd1, 0x89, 0x00, 0x9d, 0x53, + 0x95, 0xc0, 0x14, 0xf4, 0x37, 0x6f, 0xf8, 0x12, 0xfd, 0x6f, 0x8d, 0xd0, 0xd6, 0x2d, 0xb6, 0x7f, + 0x67, 0x74, 0x6d, 0x18, 0x7c, 0xba, 0x5d, 0x38, 0xe6, 0x6c, 0xe1, 0x98, 0xbf, 0x16, 0x8e, 0xf9, + 0x7d, 0xe9, 0x18, 0xb3, 0xa5, 0x63, 0xfc, 0x5c, 0x3a, 0xc6, 0xe7, 0xb7, 0x09, 0xd3, 0xe9, 0x34, + 0x46, 0x44, 0xe4, 0x38, 0x63, 0x9c, 0xe2, 0x2c, 0xce, 0x5f, 0xa9, 0x8b, 0x4b, 0x5c, 0x4e, 0xf0, + 0x15, 0xfe, 0xf7, 0x1f, 0xa0, 0xaf, 0x0b, 0xaa, 0xe2, 0x5e, 0xbd, 0x90, 0xaf, 0xff, 0x04, 0x00, + 0x00, 0xff, 0xff, 0xa1, 0x83, 0x0b, 0xad, 0x2b, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc/core/02-client/types/query.pb.go b/x/ibc/core/02-client/types/query.pb.go index da848f2d8c..71c4ace331 100644 --- a/x/ibc/core/02-client/types/query.pb.go +++ b/x/ibc/core/02-client/types/query.pb.go @@ -599,59 +599,59 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/query.proto", fileDescriptor_dc42cdfd1d52d76e) } var fileDescriptor_dc42cdfd1d52d76e = []byte{ - // 827 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x4f, 0x4b, 0x33, 0x47, - 0x18, 0xcf, 0xf8, 0x0f, 0x9d, 0x44, 0x53, 0x06, 0x69, 0xe3, 0x2a, 0x6b, 0xd8, 0x82, 0xa6, 0xad, - 0xce, 0x98, 0xb4, 0x56, 0x28, 0x78, 0xa8, 0x82, 0xad, 0x97, 0x6a, 0xb7, 0x87, 0x42, 0xa1, 0xc8, - 0xee, 0x66, 0xdc, 0x0c, 0x26, 0x3b, 0x31, 0xb3, 0x09, 0x15, 0xf1, 0xe2, 0x17, 0x68, 0xa1, 0xc7, - 0x5e, 0x7b, 0xea, 0xa1, 0x14, 0x7a, 0xe8, 0x37, 0x28, 0x1e, 0x85, 0xf6, 0xd0, 0x53, 0xdf, 0x17, - 0xf5, 0x5b, 0xbc, 0x97, 0x97, 0x9d, 0x99, 0xd5, 0xdd, 0x64, 0xc5, 0x45, 0xde, 0xf7, 0xb6, 0xfb, - 0xfc, 0x9b, 0xdf, 0xef, 0x79, 0x7e, 0xcf, 0x0c, 0x34, 0x99, 0xeb, 0x11, 0x8f, 0xf7, 0x28, 0xf1, - 0xda, 0x8c, 0x06, 0x21, 0x19, 0xd4, 0xc9, 0x69, 0x9f, 0xf6, 0xce, 0x70, 0xb7, 0xc7, 0x43, 0x8e, - 0x10, 0x73, 0x3d, 0x1c, 0xf9, 0xb1, 0xf2, 0xe3, 0x41, 0xdd, 0xf8, 0xd0, 0xe3, 0xa2, 0xc3, 0x05, - 0x71, 0x1d, 0x41, 0x55, 0x30, 0x19, 0xd4, 0x5d, 0x1a, 0x3a, 0x75, 0xd2, 0x75, 0x7c, 0x16, 0x38, - 0x21, 0xe3, 0x81, 0xca, 0x37, 0x96, 0x33, 0xea, 0xeb, 0x4a, 0x2a, 0x60, 0xc1, 0xe7, 0xdc, 0x6f, - 0x53, 0x22, 0xff, 0xdc, 0xfe, 0x31, 0x71, 0x02, 0x7d, 0xb6, 0xb1, 0xa4, 0x5d, 0x4e, 0x97, 0x11, - 0x27, 0x08, 0x78, 0x28, 0x0b, 0x0b, 0xed, 0x9d, 0xf7, 0xb9, 0xcf, 0xe5, 0x27, 0x89, 0xbe, 0x94, - 0xd5, 0xfa, 0x14, 0xbe, 0xf7, 0x75, 0x84, 0x68, 0x57, 0x9e, 0xf1, 0x4d, 0xe8, 0x84, 0xd4, 0xa6, - 0xa7, 0x7d, 0x2a, 0x42, 0xb4, 0x08, 0x67, 0xd4, 0xc9, 0x47, 0xac, 0x59, 0x01, 0x55, 0x50, 0x9b, - 0xb1, 0xa7, 0x95, 0x61, 0xbf, 0x69, 0xfd, 0x0e, 0x60, 0x65, 0x34, 0x51, 0x74, 0x79, 0x20, 0x28, - 0xda, 0x82, 0x25, 0x9d, 0x29, 0x22, 0xbb, 0x4c, 0x2e, 0x36, 0xe6, 0xb1, 0xc2, 0x87, 0x63, 0xe8, - 0xf8, 0xf3, 0xe0, 0xcc, 0x2e, 0x7a, 0x0f, 0x05, 0xd0, 0x3c, 0x9c, 0xec, 0xf6, 0x38, 0x3f, 0xae, - 0x8c, 0x55, 0x41, 0xad, 0x64, 0xab, 0x1f, 0xb4, 0x0b, 0x4b, 0xf2, 0xe3, 0xa8, 0x45, 0x99, 0xdf, - 0x0a, 0x2b, 0xe3, 0xb2, 0x9c, 0x81, 0x47, 0x5b, 0x8d, 0xbf, 0x94, 0x11, 0x3b, 0x13, 0x57, 0xff, - 0x2f, 0x17, 0xec, 0xa2, 0xcc, 0x52, 0x26, 0xcb, 0x1d, 0xc5, 0x2b, 0x62, 0xa6, 0x7b, 0x10, 0x3e, - 0x0c, 0x42, 0xa3, 0x5d, 0xc1, 0x6a, 0x6a, 0x38, 0x9a, 0x1a, 0x56, 0x23, 0xd6, 0x53, 0xc3, 0x87, - 0x8e, 0x1f, 0x77, 0xc9, 0x4e, 0x64, 0x5a, 0xff, 0x02, 0xb8, 0x90, 0x71, 0x88, 0xee, 0x4a, 0x00, - 0x67, 0x93, 0x5d, 0x11, 0x15, 0x50, 0x1d, 0xaf, 0x15, 0x1b, 0x1f, 0x64, 0xf1, 0xd8, 0x6f, 0xd2, - 0x20, 0x64, 0xc7, 0x8c, 0x36, 0x13, 0xa5, 0x76, 0xcc, 0x88, 0xd6, 0x6f, 0x2f, 0x96, 0xdf, 0xcd, - 0x74, 0x0b, 0xbb, 0x94, 0xe8, 0xa5, 0x40, 0x5f, 0xa4, 0x58, 0x8d, 0x49, 0x56, 0xab, 0x4f, 0xb2, - 0x52, 0x60, 0x53, 0xb4, 0xfe, 0x00, 0xd0, 0x50, 0xb4, 0x22, 0x57, 0x20, 0xfa, 0x22, 0xb7, 0x4e, - 0xd0, 0x2a, 0x2c, 0xf7, 0xe8, 0x80, 0x09, 0xc6, 0x83, 0xa3, 0xa0, 0xdf, 0x71, 0x69, 0x4f, 0x22, - 0x99, 0xb0, 0xe7, 0x62, 0xf3, 0x57, 0xd2, 0x9a, 0x0a, 0x4c, 0xcc, 0x39, 0x11, 0xa8, 0x06, 0x89, - 0xde, 0x87, 0xb3, 0xed, 0x88, 0x5f, 0x18, 0x87, 0x4d, 0x54, 0x41, 0x6d, 0xda, 0x2e, 0x29, 0xa3, - 0x9e, 0xf6, 0x5f, 0x00, 0x2e, 0x66, 0x42, 0xd6, 0xb3, 0xd8, 0x86, 0x65, 0x2f, 0xf6, 0xe4, 0x10, - 0xe9, 0x9c, 0x97, 0x2a, 0xf3, 0x36, 0x75, 0x7a, 0x99, 0x8d, 0x5c, 0xe4, 0xea, 0xf6, 0x5e, 0xc6, - 0xc8, 0x9f, 0x23, 0xe4, 0xbf, 0x01, 0x5c, 0xca, 0x06, 0xa1, 0xfb, 0xf7, 0x3d, 0x7c, 0x67, 0xa8, - 0x7f, 0xb1, 0x9c, 0xd7, 0xb2, 0xe8, 0xa6, 0xcb, 0x7c, 0xcb, 0xc2, 0x56, 0xaa, 0x01, 0xe5, 0x74, - 0x7b, 0xdf, 0xa0, 0x74, 0x8d, 0xd4, 0xd6, 0x1f, 0x3a, 0x3d, 0xa7, 0x13, 0x77, 0xd2, 0x3a, 0x48, - 0x2d, 0x6b, 0xec, 0xd3, 0x04, 0x1b, 0x70, 0xaa, 0x2b, 0x2d, 0x5a, 0x17, 0x99, 0x53, 0xd4, 0x39, - 0x3a, 0xb2, 0xf1, 0x6a, 0x0a, 0x4e, 0xca, 0x8a, 0xe8, 0x57, 0x00, 0x8b, 0x89, 0xcd, 0x44, 0x1f, - 0x65, 0x65, 0x3f, 0x72, 0xef, 0x1a, 0x6b, 0xf9, 0x82, 0x15, 0x50, 0xeb, 0xb3, 0xcb, 0x7f, 0xee, - 0x7e, 0x1e, 0xfb, 0x04, 0x35, 0xc8, 0xe8, 0xcb, 0xa1, 0xde, 0x98, 0xd4, 0xa5, 0x43, 0xce, 0xef, - 0xd5, 0x73, 0x81, 0x7e, 0x01, 0xb0, 0x94, 0xbc, 0x40, 0x50, 0xae, 0xa3, 0xe3, 0x06, 0x1a, 0xeb, - 0x39, 0xa3, 0x35, 0x52, 0x2c, 0x91, 0xd6, 0xd0, 0x4a, 0x3e, 0xa4, 0xe8, 0x0e, 0xc0, 0xb9, 0xb4, - 0x70, 0x10, 0x7e, 0xfc, 0xc4, 0xac, 0xab, 0xc9, 0x20, 0xb9, 0xe3, 0x35, 0xc6, 0x53, 0x89, 0xf1, - 0x04, 0xb1, 0xc7, 0x31, 0x0e, 0xc9, 0x3e, 0xd9, 0x50, 0x12, 0x5f, 0x55, 0xe4, 0x7c, 0xe8, 0xd2, - 0xbb, 0x20, 0xea, 0x4e, 0x48, 0x38, 0x94, 0xe1, 0x02, 0xfd, 0x09, 0x60, 0x79, 0x68, 0xcd, 0x50, - 0x5e, 0xdc, 0xf7, 0xa3, 0xd8, 0xc8, 0x9f, 0xa0, 0x99, 0x6e, 0x4b, 0xa6, 0x5b, 0x68, 0xf3, 0x59, - 0x4c, 0xd1, 0x8f, 0xf7, 0xd2, 0x51, 0x4b, 0xf0, 0xa4, 0x74, 0x52, 0xbb, 0xf7, 0xa4, 0x74, 0xd2, - 0xdb, 0x68, 0x59, 0x12, 0xec, 0x12, 0x32, 0x14, 0xd8, 0x34, 0x4e, 0xb5, 0x7d, 0x3b, 0x07, 0x57, - 0x37, 0x26, 0xb8, 0xbe, 0x31, 0xc1, 0xcb, 0x1b, 0x13, 0xfc, 0x74, 0x6b, 0x16, 0xae, 0x6f, 0xcd, - 0xc2, 0x7f, 0xb7, 0x66, 0xe1, 0xbb, 0x4d, 0x9f, 0x85, 0xad, 0xbe, 0x8b, 0x3d, 0xde, 0x21, 0x6d, - 0x16, 0x50, 0xd2, 0x76, 0x3b, 0xeb, 0xa2, 0x79, 0x42, 0x06, 0x0d, 0xf2, 0xc3, 0x03, 0xfd, 0x8d, - 0xc6, 0xba, 0xae, 0x1c, 0x9e, 0x75, 0xa9, 0x70, 0xa7, 0xe4, 0x13, 0xf0, 0xf1, 0xeb, 0x00, 0x00, - 0x00, 0xff, 0xff, 0xe9, 0x01, 0x97, 0xe5, 0xf3, 0x09, 0x00, 0x00, + // 828 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x4f, 0x4f, 0x1b, 0x47, + 0x14, 0xf7, 0xf0, 0x4f, 0x30, 0x36, 0xb8, 0x1a, 0xa1, 0xd6, 0x2c, 0x68, 0xb1, 0x96, 0xaa, 0xb8, + 0x2a, 0xcc, 0x60, 0xb7, 0x14, 0xa9, 0x12, 0x87, 0xe2, 0x1e, 0xca, 0xa5, 0xd0, 0xed, 0xa1, 0x52, + 0xa5, 0xca, 0xda, 0x5d, 0x0f, 0xeb, 0x11, 0xf6, 0xae, 0xf1, 0xac, 0xad, 0x22, 0x84, 0x2a, 0xf5, + 0x0b, 0xb4, 0x52, 0x8f, 0xb9, 0xe6, 0x94, 0x43, 0x14, 0x29, 0x87, 0x7c, 0x80, 0x5c, 0x38, 0x12, + 0xe5, 0x92, 0x53, 0x12, 0x01, 0xdf, 0x22, 0x97, 0x68, 0x67, 0x66, 0x61, 0xd7, 0x5e, 0xc2, 0x26, + 0x4a, 0x6e, 0xeb, 0xf7, 0x6f, 0x7e, 0xbf, 0xf7, 0x7e, 0xef, 0x19, 0xea, 0xcc, 0x76, 0x88, 0xe3, + 0xf7, 0x28, 0x71, 0xda, 0x8c, 0x7a, 0x01, 0x19, 0x54, 0xc9, 0x51, 0x9f, 0xf6, 0x8e, 0x71, 0xb7, + 0xe7, 0x07, 0x3e, 0x42, 0xcc, 0x76, 0x70, 0xe8, 0xc7, 0xd2, 0x8f, 0x07, 0x55, 0x6d, 0xb5, 0x6d, + 0x77, 0x88, 0x6d, 0x71, 0x2a, 0x23, 0xc9, 0xa0, 0x6a, 0xd3, 0xc0, 0xaa, 0x92, 0xae, 0xe5, 0x32, + 0xcf, 0x0a, 0x98, 0xef, 0xc9, 0x64, 0x6d, 0x39, 0xa5, 0xb8, 0x2a, 0x23, 0x03, 0x16, 0x5c, 0xdf, + 0x77, 0xdb, 0x94, 0x88, 0x5f, 0x76, 0xff, 0x80, 0x58, 0x9e, 0x7a, 0x58, 0x5b, 0x52, 0x2e, 0xab, + 0xcb, 0x88, 0xe5, 0x79, 0x7e, 0x20, 0x0a, 0x73, 0xe5, 0x9d, 0x77, 0x7d, 0xd7, 0x17, 0x9f, 0x24, + 0xfc, 0x92, 0x56, 0xe3, 0x7b, 0xf8, 0xc5, 0xaf, 0x21, 0xa2, 0xba, 0x78, 0xe3, 0xb7, 0xc0, 0x0a, + 0xa8, 0x49, 0x8f, 0xfa, 0x94, 0x07, 0x68, 0x11, 0xce, 0xc8, 0x97, 0x1b, 0xac, 0x59, 0x02, 0x65, + 0x50, 0x99, 0x31, 0xa7, 0xa5, 0x61, 0xb7, 0x69, 0x3c, 0x04, 0xb0, 0x34, 0x9a, 0xc8, 0xbb, 0xbe, + 0xc7, 0x29, 0xda, 0x82, 0x05, 0x95, 0xc9, 0x43, 0xbb, 0x48, 0xce, 0xd7, 0xe6, 0xb1, 0xc4, 0x87, + 0x23, 0xe8, 0xf8, 0x47, 0xef, 0xd8, 0xcc, 0x3b, 0x37, 0x05, 0xd0, 0x3c, 0x9c, 0xec, 0xf6, 0x7c, + 0xff, 0xa0, 0x34, 0x56, 0x06, 0x95, 0x82, 0x29, 0x7f, 0xa0, 0x3a, 0x2c, 0x88, 0x8f, 0x46, 0x8b, + 0x32, 0xb7, 0x15, 0x94, 0xc6, 0x45, 0x39, 0x0d, 0x8f, 0xf6, 0x19, 0xff, 0x2c, 0x22, 0x76, 0x26, + 0xce, 0x5e, 0x2e, 0xe7, 0xcc, 0xbc, 0xc8, 0x92, 0x26, 0xa3, 0x31, 0x8a, 0x97, 0x47, 0x4c, 0xeb, + 0x10, 0xde, 0x0c, 0x42, 0xa1, 0x5d, 0xc1, 0x6d, 0xbb, 0x83, 0xc3, 0x91, 0x61, 0x39, 0x5c, 0x35, + 0x32, 0xbc, 0x6f, 0xb9, 0x51, 0x8b, 0xcc, 0x58, 0x9a, 0xf1, 0x0c, 0xc0, 0x85, 0x94, 0x17, 0x54, + 0x4b, 0x3c, 0x38, 0x1b, 0x6f, 0x09, 0x2f, 0x81, 0xf2, 0x78, 0x25, 0x5f, 0xfb, 0x3a, 0x8d, 0xc4, + 0x6e, 0x93, 0x7a, 0x01, 0x3b, 0x60, 0xb4, 0x19, 0x2b, 0xb5, 0xa3, 0x87, 0x9c, 0x1e, 0xbc, 0x5a, + 0xfe, 0x3c, 0xd5, 0xcd, 0xcd, 0x42, 0xac, 0x91, 0x1c, 0xfd, 0x94, 0xa0, 0x34, 0x26, 0x28, 0x7d, + 0xf9, 0x6e, 0x4a, 0x12, 0x69, 0x82, 0xd3, 0x23, 0x00, 0x35, 0xc9, 0x29, 0x74, 0x79, 0xbc, 0xcf, + 0x33, 0x2b, 0x04, 0xad, 0xc2, 0x62, 0x8f, 0x0e, 0x18, 0x67, 0xbe, 0xd7, 0xf0, 0xfa, 0x1d, 0x9b, + 0xf6, 0x04, 0x8c, 0x09, 0x73, 0x2e, 0x32, 0xff, 0x22, 0xac, 0x89, 0xc0, 0xd8, 0x84, 0x63, 0x81, + 0x72, 0x84, 0x68, 0x05, 0xce, 0xb6, 0x43, 0x72, 0x41, 0x14, 0x36, 0x51, 0x06, 0x95, 0x69, 0xb3, + 0x20, 0x8d, 0x6a, 0xce, 0x4f, 0x00, 0x5c, 0x4c, 0x85, 0xac, 0x06, 0xb1, 0x0d, 0x8b, 0x4e, 0xe4, + 0xc9, 0x20, 0xcf, 0x39, 0x27, 0x51, 0xe6, 0x53, 0x2a, 0xf4, 0xef, 0x54, 0xe0, 0x3c, 0x53, 0xb3, + 0xeb, 0x29, 0xe3, 0x7e, 0x6f, 0x05, 0x3f, 0x05, 0x70, 0x29, 0x1d, 0x81, 0xea, 0xdd, 0x9f, 0xf0, + 0xb3, 0xa1, 0xde, 0x45, 0x3a, 0x5e, 0x4b, 0xa3, 0x9a, 0x2c, 0xf3, 0x3b, 0x0b, 0x5a, 0x09, 0xf2, + 0xc5, 0x64, 0x6b, 0x3f, 0x96, 0x66, 0xb5, 0xc4, 0xa2, 0xef, 0x5b, 0x3d, 0xab, 0x13, 0xf5, 0xd0, + 0xd8, 0x4b, 0xac, 0x68, 0xe4, 0x53, 0xec, 0x6a, 0x70, 0xaa, 0x2b, 0x2c, 0x4a, 0x10, 0xa9, 0xe3, + 0x53, 0x39, 0x2a, 0xb2, 0xf6, 0x66, 0x0a, 0x4e, 0x8a, 0x8a, 0xe8, 0x3e, 0x80, 0xf9, 0xd8, 0x3e, + 0xa2, 0x6f, 0xd2, 0xb2, 0x6f, 0x39, 0xb5, 0xda, 0x5a, 0xb6, 0x60, 0x09, 0xd4, 0xf8, 0xe1, 0x9f, + 0xe7, 0x57, 0xff, 0x8f, 0x7d, 0x87, 0x6a, 0x64, 0xf4, 0xcf, 0x42, 0xfe, 0xad, 0x24, 0x4e, 0x0d, + 0x39, 0xb9, 0xd6, 0xcd, 0x29, 0xba, 0x07, 0x60, 0x21, 0x7e, 0x36, 0x50, 0xa6, 0xa7, 0xa3, 0x06, + 0x6a, 0xeb, 0x19, 0xa3, 0x15, 0x52, 0x2c, 0x90, 0x56, 0xd0, 0x57, 0xd9, 0x90, 0xa2, 0x2b, 0x00, + 0xe7, 0x92, 0xaa, 0x41, 0xf8, 0xf6, 0x17, 0xd3, 0x6e, 0x92, 0x46, 0x32, 0xc7, 0x2b, 0x8c, 0x47, + 0x02, 0xe3, 0x21, 0x62, 0xb7, 0x63, 0x1c, 0xd2, 0x7c, 0xbc, 0xa1, 0x24, 0xba, 0x51, 0xe4, 0x64, + 0xe8, 0xda, 0x9d, 0x12, 0x79, 0x0c, 0x62, 0x0e, 0x69, 0x38, 0x45, 0x8f, 0x01, 0x2c, 0x0e, 0xed, + 0x18, 0xca, 0x8a, 0xfb, 0x7a, 0x14, 0x1b, 0xd9, 0x13, 0x14, 0xd3, 0x6d, 0xc1, 0x74, 0x0b, 0x6d, + 0x7e, 0x10, 0x53, 0xf4, 0xef, 0xb5, 0x74, 0xe4, 0x12, 0xdc, 0x29, 0x9d, 0xc4, 0xee, 0xdd, 0x29, + 0x9d, 0xe4, 0x36, 0x1a, 0x86, 0x00, 0xbb, 0x84, 0x34, 0x09, 0x36, 0x89, 0x53, 0x6e, 0xdf, 0xce, + 0xde, 0xd9, 0x85, 0x0e, 0xce, 0x2f, 0x74, 0xf0, 0xfa, 0x42, 0x07, 0xff, 0x5d, 0xea, 0xb9, 0xf3, + 0x4b, 0x3d, 0xf7, 0xe2, 0x52, 0xcf, 0xfd, 0xb1, 0xe9, 0xb2, 0xa0, 0xd5, 0xb7, 0xb1, 0xe3, 0x77, + 0x48, 0x9b, 0x79, 0x94, 0xb4, 0xed, 0xce, 0x3a, 0x6f, 0x1e, 0x92, 0x41, 0x8d, 0xfc, 0x75, 0x43, + 0x7f, 0xa3, 0xb6, 0xae, 0x2a, 0x07, 0xc7, 0x5d, 0xca, 0xed, 0x29, 0x71, 0xfb, 0xbf, 0x7d, 0x1b, + 0x00, 0x00, 0xff, 0xff, 0x5d, 0xf5, 0x93, 0xb6, 0xe3, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc/core/03-connection/types/query.pb.go b/x/ibc/core/03-connection/types/query.pb.go index 28bdf53e52..a55507f3a7 100644 --- a/x/ibc/core/03-connection/types/query.pb.go +++ b/x/ibc/core/03-connection/types/query.pb.go @@ -635,63 +635,63 @@ func init() { } var fileDescriptor_cd8d529f8c7cd06b = []byte{ - // 896 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x31, 0x6f, 0x23, 0x45, - 0x14, 0xf6, 0x38, 0xb9, 0xd3, 0x65, 0x1c, 0xee, 0x60, 0xe4, 0xbb, 0x33, 0x0b, 0x38, 0x61, 0xe1, - 0x88, 0x2f, 0x22, 0x33, 0xb1, 0x23, 0x50, 0x12, 0x62, 0x09, 0x12, 0x85, 0x90, 0x82, 0x28, 0x6c, - 0x3a, 0x9a, 0x68, 0x77, 0x3d, 0x59, 0xaf, 0xb0, 0x77, 0x1c, 0xef, 0xda, 0xc2, 0x0a, 0xa6, 0x40, - 0xfc, 0x00, 0x24, 0x7a, 0x0a, 0x0a, 0x24, 0x2a, 0x4a, 0x0a, 0x7e, 0x00, 0x29, 0x23, 0xd1, 0xd0, - 0x10, 0x21, 0x87, 0x96, 0x86, 0x5f, 0x80, 0x76, 0x66, 0x9c, 0x9d, 0xb5, 0xd7, 0x8e, 0x63, 0x5d, - 0x3a, 0xfb, 0xcd, 0x7b, 0x6f, 0xbe, 0xef, 0x7b, 0x6f, 0xbe, 0x85, 0xba, 0x6b, 0xd9, 0xc4, 0x66, - 0x4d, 0x4a, 0x6c, 0xe6, 0x79, 0xd4, 0x0e, 0x5c, 0xe6, 0x91, 0x76, 0x91, 0x9c, 0xb6, 0x68, 0xb3, - 0x83, 0x1b, 0x4d, 0x16, 0x30, 0xf4, 0xc4, 0xb5, 0x6c, 0x1c, 0xe6, 0xe0, 0x28, 0x07, 0xb7, 0x8b, - 0x5a, 0xd6, 0x61, 0x0e, 0xe3, 0x29, 0x24, 0xfc, 0x25, 0xb2, 0xb5, 0x65, 0x9b, 0xf9, 0x75, 0xe6, - 0x13, 0xcb, 0xf4, 0xa9, 0x68, 0x43, 0xda, 0x45, 0x8b, 0x06, 0x66, 0x91, 0x34, 0x4c, 0xc7, 0xf5, - 0x4c, 0x5e, 0x2e, 0x72, 0x17, 0xa2, 0xdb, 0x6b, 0x2e, 0xf5, 0x82, 0xf0, 0x66, 0xf1, 0x4b, 0x26, - 0x2c, 0x8d, 0x80, 0xa7, 0x00, 0x11, 0x89, 0xaf, 0x3b, 0x8c, 0x39, 0x35, 0x4a, 0xcc, 0x86, 0x4b, - 0x4c, 0xcf, 0x63, 0x01, 0xbf, 0xc6, 0x97, 0xa7, 0xaf, 0xca, 0x53, 0xfe, 0xcf, 0x6a, 0x9d, 0x10, - 0xd3, 0x93, 0xe4, 0xf4, 0x32, 0x7c, 0xf2, 0x59, 0x08, 0x72, 0xe7, 0xba, 0xa3, 0x41, 0x4f, 0x5b, - 0xd4, 0x0f, 0xd0, 0x5b, 0xf0, 0xa5, 0xe8, 0x9a, 0x63, 0xb7, 0x92, 0x03, 0x8b, 0xa0, 0x30, 0x67, - 0xcc, 0x47, 0xc1, 0xfd, 0x8a, 0xfe, 0x1b, 0x80, 0x4f, 0x87, 0xea, 0xfd, 0x06, 0xf3, 0x7c, 0x8a, - 0x76, 0x21, 0x8c, 0x72, 0x79, 0x75, 0xa6, 0xf4, 0x0c, 0x27, 0x8b, 0x89, 0xa3, 0xfa, 0x5d, 0xaf, - 0x62, 0x28, 0x85, 0x28, 0x0b, 0xef, 0x35, 0x9a, 0x8c, 0x9d, 0xe4, 0xd2, 0x8b, 0xa0, 0x30, 0x6f, - 0x88, 0x3f, 0x68, 0x07, 0xce, 0xf3, 0x1f, 0xc7, 0x55, 0xea, 0x3a, 0xd5, 0x20, 0x37, 0xc3, 0xdb, - 0x6b, 0x4a, 0x7b, 0xa1, 0x63, 0xbb, 0x88, 0x3f, 0xe1, 0x19, 0xdb, 0xb3, 0xe7, 0x97, 0x0b, 0x29, - 0x23, 0xc3, 0xab, 0x44, 0x48, 0x37, 0x87, 0xc0, 0xfb, 0x7d, 0xf6, 0x1f, 0x43, 0x18, 0x8d, 0x4b, - 0x82, 0x7f, 0x07, 0x8b, 0xd9, 0xe2, 0x70, 0xb6, 0x58, 0xac, 0x88, 0x9c, 0x2d, 0x3e, 0x34, 0x1d, - 0x2a, 0x6b, 0x0d, 0xa5, 0x52, 0xff, 0x17, 0xc0, 0xdc, 0xf0, 0x1d, 0x52, 0xa1, 0x03, 0x98, 0x89, - 0x88, 0xfa, 0x39, 0xb0, 0x38, 0x53, 0xc8, 0x94, 0xde, 0x1d, 0x25, 0xd1, 0x7e, 0x85, 0x7a, 0x81, - 0x7b, 0xe2, 0xd2, 0x8a, 0x22, 0xb6, 0xda, 0x00, 0xed, 0xc5, 0x40, 0xa7, 0x39, 0xe8, 0xa5, 0x1b, - 0x41, 0x0b, 0x30, 0x2a, 0x6a, 0xb4, 0x0e, 0xef, 0xdf, 0x52, 0x57, 0x99, 0xaf, 0x6f, 0xc1, 0x37, - 0x04, 0x5d, 0x9e, 0x96, 0x20, 0xec, 0x6b, 0x70, 0x4e, 0xb4, 0x88, 0x56, 0xea, 0x81, 0x08, 0xec, - 0x57, 0xf4, 0x9f, 0x00, 0xcc, 0x8f, 0x2a, 0x97, 0x9a, 0x3d, 0x87, 0x2f, 0x2b, 0x6b, 0xd9, 0x30, - 0x83, 0xaa, 0x10, 0x6e, 0xce, 0x78, 0x14, 0xc5, 0x0f, 0xc3, 0xf0, 0x5d, 0x6e, 0x8e, 0x05, 0xdf, - 0x1c, 0x98, 0xaa, 0x40, 0x7c, 0x14, 0x98, 0x41, 0x7f, 0x0f, 0x50, 0x39, 0xf1, 0x05, 0x6d, 0xe7, - 0xfe, 0xbb, 0x5c, 0xc8, 0x76, 0xcc, 0x7a, 0x6d, 0x53, 0x8f, 0x1d, 0xeb, 0x03, 0x6f, 0xab, 0x07, - 0xa0, 0x3e, 0xee, 0x12, 0x29, 0x88, 0x09, 0x9f, 0xba, 0xd7, 0x9b, 0x71, 0x2c, 0xb5, 0xf5, 0xc3, - 0x14, 0xb9, 0xb6, 0xcf, 0x93, 0xa8, 0x29, 0xcb, 0xa4, 0xf4, 0x7c, 0xec, 0x26, 0x85, 0xef, 0x52, - 0xc8, 0x5f, 0x01, 0x7c, 0x7b, 0x90, 0x64, 0x48, 0xcb, 0xf3, 0x5b, 0xfe, 0x0b, 0x14, 0x13, 0x2d, - 0xc1, 0x47, 0x4d, 0xda, 0x76, 0xfd, 0xf0, 0xd4, 0x6b, 0xd5, 0x2d, 0xda, 0xe4, 0x64, 0x66, 0x8d, - 0x87, 0xfd, 0xf0, 0x01, 0x8f, 0xc6, 0x12, 0x15, 0x62, 0x4a, 0xa2, 0x44, 0x7e, 0x09, 0xe0, 0xb3, - 0x1b, 0x90, 0xcb, 0x09, 0x95, 0x61, 0xb8, 0x9a, 0xe2, 0x24, 0x36, 0x99, 0x2c, 0x16, 0xc6, 0x8c, - 0xfb, 0xc6, 0x8c, 0x3f, 0xf2, 0x3a, 0xc6, 0x43, 0x3b, 0xd6, 0x26, 0xfe, 0x62, 0xd2, 0xf1, 0x17, - 0x13, 0x8d, 0x66, 0x66, 0xdc, 0x68, 0x66, 0xa7, 0x18, 0x4d, 0xe9, 0xe7, 0x07, 0xf0, 0x1e, 0x27, - 0x88, 0x7e, 0x01, 0x10, 0x46, 0x2c, 0x11, 0x1e, 0xe5, 0x50, 0xc9, 0x5f, 0x12, 0x8d, 0x4c, 0x9c, - 0x2f, 0x04, 0xd3, 0x3f, 0xfc, 0xe6, 0x8f, 0x7f, 0xbe, 0x4f, 0x6f, 0xa2, 0x75, 0x92, 0xfc, 0xfd, - 0x13, 0x9f, 0x53, 0xc5, 0xf9, 0xc8, 0x59, 0x6c, 0xf8, 0x5d, 0xf4, 0x23, 0x80, 0x19, 0xc5, 0x3d, - 0xd0, 0xa4, 0x10, 0xfa, 0x36, 0xa5, 0xad, 0x4e, 0x5e, 0x20, 0x41, 0xaf, 0x72, 0xd0, 0xcb, 0xa8, - 0x30, 0x29, 0x68, 0xf4, 0x3b, 0x80, 0xaf, 0x0c, 0x19, 0x1d, 0x7a, 0x6f, 0xfc, 0xcd, 0x23, 0x7c, - 0x55, 0x7b, 0xff, 0xb6, 0x65, 0x12, 0xf6, 0x0e, 0x87, 0x5d, 0x46, 0x1f, 0x8c, 0x87, 0x2d, 0x16, - 0x30, 0x2e, 0x79, 0x7f, 0x29, 0xbb, 0xe8, 0x2f, 0x00, 0x1f, 0x27, 0xba, 0x14, 0xda, 0x98, 0x50, - 0xc7, 0x61, 0xfb, 0xd4, 0x36, 0xa7, 0x29, 0x95, 0xac, 0x3e, 0xe5, 0xac, 0xf6, 0xd0, 0xee, 0xb4, - 0x1b, 0x44, 0x54, 0x23, 0x45, 0x3f, 0xa4, 0x61, 0x6e, 0xd4, 0x33, 0x47, 0x5b, 0x93, 0xe2, 0x4c, - 0xf2, 0x35, 0xad, 0x3c, 0x65, 0xb5, 0x24, 0xfa, 0x2d, 0xe0, 0x4c, 0xbf, 0x46, 0x5f, 0x4d, 0xcf, - 0x34, 0xee, 0x4d, 0xa4, 0xef, 0x73, 0xe4, 0x6c, 0xc0, 0x31, 0xbb, 0x44, 0xd8, 0x89, 0x72, 0x20, - 0x02, 0xdd, 0xed, 0xa3, 0xf3, 0x5e, 0x1e, 0x5c, 0xf4, 0xf2, 0xe0, 0xef, 0x5e, 0x1e, 0x7c, 0x77, - 0x95, 0x4f, 0x5d, 0x5c, 0xe5, 0x53, 0x7f, 0x5e, 0xe5, 0x53, 0x9f, 0x6f, 0x38, 0x6e, 0x50, 0x6d, - 0x59, 0xd8, 0x66, 0x75, 0x52, 0x73, 0x3d, 0x4a, 0x6a, 0x56, 0x7d, 0xc5, 0xaf, 0x7c, 0x41, 0xda, - 0x25, 0xf2, 0x65, 0x84, 0x79, 0x75, 0x6d, 0x45, 0x81, 0x1d, 0x74, 0x1a, 0xd4, 0xb7, 0xee, 0x73, - 0x5b, 0x5c, 0xfb, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x11, 0x3d, 0x37, 0x1d, 0xa5, 0x0b, 0x00, 0x00, + // 891 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xc1, 0x4f, 0x3b, 0x45, + 0x14, 0xee, 0x14, 0x7e, 0xbf, 0xc0, 0x14, 0x41, 0x27, 0x05, 0xea, 0xaa, 0x05, 0x17, 0x08, 0xc5, + 0xc8, 0x0c, 0x2d, 0xd1, 0x00, 0xd2, 0x44, 0xa9, 0x44, 0x39, 0x48, 0x70, 0xb9, 0x79, 0x90, 0xec, + 0xb6, 0xc3, 0x76, 0x63, 0xbb, 0x5b, 0xba, 0xdb, 0xc6, 0x06, 0xeb, 0xc1, 0xf8, 0x07, 0x98, 0x78, + 0xf7, 0xe0, 0xc1, 0xc4, 0x93, 0x47, 0x0f, 0xfe, 0x01, 0x72, 0x24, 0xf1, 0xe2, 0x45, 0x62, 0x8a, + 0x27, 0x8f, 0xfe, 0x05, 0x66, 0x67, 0x66, 0xd9, 0xd9, 0x76, 0x5b, 0x4b, 0x23, 0xb7, 0xf6, 0xcd, + 0x7b, 0x6f, 0xbe, 0xef, 0x7b, 0x6f, 0xbe, 0x85, 0xaa, 0x65, 0x94, 0x49, 0xd9, 0x69, 0x52, 0x52, + 0x76, 0x6c, 0x9b, 0x96, 0x3d, 0xcb, 0xb1, 0x49, 0x3b, 0x4f, 0xae, 0x5a, 0xb4, 0xd9, 0xc1, 0x8d, + 0xa6, 0xe3, 0x39, 0x68, 0xc9, 0x32, 0xca, 0xd8, 0xcf, 0xc1, 0x61, 0x0e, 0x6e, 0xe7, 0x95, 0xb4, + 0xe9, 0x98, 0x0e, 0x4b, 0x21, 0xfe, 0x2f, 0x9e, 0xad, 0x6c, 0xd6, 0x8c, 0x3a, 0x31, 0x74, 0x97, + 0xf2, 0x1e, 0xa4, 0x9d, 0x37, 0xa8, 0xa7, 0xe7, 0x49, 0x43, 0x37, 0x2d, 0x5b, 0x67, 0xb5, 0x3c, + 0x71, 0x25, 0xbc, 0xba, 0x66, 0x51, 0xdb, 0xf3, 0xaf, 0xe5, 0xbf, 0x82, 0x4e, 0x43, 0xb0, 0x49, + 0x28, 0x78, 0xe2, 0xab, 0xa6, 0xe3, 0x98, 0x35, 0x4a, 0xf4, 0x86, 0x45, 0x74, 0xdb, 0x76, 0x3c, + 0x76, 0x8d, 0x2b, 0x4e, 0x5f, 0x16, 0xa7, 0xec, 0x9f, 0xd1, 0xba, 0x24, 0xba, 0x2d, 0x98, 0xa9, + 0x45, 0xb8, 0xf4, 0xb1, 0x0f, 0xb2, 0xf4, 0xd0, 0x51, 0xa3, 0x57, 0x2d, 0xea, 0x7a, 0x68, 0x0d, + 0xbe, 0x10, 0x5e, 0x73, 0x61, 0x55, 0x32, 0x60, 0x15, 0xe4, 0x66, 0xb5, 0xb9, 0x30, 0x78, 0x52, + 0x51, 0x7f, 0x01, 0x70, 0x79, 0xa0, 0xde, 0x6d, 0x38, 0xb6, 0x4b, 0xd1, 0x31, 0x84, 0x61, 0x2e, + 0xab, 0x4e, 0x15, 0x36, 0x70, 0xbc, 0x92, 0x38, 0xac, 0x3f, 0xb6, 0x2b, 0x9a, 0x54, 0x88, 0xd2, + 0xf0, 0x59, 0xa3, 0xe9, 0x38, 0x97, 0x99, 0xe4, 0x2a, 0xc8, 0xcd, 0x69, 0xfc, 0x0f, 0x2a, 0xc1, + 0x39, 0xf6, 0xe3, 0xa2, 0x4a, 0x2d, 0xb3, 0xea, 0x65, 0xa6, 0x58, 0x7b, 0x45, 0x6a, 0xcf, 0x75, + 0x6c, 0xe7, 0xf1, 0x87, 0x2c, 0xe3, 0x68, 0xfa, 0xe6, 0x6e, 0x25, 0xa1, 0xa5, 0x58, 0x15, 0x0f, + 0xa9, 0x9f, 0x0e, 0x80, 0x77, 0x03, 0xf6, 0x25, 0x08, 0xc3, 0x71, 0x09, 0xf0, 0x6b, 0xb8, 0x66, + 0xd4, 0xb1, 0x3f, 0x58, 0xcc, 0x97, 0x43, 0x0c, 0x16, 0x9f, 0xe9, 0x26, 0x15, 0x85, 0x9a, 0x54, + 0xa6, 0xfe, 0x0d, 0x60, 0x66, 0xf0, 0x02, 0x21, 0xcf, 0x29, 0x4c, 0x85, 0x2c, 0xdd, 0x0c, 0x58, + 0x9d, 0xca, 0xa5, 0x0a, 0x6f, 0x0e, 0xd3, 0xe7, 0xa4, 0x42, 0x6d, 0xcf, 0xba, 0xb4, 0x68, 0x45, + 0x52, 0x5a, 0x6e, 0x80, 0xde, 0x8f, 0x20, 0x4e, 0x32, 0xc4, 0xeb, 0xa3, 0x11, 0x73, 0x24, 0x32, + 0x64, 0xb4, 0x07, 0x9f, 0x3f, 0x52, 0x51, 0x91, 0xaf, 0x1e, 0xc2, 0xd7, 0x38, 0x57, 0x96, 0x16, + 0x23, 0xe9, 0x2b, 0x70, 0x96, 0xb7, 0x08, 0x97, 0x69, 0x86, 0x07, 0x4e, 0x2a, 0xea, 0x0f, 0x00, + 0x66, 0x87, 0x95, 0x0b, 0xc1, 0xb6, 0xe0, 0x8b, 0xd2, 0x42, 0x36, 0x74, 0xaf, 0xca, 0x55, 0x9b, + 0xd5, 0x16, 0xc2, 0xf8, 0x99, 0x1f, 0x7e, 0xca, 0x9d, 0x31, 0xe0, 0xeb, 0x7d, 0x23, 0xe5, 0x88, + 0xcf, 0x3d, 0xdd, 0x0b, 0x96, 0x00, 0x15, 0x63, 0xdf, 0xce, 0x51, 0xe6, 0x9f, 0xbb, 0x95, 0x74, + 0x47, 0xaf, 0xd7, 0x0e, 0xd4, 0xc8, 0xb1, 0xda, 0xf7, 0xaa, 0x7a, 0x00, 0xaa, 0xa3, 0x2e, 0x11, + 0x82, 0xe8, 0x70, 0xd9, 0x7a, 0x58, 0x8b, 0x0b, 0xa1, 0xad, 0xeb, 0xa7, 0x88, 0x85, 0xdd, 0x8a, + 0xa3, 0x26, 0x6d, 0x92, 0xd4, 0x73, 0xd1, 0x8a, 0x0b, 0x3f, 0xa5, 0x90, 0x3f, 0x03, 0xb8, 0xde, + 0x4f, 0xd2, 0xa7, 0x65, 0xbb, 0x2d, 0xf7, 0x7f, 0x14, 0x13, 0x6d, 0xc2, 0x85, 0x26, 0x6d, 0x5b, + 0xae, 0x7f, 0x6a, 0xb7, 0xea, 0x06, 0x6d, 0x32, 0x32, 0xd3, 0xda, 0x7c, 0x10, 0x3e, 0x65, 0xd1, + 0x48, 0xa2, 0x44, 0x4c, 0x4a, 0x14, 0xc8, 0xef, 0x00, 0xdc, 0xf8, 0x0f, 0xe4, 0x62, 0x42, 0x45, + 0xe8, 0xaf, 0x26, 0x3f, 0x89, 0x4c, 0x26, 0x8d, 0xb9, 0x25, 0xe3, 0xc0, 0x92, 0xf1, 0x7b, 0x76, + 0x47, 0x9b, 0x2f, 0x47, 0xda, 0x44, 0x5f, 0x4c, 0x32, 0xfa, 0x62, 0xc2, 0xd1, 0x4c, 0x8d, 0x1a, + 0xcd, 0xf4, 0x04, 0xa3, 0x29, 0xfc, 0x38, 0x03, 0x9f, 0x31, 0x82, 0xe8, 0x27, 0x00, 0x61, 0xc8, + 0x12, 0xe1, 0x61, 0xf6, 0x14, 0xff, 0x0d, 0x51, 0xc8, 0xd8, 0xf9, 0x5c, 0x30, 0xf5, 0xdd, 0xaf, + 0x7e, 0xfb, 0xeb, 0xdb, 0xe4, 0x01, 0xda, 0x23, 0xf1, 0x5f, 0x3e, 0xfe, 0x21, 0x95, 0x6c, 0x8f, + 0x5c, 0x47, 0x86, 0xdf, 0x45, 0xdf, 0x03, 0x98, 0x92, 0xdc, 0x03, 0x8d, 0x0b, 0x21, 0xb0, 0x29, + 0x65, 0x67, 0xfc, 0x02, 0x01, 0x7a, 0x87, 0x81, 0x7e, 0x03, 0xe5, 0xc6, 0x05, 0x8d, 0x7e, 0x05, + 0xf0, 0xa5, 0x01, 0xa3, 0x43, 0x6f, 0x8d, 0xbe, 0x79, 0x88, 0xaf, 0x2a, 0x6f, 0x3f, 0xb6, 0x4c, + 0xc0, 0x2e, 0x31, 0xd8, 0x45, 0xf4, 0xce, 0x68, 0xd8, 0x7c, 0x01, 0xa3, 0x92, 0x07, 0x4b, 0xd9, + 0x45, 0x7f, 0x00, 0xb8, 0x18, 0xeb, 0x52, 0x68, 0x7f, 0x4c, 0x1d, 0x07, 0xed, 0x53, 0x39, 0x98, + 0xa4, 0x54, 0xb0, 0xfa, 0x88, 0xb1, 0xfa, 0x00, 0x1d, 0x4f, 0xba, 0x41, 0x44, 0x36, 0x52, 0xf4, + 0x5d, 0x12, 0x66, 0x86, 0x3d, 0x73, 0x74, 0x38, 0x2e, 0xce, 0x38, 0x5f, 0x53, 0x8a, 0x13, 0x56, + 0x0b, 0xa2, 0x5f, 0x03, 0xc6, 0xf4, 0x4b, 0xf4, 0xc5, 0xe4, 0x4c, 0xa3, 0xde, 0x44, 0x02, 0x9f, + 0x23, 0xd7, 0x7d, 0x8e, 0xd9, 0x25, 0xdc, 0x4e, 0xa4, 0x03, 0x1e, 0xe8, 0x1e, 0x9d, 0xdf, 0xf4, + 0xb2, 0xe0, 0xb6, 0x97, 0x05, 0x7f, 0xf6, 0xb2, 0xe0, 0x9b, 0xfb, 0x6c, 0xe2, 0xf6, 0x3e, 0x9b, + 0xf8, 0xfd, 0x3e, 0x9b, 0xf8, 0x64, 0xdf, 0xb4, 0xbc, 0x6a, 0xcb, 0xc0, 0x65, 0xa7, 0x4e, 0x6a, + 0x96, 0x4d, 0x49, 0xcd, 0xa8, 0x6f, 0xbb, 0x95, 0xcf, 0x48, 0xbb, 0x40, 0x3e, 0x0f, 0x31, 0xef, + 0xec, 0x6e, 0x4b, 0xb0, 0xbd, 0x4e, 0x83, 0xba, 0xc6, 0x73, 0x66, 0x8b, 0xbb, 0xff, 0x06, 0x00, + 0x00, 0xff, 0xff, 0x2e, 0xe5, 0xf8, 0x82, 0x9c, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc/core/04-channel/types/query.pb.go b/x/ibc/core/04-channel/types/query.pb.go index 2829a0b34e..d72bc89faf 100644 --- a/x/ibc/core/04-channel/types/query.pb.go +++ b/x/ibc/core/04-channel/types/query.pb.go @@ -1699,100 +1699,100 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/query.proto", fileDescriptor_1034a1e9abc4cca1) } var fileDescriptor_1034a1e9abc4cca1 = []byte{ - // 1485 bytes of a gzipped FileDescriptorProto + // 1487 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xdd, 0x6f, 0x14, 0x55, - 0x14, 0xef, 0xdd, 0x16, 0x68, 0x0f, 0xc8, 0xc7, 0x6d, 0x0b, 0x65, 0x28, 0x4b, 0x59, 0x8d, 0x14, - 0x12, 0xe6, 0xd2, 0x82, 0x48, 0x62, 0xd0, 0x94, 0x26, 0x62, 0x13, 0x40, 0x1c, 0x40, 0x81, 0x28, - 0x9b, 0xd9, 0xd9, 0xcb, 0x76, 0xd2, 0xee, 0xcc, 0xb0, 0x33, 0xbb, 0xb4, 0x69, 0xf6, 0x41, 0x4d, - 0x88, 0x0f, 0x92, 0x98, 0xf0, 0xa0, 0xf1, 0xc5, 0x17, 0x13, 0xc3, 0x83, 0x0f, 0xfe, 0x0f, 0x3e, - 0xf0, 0x26, 0x89, 0x9a, 0x60, 0x4c, 0x90, 0x80, 0x89, 0x3c, 0xf8, 0xac, 0xaf, 0x66, 0xee, 0xc7, - 0x7c, 0xec, 0xce, 0x4c, 0xbb, 0x6c, 0x37, 0x69, 0x7c, 0xdb, 0xb9, 0x73, 0xce, 0xb9, 0xbf, 0xdf, - 0xef, 0xdc, 0x73, 0xf6, 0x9e, 0x81, 0x03, 0x66, 0xc9, 0x20, 0x86, 0x5d, 0xa3, 0xc4, 0x98, 0xd7, - 0x2d, 0x8b, 0x2e, 0x92, 0xc6, 0x14, 0xb9, 0x55, 0xa7, 0xb5, 0x65, 0xd5, 0xa9, 0xd9, 0x9e, 0x8d, - 0x87, 0xcd, 0x92, 0xa1, 0xfa, 0x06, 0xaa, 0x30, 0x50, 0x1b, 0x53, 0x4a, 0xc4, 0x6b, 0xd1, 0xa4, - 0x96, 0xe7, 0x3b, 0xf1, 0x5f, 0xdc, 0x4b, 0x39, 0x62, 0xd8, 0x6e, 0xd5, 0x76, 0x49, 0x49, 0x77, - 0x29, 0x0f, 0x47, 0x1a, 0x53, 0x25, 0xea, 0xe9, 0x53, 0xc4, 0xd1, 0x2b, 0xa6, 0xa5, 0x7b, 0xa6, - 0x6d, 0x09, 0xdb, 0x83, 0x49, 0x10, 0xe4, 0x66, 0xdc, 0x64, 0xbc, 0x62, 0xdb, 0x95, 0x45, 0x4a, - 0x74, 0xc7, 0x24, 0xba, 0x65, 0xd9, 0x1e, 0xf3, 0x77, 0xc5, 0xdb, 0xbd, 0xe2, 0x2d, 0x7b, 0x2a, - 0xd5, 0x6f, 0x12, 0xdd, 0x12, 0xe8, 0x95, 0x91, 0x8a, 0x5d, 0xb1, 0xd9, 0x4f, 0xe2, 0xff, 0xe2, - 0xab, 0x85, 0xf3, 0x30, 0xfc, 0x9e, 0x8f, 0x69, 0x96, 0x6f, 0xa2, 0xd1, 0x5b, 0x75, 0xea, 0x7a, - 0x78, 0x0f, 0x6c, 0x71, 0xec, 0x9a, 0x57, 0x34, 0xcb, 0x63, 0x68, 0x02, 0x4d, 0x0e, 0x69, 0x9b, - 0xfd, 0xc7, 0xb9, 0x32, 0xde, 0x0f, 0x20, 0xf0, 0xf8, 0xef, 0x72, 0xec, 0xdd, 0x90, 0x58, 0x99, - 0x2b, 0x17, 0xee, 0x23, 0x18, 0x89, 0xc7, 0x73, 0x1d, 0xdb, 0x72, 0x29, 0x3e, 0x09, 0x5b, 0x84, - 0x15, 0x0b, 0xb8, 0x75, 0x7a, 0x5c, 0x4d, 0x50, 0x53, 0x95, 0x6e, 0xd2, 0x18, 0x8f, 0xc0, 0x26, - 0xa7, 0x66, 0xdb, 0x37, 0xd9, 0x56, 0xdb, 0x34, 0xfe, 0x80, 0x67, 0x61, 0x1b, 0xfb, 0x51, 0x9c, - 0xa7, 0x66, 0x65, 0xde, 0x1b, 0xeb, 0x67, 0x21, 0x95, 0x48, 0x48, 0x9e, 0x81, 0xc6, 0x94, 0xfa, - 0x0e, 0xb3, 0x38, 0x33, 0xf0, 0xe0, 0xf1, 0x81, 0x3e, 0x6d, 0x2b, 0xf3, 0xe2, 0x4b, 0x85, 0x1b, - 0x71, 0xa8, 0xae, 0xe4, 0xfe, 0x36, 0x40, 0x98, 0x18, 0x81, 0xf6, 0x55, 0x95, 0x67, 0x51, 0xf5, - 0xb3, 0xa8, 0xf2, 0x43, 0x21, 0xb2, 0xa8, 0x5e, 0xd4, 0x2b, 0x54, 0xf8, 0x6a, 0x11, 0xcf, 0xc2, - 0x63, 0x04, 0xa3, 0x2d, 0x1b, 0x08, 0x31, 0xce, 0xc0, 0xa0, 0xe0, 0xe7, 0x8e, 0xa1, 0x89, 0x7e, - 0x16, 0x3f, 0x49, 0x8d, 0xb9, 0x32, 0xb5, 0x3c, 0xf3, 0xa6, 0x49, 0xcb, 0x52, 0x97, 0xc0, 0x0f, - 0x9f, 0x8d, 0xa1, 0xcc, 0x31, 0x94, 0x87, 0x56, 0x45, 0xc9, 0x01, 0x44, 0x61, 0xe2, 0x53, 0xb0, - 0xb9, 0x43, 0x15, 0x85, 0x7d, 0xe1, 0x33, 0x04, 0x79, 0x4e, 0xd0, 0xb6, 0x2c, 0x6a, 0xf8, 0xd1, - 0x5a, 0xb5, 0xcc, 0x03, 0x18, 0xc1, 0x4b, 0x71, 0x94, 0x22, 0x2b, 0x2d, 0x5a, 0xe7, 0x5e, 0x58, - 0xeb, 0xe7, 0x08, 0x0e, 0xa4, 0x42, 0xf9, 0x7f, 0xa9, 0x7e, 0x55, 0x8a, 0xce, 0x31, 0xcd, 0x32, - 0xeb, 0x4b, 0x9e, 0xee, 0xd1, 0x6e, 0x8b, 0xf7, 0x8f, 0x40, 0xc4, 0x84, 0xd0, 0x42, 0x44, 0x1d, - 0xf6, 0x98, 0x81, 0x3e, 0x45, 0x0e, 0xb5, 0xe8, 0xfa, 0x26, 0xa2, 0x52, 0x0e, 0x27, 0x11, 0x89, - 0x48, 0x1a, 0x89, 0x39, 0x6a, 0x26, 0x2d, 0xf7, 0xb2, 0xe4, 0xbf, 0x47, 0x70, 0x30, 0xc6, 0xd0, - 0xe7, 0x64, 0xb9, 0x75, 0x77, 0x3d, 0xf4, 0xc3, 0x87, 0x60, 0x47, 0x8d, 0x36, 0x4c, 0xd7, 0xb4, - 0xad, 0xa2, 0x55, 0xaf, 0x96, 0x68, 0x8d, 0xa1, 0x1c, 0xd0, 0xb6, 0xcb, 0xe5, 0x0b, 0x6c, 0x35, - 0x66, 0x28, 0xe8, 0x0c, 0xc4, 0x0d, 0x05, 0xde, 0xdf, 0x11, 0x14, 0xb2, 0xf0, 0x8a, 0xa4, 0x9c, - 0x86, 0x1d, 0x86, 0x7c, 0x13, 0x4b, 0xc6, 0x88, 0xca, 0xff, 0x0f, 0x54, 0xf9, 0x7f, 0xa0, 0xce, - 0x58, 0xcb, 0xda, 0x76, 0x23, 0x16, 0x06, 0xef, 0x83, 0x21, 0x91, 0xc8, 0x80, 0xd5, 0x20, 0x5f, - 0x98, 0x2b, 0x87, 0xd9, 0xe8, 0xcf, 0xca, 0xc6, 0xc0, 0x8b, 0x64, 0xa3, 0x06, 0xe3, 0x8c, 0xdc, - 0x45, 0xdd, 0x58, 0xa0, 0xde, 0xac, 0x5d, 0xad, 0x9a, 0x5e, 0x95, 0x5a, 0x5e, 0xb7, 0x79, 0x50, - 0x60, 0xd0, 0xf5, 0x43, 0x58, 0x06, 0x15, 0x09, 0x08, 0x9e, 0x0b, 0x5f, 0x23, 0xd8, 0x9f, 0xb2, - 0xa9, 0x10, 0x93, 0xb5, 0x2c, 0xb9, 0xca, 0x36, 0xde, 0xa6, 0x45, 0x56, 0x7a, 0x79, 0x3c, 0xbf, - 0x49, 0x03, 0xe7, 0x76, 0x2b, 0x49, 0xbc, 0xcf, 0xf6, 0xbf, 0x70, 0x9f, 0xfd, 0x4b, 0xb6, 0xfc, - 0x04, 0x84, 0x41, 0x9b, 0xdd, 0x1a, 0xaa, 0x25, 0x3b, 0xed, 0x44, 0x62, 0xa7, 0xe5, 0x41, 0xf8, - 0x59, 0x8e, 0x3a, 0x6d, 0x84, 0x36, 0x6b, 0xc3, 0xde, 0x08, 0x51, 0x8d, 0x1a, 0xd4, 0x74, 0x7a, - 0x7a, 0x32, 0xef, 0x21, 0x50, 0x92, 0x76, 0x14, 0xb2, 0x2a, 0x30, 0x58, 0xf3, 0x97, 0x1a, 0x94, - 0xc7, 0x1d, 0xd4, 0x82, 0xe7, 0x5e, 0xd6, 0xe8, 0x6d, 0xd1, 0x30, 0x39, 0xa8, 0x19, 0x63, 0xc1, - 0xb2, 0x6f, 0x2f, 0xd2, 0x72, 0x85, 0xf6, 0xba, 0x50, 0xef, 0xcb, 0xd6, 0x97, 0xb2, 0xb3, 0x90, - 0x65, 0x12, 0x76, 0xe8, 0xf1, 0x57, 0xa2, 0x64, 0x5b, 0x97, 0x7b, 0x59, 0xb7, 0xdf, 0x66, 0x62, - 0xdd, 0x30, 0xc5, 0xfb, 0x0f, 0x82, 0x97, 0x33, 0x61, 0x0a, 0x4d, 0xcf, 0xc1, 0xce, 0x16, 0xf1, - 0xd6, 0x5e, 0xc6, 0x6d, 0x9e, 0x1b, 0xa1, 0x96, 0xbf, 0x94, 0x7d, 0xf5, 0x8a, 0x25, 0x6b, 0x86, - 0x63, 0xee, 0x3a, 0x35, 0x6f, 0xc2, 0x3e, 0x87, 0x45, 0x2a, 0x86, 0xed, 0xab, 0x28, 0xcf, 0xb0, - 0x3b, 0xd6, 0x3f, 0xd1, 0x3f, 0x39, 0xa0, 0xed, 0x75, 0x5a, 0x9a, 0xe5, 0x25, 0x69, 0x50, 0x58, - 0x12, 0xed, 0x34, 0x01, 0x98, 0x48, 0xc6, 0x38, 0x0c, 0x85, 0xf1, 0x10, 0x8b, 0x17, 0x2e, 0x44, - 0x34, 0xc9, 0x75, 0xa8, 0xc9, 0x1d, 0xd9, 0x6e, 0xc2, 0xad, 0x67, 0x8c, 0x85, 0xae, 0x05, 0x39, - 0x06, 0x23, 0x42, 0x10, 0xdd, 0x58, 0x68, 0x53, 0x02, 0x3b, 0xf2, 0xe4, 0x85, 0x12, 0xd4, 0x61, - 0x5f, 0x22, 0x8e, 0x1e, 0xf3, 0xbf, 0x26, 0xee, 0xba, 0x17, 0xe8, 0x52, 0x90, 0x0f, 0x8d, 0x03, - 0xe8, 0xf6, 0x1e, 0xfd, 0x03, 0x82, 0x89, 0xf4, 0xd8, 0x82, 0xd7, 0x34, 0x8c, 0x5a, 0x74, 0x29, - 0x3c, 0x2c, 0x45, 0xc1, 0x9e, 0x6d, 0x35, 0xa0, 0x0d, 0x5b, 0xed, 0xbe, 0x3d, 0x6c, 0x61, 0xd3, - 0x3f, 0xed, 0x86, 0x4d, 0x0c, 0x33, 0xfe, 0x0e, 0xc1, 0x16, 0x71, 0xdd, 0xc4, 0x93, 0x89, 0xf5, - 0x9e, 0xf0, 0xc1, 0x40, 0x39, 0xbc, 0x06, 0x4b, 0xce, 0xbc, 0x70, 0xf6, 0x93, 0x9f, 0xff, 0xbc, - 0x97, 0x9b, 0xc1, 0x6f, 0x91, 0x84, 0xaf, 0x1d, 0xfc, 0xc3, 0x88, 0x9c, 0xb7, 0xc8, 0x4a, 0xa8, - 0x73, 0x93, 0xf8, 0xea, 0xbb, 0x64, 0x45, 0xe4, 0xa4, 0x89, 0xef, 0x22, 0x18, 0x94, 0x53, 0x1e, - 0x5e, 0x1d, 0x80, 0x3c, 0xdb, 0xca, 0x91, 0xb5, 0x98, 0x0a, 0xb0, 0x47, 0x18, 0xd8, 0x57, 0x70, - 0x61, 0x75, 0xb0, 0xf8, 0x47, 0x04, 0xb8, 0x7d, 0xfe, 0xc4, 0xc7, 0x33, 0xb6, 0x4b, 0x1b, 0x9c, - 0x95, 0x13, 0x9d, 0x39, 0x09, 0xb4, 0xb3, 0x0c, 0xed, 0x69, 0xfc, 0x46, 0x06, 0xda, 0xc0, 0xdb, - 0x57, 0x37, 0x78, 0x68, 0x86, 0x34, 0x7e, 0xf5, 0x69, 0xb4, 0x4d, 0x80, 0x99, 0x34, 0xd2, 0x46, - 0xd1, 0x4c, 0x1a, 0xa9, 0x43, 0x66, 0xe1, 0x32, 0xa3, 0x71, 0x01, 0x9f, 0xeb, 0xf2, 0x84, 0x90, - 0xe8, 0x7c, 0x8a, 0xbf, 0xca, 0xc1, 0x68, 0xe2, 0x1c, 0x85, 0x4f, 0xae, 0x8e, 0x32, 0x69, 0x50, - 0x54, 0x5e, 0xef, 0xd8, 0x4f, 0x10, 0xbc, 0x8b, 0x18, 0xc3, 0x3b, 0x08, 0x7f, 0x8a, 0xba, 0xe6, - 0x18, 0x9f, 0xfc, 0x88, 0x1c, 0x21, 0xc9, 0x4a, 0xcb, 0x30, 0xda, 0x24, 0xbc, 0x41, 0x44, 0x5e, - 0xf0, 0x85, 0x26, 0x7e, 0x82, 0x60, 0x67, 0xeb, 0x8d, 0x1e, 0x4f, 0xa5, 0xb3, 0x4b, 0x99, 0xd8, - 0x94, 0xe9, 0x4e, 0x5c, 0x84, 0x16, 0x94, 0x49, 0x51, 0xc4, 0x1f, 0x75, 0x2b, 0x44, 0xdb, 0x1f, - 0xb1, 0x4b, 0x56, 0x64, 0x77, 0x6d, 0xe2, 0x47, 0x08, 0x76, 0xb5, 0x0d, 0x2d, 0xb8, 0x03, 0xc0, - 0x41, 0x69, 0x1e, 0xef, 0xc8, 0x47, 0xb0, 0xbc, 0xce, 0x58, 0x5e, 0xc6, 0xda, 0xfa, 0xb3, 0xc4, - 0xbf, 0x20, 0x78, 0x29, 0x36, 0x34, 0x60, 0x75, 0x35, 0x88, 0xf1, 0x79, 0x46, 0x21, 0x6b, 0xb6, - 0x17, 0x74, 0x4a, 0x8c, 0xce, 0x87, 0xf8, 0xfa, 0x3a, 0xd1, 0xa9, 0xf1, 0xf8, 0xb1, 0x8c, 0x3d, - 0x47, 0x30, 0x9a, 0x78, 0x53, 0xcd, 0xaa, 0xd7, 0xac, 0x39, 0x25, 0xab, 0x5e, 0x33, 0xa7, 0x8c, - 0xc2, 0x0d, 0x46, 0xf7, 0x2a, 0x7e, 0x7f, 0x9d, 0xe8, 0xea, 0xc6, 0x42, 0x8c, 0xea, 0xdf, 0x08, - 0x76, 0x27, 0x5f, 0xca, 0x71, 0xa7, 0x98, 0x83, 0x63, 0x7a, 0xaa, 0x73, 0x47, 0xc1, 0xb6, 0xc8, - 0xd8, 0x5e, 0xc3, 0x1f, 0xac, 0x1f, 0xdb, 0x38, 0xa7, 0xcf, 0x73, 0xb0, 0xab, 0xed, 0xc6, 0x9b, - 0x55, 0x8b, 0x69, 0xf7, 0xf6, 0xac, 0x5a, 0x4c, 0xbd, 0x52, 0xaf, 0x6b, 0xf7, 0x4d, 0x6a, 0x3a, - 0x19, 0x13, 0x41, 0x93, 0xd4, 0x03, 0x58, 0x45, 0x47, 0x10, 0xff, 0x17, 0xc1, 0xf6, 0xf8, 0xed, - 0x17, 0x93, 0xb5, 0xf0, 0x8a, 0xdc, 0xd7, 0x95, 0x63, 0x6b, 0x77, 0x10, 0x2a, 0x7c, 0xcc, 0x55, - 0x58, 0xc1, 0xcb, 0x3d, 0xd4, 0x20, 0x36, 0x04, 0xc4, 0xc8, 0xfb, 0x25, 0x80, 0x7f, 0x43, 0x30, - 0x9c, 0x70, 0x49, 0xc6, 0x19, 0xd7, 0x86, 0xf4, 0xfb, 0xba, 0xf2, 0x5a, 0x87, 0x5e, 0x42, 0x88, - 0x2b, 0x4c, 0x87, 0x77, 0xf1, 0xf9, 0x6e, 0x75, 0x88, 0xdd, 0xe7, 0xcf, 0x5c, 0x7c, 0xf0, 0x34, - 0x8f, 0x1e, 0x3e, 0xcd, 0xa3, 0x27, 0x4f, 0xf3, 0xe8, 0x8b, 0x67, 0xf9, 0xbe, 0x87, 0xcf, 0xf2, - 0x7d, 0x8f, 0x9e, 0xe5, 0xfb, 0xae, 0x9f, 0xac, 0x98, 0xde, 0x7c, 0xbd, 0xa4, 0x1a, 0x76, 0x95, - 0x2c, 0x9a, 0x16, 0x25, 0x8b, 0xa5, 0xea, 0x51, 0xb7, 0xbc, 0x40, 0x1a, 0xd3, 0x64, 0x29, 0x04, - 0x71, 0xec, 0xc4, 0x51, 0x89, 0xc3, 0x5b, 0x76, 0xa8, 0x5b, 0xda, 0xcc, 0xbe, 0xe2, 0x1e, 0xff, - 0x2f, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x83, 0xe1, 0xa2, 0xa9, 0x1c, 0x00, 0x00, + 0x14, 0xef, 0xdd, 0x16, 0x68, 0x4f, 0x91, 0x8f, 0xdb, 0x16, 0xca, 0x50, 0x96, 0xb2, 0x10, 0x29, + 0x24, 0xcc, 0xa5, 0x05, 0x91, 0xc4, 0xa0, 0x29, 0x35, 0xd1, 0x26, 0x80, 0x38, 0x80, 0x02, 0x7e, + 0x6c, 0x66, 0x67, 0x2f, 0xdb, 0x49, 0x77, 0x67, 0x96, 0x9d, 0xd9, 0xa5, 0x4d, 0xb3, 0x0f, 0x6a, + 0xe4, 0x49, 0x12, 0x13, 0x1e, 0x34, 0xc6, 0x17, 0x9f, 0x0c, 0x0f, 0x3e, 0xf8, 0x3f, 0xf8, 0xc0, + 0x9b, 0x24, 0x6a, 0x82, 0x21, 0x51, 0x02, 0x98, 0xf8, 0xe0, 0x9b, 0x0f, 0xbe, 0x9a, 0xb9, 0x1f, + 0xf3, 0xb1, 0x3b, 0x33, 0xed, 0x76, 0xbb, 0xc1, 0xf8, 0xb6, 0x73, 0xe7, 0x9c, 0x73, 0x7f, 0xbf, + 0xdf, 0xb9, 0xe7, 0xec, 0x3d, 0x03, 0xfb, 0xcd, 0x82, 0x41, 0x0c, 0xbb, 0x46, 0x89, 0xb1, 0xa0, + 0x5b, 0x16, 0x2d, 0x93, 0xc6, 0x34, 0xb9, 0x59, 0xa7, 0xb5, 0x65, 0xb5, 0x5a, 0xb3, 0x5d, 0x1b, + 0x8f, 0x98, 0x05, 0x43, 0xf5, 0x0c, 0x54, 0x61, 0xa0, 0x36, 0xa6, 0x95, 0x90, 0x57, 0xd9, 0xa4, + 0x96, 0xeb, 0x39, 0xf1, 0x5f, 0xdc, 0x4b, 0x39, 0x5c, 0x2e, 0x54, 0x48, 0x41, 0x77, 0x28, 0x8f, + 0x45, 0x1a, 0xd3, 0x05, 0xea, 0xea, 0xd3, 0xa4, 0xaa, 0x97, 0x4c, 0x4b, 0x77, 0x4d, 0xdb, 0x12, + 0x86, 0x07, 0xe2, 0xf6, 0x97, 0x3b, 0x71, 0x93, 0x89, 0x92, 0x6d, 0x97, 0xca, 0x94, 0xe8, 0x55, + 0x93, 0xe8, 0x96, 0x65, 0xbb, 0xcc, 0xdf, 0x11, 0x6f, 0xf7, 0x88, 0xb7, 0xec, 0xa9, 0x50, 0xbf, + 0x41, 0x74, 0x4b, 0x40, 0x57, 0x46, 0x4b, 0x76, 0xc9, 0x66, 0x3f, 0x89, 0xf7, 0x8b, 0xaf, 0xe6, + 0xce, 0xc3, 0xc8, 0xdb, 0x1e, 0xa6, 0x39, 0xbe, 0x89, 0x46, 0x6f, 0xd6, 0xa9, 0xe3, 0xe2, 0xdd, + 0xb0, 0xa5, 0x6a, 0xd7, 0xdc, 0xbc, 0x59, 0x1c, 0x47, 0x93, 0x68, 0x6a, 0x48, 0xdb, 0xec, 0x3d, + 0xce, 0x17, 0xf1, 0x3e, 0x00, 0x81, 0xc7, 0x7b, 0x97, 0x61, 0xef, 0x86, 0xc4, 0xca, 0x7c, 0x31, + 0x77, 0x0f, 0xc1, 0x68, 0x34, 0x9e, 0x53, 0xb5, 0x2d, 0x87, 0xe2, 0x53, 0xb0, 0x45, 0x58, 0xb1, + 0x80, 0xc3, 0x33, 0x13, 0x6a, 0x8c, 0x94, 0xaa, 0x74, 0x93, 0xc6, 0x78, 0x14, 0x36, 0x55, 0x6b, + 0xb6, 0x7d, 0x83, 0x6d, 0xb5, 0x55, 0xe3, 0x0f, 0x78, 0x0e, 0xb6, 0xb2, 0x1f, 0xf9, 0x05, 0x6a, + 0x96, 0x16, 0xdc, 0xf1, 0x7e, 0x16, 0x52, 0x09, 0x85, 0xe4, 0xf2, 0x37, 0xa6, 0xd5, 0x37, 0x99, + 0xc5, 0xd9, 0x81, 0xfb, 0xbf, 0xed, 0xef, 0xd3, 0x86, 0x99, 0x17, 0x5f, 0xca, 0xbd, 0x17, 0x85, + 0xea, 0x48, 0xee, 0x73, 0x00, 0x41, 0x62, 0x04, 0xda, 0x83, 0x6a, 0xb9, 0x50, 0x51, 0xbd, 0x14, + 0xaa, 0xfc, 0x38, 0x88, 0x14, 0xaa, 0x17, 0xf5, 0x12, 0x15, 0x8e, 0x5a, 0xc8, 0x2d, 0xf7, 0x08, + 0xc1, 0x58, 0x4b, 0x74, 0xa1, 0xc4, 0x59, 0x18, 0x14, 0xe4, 0x9c, 0x71, 0x34, 0xd9, 0x3f, 0x35, + 0x3c, 0xf3, 0x62, 0xac, 0x14, 0xf3, 0x45, 0x6a, 0xb9, 0xe6, 0x0d, 0x93, 0x16, 0xa5, 0x28, 0xbe, + 0x1f, 0x7e, 0x3d, 0x02, 0x31, 0xc3, 0x20, 0x1e, 0x4a, 0x87, 0xc8, 0x77, 0x0f, 0x63, 0xc4, 0xa7, + 0x61, 0x73, 0x87, 0xfa, 0x09, 0xfb, 0xdc, 0xa7, 0x08, 0xb2, 0x9c, 0x9d, 0x6d, 0x59, 0xd4, 0xf0, + 0xa2, 0xb5, 0xaa, 0x98, 0x05, 0x30, 0xfc, 0x97, 0xe2, 0x10, 0x85, 0x56, 0x5a, 0x54, 0xce, 0xac, + 0x4f, 0xe5, 0x3f, 0x10, 0xec, 0x4f, 0xc4, 0xf1, 0x3f, 0xd2, 0xfb, 0xaa, 0x94, 0x9b, 0x03, 0x9a, + 0x63, 0xd6, 0x97, 0x5c, 0xdd, 0xa5, 0xdd, 0x16, 0xec, 0xef, 0xbe, 0x82, 0x31, 0xa1, 0x85, 0x82, + 0x3a, 0xec, 0x36, 0x7d, 0x71, 0xf2, 0x1c, 0x6a, 0xde, 0xf1, 0x4c, 0x44, 0x75, 0x1c, 0x89, 0x23, + 0x12, 0xd2, 0x33, 0x14, 0x73, 0xcc, 0x8c, 0x5b, 0xee, 0x65, 0x99, 0x7f, 0x87, 0xe0, 0x40, 0x84, + 0xa1, 0xc7, 0xc9, 0x72, 0xea, 0xce, 0x46, 0xe8, 0x87, 0x0f, 0xc3, 0xf6, 0x1a, 0x6d, 0x98, 0x8e, + 0x69, 0x5b, 0x79, 0xab, 0x5e, 0x29, 0xd0, 0x1a, 0x43, 0x39, 0xa0, 0x6d, 0x93, 0xcb, 0x17, 0xd8, + 0x6a, 0xc4, 0x50, 0xd0, 0x19, 0x88, 0x1a, 0x0a, 0xbc, 0x8f, 0x10, 0xe4, 0xd2, 0xf0, 0x8a, 0xa4, + 0x9c, 0x81, 0xed, 0x86, 0x7c, 0x13, 0x49, 0xc6, 0xa8, 0xca, 0xff, 0x03, 0x54, 0xf9, 0x1f, 0xa0, + 0xce, 0x5a, 0xcb, 0xda, 0x36, 0x23, 0x12, 0x06, 0xef, 0x85, 0x21, 0x91, 0x48, 0x9f, 0xd5, 0x20, + 0x5f, 0x98, 0x2f, 0x06, 0xd9, 0xe8, 0x4f, 0xcb, 0xc6, 0xc0, 0x7a, 0xb2, 0x51, 0x83, 0x09, 0x46, + 0xee, 0xa2, 0x6e, 0x2c, 0x52, 0x77, 0xce, 0xae, 0x54, 0x4c, 0xb7, 0x42, 0x2d, 0xb7, 0xdb, 0x3c, + 0x28, 0x30, 0xe8, 0x78, 0x21, 0x2c, 0x83, 0x8a, 0x04, 0xf8, 0xcf, 0xb9, 0xaf, 0x10, 0xec, 0x4b, + 0xd8, 0x54, 0x88, 0xc9, 0x9a, 0x95, 0x5c, 0x65, 0x1b, 0x6f, 0xd5, 0x42, 0x2b, 0xbd, 0x3c, 0x9e, + 0x5f, 0x27, 0x81, 0x73, 0xba, 0x95, 0x24, 0xda, 0x61, 0xfb, 0xd7, 0xd7, 0x61, 0x9f, 0xc9, 0x4e, + 0x1f, 0x03, 0xcf, 0x6f, 0xb0, 0xc3, 0x81, 0x54, 0xb2, 0xc7, 0x4e, 0xc6, 0xf6, 0x58, 0x1e, 0x84, + 0x1f, 0xe4, 0xb0, 0xd3, 0x73, 0x6f, 0xb0, 0x36, 0xec, 0x09, 0xb1, 0xd4, 0xa8, 0x41, 0xcd, 0x6a, + 0x4f, 0xcf, 0xe4, 0x5d, 0x04, 0x4a, 0xdc, 0x8e, 0x42, 0x53, 0x05, 0x06, 0x6b, 0xde, 0x52, 0x83, + 0xf2, 0xb8, 0x83, 0x9a, 0xff, 0xdc, 0xcb, 0xea, 0xbc, 0x25, 0x5a, 0x25, 0x07, 0x35, 0x6b, 0x2c, + 0x5a, 0xf6, 0xad, 0x32, 0x2d, 0x96, 0x68, 0xaf, 0x4b, 0xf4, 0x9e, 0x6c, 0x7a, 0x09, 0x3b, 0x0b, + 0x59, 0xa6, 0x60, 0xbb, 0x1e, 0x7d, 0x25, 0x8a, 0xb5, 0x75, 0xb9, 0x97, 0x15, 0xfb, 0x4d, 0x2a, + 0xd6, 0xff, 0x46, 0xd9, 0xfe, 0x8d, 0xe0, 0x60, 0x2a, 0x46, 0x21, 0xe8, 0x39, 0xd8, 0xd1, 0xa2, + 0xdc, 0xda, 0x0b, 0xb8, 0xcd, 0xf3, 0xb9, 0x57, 0xf1, 0x17, 0xb2, 0x97, 0x5e, 0xb1, 0x64, 0xb5, + 0x70, 0xc0, 0x5d, 0x27, 0xe5, 0x55, 0xd8, 0x5b, 0x65, 0x91, 0xf2, 0x41, 0xd7, 0xca, 0xcb, 0xd3, + 0xeb, 0x8c, 0xf7, 0x4f, 0xf6, 0x4f, 0x0d, 0x68, 0x7b, 0xaa, 0x2d, 0x3d, 0xf2, 0x92, 0x34, 0xc8, + 0x2d, 0x89, 0x2e, 0x1a, 0x03, 0x4c, 0x64, 0x62, 0x02, 0x86, 0x82, 0x78, 0x88, 0xc5, 0x0b, 0x16, + 0x42, 0x9a, 0x64, 0x3a, 0xd4, 0xe4, 0xb6, 0x6c, 0x34, 0xc1, 0xd6, 0xb3, 0xc6, 0x62, 0xd7, 0x82, + 0x1c, 0x87, 0x51, 0x21, 0x88, 0x6e, 0x2c, 0xb6, 0x29, 0x81, 0xab, 0xf2, 0xd8, 0x05, 0x12, 0xd4, + 0x61, 0x6f, 0x2c, 0x8e, 0x1e, 0xf3, 0xbf, 0x26, 0xee, 0xb7, 0x17, 0xe8, 0x92, 0x9f, 0x0f, 0x8d, + 0x03, 0xe8, 0xf6, 0xee, 0xfc, 0x3d, 0x82, 0xc9, 0xe4, 0xd8, 0x82, 0xd7, 0x0c, 0x8c, 0x59, 0x74, + 0x29, 0x38, 0x2c, 0x79, 0xc1, 0x9e, 0x6d, 0x35, 0xa0, 0x8d, 0x58, 0xed, 0xbe, 0x3d, 0x6c, 0x5e, + 0x33, 0x3f, 0xee, 0x82, 0x4d, 0x0c, 0x33, 0xfe, 0x16, 0xc1, 0x16, 0x71, 0xc5, 0xc4, 0x53, 0xb1, + 0xc5, 0x1e, 0xf3, 0x61, 0x40, 0x39, 0xb2, 0x06, 0x4b, 0xce, 0x3c, 0xf7, 0xc6, 0xc7, 0x3f, 0x3d, + 0xbb, 0x9b, 0x99, 0xc5, 0xaf, 0x91, 0x98, 0xaf, 0x1a, 0xfc, 0x03, 0x88, 0x1c, 0xb0, 0xc8, 0x4a, + 0xa0, 0x73, 0x93, 0x78, 0xea, 0x3b, 0x64, 0x45, 0xe4, 0xa4, 0x89, 0xef, 0x20, 0x18, 0x94, 0x63, + 0x1d, 0x5e, 0x1d, 0x80, 0x3c, 0xdb, 0xca, 0xd1, 0xb5, 0x98, 0x0a, 0xb0, 0x47, 0x19, 0xd8, 0x43, + 0x38, 0xb7, 0x3a, 0x58, 0xfc, 0x03, 0x02, 0xdc, 0x3e, 0x70, 0xe2, 0x13, 0x29, 0xdb, 0x25, 0x8d, + 0xc9, 0xca, 0xc9, 0xce, 0x9c, 0x04, 0xda, 0x39, 0x86, 0xf6, 0x0c, 0x7e, 0x25, 0x05, 0xad, 0xef, + 0xed, 0xa9, 0xeb, 0x3f, 0x34, 0x03, 0x1a, 0xbf, 0x78, 0x34, 0xda, 0xa6, 0xbe, 0x54, 0x1a, 0x49, + 0xe3, 0x67, 0x2a, 0x8d, 0xc4, 0xc1, 0x32, 0x77, 0x99, 0xd1, 0xb8, 0x80, 0xcf, 0x75, 0x79, 0x42, + 0x48, 0x78, 0x26, 0xc5, 0x5f, 0x66, 0x60, 0x2c, 0x76, 0x76, 0xc2, 0xa7, 0x56, 0x47, 0x19, 0x37, + 0x1c, 0x2a, 0x2f, 0x77, 0xec, 0x27, 0x08, 0xde, 0x41, 0x8c, 0xe1, 0x6d, 0x84, 0x3f, 0x41, 0x5d, + 0x73, 0x8c, 0x4e, 0x7b, 0x44, 0x8e, 0x8d, 0x64, 0xa5, 0x65, 0x00, 0x6d, 0x12, 0xde, 0x20, 0x42, + 0x2f, 0xf8, 0x42, 0x13, 0x3f, 0x46, 0xb0, 0xa3, 0xf5, 0x22, 0x8f, 0xa7, 0x93, 0xd9, 0x25, 0x4c, + 0x69, 0xca, 0x4c, 0x27, 0x2e, 0x42, 0x0b, 0xca, 0xa4, 0xc8, 0xe3, 0x0f, 0xba, 0x15, 0xa2, 0xed, + 0x8f, 0xd8, 0x21, 0x2b, 0xb2, 0xbb, 0x36, 0xf1, 0x43, 0x04, 0x3b, 0xdb, 0x66, 0x15, 0xdc, 0x01, + 0x60, 0xbf, 0x34, 0x4f, 0x74, 0xe4, 0x23, 0x58, 0x5e, 0x67, 0x2c, 0x2f, 0x63, 0x6d, 0xe3, 0x59, + 0xe2, 0x9f, 0x11, 0xbc, 0x10, 0x19, 0x17, 0xb0, 0xba, 0x1a, 0xc4, 0xe8, 0x24, 0xa3, 0x90, 0x35, + 0xdb, 0x0b, 0x3a, 0x05, 0x46, 0xe7, 0x7d, 0x7c, 0x7d, 0x83, 0xe8, 0xd4, 0x78, 0xfc, 0x48, 0xc6, + 0xfe, 0x44, 0x30, 0x16, 0x7b, 0x4d, 0x4d, 0xab, 0xd7, 0xb4, 0x09, 0x25, 0xad, 0x5e, 0x53, 0xe7, + 0x8b, 0xdc, 0x87, 0x8c, 0xee, 0x55, 0xfc, 0xce, 0x06, 0xd1, 0xd5, 0x8d, 0xc5, 0x08, 0xd5, 0xbf, + 0x10, 0xec, 0x8a, 0xbf, 0x91, 0xe3, 0x4e, 0x31, 0xfb, 0xc7, 0xf4, 0x74, 0xe7, 0x8e, 0x82, 0x6d, + 0x9e, 0xb1, 0xbd, 0x86, 0xdf, 0xdd, 0x38, 0xb6, 0x51, 0x4e, 0x9f, 0x65, 0x60, 0x67, 0xdb, 0x8d, + 0x37, 0xad, 0x16, 0x93, 0xee, 0xed, 0x69, 0xb5, 0x98, 0x78, 0xa5, 0xde, 0xd0, 0xee, 0x1b, 0xd7, + 0x74, 0x52, 0x26, 0x82, 0x26, 0xa9, 0xfb, 0xb0, 0xf2, 0x55, 0x41, 0xfc, 0x1f, 0x04, 0xdb, 0xa2, + 0xb7, 0x5f, 0x4c, 0xd6, 0xc2, 0x2b, 0x74, 0x5f, 0x57, 0x8e, 0xaf, 0xdd, 0x41, 0xa8, 0xf0, 0x11, + 0x57, 0x61, 0x05, 0x2f, 0xf7, 0x50, 0x83, 0xc8, 0x10, 0x10, 0x21, 0xef, 0x95, 0x00, 0xfe, 0x15, + 0xc1, 0x48, 0xcc, 0x25, 0x19, 0xa7, 0x5c, 0x1b, 0x92, 0xef, 0xeb, 0xca, 0x4b, 0x1d, 0x7a, 0x09, + 0x21, 0xae, 0x30, 0x1d, 0xde, 0xc2, 0xe7, 0xbb, 0xd5, 0x21, 0x72, 0x9f, 0x3f, 0x7b, 0xf1, 0xfe, + 0x93, 0x2c, 0x7a, 0xf0, 0x24, 0x8b, 0x1e, 0x3f, 0xc9, 0xa2, 0xcf, 0x9f, 0x66, 0xfb, 0x1e, 0x3c, + 0xcd, 0xf6, 0x3d, 0x7c, 0x9a, 0xed, 0xbb, 0x7e, 0xaa, 0x64, 0xba, 0x0b, 0xf5, 0x82, 0x6a, 0xd8, + 0x15, 0x52, 0x36, 0x2d, 0x4a, 0xca, 0x85, 0xca, 0x31, 0xa7, 0xb8, 0x48, 0x1a, 0x33, 0x64, 0x29, + 0x00, 0x71, 0xfc, 0xe4, 0x31, 0x89, 0xc3, 0x5d, 0xae, 0x52, 0xa7, 0xb0, 0x99, 0x7d, 0xb9, 0x3d, + 0xf1, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x27, 0x6e, 0x1f, 0x8e, 0x1c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc/light-clients/06-solomachine/client/cli/tx.go b/x/ibc/light-clients/06-solomachine/client/cli/tx.go index 4219c6362c..7fa2dd67d7 100644 --- a/x/ibc/light-clients/06-solomachine/client/cli/tx.go +++ b/x/ibc/light-clients/06-solomachine/client/cli/tx.go @@ -27,7 +27,7 @@ func NewCreateClientCmd() *cobra.Command { Use: "create [sequence] [path/to/consensus_state.json]", Short: "create new solo machine client", Long: `create a new solo machine client with the specified identifier and public key - - ConsensusState json example: {"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A/3SXL2ONYaOkxpdR5P8tHTlSlPv1AwQwSFxKRee5JQW"},"diversifier":"diversifier","timestamp":"10"}`, + - ConsensusState json example: {"public_key":{"@type":"/lbm.crypto.secp256k1.PubKey","key":"A/3SXL2ONYaOkxpdR5P8tHTlSlPv1AwQwSFxKRee5JQW"},"diversifier":"diversifier","timestamp":"10"}`, Example: fmt.Sprintf("%s tx ibc %s create [sequence] [path/to/consensus_state] --from node0 --home ../node0/