decentralcardgame-cardchain-client-ts 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DecentralCardGame.cardchain.cardchain/index.js +5 -0
- package/DecentralCardGame.cardchain.cardchain/index.ts +6 -0
- package/DecentralCardGame.cardchain.cardchain/module.ts +1456 -0
- package/DecentralCardGame.cardchain.cardchain/registry.js +83 -0
- package/DecentralCardGame.cardchain.cardchain/registry.ts +87 -0
- package/DecentralCardGame.cardchain.cardchain/rest.js +396 -0
- package/DecentralCardGame.cardchain.cardchain/rest.ts +946 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/card.js +491 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/card.ts +556 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.js +497 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.ts +562 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.js +365 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.ts +416 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.js +93 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.ts +124 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.js +102 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.ts +134 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.js +356 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.ts +415 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.js +241 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.ts +267 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.js +88 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.ts +115 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.js +210 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.ts +255 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.js +67 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.ts +92 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.js +73 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.ts +102 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.js +275 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.ts +324 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.js +2186 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.ts +2617 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.js +85 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.ts +111 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.js +148 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.ts +183 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.js +93 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.ts +124 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.js +4136 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.ts +5125 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.js +554 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.ts +625 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.js +84 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.ts +114 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.js +127 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.ts +161 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.js +148 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.ts +182 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection.js +365 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection.ts +416 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection_proposal.js +93 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection_proposal.ts +124 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/copyright_proposal.js +102 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/copyright_proposal.ts +134 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/council.js +350 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/council.ts +409 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/genesis.js +241 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/genesis.ts +267 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/image.js +88 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/image.ts +115 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/match.js +210 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/match.ts +255 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/match_reporter_proposal.js +67 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/match_reporter_proposal.ts +92 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/num.js +73 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/num.ts +102 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/params.js +255 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/params.ts +324 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/query.js +1970 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/query.ts +2366 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/running_average.js +85 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/running_average.ts +111 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/sell_offer.js +148 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/sell_offer.ts +183 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/server.js +93 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/server.ts +124 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/tx.ts +5125 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/user.js +496 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/user.ts +556 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/vote_right.js +84 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/vote_right.ts +114 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_result.js +127 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_result.ts +161 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_results.js +148 -0
- package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_results.ts +182 -0
- package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.js +192 -0
- package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.js +171 -0
- package/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.ts +247 -0
- package/DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.js +2 -0
- package/DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.ts +2 -0
- package/DecentralCardGame.cardchain.cardchain/types/google/api/annotations.js +2 -0
- package/DecentralCardGame.cardchain.cardchain/types/google/api/annotations.ts +2 -0
- package/DecentralCardGame.cardchain.cardchain/types/google/api/http.js +260 -0
- package/DecentralCardGame.cardchain.cardchain/types/google/api/http.ts +589 -0
- package/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.js +2830 -0
- package/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.ts +3753 -0
- package/DecentralCardGame.cardchain.cardchain/types.js +21 -0
- package/DecentralCardGame.cardchain.cardchain/types.ts +45 -0
- package/client.js +135 -0
- package/client.ts +170 -0
- package/cosmos.auth.v1beta1/index.js +5 -0
- package/cosmos.auth.v1beta1/index.ts +6 -0
- package/cosmos.auth.v1beta1/module.js +62 -0
- package/cosmos.auth.v1beta1/module.ts +102 -0
- package/cosmos.auth.v1beta1/registry.js +2 -0
- package/cosmos.auth.v1beta1/registry.ts +7 -0
- package/cosmos.auth.v1beta1/rest.js +213 -0
- package/cosmos.auth.v1beta1/rest.ts +641 -0
- package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
- package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.ts +324 -0
- package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.js +67 -0
- package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.ts +95 -0
- package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.js +868 -0
- package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.ts +1212 -0
- package/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.auth.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.auth.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.auth.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.auth.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.auth.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.auth.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.auth.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.auth.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.auth.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.auth.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.auth.v1beta1/types.js +4 -0
- package/cosmos.auth.v1beta1/types.ts +11 -0
- package/cosmos.authz.v1beta1/index.js +5 -0
- package/cosmos.authz.v1beta1/index.ts +6 -0
- package/cosmos.authz.v1beta1/module.js +140 -0
- package/cosmos.authz.v1beta1/module.ts +207 -0
- package/cosmos.authz.v1beta1/registry.js +9 -0
- package/cosmos.authz.v1beta1/registry.ts +13 -0
- package/cosmos.authz.v1beta1/rest.js +131 -0
- package/cosmos.authz.v1beta1/rest.ts +604 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.js +244 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.ts +325 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.js +128 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.ts +175 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.js +54 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.ts +78 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.js +394 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.ts +516 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.js +362 -0
- package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.ts +493 -0
- package/cosmos.authz.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +773 -0
- package/cosmos.authz.v1beta1/types/cosmos/base/abci/v1beta1/abci.ts +989 -0
- package/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.authz.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.authz.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.authz.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.authz.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.authz.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.authz.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/duration.js +84 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.authz.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.authz.v1beta1/types/tendermint/abci/types.js +3447 -0
- package/cosmos.authz.v1beta1/types/tendermint/abci/types.ts +4107 -0
- package/cosmos.authz.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/cosmos.authz.v1beta1/types/tendermint/crypto/keys.ts +129 -0
- package/cosmos.authz.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/cosmos.authz.v1beta1/types/tendermint/crypto/proof.ts +439 -0
- package/cosmos.authz.v1beta1/types/tendermint/types/params.js +378 -0
- package/cosmos.authz.v1beta1/types/tendermint/types/params.ts +514 -0
- package/cosmos.authz.v1beta1/types/tendermint/types/types.js +1207 -0
- package/cosmos.authz.v1beta1/types/tendermint/types/types.ts +1452 -0
- package/cosmos.authz.v1beta1/types/tendermint/types/validator.js +254 -0
- package/cosmos.authz.v1beta1/types/tendermint/types/validator.ts +308 -0
- package/cosmos.authz.v1beta1/types/tendermint/version/types.js +133 -0
- package/cosmos.authz.v1beta1/types/tendermint/version/types.ts +184 -0
- package/cosmos.authz.v1beta1/types.js +7 -0
- package/cosmos.authz.v1beta1/types.ts +17 -0
- package/cosmos.bank.v1beta1/index.js +5 -0
- package/cosmos.bank.v1beta1/index.ts +6 -0
- package/cosmos.bank.v1beta1/module.js +125 -0
- package/cosmos.bank.v1beta1/module.ts +182 -0
- package/cosmos.bank.v1beta1/registry.js +7 -0
- package/cosmos.bank.v1beta1/registry.ts +11 -0
- package/cosmos.bank.v1beta1/rest.js +222 -0
- package/cosmos.bank.v1beta1/rest.ts +656 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.js +50 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.ts +77 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.js +455 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.ts +604 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.js +154 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.ts +203 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.js +1014 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.ts +1366 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.js +219 -0
- package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.ts +289 -0
- package/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.bank.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.bank.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.bank.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.bank.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.bank.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.bank.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.bank.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.bank.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.bank.v1beta1/types.js +11 -0
- package/cosmos.bank.v1beta1/types.ts +25 -0
- package/cosmos.base.tendermint.v1beta1/index.js +5 -0
- package/cosmos.base.tendermint.v1beta1/index.ts +6 -0
- package/cosmos.base.tendermint.v1beta1/module.js +70 -0
- package/cosmos.base.tendermint.v1beta1/module.ts +110 -0
- package/cosmos.base.tendermint.v1beta1/registry.js +2 -0
- package/cosmos.base.tendermint.v1beta1/registry.ts +7 -0
- package/cosmos.base.tendermint.v1beta1/rest.js +209 -0
- package/cosmos.base.tendermint.v1beta1/rest.ts +1147 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.js +1281 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.ts +1646 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.js +350 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.ts +442 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.base.tendermint.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.base.tendermint.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.base.tendermint.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.base.tendermint.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.ts +129 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.ts +439 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.js +352 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.ts +423 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.js +86 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.ts +112 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.js +343 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.ts +412 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.js +1207 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.ts +1452 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.js +254 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.ts +308 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.js +133 -0
- package/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.ts +184 -0
- package/cosmos.base.tendermint.v1beta1/types.js +8 -0
- package/cosmos.base.tendermint.v1beta1/types.ts +19 -0
- package/cosmos.crisis.v1beta1/index.js +5 -0
- package/cosmos.crisis.v1beta1/index.ts +6 -0
- package/cosmos.crisis.v1beta1/module.js +81 -0
- package/cosmos.crisis.v1beta1/module.ts +129 -0
- package/cosmos.crisis.v1beta1/registry.js +5 -0
- package/cosmos.crisis.v1beta1/registry.ts +9 -0
- package/cosmos.crisis.v1beta1/rest.js +83 -0
- package/cosmos.crisis.v1beta1/rest.ts +152 -0
- package/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.js +51 -0
- package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.ts +79 -0
- package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.js +111 -0
- package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.ts +159 -0
- package/cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.crisis.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.crisis.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.crisis.v1beta1/types.js +1 -0
- package/cosmos.crisis.v1beta1/types.ts +5 -0
- package/cosmos.distribution.v1beta1/index.js +5 -0
- package/cosmos.distribution.v1beta1/index.ts +6 -0
- package/cosmos.distribution.v1beta1/module.js +189 -0
- package/cosmos.distribution.v1beta1/module.ts +266 -0
- package/cosmos.distribution.v1beta1/registry.js +11 -0
- package/cosmos.distribution.v1beta1/registry.ts +15 -0
- package/cosmos.distribution.v1beta1/rest.js +214 -0
- package/cosmos.distribution.v1beta1/rest.ts +557 -0
- package/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.js +737 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.ts +945 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.js +656 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.ts +849 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.js +926 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.ts +1289 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.js +396 -0
- package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.ts +550 -0
- package/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.distribution.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.distribution.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.distribution.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.distribution.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.distribution.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.distribution.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.distribution.v1beta1/types.js +20 -0
- package/cosmos.distribution.v1beta1/types.ts +43 -0
- package/cosmos.evidence.v1beta1/index.js +5 -0
- package/cosmos.evidence.v1beta1/index.ts +6 -0
- package/cosmos.evidence.v1beta1/module.js +84 -0
- package/cosmos.evidence.v1beta1/module.ts +131 -0
- package/cosmos.evidence.v1beta1/registry.js +5 -0
- package/cosmos.evidence.v1beta1/registry.ts +9 -0
- package/cosmos.evidence.v1beta1/rest.js +115 -0
- package/cosmos.evidence.v1beta1/rest.ts +402 -0
- package/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.js +124 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.ts +161 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.js +50 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.ts +73 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.js +254 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.ts +343 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.js +154 -0
- package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.ts +213 -0
- package/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.evidence.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.evidence.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.evidence.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.evidence.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.evidence.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.evidence.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.evidence.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.evidence.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.evidence.v1beta1/types.js +2 -0
- package/cosmos.evidence.v1beta1/types.ts +7 -0
- package/cosmos.feegrant.v1beta1/index.js +5 -0
- package/cosmos.feegrant.v1beta1/index.ts +6 -0
- package/cosmos.feegrant.v1beta1/module.js +113 -0
- package/cosmos.feegrant.v1beta1/module.ts +170 -0
- package/cosmos.feegrant.v1beta1/registry.js +7 -0
- package/cosmos.feegrant.v1beta1/registry.ts +11 -0
- package/cosmos.feegrant.v1beta1/rest.js +130 -0
- package/cosmos.feegrant.v1beta1/rest.ts +452 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.js +307 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.ts +409 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.js +52 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.ts +76 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.js +357 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.ts +484 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.js +205 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.ts +294 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.feegrant.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.feegrant.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.feegrant.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.feegrant.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.feegrant.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.feegrant.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/duration.js +84 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.feegrant.v1beta1/types.js +5 -0
- package/cosmos.feegrant.v1beta1/types.ts +13 -0
- package/cosmos.gov.v1/index.js +5 -0
- package/cosmos.gov.v1/index.ts +6 -0
- package/cosmos.gov.v1/module.js +167 -0
- package/cosmos.gov.v1/module.ts +244 -0
- package/cosmos.gov.v1/registry.js +11 -0
- package/cosmos.gov.v1/registry.ts +15 -0
- package/cosmos.gov.v1/rest.js +242 -0
- package/cosmos.gov.v1/rest.ts +798 -0
- package/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.js +162 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.ts +208 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/gov.js +766 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/gov.ts +925 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/query.js +917 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/query.ts +1202 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/tx.js +590 -0
- package/cosmos.gov.v1/types/cosmos/gov/v1/tx.ts +763 -0
- package/cosmos.gov.v1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.gov.v1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.gov.v1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.gov.v1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.gov.v1/types/gogoproto/gogo.js +2 -0
- package/cosmos.gov.v1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.gov.v1/types/google/api/annotations.js +2 -0
- package/cosmos.gov.v1/types/google/api/annotations.ts +2 -0
- package/cosmos.gov.v1/types/google/api/http.js +260 -0
- package/cosmos.gov.v1/types/google/api/http.ts +589 -0
- package/cosmos.gov.v1/types/google/protobuf/any.js +99 -0
- package/cosmos.gov.v1/types/google/protobuf/any.ts +240 -0
- package/cosmos.gov.v1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.gov.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.gov.v1/types/google/protobuf/duration.js +84 -0
- package/cosmos.gov.v1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.gov.v1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.gov.v1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.gov.v1/types.js +9 -0
- package/cosmos.gov.v1/types.ts +21 -0
- package/cosmos.gov.v1beta1/index.js +5 -0
- package/cosmos.gov.v1beta1/index.ts +6 -0
- package/cosmos.gov.v1beta1/module.js +169 -0
- package/cosmos.gov.v1beta1/module.ts +246 -0
- package/cosmos.gov.v1beta1/registry.js +11 -0
- package/cosmos.gov.v1beta1/registry.ts +15 -0
- package/cosmos.gov.v1beta1/rest.js +242 -0
- package/cosmos.gov.v1beta1/rest.ts +864 -0
- package/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.js +162 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.ts +206 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.js +832 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.ts +1015 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.js +917 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.ts +1200 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.js +467 -0
- package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.ts +612 -0
- package/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.gov.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.gov.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.gov.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.gov.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.gov.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.gov.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/duration.js +84 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.gov.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.gov.v1beta1/types.js +10 -0
- package/cosmos.gov.v1beta1/types.ts +23 -0
- package/cosmos.group.v1/index.js +5 -0
- package/cosmos.group.v1/index.ts +6 -0
- package/cosmos.group.v1/module.js +421 -0
- package/cosmos.group.v1/module.ts +598 -0
- package/cosmos.group.v1/registry.js +31 -0
- package/cosmos.group.v1/registry.ts +35 -0
- package/cosmos.group.v1/rest.js +351 -0
- package/cosmos.group.v1/rest.ts +1162 -0
- package/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.group.v1/types/cosmos/group/v1/events.js +433 -0
- package/cosmos.group.v1/types/cosmos/group/v1/events.ts +568 -0
- package/cosmos.group.v1/types/cosmos/group/v1/genesis.js +177 -0
- package/cosmos.group.v1/types/cosmos/group/v1/genesis.ts +228 -0
- package/cosmos.group.v1/types/cosmos/group/v1/query.js +1468 -0
- package/cosmos.group.v1/types/cosmos/group/v1/query.ts +1897 -0
- package/cosmos.group.v1/types/cosmos/group/v1/tx.js +1621 -0
- package/cosmos.group.v1/types/cosmos/group/v1/tx.ts +2113 -0
- package/cosmos.group.v1/types/cosmos/group/v1/types.js +1105 -0
- package/cosmos.group.v1/types/cosmos/group/v1/types.ts +1422 -0
- package/cosmos.group.v1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.group.v1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.group.v1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.group.v1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.group.v1/types/gogoproto/gogo.js +2 -0
- package/cosmos.group.v1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.group.v1/types/google/api/annotations.js +2 -0
- package/cosmos.group.v1/types/google/api/annotations.ts +2 -0
- package/cosmos.group.v1/types/google/api/http.js +260 -0
- package/cosmos.group.v1/types/google/api/http.ts +589 -0
- package/cosmos.group.v1/types/google/protobuf/any.js +99 -0
- package/cosmos.group.v1/types/google/protobuf/any.ts +240 -0
- package/cosmos.group.v1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.group.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.group.v1/types/google/protobuf/duration.js +84 -0
- package/cosmos.group.v1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.group.v1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.group.v1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.group.v1/types.js +21 -0
- package/cosmos.group.v1/types.ts +45 -0
- package/cosmos.mint.v1beta1/index.js +5 -0
- package/cosmos.mint.v1beta1/index.ts +6 -0
- package/cosmos.mint.v1beta1/module.js +60 -0
- package/cosmos.mint.v1beta1/module.ts +100 -0
- package/cosmos.mint.v1beta1/registry.js +2 -0
- package/cosmos.mint.v1beta1/registry.ts +7 -0
- package/cosmos.mint.v1beta1/rest.js +128 -0
- package/cosmos.mint.v1beta1/rest.ts +253 -0
- package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.js +63 -0
- package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.ts +92 -0
- package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.js +179 -0
- package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.ts +234 -0
- package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.js +298 -0
- package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.ts +412 -0
- package/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.mint.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.mint.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.mint.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.mint.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.mint.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.mint.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.mint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.mint.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.mint.v1beta1/types.js +3 -0
- package/cosmos.mint.v1beta1/types.ts +9 -0
- package/cosmos.nft.v1beta1/index.js +5 -0
- package/cosmos.nft.v1beta1/index.ts +6 -0
- package/cosmos.nft.v1beta1/module.js +68 -0
- package/cosmos.nft.v1beta1/module.ts +108 -0
- package/cosmos.nft.v1beta1/registry.js +2 -0
- package/cosmos.nft.v1beta1/registry.ts +7 -0
- package/cosmos.nft.v1beta1/rest.js +187 -0
- package/cosmos.nft.v1beta1/rest.ts +685 -0
- package/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.js +198 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.ts +251 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.js +126 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.ts +163 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.js +183 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.ts +240 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.js +752 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.ts +964 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.js +120 -0
- package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.ts +173 -0
- package/cosmos.nft.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.nft.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.nft.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.nft.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.nft.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.nft.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.nft.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.nft.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.nft.v1beta1/types.js +7 -0
- package/cosmos.nft.v1beta1/types.ts +17 -0
- package/cosmos.params.v1beta1/index.js +5 -0
- package/cosmos.params.v1beta1/index.ts +6 -0
- package/cosmos.params.v1beta1/module.js +62 -0
- package/cosmos.params.v1beta1/module.ts +102 -0
- package/cosmos.params.v1beta1/registry.js +2 -0
- package/cosmos.params.v1beta1/registry.ts +7 -0
- package/cosmos.params.v1beta1/rest.js +116 -0
- package/cosmos.params.v1beta1/rest.ts +220 -0
- package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.js +133 -0
- package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.ts +174 -0
- package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.js +257 -0
- package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.ts +364 -0
- package/cosmos.params.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.params.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.params.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.params.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.params.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.params.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.params.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.params.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.params.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.params.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.params.v1beta1/types.js +4 -0
- package/cosmos.params.v1beta1/types.ts +11 -0
- package/cosmos.slashing.v1beta1/index.js +5 -0
- package/cosmos.slashing.v1beta1/index.ts +6 -0
- package/cosmos.slashing.v1beta1/module.js +92 -0
- package/cosmos.slashing.v1beta1/module.ts +139 -0
- package/cosmos.slashing.v1beta1/registry.js +5 -0
- package/cosmos.slashing.v1beta1/registry.ts +9 -0
- package/cosmos.slashing.v1beta1/rest.js +129 -0
- package/cosmos.slashing.v1beta1/rest.ts +368 -0
- package/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.js +279 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.ts +364 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.js +300 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.ts +411 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.js +275 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.ts +352 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.js +91 -0
- package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.ts +141 -0
- package/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.slashing.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.slashing.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.slashing.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.slashing.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.slashing.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.slashing.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.slashing.v1beta1/types/google/protobuf/duration.js +84 -0
- package/cosmos.slashing.v1beta1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.slashing.v1beta1/types.js +6 -0
- package/cosmos.slashing.v1beta1/types.ts +15 -0
- package/cosmos.staking.v1beta1/index.js +5 -0
- package/cosmos.staking.v1beta1/index.ts +6 -0
- package/cosmos.staking.v1beta1/module.js +243 -0
- package/cosmos.staking.v1beta1/module.ts +340 -0
- package/cosmos.staking.v1beta1/registry.js +15 -0
- package/cosmos.staking.v1beta1/registry.ts +19 -0
- package/cosmos.staking.v1beta1/rest.js +308 -0
- package/cosmos.staking.v1beta1/rest.ts +1239 -0
- package/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.js +184 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.ts +245 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.js +259 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.ts +322 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.js +1568 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.ts +2109 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.js +1436 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.ts +1829 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.js +768 -0
- package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.ts +1005 -0
- package/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.staking.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.staking.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.staking.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.staking.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.staking.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.staking.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/duration.js +84 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.staking.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.staking.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/cosmos.staking.v1beta1/types/tendermint/crypto/keys.ts +129 -0
- package/cosmos.staking.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/cosmos.staking.v1beta1/types/tendermint/crypto/proof.ts +439 -0
- package/cosmos.staking.v1beta1/types/tendermint/types/types.js +1207 -0
- package/cosmos.staking.v1beta1/types/tendermint/types/types.ts +1452 -0
- package/cosmos.staking.v1beta1/types/tendermint/types/validator.js +254 -0
- package/cosmos.staking.v1beta1/types/tendermint/types/validator.ts +308 -0
- package/cosmos.staking.v1beta1/types/tendermint/version/types.js +133 -0
- package/cosmos.staking.v1beta1/types/tendermint/version/types.ts +184 -0
- package/cosmos.staking.v1beta1/types.js +24 -0
- package/cosmos.staking.v1beta1/types.ts +51 -0
- package/cosmos.tx.v1beta1/index.js +5 -0
- package/cosmos.tx.v1beta1/index.ts +6 -0
- package/cosmos.tx.v1beta1/module.js +82 -0
- package/cosmos.tx.v1beta1/module.ts +122 -0
- package/cosmos.tx.v1beta1/registry.js +2 -0
- package/cosmos.tx.v1beta1/registry.ts +7 -0
- package/cosmos.tx.v1beta1/rest.js +256 -0
- package/cosmos.tx.v1beta1/rest.ts +1372 -0
- package/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +803 -0
- package/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.ts +1040 -0
- package/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.js +147 -0
- package/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.ts +195 -0
- package/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.js +449 -0
- package/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.ts +556 -0
- package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.js +802 -0
- package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.ts +1057 -0
- package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.js +959 -0
- package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.ts +1355 -0
- package/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.tx.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.tx.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.tx.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.tx.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.tx.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.tx.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/duration.js +84 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/duration.ts +187 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.tx.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.tx.v1beta1/types/tendermint/abci/types.js +3486 -0
- package/cosmos.tx.v1beta1/types/tendermint/abci/types.ts +4154 -0
- package/cosmos.tx.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/cosmos.tx.v1beta1/types/tendermint/crypto/keys.ts +129 -0
- package/cosmos.tx.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/cosmos.tx.v1beta1/types/tendermint/crypto/proof.ts +439 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/block.js +86 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/block.ts +112 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/evidence.js +343 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/evidence.ts +412 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/params.js +378 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/params.ts +514 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/types.js +1207 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/types.ts +1452 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/validator.js +254 -0
- package/cosmos.tx.v1beta1/types/tendermint/types/validator.ts +308 -0
- package/cosmos.tx.v1beta1/types/tendermint/version/types.js +133 -0
- package/cosmos.tx.v1beta1/types/tendermint/version/types.ts +184 -0
- package/cosmos.tx.v1beta1/types.js +14 -0
- package/cosmos.tx.v1beta1/types.ts +31 -0
- package/cosmos.upgrade.v1beta1/index.js +5 -0
- package/cosmos.upgrade.v1beta1/index.ts +6 -0
- package/cosmos.upgrade.v1beta1/module.js +113 -0
- package/cosmos.upgrade.v1beta1/module.ts +170 -0
- package/cosmos.upgrade.v1beta1/registry.js +7 -0
- package/cosmos.upgrade.v1beta1/registry.ts +11 -0
- package/cosmos.upgrade.v1beta1/rest.js +162 -0
- package/cosmos.upgrade.v1beta1/rest.ts +468 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.js +501 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.ts +728 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.js +183 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.ts +284 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
- package/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.upgrade.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.upgrade.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.upgrade.v1beta1/types/google/api/annotations.js +2 -0
- package/cosmos.upgrade.v1beta1/types/google/api/annotations.ts +2 -0
- package/cosmos.upgrade.v1beta1/types/google/api/http.js +260 -0
- package/cosmos.upgrade.v1beta1/types/google/api/http.ts +589 -0
- package/cosmos.upgrade.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.upgrade.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.ts +216 -0
- package/cosmos.upgrade.v1beta1/types.js +5 -0
- package/cosmos.upgrade.v1beta1/types.ts +13 -0
- package/cosmos.vesting.v1beta1/index.js +5 -0
- package/cosmos.vesting.v1beta1/index.ts +6 -0
- package/cosmos.vesting.v1beta1/module.js +140 -0
- package/cosmos.vesting.v1beta1/module.ts +207 -0
- package/cosmos.vesting.v1beta1/registry.js +9 -0
- package/cosmos.vesting.v1beta1/registry.ts +13 -0
- package/cosmos.vesting.v1beta1/rest.js +83 -0
- package/cosmos.vesting.v1beta1/rest.ts +297 -0
- package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
- package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.ts +324 -0
- package/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
- package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.js +383 -0
- package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.ts +540 -0
- package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.js +422 -0
- package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.ts +529 -0
- package/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
- package/cosmos.vesting.v1beta1/types/gogoproto/gogo.js +2 -0
- package/cosmos.vesting.v1beta1/types/gogoproto/gogo.ts +2 -0
- package/cosmos.vesting.v1beta1/types/google/protobuf/any.js +99 -0
- package/cosmos.vesting.v1beta1/types/google/protobuf/any.ts +240 -0
- package/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
- package/cosmos.vesting.v1beta1/types.js +7 -0
- package/cosmos.vesting.v1beta1/types.ts +17 -0
- package/env.js +1 -0
- package/env.ts +7 -0
- package/helpers.js +11 -0
- package/helpers.ts +32 -0
- package/ibc.applications.interchain_accounts.controller.v1/index.js +5 -0
- package/ibc.applications.interchain_accounts.controller.v1/index.ts +6 -0
- package/ibc.applications.interchain_accounts.controller.v1/module.js +58 -0
- package/ibc.applications.interchain_accounts.controller.v1/module.ts +98 -0
- package/ibc.applications.interchain_accounts.controller.v1/registry.js +2 -0
- package/ibc.applications.interchain_accounts.controller.v1/registry.ts +7 -0
- package/ibc.applications.interchain_accounts.controller.v1/rest.js +114 -0
- package/ibc.applications.interchain_accounts.controller.v1/rest.ts +203 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.js +2 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.ts +2 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.js +2 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.ts +2 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.js +260 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.ts +589 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.js +2830 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.js +47 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.ts +75 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.js +193 -0
- package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.ts +274 -0
- package/ibc.applications.interchain_accounts.controller.v1/types.js +2 -0
- package/ibc.applications.interchain_accounts.controller.v1/types.ts +7 -0
- package/ibc.applications.interchain_accounts.host.v1/index.js +5 -0
- package/ibc.applications.interchain_accounts.host.v1/index.ts +6 -0
- package/ibc.applications.interchain_accounts.host.v1/module.js +58 -0
- package/ibc.applications.interchain_accounts.host.v1/module.ts +98 -0
- package/ibc.applications.interchain_accounts.host.v1/registry.js +2 -0
- package/ibc.applications.interchain_accounts.host.v1/registry.ts +7 -0
- package/ibc.applications.interchain_accounts.host.v1/rest.js +100 -0
- package/ibc.applications.interchain_accounts.host.v1/rest.ts +183 -0
- package/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.js +2 -0
- package/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.ts +2 -0
- package/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.js +2 -0
- package/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.ts +2 -0
- package/ibc.applications.interchain_accounts.host.v1/types/google/api/http.js +260 -0
- package/ibc.applications.interchain_accounts.host.v1/types/google/api/http.ts +589 -0
- package/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.js +2830 -0
- package/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.js +63 -0
- package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.ts +92 -0
- package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.js +94 -0
- package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.ts +141 -0
- package/ibc.applications.interchain_accounts.host.v1/types.js +2 -0
- package/ibc.applications.interchain_accounts.host.v1/types.ts +7 -0
- package/ibc.applications.transfer.v1/index.js +5 -0
- package/ibc.applications.transfer.v1/index.ts +6 -0
- package/ibc.applications.transfer.v1/module.js +86 -0
- package/ibc.applications.transfer.v1/module.ts +133 -0
- package/ibc.applications.transfer.v1/registry.js +5 -0
- package/ibc.applications.transfer.v1/registry.ts +9 -0
- package/ibc.applications.transfer.v1/rest.js +157 -0
- package/ibc.applications.transfer.v1/rest.ts +538 -0
- package/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.ts +261 -0
- package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
- package/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.js +171 -0
- package/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.ts +247 -0
- package/ibc.applications.transfer.v1/types/gogoproto/gogo.js +2 -0
- package/ibc.applications.transfer.v1/types/gogoproto/gogo.ts +2 -0
- package/ibc.applications.transfer.v1/types/google/api/annotations.js +2 -0
- package/ibc.applications.transfer.v1/types/google/api/annotations.ts +2 -0
- package/ibc.applications.transfer.v1/types/google/api/http.js +260 -0
- package/ibc.applications.transfer.v1/types/google/api/http.ts +589 -0
- package/ibc.applications.transfer.v1/types/google/protobuf/any.js +99 -0
- package/ibc.applications.transfer.v1/types/google/protobuf/any.ts +240 -0
- package/ibc.applications.transfer.v1/types/google/protobuf/descriptor.js +2830 -0
- package/ibc.applications.transfer.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/ibc.applications.transfer.v1/types/google/protobuf/timestamp.js +84 -0
- package/ibc.applications.transfer.v1/types/google/protobuf/timestamp.ts +216 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.js +75 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.ts +100 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.js +483 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.ts +659 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.js +110 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.ts +168 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.js +186 -0
- package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.ts +265 -0
- package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.js +448 -0
- package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.ts +608 -0
- package/ibc.applications.transfer.v1/types.js +3 -0
- package/ibc.applications.transfer.v1/types.ts +9 -0
- package/ibc.core.channel.v1/index.js +5 -0
- package/ibc.core.channel.v1/index.ts +6 -0
- package/ibc.core.channel.v1/module.js +72 -0
- package/ibc.core.channel.v1/module.ts +112 -0
- package/ibc.core.channel.v1/registry.js +2 -0
- package/ibc.core.channel.v1/registry.ts +7 -0
- package/ibc.core.channel.v1/rest.js +323 -0
- package/ibc.core.channel.v1/rest.ts +1375 -0
- package/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
- package/ibc.core.channel.v1/types/cosmos_proto/cosmos.js +171 -0
- package/ibc.core.channel.v1/types/cosmos_proto/cosmos.ts +247 -0
- package/ibc.core.channel.v1/types/gogoproto/gogo.js +2 -0
- package/ibc.core.channel.v1/types/gogoproto/gogo.ts +2 -0
- package/ibc.core.channel.v1/types/google/api/annotations.js +2 -0
- package/ibc.core.channel.v1/types/google/api/annotations.ts +2 -0
- package/ibc.core.channel.v1/types/google/api/http.js +260 -0
- package/ibc.core.channel.v1/types/google/api/http.ts +589 -0
- package/ibc.core.channel.v1/types/google/protobuf/any.js +99 -0
- package/ibc.core.channel.v1/types/google/protobuf/any.ts +240 -0
- package/ibc.core.channel.v1/types/google/protobuf/descriptor.js +2830 -0
- package/ibc.core.channel.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/ibc.core.channel.v1/types/google/protobuf/timestamp.js +84 -0
- package/ibc.core.channel.v1/types/google/protobuf/timestamp.ts +216 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.js +714 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.ts +905 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.js +254 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.ts +301 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/query.js +1866 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/query.ts +2472 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.js +1425 -0
- package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.ts +1784 -0
- package/ibc.core.channel.v1/types/ibc/core/client/v1/client.js +448 -0
- package/ibc.core.channel.v1/types/ibc/core/client/v1/client.ts +608 -0
- package/ibc.core.channel.v1/types.js +9 -0
- package/ibc.core.channel.v1/types.ts +21 -0
- package/ibc.core.client.v1/index.js +5 -0
- package/ibc.core.client.v1/index.ts +6 -0
- package/ibc.core.client.v1/module.js +74 -0
- package/ibc.core.client.v1/module.ts +114 -0
- package/ibc.core.client.v1/registry.js +2 -0
- package/ibc.core.client.v1/registry.ts +7 -0
- package/ibc.core.client.v1/rest.js +218 -0
- package/ibc.core.client.v1/rest.ts +1084 -0
- package/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
- package/ibc.core.client.v1/types/cosmos_proto/cosmos.js +171 -0
- package/ibc.core.client.v1/types/cosmos_proto/cosmos.ts +247 -0
- package/ibc.core.client.v1/types/gogoproto/gogo.js +2 -0
- package/ibc.core.client.v1/types/gogoproto/gogo.ts +2 -0
- package/ibc.core.client.v1/types/google/api/annotations.js +2 -0
- package/ibc.core.client.v1/types/google/api/annotations.ts +2 -0
- package/ibc.core.client.v1/types/google/api/http.js +260 -0
- package/ibc.core.client.v1/types/google/api/http.ts +589 -0
- package/ibc.core.client.v1/types/google/protobuf/any.js +99 -0
- package/ibc.core.client.v1/types/google/protobuf/any.ts +240 -0
- package/ibc.core.client.v1/types/google/protobuf/descriptor.js +2830 -0
- package/ibc.core.client.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/ibc.core.client.v1/types/google/protobuf/timestamp.js +84 -0
- package/ibc.core.client.v1/types/google/protobuf/timestamp.ts +216 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/client.js +448 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/client.ts +608 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/genesis.js +287 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/genesis.ts +357 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/query.js +1026 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/query.ts +1390 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/tx.js +509 -0
- package/ibc.core.client.v1/types/ibc/core/client/v1/tx.ts +691 -0
- package/ibc.core.client.v1/types.js +10 -0
- package/ibc.core.client.v1/types.ts +23 -0
- package/ibc.core.connection.v1/index.js +5 -0
- package/ibc.core.connection.v1/index.ts +6 -0
- package/ibc.core.connection.v1/module.js +70 -0
- package/ibc.core.connection.v1/module.ts +110 -0
- package/ibc.core.connection.v1/registry.js +2 -0
- package/ibc.core.connection.v1/registry.ts +7 -0
- package/ibc.core.connection.v1/rest.js +177 -0
- package/ibc.core.connection.v1/rest.ts +852 -0
- package/ibc.core.connection.v1/types/confio/proofs.js +1120 -0
- package/ibc.core.connection.v1/types/confio/proofs.ts +1402 -0
- package/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
- package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
- package/ibc.core.connection.v1/types/cosmos_proto/cosmos.js +171 -0
- package/ibc.core.connection.v1/types/cosmos_proto/cosmos.ts +247 -0
- package/ibc.core.connection.v1/types/gogoproto/gogo.js +2 -0
- package/ibc.core.connection.v1/types/gogoproto/gogo.ts +2 -0
- package/ibc.core.connection.v1/types/google/api/annotations.js +2 -0
- package/ibc.core.connection.v1/types/google/api/annotations.ts +2 -0
- package/ibc.core.connection.v1/types/google/api/http.js +260 -0
- package/ibc.core.connection.v1/types/google/api/http.ts +589 -0
- package/ibc.core.connection.v1/types/google/protobuf/any.js +99 -0
- package/ibc.core.connection.v1/types/google/protobuf/any.ts +240 -0
- package/ibc.core.connection.v1/types/google/protobuf/descriptor.js +2830 -0
- package/ibc.core.connection.v1/types/google/protobuf/descriptor.ts +3753 -0
- package/ibc.core.connection.v1/types/google/protobuf/timestamp.js +84 -0
- package/ibc.core.connection.v1/types/google/protobuf/timestamp.ts +216 -0
- package/ibc.core.connection.v1/types/ibc/core/client/v1/client.js +448 -0
- package/ibc.core.connection.v1/types/ibc/core/client/v1/client.ts +608 -0
- package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.js +223 -0
- package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.ts +299 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.js +537 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.ts +698 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.js +120 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.ts +152 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/query.js +684 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/query.ts +932 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.js +705 -0
- package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.ts +908 -0
- package/ibc.core.connection.v1/types/proofs.js +1126 -0
- package/ibc.core.connection.v1/types/proofs.ts +1408 -0
- package/ibc.core.connection.v1/types.js +8 -0
- package/ibc.core.connection.v1/types.ts +19 -0
- package/index.js +62 -0
- package/index.ts +71 -0
- package/lib/DecentralCardGame.cardchain.cardchain/index.js +5 -0
- package/lib/DecentralCardGame.cardchain.cardchain/module.js +1019 -0
- package/lib/DecentralCardGame.cardchain.cardchain/registry.js +83 -0
- package/lib/DecentralCardGame.cardchain.cardchain/rest.js +396 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/card.js +491 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.js +497 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.js +365 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.js +93 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.js +102 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.js +356 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.js +241 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.js +88 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.js +210 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.js +67 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.js +73 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.js +275 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.js +2186 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.js +85 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.js +148 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.js +93 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.js +4136 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.js +554 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.js +84 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.js +127 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.js +148 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/collection.js +365 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/collection_proposal.js +93 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/copyright_proposal.js +102 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/council.js +350 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/genesis.js +241 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/image.js +88 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/match.js +210 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/match_reporter_proposal.js +67 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/num.js +73 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/params.js +275 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/query.js +1970 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/running_average.js +85 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/sell_offer.js +148 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/server.js +93 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/tx.js +4137 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/user.js +496 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/vote_right.js +84 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_result.js +127 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_results.js +148 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.js +171 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.js +2 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/google/api/annotations.js +2 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/google/api/http.js +260 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.js +2830 -0
- package/lib/DecentralCardGame.cardchain.cardchain/types.js +21 -0
- package/lib/client.js +135 -0
- package/lib/cosmos.auth.v1beta1/index.js +5 -0
- package/lib/cosmos.auth.v1beta1/module.js +62 -0
- package/lib/cosmos.auth.v1beta1/registry.js +2 -0
- package/lib/cosmos.auth.v1beta1/rest.js +213 -0
- package/lib/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
- package/lib/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.js +67 -0
- package/lib/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.js +868 -0
- package/lib/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.auth.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.auth.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.auth.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.auth.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.auth.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.auth.v1beta1/types.js +4 -0
- package/lib/cosmos.authz.v1beta1/index.js +5 -0
- package/lib/cosmos.authz.v1beta1/module.js +140 -0
- package/lib/cosmos.authz.v1beta1/registry.js +9 -0
- package/lib/cosmos.authz.v1beta1/rest.js +131 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.js +244 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.js +128 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.js +54 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.js +394 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.js +362 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +773 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.authz.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.authz.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.authz.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.authz.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.authz.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.authz.v1beta1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.authz.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/abci/types.js +3447 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/types/params.js +378 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/types/types.js +1207 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/types/validator.js +254 -0
- package/lib/cosmos.authz.v1beta1/types/tendermint/version/types.js +133 -0
- package/lib/cosmos.authz.v1beta1/types.js +7 -0
- package/lib/cosmos.bank.v1beta1/index.js +5 -0
- package/lib/cosmos.bank.v1beta1/module.js +125 -0
- package/lib/cosmos.bank.v1beta1/registry.js +7 -0
- package/lib/cosmos.bank.v1beta1/rest.js +222 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.js +50 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.js +455 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.js +154 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.js +1014 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.js +219 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.bank.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.bank.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.bank.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.bank.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.bank.v1beta1/types.js +11 -0
- package/lib/cosmos.base.tendermint.v1beta1/index.js +5 -0
- package/lib/cosmos.base.tendermint.v1beta1/module.js +70 -0
- package/lib/cosmos.base.tendermint.v1beta1/registry.js +2 -0
- package/lib/cosmos.base.tendermint.v1beta1/rest.js +209 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.js +1281 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.js +350 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.js +352 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.js +86 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.js +343 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.js +1207 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.js +254 -0
- package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.js +133 -0
- package/lib/cosmos.base.tendermint.v1beta1/types.js +8 -0
- package/lib/cosmos.crisis.v1beta1/index.js +5 -0
- package/lib/cosmos.crisis.v1beta1/module.js +81 -0
- package/lib/cosmos.crisis.v1beta1/registry.js +5 -0
- package/lib/cosmos.crisis.v1beta1/rest.js +83 -0
- package/lib/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.js +51 -0
- package/lib/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.js +111 -0
- package/lib/cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.crisis.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.crisis.v1beta1/types.js +1 -0
- package/lib/cosmos.distribution.v1beta1/index.js +5 -0
- package/lib/cosmos.distribution.v1beta1/module.js +189 -0
- package/lib/cosmos.distribution.v1beta1/registry.js +11 -0
- package/lib/cosmos.distribution.v1beta1/rest.js +214 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.js +737 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.js +656 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.js +926 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.js +396 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.distribution.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.distribution.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.distribution.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.distribution.v1beta1/types.js +20 -0
- package/lib/cosmos.evidence.v1beta1/index.js +5 -0
- package/lib/cosmos.evidence.v1beta1/module.js +84 -0
- package/lib/cosmos.evidence.v1beta1/registry.js +5 -0
- package/lib/cosmos.evidence.v1beta1/rest.js +115 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.js +124 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.js +50 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.js +254 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.js +154 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.evidence.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.evidence.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.evidence.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.evidence.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.evidence.v1beta1/types.js +2 -0
- package/lib/cosmos.feegrant.v1beta1/index.js +5 -0
- package/lib/cosmos.feegrant.v1beta1/module.js +113 -0
- package/lib/cosmos.feegrant.v1beta1/registry.js +7 -0
- package/lib/cosmos.feegrant.v1beta1/rest.js +130 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.js +307 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.js +52 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.js +357 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.js +205 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.feegrant.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.feegrant.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.feegrant.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.feegrant.v1beta1/types.js +5 -0
- package/lib/cosmos.gov.v1/index.js +5 -0
- package/lib/cosmos.gov.v1/module.js +167 -0
- package/lib/cosmos.gov.v1/registry.js +11 -0
- package/lib/cosmos.gov.v1/rest.js +242 -0
- package/lib/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.gov.v1/types/cosmos/gov/v1/genesis.js +162 -0
- package/lib/cosmos.gov.v1/types/cosmos/gov/v1/gov.js +766 -0
- package/lib/cosmos.gov.v1/types/cosmos/gov/v1/query.js +917 -0
- package/lib/cosmos.gov.v1/types/cosmos/gov/v1/tx.js +590 -0
- package/lib/cosmos.gov.v1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.gov.v1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.gov.v1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.gov.v1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.gov.v1/types/google/api/http.js +260 -0
- package/lib/cosmos.gov.v1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.gov.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.gov.v1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.gov.v1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.gov.v1/types.js +9 -0
- package/lib/cosmos.gov.v1beta1/index.js +5 -0
- package/lib/cosmos.gov.v1beta1/module.js +169 -0
- package/lib/cosmos.gov.v1beta1/registry.js +11 -0
- package/lib/cosmos.gov.v1beta1/rest.js +242 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.js +162 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.js +832 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.js +917 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.js +467 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.gov.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.gov.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.gov.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.gov.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.gov.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.gov.v1beta1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.gov.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.gov.v1beta1/types.js +10 -0
- package/lib/cosmos.group.v1/index.js +5 -0
- package/lib/cosmos.group.v1/module.js +421 -0
- package/lib/cosmos.group.v1/registry.js +31 -0
- package/lib/cosmos.group.v1/rest.js +351 -0
- package/lib/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.group.v1/types/cosmos/group/v1/events.js +433 -0
- package/lib/cosmos.group.v1/types/cosmos/group/v1/genesis.js +177 -0
- package/lib/cosmos.group.v1/types/cosmos/group/v1/query.js +1468 -0
- package/lib/cosmos.group.v1/types/cosmos/group/v1/tx.js +1621 -0
- package/lib/cosmos.group.v1/types/cosmos/group/v1/types.js +1105 -0
- package/lib/cosmos.group.v1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.group.v1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.group.v1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.group.v1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.group.v1/types/google/api/http.js +260 -0
- package/lib/cosmos.group.v1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.group.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.group.v1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.group.v1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.group.v1/types.js +21 -0
- package/lib/cosmos.mint.v1beta1/index.js +5 -0
- package/lib/cosmos.mint.v1beta1/module.js +60 -0
- package/lib/cosmos.mint.v1beta1/registry.js +2 -0
- package/lib/cosmos.mint.v1beta1/rest.js +128 -0
- package/lib/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.js +63 -0
- package/lib/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.js +179 -0
- package/lib/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.js +298 -0
- package/lib/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.mint.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.mint.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.mint.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.mint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.mint.v1beta1/types.js +3 -0
- package/lib/cosmos.nft.v1beta1/index.js +5 -0
- package/lib/cosmos.nft.v1beta1/module.js +68 -0
- package/lib/cosmos.nft.v1beta1/registry.js +2 -0
- package/lib/cosmos.nft.v1beta1/rest.js +187 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.js +198 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.js +126 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.js +183 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.js +752 -0
- package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.js +120 -0
- package/lib/cosmos.nft.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.nft.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.nft.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.nft.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.nft.v1beta1/types.js +7 -0
- package/lib/cosmos.params.v1beta1/index.js +5 -0
- package/lib/cosmos.params.v1beta1/module.js +62 -0
- package/lib/cosmos.params.v1beta1/registry.js +2 -0
- package/lib/cosmos.params.v1beta1/rest.js +116 -0
- package/lib/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.js +133 -0
- package/lib/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.js +257 -0
- package/lib/cosmos.params.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.params.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.params.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.params.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.params.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.params.v1beta1/types.js +4 -0
- package/lib/cosmos.slashing.v1beta1/index.js +5 -0
- package/lib/cosmos.slashing.v1beta1/module.js +92 -0
- package/lib/cosmos.slashing.v1beta1/registry.js +5 -0
- package/lib/cosmos.slashing.v1beta1/rest.js +129 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.js +279 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.js +300 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.js +275 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.js +91 -0
- package/lib/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.slashing.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.slashing.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.slashing.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.slashing.v1beta1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.slashing.v1beta1/types.js +6 -0
- package/lib/cosmos.staking.v1beta1/index.js +5 -0
- package/lib/cosmos.staking.v1beta1/module.js +243 -0
- package/lib/cosmos.staking.v1beta1/registry.js +15 -0
- package/lib/cosmos.staking.v1beta1/rest.js +308 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.js +184 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.js +259 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.js +1568 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.js +1436 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.js +768 -0
- package/lib/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.staking.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.staking.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.staking.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.staking.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.staking.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.staking.v1beta1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.staking.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.staking.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/lib/cosmos.staking.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/lib/cosmos.staking.v1beta1/types/tendermint/types/types.js +1207 -0
- package/lib/cosmos.staking.v1beta1/types/tendermint/types/validator.js +254 -0
- package/lib/cosmos.staking.v1beta1/types/tendermint/version/types.js +133 -0
- package/lib/cosmos.staking.v1beta1/types.js +24 -0
- package/lib/cosmos.tx.v1beta1/index.js +5 -0
- package/lib/cosmos.tx.v1beta1/module.js +82 -0
- package/lib/cosmos.tx.v1beta1/registry.js +2 -0
- package/lib/cosmos.tx.v1beta1/rest.js +256 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +803 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.js +147 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.js +449 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.js +802 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.js +959 -0
- package/lib/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.tx.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.tx.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.tx.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.tx.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.tx.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.tx.v1beta1/types/google/protobuf/duration.js +84 -0
- package/lib/cosmos.tx.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/abci/types.js +3486 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/crypto/keys.js +100 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/crypto/proof.js +356 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/types/block.js +86 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/types/evidence.js +343 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/types/params.js +378 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/types/types.js +1207 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/types/validator.js +254 -0
- package/lib/cosmos.tx.v1beta1/types/tendermint/version/types.js +133 -0
- package/lib/cosmos.tx.v1beta1/types.js +14 -0
- package/lib/cosmos.upgrade.v1beta1/index.js +5 -0
- package/lib/cosmos.upgrade.v1beta1/module.js +113 -0
- package/lib/cosmos.upgrade.v1beta1/registry.js +7 -0
- package/lib/cosmos.upgrade.v1beta1/rest.js +162 -0
- package/lib/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.js +501 -0
- package/lib/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.js +183 -0
- package/lib/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/lib/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.upgrade.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.upgrade.v1beta1/types/google/api/annotations.js +2 -0
- package/lib/cosmos.upgrade.v1beta1/types/google/api/http.js +260 -0
- package/lib/cosmos.upgrade.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.js +84 -0
- package/lib/cosmos.upgrade.v1beta1/types.js +5 -0
- package/lib/cosmos.vesting.v1beta1/index.js +5 -0
- package/lib/cosmos.vesting.v1beta1/module.js +140 -0
- package/lib/cosmos.vesting.v1beta1/registry.js +9 -0
- package/lib/cosmos.vesting.v1beta1/rest.js +83 -0
- package/lib/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
- package/lib/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
- package/lib/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.js +383 -0
- package/lib/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.js +422 -0
- package/lib/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/cosmos.vesting.v1beta1/types/gogoproto/gogo.js +2 -0
- package/lib/cosmos.vesting.v1beta1/types/google/protobuf/any.js +99 -0
- package/lib/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/cosmos.vesting.v1beta1/types.js +7 -0
- package/lib/env.js +1 -0
- package/lib/helpers.js +11 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/index.js +5 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/module.js +58 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/registry.js +2 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/rest.js +114 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.js +2 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.js +2 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.js +260 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.js +47 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.js +193 -0
- package/lib/ibc.applications.interchain_accounts.controller.v1/types.js +2 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/index.js +5 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/module.js +58 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/registry.js +2 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/rest.js +100 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.js +2 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.js +2 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types/google/api/http.js +260 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.js +63 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.js +94 -0
- package/lib/ibc.applications.interchain_accounts.host.v1/types.js +2 -0
- package/lib/ibc.applications.transfer.v1/index.js +5 -0
- package/lib/ibc.applications.transfer.v1/module.js +86 -0
- package/lib/ibc.applications.transfer.v1/registry.js +5 -0
- package/lib/ibc.applications.transfer.v1/rest.js +157 -0
- package/lib/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.js +192 -0
- package/lib/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/lib/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/ibc.applications.transfer.v1/types/gogoproto/gogo.js +2 -0
- package/lib/ibc.applications.transfer.v1/types/google/api/annotations.js +2 -0
- package/lib/ibc.applications.transfer.v1/types/google/api/http.js +260 -0
- package/lib/ibc.applications.transfer.v1/types/google/protobuf/any.js +99 -0
- package/lib/ibc.applications.transfer.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/ibc.applications.transfer.v1/types/google/protobuf/timestamp.js +84 -0
- package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.js +75 -0
- package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.js +483 -0
- package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.js +110 -0
- package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.js +186 -0
- package/lib/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.js +448 -0
- package/lib/ibc.applications.transfer.v1/types.js +3 -0
- package/lib/ibc.core.channel.v1/index.js +5 -0
- package/lib/ibc.core.channel.v1/module.js +72 -0
- package/lib/ibc.core.channel.v1/registry.js +2 -0
- package/lib/ibc.core.channel.v1/rest.js +323 -0
- package/lib/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/lib/ibc.core.channel.v1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/ibc.core.channel.v1/types/gogoproto/gogo.js +2 -0
- package/lib/ibc.core.channel.v1/types/google/api/annotations.js +2 -0
- package/lib/ibc.core.channel.v1/types/google/api/http.js +260 -0
- package/lib/ibc.core.channel.v1/types/google/protobuf/any.js +99 -0
- package/lib/ibc.core.channel.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/ibc.core.channel.v1/types/google/protobuf/timestamp.js +84 -0
- package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.js +714 -0
- package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.js +254 -0
- package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/query.js +1866 -0
- package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.js +1425 -0
- package/lib/ibc.core.channel.v1/types/ibc/core/client/v1/client.js +448 -0
- package/lib/ibc.core.channel.v1/types.js +9 -0
- package/lib/ibc.core.client.v1/index.js +5 -0
- package/lib/ibc.core.client.v1/module.js +74 -0
- package/lib/ibc.core.client.v1/registry.js +2 -0
- package/lib/ibc.core.client.v1/rest.js +218 -0
- package/lib/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/lib/ibc.core.client.v1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/ibc.core.client.v1/types/gogoproto/gogo.js +2 -0
- package/lib/ibc.core.client.v1/types/google/api/annotations.js +2 -0
- package/lib/ibc.core.client.v1/types/google/api/http.js +260 -0
- package/lib/ibc.core.client.v1/types/google/protobuf/any.js +99 -0
- package/lib/ibc.core.client.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/ibc.core.client.v1/types/google/protobuf/timestamp.js +84 -0
- package/lib/ibc.core.client.v1/types/ibc/core/client/v1/client.js +448 -0
- package/lib/ibc.core.client.v1/types/ibc/core/client/v1/genesis.js +287 -0
- package/lib/ibc.core.client.v1/types/ibc/core/client/v1/query.js +1026 -0
- package/lib/ibc.core.client.v1/types/ibc/core/client/v1/tx.js +509 -0
- package/lib/ibc.core.client.v1/types.js +10 -0
- package/lib/ibc.core.connection.v1/index.js +5 -0
- package/lib/ibc.core.connection.v1/module.js +70 -0
- package/lib/ibc.core.connection.v1/registry.js +2 -0
- package/lib/ibc.core.connection.v1/rest.js +177 -0
- package/lib/ibc.core.connection.v1/types/confio/proofs.js +1120 -0
- package/lib/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/lib/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
- package/lib/ibc.core.connection.v1/types/cosmos_proto/cosmos.js +171 -0
- package/lib/ibc.core.connection.v1/types/gogoproto/gogo.js +2 -0
- package/lib/ibc.core.connection.v1/types/google/api/annotations.js +2 -0
- package/lib/ibc.core.connection.v1/types/google/api/http.js +260 -0
- package/lib/ibc.core.connection.v1/types/google/protobuf/any.js +99 -0
- package/lib/ibc.core.connection.v1/types/google/protobuf/descriptor.js +2830 -0
- package/lib/ibc.core.connection.v1/types/google/protobuf/timestamp.js +84 -0
- package/lib/ibc.core.connection.v1/types/ibc/core/client/v1/client.js +448 -0
- package/lib/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.js +223 -0
- package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.js +537 -0
- package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.js +120 -0
- package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/query.js +684 -0
- package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.js +705 -0
- package/lib/ibc.core.connection.v1/types/proofs.js +1126 -0
- package/lib/ibc.core.connection.v1/types.js +8 -0
- package/lib/index.js +62 -0
- package/lib/modules.js +1 -0
- package/modules.js +1 -0
- package/modules.ts +5 -0
- package/package.json +29 -0
- package/tsconfig.json +12 -0
- package/types.d.ts +21 -0
|
@@ -0,0 +1,1084 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/*
|
|
4
|
+
* ---------------------------------------------------------------
|
|
5
|
+
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
|
|
6
|
+
* ## ##
|
|
7
|
+
* ## AUTHOR: acacode ##
|
|
8
|
+
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
|
|
9
|
+
* ---------------------------------------------------------------
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
14
|
+
URL that describes the type of the serialized message.
|
|
15
|
+
|
|
16
|
+
Protobuf library provides support to pack/unpack Any values in the form
|
|
17
|
+
of utility functions or additional generated methods of the Any type.
|
|
18
|
+
|
|
19
|
+
Example 1: Pack and unpack a message in C++.
|
|
20
|
+
|
|
21
|
+
Foo foo = ...;
|
|
22
|
+
Any any;
|
|
23
|
+
any.PackFrom(foo);
|
|
24
|
+
...
|
|
25
|
+
if (any.UnpackTo(&foo)) {
|
|
26
|
+
...
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
Example 2: Pack and unpack a message in Java.
|
|
30
|
+
|
|
31
|
+
Foo foo = ...;
|
|
32
|
+
Any any = Any.pack(foo);
|
|
33
|
+
...
|
|
34
|
+
if (any.is(Foo.class)) {
|
|
35
|
+
foo = any.unpack(Foo.class);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
Example 3: Pack and unpack a message in Python.
|
|
39
|
+
|
|
40
|
+
foo = Foo(...)
|
|
41
|
+
any = Any()
|
|
42
|
+
any.Pack(foo)
|
|
43
|
+
...
|
|
44
|
+
if any.Is(Foo.DESCRIPTOR):
|
|
45
|
+
any.Unpack(foo)
|
|
46
|
+
...
|
|
47
|
+
|
|
48
|
+
Example 4: Pack and unpack a message in Go
|
|
49
|
+
|
|
50
|
+
foo := &pb.Foo{...}
|
|
51
|
+
any, err := anypb.New(foo)
|
|
52
|
+
if err != nil {
|
|
53
|
+
...
|
|
54
|
+
}
|
|
55
|
+
...
|
|
56
|
+
foo := &pb.Foo{}
|
|
57
|
+
if err := any.UnmarshalTo(foo); err != nil {
|
|
58
|
+
...
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
The pack methods provided by protobuf library will by default use
|
|
62
|
+
'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
63
|
+
methods only use the fully qualified type name after the last '/'
|
|
64
|
+
in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
65
|
+
name "y.z".
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
JSON
|
|
69
|
+
====
|
|
70
|
+
The JSON representation of an `Any` value uses the regular
|
|
71
|
+
representation of the deserialized, embedded message, with an
|
|
72
|
+
additional field `@type` which contains the type URL. Example:
|
|
73
|
+
|
|
74
|
+
package google.profile;
|
|
75
|
+
message Person {
|
|
76
|
+
string first_name = 1;
|
|
77
|
+
string last_name = 2;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
{
|
|
81
|
+
"@type": "type.googleapis.com/google.profile.Person",
|
|
82
|
+
"firstName": <string>,
|
|
83
|
+
"lastName": <string>
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
If the embedded message type is well-known and has a custom JSON
|
|
87
|
+
representation, that representation will be embedded adding a field
|
|
88
|
+
`value` which holds the custom JSON in addition to the `@type`
|
|
89
|
+
field. Example (for message [google.protobuf.Duration][]):
|
|
90
|
+
|
|
91
|
+
{
|
|
92
|
+
"@type": "type.googleapis.com/google.protobuf.Duration",
|
|
93
|
+
"value": "1.212s"
|
|
94
|
+
}
|
|
95
|
+
*/
|
|
96
|
+
export interface ProtobufAny {
|
|
97
|
+
/**
|
|
98
|
+
* A URL/resource name that uniquely identifies the type of the serialized
|
|
99
|
+
* protocol buffer message. This string must contain at least
|
|
100
|
+
* one "/" character. The last segment of the URL's path must represent
|
|
101
|
+
* the fully qualified name of the type (as in
|
|
102
|
+
* `path/google.protobuf.Duration`). The name should be in a canonical form
|
|
103
|
+
* (e.g., leading "." is not accepted).
|
|
104
|
+
*
|
|
105
|
+
* In practice, teams usually precompile into the binary all types that they
|
|
106
|
+
* expect it to use in the context of Any. However, for URLs which use the
|
|
107
|
+
* scheme `http`, `https`, or no scheme, one can optionally set up a type
|
|
108
|
+
* server that maps type URLs to message definitions as follows:
|
|
109
|
+
* * If no scheme is provided, `https` is assumed.
|
|
110
|
+
* * An HTTP GET on the URL must yield a [google.protobuf.Type][]
|
|
111
|
+
* value in binary format, or produce an error.
|
|
112
|
+
* * Applications are allowed to cache lookup results based on the
|
|
113
|
+
* URL, or have them precompiled into a binary to avoid any
|
|
114
|
+
* lookup. Therefore, binary compatibility needs to be preserved
|
|
115
|
+
* on changes to types. (Use versioned type names to manage
|
|
116
|
+
* breaking changes.)
|
|
117
|
+
* Note: this functionality is not currently available in the official
|
|
118
|
+
* protobuf release, and it is not used for type URLs beginning with
|
|
119
|
+
* type.googleapis.com.
|
|
120
|
+
* Schemes other than `http`, `https` (or the empty scheme) might be
|
|
121
|
+
* used with implementation specific semantics.
|
|
122
|
+
*/
|
|
123
|
+
"@type"?: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface RpcStatus {
|
|
127
|
+
/** @format int32 */
|
|
128
|
+
code?: number;
|
|
129
|
+
message?: string;
|
|
130
|
+
details?: ProtobufAny[];
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* ConsensusStateWithHeight defines a consensus state with an additional height
|
|
135
|
+
field.
|
|
136
|
+
*/
|
|
137
|
+
export interface V1ConsensusStateWithHeight {
|
|
138
|
+
/**
|
|
139
|
+
* consensus state height
|
|
140
|
+
* Normally the RevisionHeight is incremented at each height while keeping
|
|
141
|
+
* RevisionNumber the same. However some consensus algorithms may choose to
|
|
142
|
+
* reset the height in certain conditions e.g. hard forks, state-machine
|
|
143
|
+
* breaking changes In these cases, the RevisionNumber is incremented so that
|
|
144
|
+
* height continues to be monitonically increasing even as the RevisionHeight
|
|
145
|
+
* gets reset
|
|
146
|
+
*/
|
|
147
|
+
height?: V1Height;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* consensus state
|
|
151
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
152
|
+
* URL that describes the type of the serialized message.
|
|
153
|
+
*
|
|
154
|
+
* Protobuf library provides support to pack/unpack Any values in the form
|
|
155
|
+
* of utility functions or additional generated methods of the Any type.
|
|
156
|
+
* Example 1: Pack and unpack a message in C++.
|
|
157
|
+
* Foo foo = ...;
|
|
158
|
+
* Any any;
|
|
159
|
+
* any.PackFrom(foo);
|
|
160
|
+
* ...
|
|
161
|
+
* if (any.UnpackTo(&foo)) {
|
|
162
|
+
* ...
|
|
163
|
+
* }
|
|
164
|
+
* Example 2: Pack and unpack a message in Java.
|
|
165
|
+
* Any any = Any.pack(foo);
|
|
166
|
+
* if (any.is(Foo.class)) {
|
|
167
|
+
* foo = any.unpack(Foo.class);
|
|
168
|
+
* Example 3: Pack and unpack a message in Python.
|
|
169
|
+
* foo = Foo(...)
|
|
170
|
+
* any = Any()
|
|
171
|
+
* any.Pack(foo)
|
|
172
|
+
* if any.Is(Foo.DESCRIPTOR):
|
|
173
|
+
* any.Unpack(foo)
|
|
174
|
+
* Example 4: Pack and unpack a message in Go
|
|
175
|
+
* foo := &pb.Foo{...}
|
|
176
|
+
* any, err := anypb.New(foo)
|
|
177
|
+
* if err != nil {
|
|
178
|
+
* ...
|
|
179
|
+
* }
|
|
180
|
+
* ...
|
|
181
|
+
* foo := &pb.Foo{}
|
|
182
|
+
* if err := any.UnmarshalTo(foo); err != nil {
|
|
183
|
+
* The pack methods provided by protobuf library will by default use
|
|
184
|
+
* 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
185
|
+
* methods only use the fully qualified type name after the last '/'
|
|
186
|
+
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
187
|
+
* name "y.z".
|
|
188
|
+
* JSON
|
|
189
|
+
* ====
|
|
190
|
+
* The JSON representation of an `Any` value uses the regular
|
|
191
|
+
* representation of the deserialized, embedded message, with an
|
|
192
|
+
* additional field `@type` which contains the type URL. Example:
|
|
193
|
+
* package google.profile;
|
|
194
|
+
* message Person {
|
|
195
|
+
* string first_name = 1;
|
|
196
|
+
* string last_name = 2;
|
|
197
|
+
* {
|
|
198
|
+
* "@type": "type.googleapis.com/google.profile.Person",
|
|
199
|
+
* "firstName": <string>,
|
|
200
|
+
* "lastName": <string>
|
|
201
|
+
* If the embedded message type is well-known and has a custom JSON
|
|
202
|
+
* representation, that representation will be embedded adding a field
|
|
203
|
+
* `value` which holds the custom JSON in addition to the `@type`
|
|
204
|
+
* field. Example (for message [google.protobuf.Duration][]):
|
|
205
|
+
* "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
206
|
+
* "value": "1.212s"
|
|
207
|
+
*/
|
|
208
|
+
consensus_state?: ProtobufAny;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Normally the RevisionHeight is incremented at each height while keeping
|
|
213
|
+
RevisionNumber the same. However some consensus algorithms may choose to
|
|
214
|
+
reset the height in certain conditions e.g. hard forks, state-machine
|
|
215
|
+
breaking changes In these cases, the RevisionNumber is incremented so that
|
|
216
|
+
height continues to be monitonically increasing even as the RevisionHeight
|
|
217
|
+
gets reset
|
|
218
|
+
*/
|
|
219
|
+
export interface V1Height {
|
|
220
|
+
/**
|
|
221
|
+
* the revision that the client is currently on
|
|
222
|
+
* @format uint64
|
|
223
|
+
*/
|
|
224
|
+
revision_number?: string;
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* the height within the given revision
|
|
228
|
+
* @format uint64
|
|
229
|
+
*/
|
|
230
|
+
revision_height?: string;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* IdentifiedClientState defines a client state with an additional client
|
|
235
|
+
identifier field.
|
|
236
|
+
*/
|
|
237
|
+
export interface V1IdentifiedClientState {
|
|
238
|
+
/** client identifier */
|
|
239
|
+
client_id?: string;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* client state
|
|
243
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
244
|
+
* URL that describes the type of the serialized message.
|
|
245
|
+
*
|
|
246
|
+
* Protobuf library provides support to pack/unpack Any values in the form
|
|
247
|
+
* of utility functions or additional generated methods of the Any type.
|
|
248
|
+
* Example 1: Pack and unpack a message in C++.
|
|
249
|
+
* Foo foo = ...;
|
|
250
|
+
* Any any;
|
|
251
|
+
* any.PackFrom(foo);
|
|
252
|
+
* ...
|
|
253
|
+
* if (any.UnpackTo(&foo)) {
|
|
254
|
+
* ...
|
|
255
|
+
* }
|
|
256
|
+
* Example 2: Pack and unpack a message in Java.
|
|
257
|
+
* Any any = Any.pack(foo);
|
|
258
|
+
* if (any.is(Foo.class)) {
|
|
259
|
+
* foo = any.unpack(Foo.class);
|
|
260
|
+
* Example 3: Pack and unpack a message in Python.
|
|
261
|
+
* foo = Foo(...)
|
|
262
|
+
* any = Any()
|
|
263
|
+
* any.Pack(foo)
|
|
264
|
+
* if any.Is(Foo.DESCRIPTOR):
|
|
265
|
+
* any.Unpack(foo)
|
|
266
|
+
* Example 4: Pack and unpack a message in Go
|
|
267
|
+
* foo := &pb.Foo{...}
|
|
268
|
+
* any, err := anypb.New(foo)
|
|
269
|
+
* if err != nil {
|
|
270
|
+
* ...
|
|
271
|
+
* }
|
|
272
|
+
* ...
|
|
273
|
+
* foo := &pb.Foo{}
|
|
274
|
+
* if err := any.UnmarshalTo(foo); err != nil {
|
|
275
|
+
* The pack methods provided by protobuf library will by default use
|
|
276
|
+
* 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
277
|
+
* methods only use the fully qualified type name after the last '/'
|
|
278
|
+
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
279
|
+
* name "y.z".
|
|
280
|
+
* JSON
|
|
281
|
+
* ====
|
|
282
|
+
* The JSON representation of an `Any` value uses the regular
|
|
283
|
+
* representation of the deserialized, embedded message, with an
|
|
284
|
+
* additional field `@type` which contains the type URL. Example:
|
|
285
|
+
* package google.profile;
|
|
286
|
+
* message Person {
|
|
287
|
+
* string first_name = 1;
|
|
288
|
+
* string last_name = 2;
|
|
289
|
+
* {
|
|
290
|
+
* "@type": "type.googleapis.com/google.profile.Person",
|
|
291
|
+
* "firstName": <string>,
|
|
292
|
+
* "lastName": <string>
|
|
293
|
+
* If the embedded message type is well-known and has a custom JSON
|
|
294
|
+
* representation, that representation will be embedded adding a field
|
|
295
|
+
* `value` which holds the custom JSON in addition to the `@type`
|
|
296
|
+
* field. Example (for message [google.protobuf.Duration][]):
|
|
297
|
+
* "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
298
|
+
* "value": "1.212s"
|
|
299
|
+
*/
|
|
300
|
+
client_state?: ProtobufAny;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
305
|
+
*/
|
|
306
|
+
export type V1MsgCreateClientResponse = object;
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response
|
|
310
|
+
type.
|
|
311
|
+
*/
|
|
312
|
+
export type V1MsgSubmitMisbehaviourResponse = object;
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
316
|
+
*/
|
|
317
|
+
export type V1MsgUpdateClientResponse = object;
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
321
|
+
*/
|
|
322
|
+
export type V1MsgUpgradeClientResponse = object;
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Params defines the set of IBC light client parameters.
|
|
326
|
+
*/
|
|
327
|
+
export interface V1Params {
|
|
328
|
+
/** allowed_clients defines the list of allowed client state types. */
|
|
329
|
+
allowed_clients?: string[];
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
334
|
+
method.
|
|
335
|
+
*/
|
|
336
|
+
export interface V1QueryClientParamsResponse {
|
|
337
|
+
/** params defines the parameters of the module. */
|
|
338
|
+
params?: V1Params;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
343
|
+
method. Besides the client state, it includes a proof and the height from
|
|
344
|
+
which the proof was retrieved.
|
|
345
|
+
*/
|
|
346
|
+
export interface V1QueryClientStateResponse {
|
|
347
|
+
/**
|
|
348
|
+
* client state associated with the request identifier
|
|
349
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
350
|
+
* URL that describes the type of the serialized message.
|
|
351
|
+
*
|
|
352
|
+
* Protobuf library provides support to pack/unpack Any values in the form
|
|
353
|
+
* of utility functions or additional generated methods of the Any type.
|
|
354
|
+
* Example 1: Pack and unpack a message in C++.
|
|
355
|
+
* Foo foo = ...;
|
|
356
|
+
* Any any;
|
|
357
|
+
* any.PackFrom(foo);
|
|
358
|
+
* ...
|
|
359
|
+
* if (any.UnpackTo(&foo)) {
|
|
360
|
+
* ...
|
|
361
|
+
* }
|
|
362
|
+
* Example 2: Pack and unpack a message in Java.
|
|
363
|
+
* Any any = Any.pack(foo);
|
|
364
|
+
* if (any.is(Foo.class)) {
|
|
365
|
+
* foo = any.unpack(Foo.class);
|
|
366
|
+
* Example 3: Pack and unpack a message in Python.
|
|
367
|
+
* foo = Foo(...)
|
|
368
|
+
* any = Any()
|
|
369
|
+
* any.Pack(foo)
|
|
370
|
+
* if any.Is(Foo.DESCRIPTOR):
|
|
371
|
+
* any.Unpack(foo)
|
|
372
|
+
* Example 4: Pack and unpack a message in Go
|
|
373
|
+
* foo := &pb.Foo{...}
|
|
374
|
+
* any, err := anypb.New(foo)
|
|
375
|
+
* if err != nil {
|
|
376
|
+
* ...
|
|
377
|
+
* }
|
|
378
|
+
* ...
|
|
379
|
+
* foo := &pb.Foo{}
|
|
380
|
+
* if err := any.UnmarshalTo(foo); err != nil {
|
|
381
|
+
* The pack methods provided by protobuf library will by default use
|
|
382
|
+
* 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
383
|
+
* methods only use the fully qualified type name after the last '/'
|
|
384
|
+
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
385
|
+
* name "y.z".
|
|
386
|
+
* JSON
|
|
387
|
+
* ====
|
|
388
|
+
* The JSON representation of an `Any` value uses the regular
|
|
389
|
+
* representation of the deserialized, embedded message, with an
|
|
390
|
+
* additional field `@type` which contains the type URL. Example:
|
|
391
|
+
* package google.profile;
|
|
392
|
+
* message Person {
|
|
393
|
+
* string first_name = 1;
|
|
394
|
+
* string last_name = 2;
|
|
395
|
+
* {
|
|
396
|
+
* "@type": "type.googleapis.com/google.profile.Person",
|
|
397
|
+
* "firstName": <string>,
|
|
398
|
+
* "lastName": <string>
|
|
399
|
+
* If the embedded message type is well-known and has a custom JSON
|
|
400
|
+
* representation, that representation will be embedded adding a field
|
|
401
|
+
* `value` which holds the custom JSON in addition to the `@type`
|
|
402
|
+
* field. Example (for message [google.protobuf.Duration][]):
|
|
403
|
+
* "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
404
|
+
* "value": "1.212s"
|
|
405
|
+
*/
|
|
406
|
+
client_state?: ProtobufAny;
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* merkle proof of existence
|
|
410
|
+
* @format byte
|
|
411
|
+
*/
|
|
412
|
+
proof?: string;
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* height at which the proof was retrieved
|
|
416
|
+
* Normally the RevisionHeight is incremented at each height while keeping
|
|
417
|
+
* RevisionNumber the same. However some consensus algorithms may choose to
|
|
418
|
+
* reset the height in certain conditions e.g. hard forks, state-machine
|
|
419
|
+
* breaking changes In these cases, the RevisionNumber is incremented so that
|
|
420
|
+
* height continues to be monitonically increasing even as the RevisionHeight
|
|
421
|
+
* gets reset
|
|
422
|
+
*/
|
|
423
|
+
proof_height?: V1Height;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
428
|
+
method.
|
|
429
|
+
*/
|
|
430
|
+
export interface V1QueryClientStatesResponse {
|
|
431
|
+
/** list of stored ClientStates of the chain. */
|
|
432
|
+
client_states?: V1IdentifiedClientState[];
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* pagination response
|
|
436
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
437
|
+
* corresponding request message has used PageRequest.
|
|
438
|
+
*
|
|
439
|
+
* message SomeResponse {
|
|
440
|
+
* repeated Bar results = 1;
|
|
441
|
+
* PageResponse page = 2;
|
|
442
|
+
* }
|
|
443
|
+
*/
|
|
444
|
+
pagination?: V1Beta1PageResponse;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
449
|
+
method. It returns the current status of the IBC client.
|
|
450
|
+
*/
|
|
451
|
+
export interface V1QueryClientStatusResponse {
|
|
452
|
+
status?: string;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export interface V1QueryConsensusStateHeightsResponse {
|
|
456
|
+
/** consensus state heights */
|
|
457
|
+
consensus_state_heights?: V1Height[];
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* pagination response
|
|
461
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
462
|
+
* corresponding request message has used PageRequest.
|
|
463
|
+
*
|
|
464
|
+
* message SomeResponse {
|
|
465
|
+
* repeated Bar results = 1;
|
|
466
|
+
* PageResponse page = 2;
|
|
467
|
+
* }
|
|
468
|
+
*/
|
|
469
|
+
pagination?: V1Beta1PageResponse;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
export interface V1QueryConsensusStateResponse {
|
|
473
|
+
/**
|
|
474
|
+
* consensus state associated with the client identifier at the given height
|
|
475
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
476
|
+
* URL that describes the type of the serialized message.
|
|
477
|
+
*
|
|
478
|
+
* Protobuf library provides support to pack/unpack Any values in the form
|
|
479
|
+
* of utility functions or additional generated methods of the Any type.
|
|
480
|
+
* Example 1: Pack and unpack a message in C++.
|
|
481
|
+
* Foo foo = ...;
|
|
482
|
+
* Any any;
|
|
483
|
+
* any.PackFrom(foo);
|
|
484
|
+
* ...
|
|
485
|
+
* if (any.UnpackTo(&foo)) {
|
|
486
|
+
* ...
|
|
487
|
+
* }
|
|
488
|
+
* Example 2: Pack and unpack a message in Java.
|
|
489
|
+
* Any any = Any.pack(foo);
|
|
490
|
+
* if (any.is(Foo.class)) {
|
|
491
|
+
* foo = any.unpack(Foo.class);
|
|
492
|
+
* Example 3: Pack and unpack a message in Python.
|
|
493
|
+
* foo = Foo(...)
|
|
494
|
+
* any = Any()
|
|
495
|
+
* any.Pack(foo)
|
|
496
|
+
* if any.Is(Foo.DESCRIPTOR):
|
|
497
|
+
* any.Unpack(foo)
|
|
498
|
+
* Example 4: Pack and unpack a message in Go
|
|
499
|
+
* foo := &pb.Foo{...}
|
|
500
|
+
* any, err := anypb.New(foo)
|
|
501
|
+
* if err != nil {
|
|
502
|
+
* ...
|
|
503
|
+
* }
|
|
504
|
+
* ...
|
|
505
|
+
* foo := &pb.Foo{}
|
|
506
|
+
* if err := any.UnmarshalTo(foo); err != nil {
|
|
507
|
+
* The pack methods provided by protobuf library will by default use
|
|
508
|
+
* 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
509
|
+
* methods only use the fully qualified type name after the last '/'
|
|
510
|
+
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
511
|
+
* name "y.z".
|
|
512
|
+
* JSON
|
|
513
|
+
* ====
|
|
514
|
+
* The JSON representation of an `Any` value uses the regular
|
|
515
|
+
* representation of the deserialized, embedded message, with an
|
|
516
|
+
* additional field `@type` which contains the type URL. Example:
|
|
517
|
+
* package google.profile;
|
|
518
|
+
* message Person {
|
|
519
|
+
* string first_name = 1;
|
|
520
|
+
* string last_name = 2;
|
|
521
|
+
* {
|
|
522
|
+
* "@type": "type.googleapis.com/google.profile.Person",
|
|
523
|
+
* "firstName": <string>,
|
|
524
|
+
* "lastName": <string>
|
|
525
|
+
* If the embedded message type is well-known and has a custom JSON
|
|
526
|
+
* representation, that representation will be embedded adding a field
|
|
527
|
+
* `value` which holds the custom JSON in addition to the `@type`
|
|
528
|
+
* field. Example (for message [google.protobuf.Duration][]):
|
|
529
|
+
* "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
530
|
+
* "value": "1.212s"
|
|
531
|
+
*/
|
|
532
|
+
consensus_state?: ProtobufAny;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* merkle proof of existence
|
|
536
|
+
* @format byte
|
|
537
|
+
*/
|
|
538
|
+
proof?: string;
|
|
539
|
+
|
|
540
|
+
/**
|
|
541
|
+
* height at which the proof was retrieved
|
|
542
|
+
* Normally the RevisionHeight is incremented at each height while keeping
|
|
543
|
+
* RevisionNumber the same. However some consensus algorithms may choose to
|
|
544
|
+
* reset the height in certain conditions e.g. hard forks, state-machine
|
|
545
|
+
* breaking changes In these cases, the RevisionNumber is incremented so that
|
|
546
|
+
* height continues to be monitonically increasing even as the RevisionHeight
|
|
547
|
+
* gets reset
|
|
548
|
+
*/
|
|
549
|
+
proof_height?: V1Height;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export interface V1QueryConsensusStatesResponse {
|
|
553
|
+
/** consensus states associated with the identifier */
|
|
554
|
+
consensus_states?: V1ConsensusStateWithHeight[];
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* pagination response
|
|
558
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
559
|
+
* corresponding request message has used PageRequest.
|
|
560
|
+
*
|
|
561
|
+
* message SomeResponse {
|
|
562
|
+
* repeated Bar results = 1;
|
|
563
|
+
* PageResponse page = 2;
|
|
564
|
+
* }
|
|
565
|
+
*/
|
|
566
|
+
pagination?: V1Beta1PageResponse;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* QueryUpgradedClientStateResponse is the response type for the
|
|
571
|
+
Query/UpgradedClientState RPC method.
|
|
572
|
+
*/
|
|
573
|
+
export interface V1QueryUpgradedClientStateResponse {
|
|
574
|
+
/**
|
|
575
|
+
* client state associated with the request identifier
|
|
576
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
577
|
+
* URL that describes the type of the serialized message.
|
|
578
|
+
*
|
|
579
|
+
* Protobuf library provides support to pack/unpack Any values in the form
|
|
580
|
+
* of utility functions or additional generated methods of the Any type.
|
|
581
|
+
* Example 1: Pack and unpack a message in C++.
|
|
582
|
+
* Foo foo = ...;
|
|
583
|
+
* Any any;
|
|
584
|
+
* any.PackFrom(foo);
|
|
585
|
+
* ...
|
|
586
|
+
* if (any.UnpackTo(&foo)) {
|
|
587
|
+
* ...
|
|
588
|
+
* }
|
|
589
|
+
* Example 2: Pack and unpack a message in Java.
|
|
590
|
+
* Any any = Any.pack(foo);
|
|
591
|
+
* if (any.is(Foo.class)) {
|
|
592
|
+
* foo = any.unpack(Foo.class);
|
|
593
|
+
* Example 3: Pack and unpack a message in Python.
|
|
594
|
+
* foo = Foo(...)
|
|
595
|
+
* any = Any()
|
|
596
|
+
* any.Pack(foo)
|
|
597
|
+
* if any.Is(Foo.DESCRIPTOR):
|
|
598
|
+
* any.Unpack(foo)
|
|
599
|
+
* Example 4: Pack and unpack a message in Go
|
|
600
|
+
* foo := &pb.Foo{...}
|
|
601
|
+
* any, err := anypb.New(foo)
|
|
602
|
+
* if err != nil {
|
|
603
|
+
* ...
|
|
604
|
+
* }
|
|
605
|
+
* ...
|
|
606
|
+
* foo := &pb.Foo{}
|
|
607
|
+
* if err := any.UnmarshalTo(foo); err != nil {
|
|
608
|
+
* The pack methods provided by protobuf library will by default use
|
|
609
|
+
* 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
610
|
+
* methods only use the fully qualified type name after the last '/'
|
|
611
|
+
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
612
|
+
* name "y.z".
|
|
613
|
+
* JSON
|
|
614
|
+
* ====
|
|
615
|
+
* The JSON representation of an `Any` value uses the regular
|
|
616
|
+
* representation of the deserialized, embedded message, with an
|
|
617
|
+
* additional field `@type` which contains the type URL. Example:
|
|
618
|
+
* package google.profile;
|
|
619
|
+
* message Person {
|
|
620
|
+
* string first_name = 1;
|
|
621
|
+
* string last_name = 2;
|
|
622
|
+
* {
|
|
623
|
+
* "@type": "type.googleapis.com/google.profile.Person",
|
|
624
|
+
* "firstName": <string>,
|
|
625
|
+
* "lastName": <string>
|
|
626
|
+
* If the embedded message type is well-known and has a custom JSON
|
|
627
|
+
* representation, that representation will be embedded adding a field
|
|
628
|
+
* `value` which holds the custom JSON in addition to the `@type`
|
|
629
|
+
* field. Example (for message [google.protobuf.Duration][]):
|
|
630
|
+
* "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
631
|
+
* "value": "1.212s"
|
|
632
|
+
*/
|
|
633
|
+
upgraded_client_state?: ProtobufAny;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
638
|
+
Query/UpgradedConsensusState RPC method.
|
|
639
|
+
*/
|
|
640
|
+
export interface V1QueryUpgradedConsensusStateResponse {
|
|
641
|
+
/**
|
|
642
|
+
* Consensus state associated with the request identifier
|
|
643
|
+
* `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
644
|
+
* URL that describes the type of the serialized message.
|
|
645
|
+
*
|
|
646
|
+
* Protobuf library provides support to pack/unpack Any values in the form
|
|
647
|
+
* of utility functions or additional generated methods of the Any type.
|
|
648
|
+
* Example 1: Pack and unpack a message in C++.
|
|
649
|
+
* Foo foo = ...;
|
|
650
|
+
* Any any;
|
|
651
|
+
* any.PackFrom(foo);
|
|
652
|
+
* ...
|
|
653
|
+
* if (any.UnpackTo(&foo)) {
|
|
654
|
+
* ...
|
|
655
|
+
* }
|
|
656
|
+
* Example 2: Pack and unpack a message in Java.
|
|
657
|
+
* Any any = Any.pack(foo);
|
|
658
|
+
* if (any.is(Foo.class)) {
|
|
659
|
+
* foo = any.unpack(Foo.class);
|
|
660
|
+
* Example 3: Pack and unpack a message in Python.
|
|
661
|
+
* foo = Foo(...)
|
|
662
|
+
* any = Any()
|
|
663
|
+
* any.Pack(foo)
|
|
664
|
+
* if any.Is(Foo.DESCRIPTOR):
|
|
665
|
+
* any.Unpack(foo)
|
|
666
|
+
* Example 4: Pack and unpack a message in Go
|
|
667
|
+
* foo := &pb.Foo{...}
|
|
668
|
+
* any, err := anypb.New(foo)
|
|
669
|
+
* if err != nil {
|
|
670
|
+
* ...
|
|
671
|
+
* }
|
|
672
|
+
* ...
|
|
673
|
+
* foo := &pb.Foo{}
|
|
674
|
+
* if err := any.UnmarshalTo(foo); err != nil {
|
|
675
|
+
* The pack methods provided by protobuf library will by default use
|
|
676
|
+
* 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
677
|
+
* methods only use the fully qualified type name after the last '/'
|
|
678
|
+
* in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
679
|
+
* name "y.z".
|
|
680
|
+
* JSON
|
|
681
|
+
* ====
|
|
682
|
+
* The JSON representation of an `Any` value uses the regular
|
|
683
|
+
* representation of the deserialized, embedded message, with an
|
|
684
|
+
* additional field `@type` which contains the type URL. Example:
|
|
685
|
+
* package google.profile;
|
|
686
|
+
* message Person {
|
|
687
|
+
* string first_name = 1;
|
|
688
|
+
* string last_name = 2;
|
|
689
|
+
* {
|
|
690
|
+
* "@type": "type.googleapis.com/google.profile.Person",
|
|
691
|
+
* "firstName": <string>,
|
|
692
|
+
* "lastName": <string>
|
|
693
|
+
* If the embedded message type is well-known and has a custom JSON
|
|
694
|
+
* representation, that representation will be embedded adding a field
|
|
695
|
+
* `value` which holds the custom JSON in addition to the `@type`
|
|
696
|
+
* field. Example (for message [google.protobuf.Duration][]):
|
|
697
|
+
* "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
698
|
+
* "value": "1.212s"
|
|
699
|
+
*/
|
|
700
|
+
upgraded_consensus_state?: ProtobufAny;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
/**
|
|
704
|
+
* message SomeRequest {
|
|
705
|
+
Foo some_parameter = 1;
|
|
706
|
+
PageRequest pagination = 2;
|
|
707
|
+
}
|
|
708
|
+
*/
|
|
709
|
+
export interface V1Beta1PageRequest {
|
|
710
|
+
/**
|
|
711
|
+
* key is a value returned in PageResponse.next_key to begin
|
|
712
|
+
* querying the next page most efficiently. Only one of offset or key
|
|
713
|
+
* should be set.
|
|
714
|
+
* @format byte
|
|
715
|
+
*/
|
|
716
|
+
key?: string;
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* offset is a numeric offset that can be used when key is unavailable.
|
|
720
|
+
* It is less efficient than using key. Only one of offset or key should
|
|
721
|
+
* be set.
|
|
722
|
+
* @format uint64
|
|
723
|
+
*/
|
|
724
|
+
offset?: string;
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* limit is the total number of results to be returned in the result page.
|
|
728
|
+
* If left empty it will default to a value to be set by each app.
|
|
729
|
+
* @format uint64
|
|
730
|
+
*/
|
|
731
|
+
limit?: string;
|
|
732
|
+
|
|
733
|
+
/**
|
|
734
|
+
* count_total is set to true to indicate that the result set should include
|
|
735
|
+
* a count of the total number of items available for pagination in UIs.
|
|
736
|
+
* count_total is only respected when offset is used. It is ignored when key
|
|
737
|
+
* is set.
|
|
738
|
+
*/
|
|
739
|
+
count_total?: boolean;
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* reverse is set to true if results are to be returned in the descending order.
|
|
743
|
+
*
|
|
744
|
+
* Since: cosmos-sdk 0.43
|
|
745
|
+
*/
|
|
746
|
+
reverse?: boolean;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
751
|
+
corresponding request message has used PageRequest.
|
|
752
|
+
|
|
753
|
+
message SomeResponse {
|
|
754
|
+
repeated Bar results = 1;
|
|
755
|
+
PageResponse page = 2;
|
|
756
|
+
}
|
|
757
|
+
*/
|
|
758
|
+
export interface V1Beta1PageResponse {
|
|
759
|
+
/**
|
|
760
|
+
* next_key is the key to be passed to PageRequest.key to
|
|
761
|
+
* query the next page most efficiently. It will be empty if
|
|
762
|
+
* there are no more results.
|
|
763
|
+
* @format byte
|
|
764
|
+
*/
|
|
765
|
+
next_key?: string;
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* total is total number of results available if PageRequest.count_total
|
|
769
|
+
* was set, its value is undefined otherwise
|
|
770
|
+
* @format uint64
|
|
771
|
+
*/
|
|
772
|
+
total?: string;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
776
|
+
|
|
777
|
+
export type QueryParamsType = Record<string | number, any>;
|
|
778
|
+
|
|
779
|
+
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
780
|
+
/** set parameter to `true` for call `securityWorker` for this request */
|
|
781
|
+
secure?: boolean;
|
|
782
|
+
/** request path */
|
|
783
|
+
path: string;
|
|
784
|
+
/** content type of request body */
|
|
785
|
+
type?: ContentType;
|
|
786
|
+
/** query params */
|
|
787
|
+
query?: QueryParamsType;
|
|
788
|
+
/** format of response (i.e. response.json() -> format: "json") */
|
|
789
|
+
format?: ResponseType;
|
|
790
|
+
/** request body */
|
|
791
|
+
body?: unknown;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
export type RequestParams = Omit<FullRequestParams, "body" | "method" | "query" | "path">;
|
|
795
|
+
|
|
796
|
+
export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequestConfig, "data" | "cancelToken"> {
|
|
797
|
+
securityWorker?: (
|
|
798
|
+
securityData: SecurityDataType | null,
|
|
799
|
+
) => Promise<AxiosRequestConfig | void> | AxiosRequestConfig | void;
|
|
800
|
+
secure?: boolean;
|
|
801
|
+
format?: ResponseType;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
export enum ContentType {
|
|
805
|
+
Json = "application/json",
|
|
806
|
+
FormData = "multipart/form-data",
|
|
807
|
+
UrlEncoded = "application/x-www-form-urlencoded",
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
export class HttpClient<SecurityDataType = unknown> {
|
|
811
|
+
public instance: AxiosInstance;
|
|
812
|
+
private securityData: SecurityDataType | null = null;
|
|
813
|
+
private securityWorker?: ApiConfig<SecurityDataType>["securityWorker"];
|
|
814
|
+
private secure?: boolean;
|
|
815
|
+
private format?: ResponseType;
|
|
816
|
+
|
|
817
|
+
constructor({ securityWorker, secure, format, ...axiosConfig }: ApiConfig<SecurityDataType> = {}) {
|
|
818
|
+
this.instance = axios.create({ ...axiosConfig, baseURL: axiosConfig.baseURL || "" });
|
|
819
|
+
this.secure = secure;
|
|
820
|
+
this.format = format;
|
|
821
|
+
this.securityWorker = securityWorker;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
public setSecurityData = (data: SecurityDataType | null) => {
|
|
825
|
+
this.securityData = data;
|
|
826
|
+
};
|
|
827
|
+
|
|
828
|
+
private mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig {
|
|
829
|
+
return {
|
|
830
|
+
...this.instance.defaults,
|
|
831
|
+
...params1,
|
|
832
|
+
...(params2 || {}),
|
|
833
|
+
headers: {
|
|
834
|
+
...(this.instance.defaults.headers || {}),
|
|
835
|
+
...(params1.headers || {}),
|
|
836
|
+
...((params2 && params2.headers) || {}),
|
|
837
|
+
},
|
|
838
|
+
};
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
private createFormData(input: Record<string, unknown>): FormData {
|
|
842
|
+
return Object.keys(input || {}).reduce((formData, key) => {
|
|
843
|
+
const property = input[key];
|
|
844
|
+
formData.append(
|
|
845
|
+
key,
|
|
846
|
+
property instanceof Blob
|
|
847
|
+
? property
|
|
848
|
+
: typeof property === "object" && property !== null
|
|
849
|
+
? JSON.stringify(property)
|
|
850
|
+
: `${property}`,
|
|
851
|
+
);
|
|
852
|
+
return formData;
|
|
853
|
+
}, new FormData());
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
public request = async <T = any, _E = any>({
|
|
857
|
+
secure,
|
|
858
|
+
path,
|
|
859
|
+
type,
|
|
860
|
+
query,
|
|
861
|
+
format,
|
|
862
|
+
body,
|
|
863
|
+
...params
|
|
864
|
+
}: FullRequestParams): Promise<AxiosResponse<T>> => {
|
|
865
|
+
const secureParams =
|
|
866
|
+
((typeof secure === "boolean" ? secure : this.secure) &&
|
|
867
|
+
this.securityWorker &&
|
|
868
|
+
(await this.securityWorker(this.securityData))) ||
|
|
869
|
+
{};
|
|
870
|
+
const requestParams = this.mergeRequestParams(params, secureParams);
|
|
871
|
+
const responseFormat = (format && this.format) || void 0;
|
|
872
|
+
|
|
873
|
+
if (type === ContentType.FormData && body && body !== null && typeof body === "object") {
|
|
874
|
+
requestParams.headers.common = { Accept: "*/*" };
|
|
875
|
+
requestParams.headers.post = {};
|
|
876
|
+
requestParams.headers.put = {};
|
|
877
|
+
|
|
878
|
+
body = this.createFormData(body as Record<string, unknown>);
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
return this.instance.request({
|
|
882
|
+
...requestParams,
|
|
883
|
+
headers: {
|
|
884
|
+
...(type && type !== ContentType.FormData ? { "Content-Type": type } : {}),
|
|
885
|
+
...(requestParams.headers || {}),
|
|
886
|
+
},
|
|
887
|
+
params: query,
|
|
888
|
+
responseType: responseFormat,
|
|
889
|
+
data: body,
|
|
890
|
+
url: path,
|
|
891
|
+
});
|
|
892
|
+
};
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
/**
|
|
896
|
+
* @title ibc/core/client/v1/client.proto
|
|
897
|
+
* @version version not set
|
|
898
|
+
*/
|
|
899
|
+
export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
|
|
900
|
+
/**
|
|
901
|
+
* No description
|
|
902
|
+
*
|
|
903
|
+
* @tags Query
|
|
904
|
+
* @name QueryClientParams
|
|
905
|
+
* @summary ClientParams queries all parameters of the ibc client.
|
|
906
|
+
* @request GET:/ibc/client/v1/params
|
|
907
|
+
*/
|
|
908
|
+
queryClientParams = (params: RequestParams = {}) =>
|
|
909
|
+
this.request<V1QueryClientParamsResponse, RpcStatus>({
|
|
910
|
+
path: `/ibc/client/v1/params`,
|
|
911
|
+
method: "GET",
|
|
912
|
+
format: "json",
|
|
913
|
+
...params,
|
|
914
|
+
});
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* No description
|
|
918
|
+
*
|
|
919
|
+
* @tags Query
|
|
920
|
+
* @name QueryClientStates
|
|
921
|
+
* @summary ClientStates queries all the IBC light clients of a chain.
|
|
922
|
+
* @request GET:/ibc/core/client/v1/client_states
|
|
923
|
+
*/
|
|
924
|
+
queryClientStates = (
|
|
925
|
+
query?: {
|
|
926
|
+
"pagination.key"?: string;
|
|
927
|
+
"pagination.offset"?: string;
|
|
928
|
+
"pagination.limit"?: string;
|
|
929
|
+
"pagination.count_total"?: boolean;
|
|
930
|
+
"pagination.reverse"?: boolean;
|
|
931
|
+
},
|
|
932
|
+
params: RequestParams = {},
|
|
933
|
+
) =>
|
|
934
|
+
this.request<V1QueryClientStatesResponse, RpcStatus>({
|
|
935
|
+
path: `/ibc/core/client/v1/client_states`,
|
|
936
|
+
method: "GET",
|
|
937
|
+
query: query,
|
|
938
|
+
format: "json",
|
|
939
|
+
...params,
|
|
940
|
+
});
|
|
941
|
+
|
|
942
|
+
/**
|
|
943
|
+
* No description
|
|
944
|
+
*
|
|
945
|
+
* @tags Query
|
|
946
|
+
* @name QueryClientState
|
|
947
|
+
* @summary ClientState queries an IBC light client.
|
|
948
|
+
* @request GET:/ibc/core/client/v1/client_states/{client_id}
|
|
949
|
+
*/
|
|
950
|
+
queryClientState = (clientId: string, params: RequestParams = {}) =>
|
|
951
|
+
this.request<V1QueryClientStateResponse, RpcStatus>({
|
|
952
|
+
path: `/ibc/core/client/v1/client_states/${clientId}`,
|
|
953
|
+
method: "GET",
|
|
954
|
+
format: "json",
|
|
955
|
+
...params,
|
|
956
|
+
});
|
|
957
|
+
|
|
958
|
+
/**
|
|
959
|
+
* No description
|
|
960
|
+
*
|
|
961
|
+
* @tags Query
|
|
962
|
+
* @name QueryClientStatus
|
|
963
|
+
* @summary Status queries the status of an IBC client.
|
|
964
|
+
* @request GET:/ibc/core/client/v1/client_status/{client_id}
|
|
965
|
+
*/
|
|
966
|
+
queryClientStatus = (clientId: string, params: RequestParams = {}) =>
|
|
967
|
+
this.request<V1QueryClientStatusResponse, RpcStatus>({
|
|
968
|
+
path: `/ibc/core/client/v1/client_status/${clientId}`,
|
|
969
|
+
method: "GET",
|
|
970
|
+
format: "json",
|
|
971
|
+
...params,
|
|
972
|
+
});
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* No description
|
|
976
|
+
*
|
|
977
|
+
* @tags Query
|
|
978
|
+
* @name QueryConsensusStates
|
|
979
|
+
* @summary ConsensusStates queries all the consensus state associated with a given
|
|
980
|
+
client.
|
|
981
|
+
* @request GET:/ibc/core/client/v1/consensus_states/{client_id}
|
|
982
|
+
*/
|
|
983
|
+
queryConsensusStates = (
|
|
984
|
+
clientId: string,
|
|
985
|
+
query?: {
|
|
986
|
+
"pagination.key"?: string;
|
|
987
|
+
"pagination.offset"?: string;
|
|
988
|
+
"pagination.limit"?: string;
|
|
989
|
+
"pagination.count_total"?: boolean;
|
|
990
|
+
"pagination.reverse"?: boolean;
|
|
991
|
+
},
|
|
992
|
+
params: RequestParams = {},
|
|
993
|
+
) =>
|
|
994
|
+
this.request<V1QueryConsensusStatesResponse, RpcStatus>({
|
|
995
|
+
path: `/ibc/core/client/v1/consensus_states/${clientId}`,
|
|
996
|
+
method: "GET",
|
|
997
|
+
query: query,
|
|
998
|
+
format: "json",
|
|
999
|
+
...params,
|
|
1000
|
+
});
|
|
1001
|
+
|
|
1002
|
+
/**
|
|
1003
|
+
* No description
|
|
1004
|
+
*
|
|
1005
|
+
* @tags Query
|
|
1006
|
+
* @name QueryConsensusStateHeights
|
|
1007
|
+
* @summary ConsensusStateHeights queries the height of every consensus states associated with a given client.
|
|
1008
|
+
* @request GET:/ibc/core/client/v1/consensus_states/{client_id}/heights
|
|
1009
|
+
*/
|
|
1010
|
+
queryConsensusStateHeights = (
|
|
1011
|
+
clientId: string,
|
|
1012
|
+
query?: {
|
|
1013
|
+
"pagination.key"?: string;
|
|
1014
|
+
"pagination.offset"?: string;
|
|
1015
|
+
"pagination.limit"?: string;
|
|
1016
|
+
"pagination.count_total"?: boolean;
|
|
1017
|
+
"pagination.reverse"?: boolean;
|
|
1018
|
+
},
|
|
1019
|
+
params: RequestParams = {},
|
|
1020
|
+
) =>
|
|
1021
|
+
this.request<V1QueryConsensusStateHeightsResponse, RpcStatus>({
|
|
1022
|
+
path: `/ibc/core/client/v1/consensus_states/${clientId}/heights`,
|
|
1023
|
+
method: "GET",
|
|
1024
|
+
query: query,
|
|
1025
|
+
format: "json",
|
|
1026
|
+
...params,
|
|
1027
|
+
});
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
* No description
|
|
1031
|
+
*
|
|
1032
|
+
* @tags Query
|
|
1033
|
+
* @name QueryConsensusState
|
|
1034
|
+
* @summary ConsensusState queries a consensus state associated with a client state at
|
|
1035
|
+
a given height.
|
|
1036
|
+
* @request GET:/ibc/core/client/v1/consensus_states/{client_id}/revision/{revision_number}/height/{revision_height}
|
|
1037
|
+
*/
|
|
1038
|
+
queryConsensusState = (
|
|
1039
|
+
clientId: string,
|
|
1040
|
+
revisionNumber: string,
|
|
1041
|
+
revisionHeight: string,
|
|
1042
|
+
query?: { latest_height?: boolean },
|
|
1043
|
+
params: RequestParams = {},
|
|
1044
|
+
) =>
|
|
1045
|
+
this.request<V1QueryConsensusStateResponse, RpcStatus>({
|
|
1046
|
+
path: `/ibc/core/client/v1/consensus_states/${clientId}/revision/${revisionNumber}/height/${revisionHeight}`,
|
|
1047
|
+
method: "GET",
|
|
1048
|
+
query: query,
|
|
1049
|
+
format: "json",
|
|
1050
|
+
...params,
|
|
1051
|
+
});
|
|
1052
|
+
|
|
1053
|
+
/**
|
|
1054
|
+
* No description
|
|
1055
|
+
*
|
|
1056
|
+
* @tags Query
|
|
1057
|
+
* @name QueryUpgradedClientState
|
|
1058
|
+
* @summary UpgradedClientState queries an Upgraded IBC light client.
|
|
1059
|
+
* @request GET:/ibc/core/client/v1/upgraded_client_states
|
|
1060
|
+
*/
|
|
1061
|
+
queryUpgradedClientState = (params: RequestParams = {}) =>
|
|
1062
|
+
this.request<V1QueryUpgradedClientStateResponse, RpcStatus>({
|
|
1063
|
+
path: `/ibc/core/client/v1/upgraded_client_states`,
|
|
1064
|
+
method: "GET",
|
|
1065
|
+
format: "json",
|
|
1066
|
+
...params,
|
|
1067
|
+
});
|
|
1068
|
+
|
|
1069
|
+
/**
|
|
1070
|
+
* No description
|
|
1071
|
+
*
|
|
1072
|
+
* @tags Query
|
|
1073
|
+
* @name QueryUpgradedConsensusState
|
|
1074
|
+
* @summary UpgradedConsensusState queries an Upgraded IBC consensus state.
|
|
1075
|
+
* @request GET:/ibc/core/client/v1/upgraded_consensus_states
|
|
1076
|
+
*/
|
|
1077
|
+
queryUpgradedConsensusState = (params: RequestParams = {}) =>
|
|
1078
|
+
this.request<V1QueryUpgradedConsensusStateResponse, RpcStatus>({
|
|
1079
|
+
path: `/ibc/core/client/v1/upgraded_consensus_states`,
|
|
1080
|
+
method: "GET",
|
|
1081
|
+
format: "json",
|
|
1082
|
+
...params,
|
|
1083
|
+
});
|
|
1084
|
+
}
|