@xpla/xplajs 1.7.0-beta.1 → 1.7.0-beta.11
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/CHANGELOG.md +21 -0
- package/README.md +3 -3
- package/package.json +14 -12
- package/src/binary.ts +1 -1
- package/src/cosmos/app/runtime/v1alpha1/module.ts +6 -7
- package/src/cosmos/app/runtime/v2/module.ts +9 -10
- package/src/cosmos/app/v1alpha1/config.ts +10 -9
- package/src/cosmos/app/v1alpha1/module.ts +9 -10
- package/src/cosmos/app/v1alpha1/query.rpc.func.ts +2 -1
- package/src/cosmos/app/v1alpha1/query.ts +6 -7
- package/src/cosmos/auth/module/v1/module.ts +6 -7
- package/src/cosmos/auth/v1beta1/accounts.ts +6 -7
- package/src/cosmos/auth/v1beta1/auth.ts +15 -12
- package/src/cosmos/auth/v1beta1/genesis.ts +3 -5
- package/src/cosmos/auth/v1beta1/query.rpc.func.ts +20 -10
- package/src/cosmos/auth/v1beta1/query.ts +52 -55
- package/src/cosmos/auth/v1beta1/tx.registry.ts +27 -1
- package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +2 -1
- package/src/cosmos/auth/v1beta1/tx.ts +6 -7
- package/src/cosmos/authz/module/v1/module.ts +3 -5
- package/src/cosmos/authz/v1beta1/authz.ts +32 -17
- package/src/cosmos/authz/v1beta1/event.ts +5 -8
- package/src/cosmos/authz/v1beta1/genesis.ts +4 -4
- package/src/cosmos/authz/v1beta1/query.rpc.func.ts +6 -3
- package/src/cosmos/authz/v1beta1/query.ts +22 -14
- package/src/cosmos/authz/v1beta1/tx.registry.ts +63 -1
- package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +6 -3
- package/src/cosmos/authz/v1beta1/tx.ts +15 -19
- package/src/cosmos/autocli/v1/options.ts +22 -14
- package/src/cosmos/autocli/v1/query.rpc.func.ts +2 -1
- package/src/cosmos/autocli/v1/query.ts +9 -7
- package/src/cosmos/bank/module/v1/module.ts +3 -5
- package/src/cosmos/bank/v1beta1/authz.ts +6 -3
- package/src/cosmos/bank/v1beta1/bank.ts +22 -17
- package/src/cosmos/bank/v1beta1/genesis.ts +11 -6
- package/src/cosmos/bank/v1beta1/query.rpc.func.ts +26 -13
- package/src/cosmos/bank/v1beta1/query.ts +83 -62
- package/src/cosmos/bank/v1beta1/tx.registry.ts +81 -1
- package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +8 -4
- package/src/cosmos/bank/v1beta1/tx.ts +22 -22
- package/src/cosmos/base/abci/v1beta1/abci.ts +30 -29
- package/src/cosmos/base/grpc/v2/service.rpc.func.ts +4 -2
- package/src/cosmos/base/grpc/v2/service.ts +12 -16
- package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +4 -2
- package/src/cosmos/base/node/v1beta1/query.ts +9 -14
- package/src/cosmos/base/query/v1beta1/pagination.ts +5 -8
- package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +4 -2
- package/src/cosmos/base/reflection/v1beta1/reflection.ts +9 -14
- package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +12 -6
- package/src/cosmos/base/reflection/v2alpha1/reflection.ts +72 -67
- package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +14 -7
- package/src/cosmos/base/tendermint/v1beta1/query.ts +56 -49
- package/src/cosmos/base/tendermint/v1beta1/types.ts +11 -6
- package/src/cosmos/base/v1beta1/coin.ts +16 -20
- package/src/cosmos/consensus/module/v1/module.ts +3 -5
- package/src/cosmos/consensus/v1/query.rpc.func.ts +2 -1
- package/src/cosmos/consensus/v1/query.ts +6 -7
- package/src/cosmos/consensus/v1/tx.registry.ts +27 -1
- package/src/cosmos/consensus/v1/tx.rpc.func.ts +2 -1
- package/src/cosmos/consensus/v1/tx.ts +9 -7
- package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +5 -8
- package/src/cosmos/distribution/module/v1/module.ts +3 -5
- package/src/cosmos/distribution/v1beta1/distribution.ts +53 -43
- package/src/cosmos/distribution/v1beta1/genesis.ts +32 -19
- package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +20 -10
- package/src/cosmos/distribution/v1beta1/query.ts +52 -53
- package/src/cosmos/distribution/v1beta1/tx.registry.ts +135 -1
- package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +14 -7
- package/src/cosmos/distribution/v1beta1/tx.ts +35 -38
- package/src/cosmos/evidence/module/v1/module.ts +3 -5
- package/src/cosmos/evidence/v1beta1/evidence.ts +3 -5
- package/src/cosmos/evidence/v1beta1/genesis.ts +3 -5
- package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +4 -2
- package/src/cosmos/evidence/v1beta1/query.ts +11 -12
- package/src/cosmos/evidence/v1beta1/tx.registry.ts +27 -1
- package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +2 -1
- package/src/cosmos/evidence/v1beta1/tx.ts +6 -8
- package/src/cosmos/feegrant/module/v1/module.ts +3 -5
- package/src/cosmos/feegrant/v1beta1/feegrant.ts +24 -9
- package/src/cosmos/feegrant/v1beta1/genesis.ts +4 -4
- package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +6 -3
- package/src/cosmos/feegrant/v1beta1/query.ts +20 -15
- package/src/cosmos/feegrant/v1beta1/tx.registry.ts +63 -1
- package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +6 -3
- package/src/cosmos/feegrant/v1beta1/tx.ts +17 -19
- package/src/cosmos/gov/module/v1/module.ts +3 -5
- package/src/cosmos/gov/v1/genesis.ts +10 -4
- package/src/cosmos/gov/v1/gov.ts +25 -24
- package/src/cosmos/gov/v1/query.rpc.func.ts +18 -9
- package/src/cosmos/gov/v1/query.ts +54 -45
- package/src/cosmos/gov/v1/tx.registry.ts +135 -1
- package/src/cosmos/gov/v1/tx.rpc.func.ts +14 -7
- package/src/cosmos/gov/v1/tx.ts +60 -45
- package/src/cosmos/gov/v1beta1/genesis.ts +9 -4
- package/src/cosmos/gov/v1beta1/gov.ts +56 -32
- package/src/cosmos/gov/v1beta1/query.rpc.func.ts +16 -8
- package/src/cosmos/gov/v1beta1/query.ts +49 -39
- package/src/cosmos/gov/v1beta1/tx.registry.ts +81 -1
- package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +8 -4
- package/src/cosmos/gov/v1beta1/tx.ts +47 -29
- package/src/cosmos/ics23/v1/proofs.ts +45 -31
- package/src/cosmos/mint/module/v1/module.ts +3 -5
- package/src/cosmos/mint/v1beta1/genesis.ts +5 -4
- package/src/cosmos/mint/v1beta1/mint.ts +24 -26
- package/src/cosmos/mint/v1beta1/query.rpc.func.ts +6 -3
- package/src/cosmos/mint/v1beta1/query.ts +14 -19
- package/src/cosmos/mint/v1beta1/tx.registry.ts +27 -1
- package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +2 -1
- package/src/cosmos/mint/v1beta1/tx.ts +6 -7
- package/src/cosmos/params/module/v1/module.ts +3 -5
- package/src/cosmos/params/v1beta1/params.ts +8 -6
- package/src/cosmos/params/v1beta1/query.rpc.func.ts +4 -2
- package/src/cosmos/params/v1beta1/query.ts +13 -15
- package/src/cosmos/slashing/module/v1/module.ts +3 -5
- package/src/cosmos/slashing/v1beta1/genesis.ts +14 -11
- package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +6 -3
- package/src/cosmos/slashing/v1beta1/query.ts +18 -16
- package/src/cosmos/slashing/v1beta1/slashing.ts +5 -8
- package/src/cosmos/slashing/v1beta1/tx.registry.ts +45 -1
- package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +4 -2
- package/src/cosmos/slashing/v1beta1/tx.ts +10 -13
- package/src/cosmos/staking/module/v1/module.ts +3 -5
- package/src/cosmos/staking/v1beta1/authz.ts +9 -6
- package/src/cosmos/staking/v1beta1/genesis.ts +11 -7
- package/src/cosmos/staking/v1beta1/query.rpc.func.ts +28 -14
- package/src/cosmos/staking/v1beta1/query.ts +85 -65
- package/src/cosmos/staking/v1beta1/staking.ts +82 -76
- package/src/cosmos/staking/v1beta1/tx.registry.ts +135 -1
- package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +14 -7
- package/src/cosmos/staking/v1beta1/tx.ts +43 -40
- package/src/cosmos/tx/config/v1/config.ts +3 -5
- package/src/cosmos/tx/signing/v1beta1/signing.ts +17 -13
- package/src/cosmos/tx/v1beta1/service.rpc.func.ts +18 -9
- package/src/cosmos/tx/v1beta1/service.ts +54 -46
- package/src/cosmos/tx/v1beta1/tx.ts +41 -32
- package/src/cosmos/upgrade/module/v1/module.ts +3 -5
- package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +10 -5
- package/src/cosmos/upgrade/v1beta1/query.ts +23 -30
- package/src/cosmos/upgrade/v1beta1/tx.registry.ts +45 -1
- package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +4 -2
- package/src/cosmos/upgrade/v1beta1/tx.ts +10 -13
- package/src/cosmos/upgrade/v1beta1/upgrade.ts +14 -11
- package/src/cosmos_proto/cosmos.ts +5 -6
- package/src/cosmwasm/wasm/v1/authz.ts +51 -24
- package/src/cosmwasm/wasm/v1/genesis.ts +17 -11
- package/src/cosmwasm/wasm/v1/ibc.ts +83 -11
- package/src/cosmwasm/wasm/v1/proposal_legacy.ts +61 -29
- package/src/cosmwasm/wasm/v1/query.lcd.ts +21 -1
- package/src/cosmwasm/wasm/v1/query.rpc.Query.ts +12 -1
- package/src/cosmwasm/wasm/v1/query.rpc.func.ts +31 -12
- package/src/cosmwasm/wasm/v1/query.ts +322 -55
- package/src/cosmwasm/wasm/v1/tx.registry.ts +315 -1
- package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +34 -17
- package/src/cosmwasm/wasm/v1/tx.ts +81 -99
- package/src/cosmwasm/wasm/v1/types.ts +21 -23
- package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +5 -6
- package/src/ethermint/evm/v1/events.ts +9 -10
- package/src/ethermint/evm/v1/evm.ts +21 -15
- package/src/ethermint/evm/v1/genesis.ts +8 -4
- package/src/ethermint/evm/v1/query.rpc.func.ts +24 -12
- package/src/ethermint/evm/v1/query.ts +57 -45
- package/src/ethermint/evm/v1/tx.registry.ts +45 -1
- package/src/ethermint/evm/v1/tx.rpc.func.ts +4 -2
- package/src/ethermint/evm/v1/tx.ts +25 -15
- package/src/ethermint/feemarket/v1/events.ts +5 -6
- package/src/ethermint/feemarket/v1/feemarket.ts +10 -11
- package/src/ethermint/feemarket/v1/genesis.ts +4 -3
- package/src/ethermint/feemarket/v1/query.rpc.func.ts +6 -3
- package/src/ethermint/feemarket/v1/query.ts +14 -13
- package/src/ethermint/feemarket/v1/tx.registry.ts +27 -1
- package/src/ethermint/feemarket/v1/tx.rpc.func.ts +2 -1
- package/src/ethermint/feemarket/v1/tx.ts +6 -6
- package/src/ethermint/types/v1/account.ts +6 -3
- package/src/ethermint/types/v1/dynamic_fee.ts +3 -4
- package/src/ethermint/types/v1/indexer.ts +3 -4
- package/src/ethermint/types/v1/web3.ts +3 -4
- package/src/extern.ts +2 -2
- package/src/google/api/http.ts +10 -6
- package/src/google/protobuf/any.ts +2 -1
- package/src/google/protobuf/descriptor.ts +118 -44
- package/src/google/protobuf/duration.ts +3 -4
- package/src/google/protobuf/timestamp.ts +3 -4
- package/src/helper-func-types.ts +26 -10
- package/src/helpers.ts +1 -2
- package/src/ibc/applications/fee/v1/ack.ts +3 -5
- package/src/ibc/applications/fee/v1/fee.ts +14 -10
- package/src/ibc/applications/fee/v1/genesis.ts +17 -15
- package/src/ibc/applications/fee/v1/metadata.ts +3 -5
- package/src/ibc/applications/fee/v1/query.rpc.func.ts +20 -10
- package/src/ibc/applications/fee/v1/query.ts +58 -48
- package/src/ibc/applications/fee/v1/tx.registry.ts +81 -1
- package/src/ibc/applications/fee/v1/tx.rpc.func.ts +8 -4
- package/src/ibc/applications/fee/v1/tx.ts +20 -24
- package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +3 -5
- package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +4 -2
- package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +10 -13
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +63 -1
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +6 -3
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +15 -18
- package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +19 -14
- package/src/ibc/applications/interchain_accounts/host/v1/host.ts +5 -8
- package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +2 -1
- package/src/ibc/applications/interchain_accounts/host/v1/query.ts +6 -7
- package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +45 -1
- package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +4 -2
- package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +11 -12
- package/src/ibc/applications/interchain_accounts/v1/account.ts +7 -4
- package/src/ibc/applications/interchain_accounts/v1/metadata.ts +3 -5
- package/src/ibc/applications/interchain_accounts/v1/packet.ts +5 -8
- package/src/ibc/applications/transfer/v1/authz.ts +9 -5
- package/src/ibc/applications/transfer/v1/genesis.ts +6 -4
- package/src/ibc/applications/transfer/v1/query.rpc.func.ts +12 -6
- package/src/ibc/applications/transfer/v1/query.ts +31 -33
- package/src/ibc/applications/transfer/v1/transfer.ts +5 -8
- package/src/ibc/applications/transfer/v1/tx.registry.ts +45 -1
- package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +4 -2
- package/src/ibc/applications/transfer/v1/tx.ts +12 -12
- package/src/ibc/applications/transfer/v2/packet.ts +3 -5
- package/src/ibc/core/channel/v1/channel.ts +24 -24
- package/src/ibc/core/channel/v1/genesis.ts +9 -7
- package/src/ibc/core/channel/v1/query.rpc.func.ts +34 -17
- package/src/ibc/core/channel/v1/query.ts +102 -83
- package/src/ibc/core/channel/v1/tx.registry.ts +351 -1
- package/src/ibc/core/channel/v1/tx.rpc.func.ts +38 -19
- package/src/ibc/core/channel/v1/tx.ts +106 -97
- package/src/ibc/core/channel/v1/upgrade.ts +9 -10
- package/src/ibc/core/client/v1/client.ts +21 -20
- package/src/ibc/core/client/v1/genesis.ts +12 -9
- package/src/ibc/core/client/v1/query.rpc.func.ts +20 -10
- package/src/ibc/core/client/v1/query.ts +55 -52
- package/src/ibc/core/client/v1/tx.registry.ts +135 -1
- package/src/ibc/core/client/v1/tx.rpc.func.ts +14 -7
- package/src/ibc/core/client/v1/tx.ts +30 -43
- package/src/ibc/core/commitment/v1/commitment.ts +10 -13
- package/src/ibc/core/connection/v1/connection.ts +20 -20
- package/src/ibc/core/connection/v1/genesis.ts +6 -4
- package/src/ibc/core/connection/v1/query.rpc.func.ts +12 -6
- package/src/ibc/core/connection/v1/query.ts +36 -31
- package/src/ibc/core/connection/v1/tx.registry.ts +99 -1
- package/src/ibc/core/connection/v1/tx.rpc.func.ts +10 -5
- package/src/ibc/core/connection/v1/tx.ts +29 -27
- package/src/ibc/core/types/v1/genesis.ts +6 -4
- package/src/ibc/lightclients/localhost/v2/localhost.ts +4 -4
- package/src/ibc/lightclients/solomachine/v2/solomachine.ts +37 -46
- package/src/ibc/lightclients/solomachine/v3/solomachine.ts +19 -24
- package/src/ibc/lightclients/tendermint/v1/tendermint.ts +19 -13
- package/src/ibc/lightclients/wasm/v1/genesis.ts +6 -7
- package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +4 -2
- package/src/ibc/lightclients/wasm/v1/query.ts +11 -12
- package/src/ibc/lightclients/wasm/v1/tx.registry.ts +63 -1
- package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +6 -3
- package/src/ibc/lightclients/wasm/v1/tx.ts +13 -20
- package/src/ibc/lightclients/wasm/v1/wasm.ts +10 -13
- package/src/registry.ts +1 -1
- package/src/tendermint/abci/types.ts +157 -74
- package/src/tendermint/crypto/keys.ts +3 -4
- package/src/tendermint/crypto/proof.ts +13 -10
- package/src/tendermint/p2p/types.ts +11 -9
- package/src/tendermint/types/block.ts +7 -3
- package/src/tendermint/types/evidence.ts +15 -6
- package/src/tendermint/types/params.ts +20 -15
- package/src/tendermint/types/types.ts +48 -21
- package/src/tendermint/types/validator.ts +10 -5
- package/src/tendermint/version/types.ts +5 -6
- package/src/test.ts +11 -0
- package/src/types.ts +3 -6
- package/src/utf8.ts +1 -1
- package/src/varint.ts +1 -1
- package/src/xpla/lcd.ts +102 -102
- package/src/xpla/reward/v1beta1/genesis.ts +4 -3
- package/src/xpla/reward/v1beta1/query.rpc.func.ts +4 -2
- package/src/xpla/reward/v1beta1/query.ts +11 -8
- package/src/xpla/reward/v1beta1/reward.ts +13 -14
- package/src/xpla/reward/v1beta1/tx.registry.ts +45 -1
- package/src/xpla/reward/v1beta1/tx.rpc.func.ts +4 -2
- package/src/xpla/reward/v1beta1/tx.ts +11 -10
- package/src/xpla/rpc.query.ts +89 -89
- package/src/xpla/volunteer/v1beta1/genesis.ts +4 -3
- package/src/xpla/volunteer/v1beta1/proposal.ts +13 -13
- package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +2 -1
- package/src/xpla/volunteer/v1beta1/query.ts +5 -6
- package/src/xpla/volunteer/v1beta1/tx.registry.ts +45 -1
- package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +4 -2
- package/src/xpla/volunteer/v1beta1/tx.ts +12 -12
- package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +3 -4
|
@@ -3,7 +3,6 @@ import { Event, EventAmino } from "../../../../tendermint/abci/types";
|
|
|
3
3
|
import { Block, BlockAmino } from "../../../../tendermint/types/block";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
5
5
|
import { DeepPartial, bytesFromBase64, base64FromBytes } from "../../../../helpers";
|
|
6
|
-
import { GlobalDecoderRegistry } from "../../../../registry";
|
|
7
6
|
/**
|
|
8
7
|
* TxResponse defines a structure containing relevant tx data and metadata. The
|
|
9
8
|
* tags are stringified and the log is JSON decoded.
|
|
@@ -644,10 +643,11 @@ export const TxResponse = {
|
|
|
644
643
|
typeUrl: "/cosmos.base.abci.v1beta1.TxResponse",
|
|
645
644
|
value: TxResponse.encode(message).finish()
|
|
646
645
|
};
|
|
646
|
+
},
|
|
647
|
+
registerTypeUrl() {
|
|
648
|
+
Event.registerTypeUrl();
|
|
647
649
|
}
|
|
648
650
|
};
|
|
649
|
-
GlobalDecoderRegistry.register(TxResponse.typeUrl, TxResponse);
|
|
650
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(TxResponse.aminoType, TxResponse.typeUrl);
|
|
651
651
|
function createBaseABCIMessageLog(): ABCIMessageLog {
|
|
652
652
|
return {
|
|
653
653
|
msgIndex: 0,
|
|
@@ -748,10 +748,11 @@ export const ABCIMessageLog = {
|
|
|
748
748
|
typeUrl: "/cosmos.base.abci.v1beta1.ABCIMessageLog",
|
|
749
749
|
value: ABCIMessageLog.encode(message).finish()
|
|
750
750
|
};
|
|
751
|
+
},
|
|
752
|
+
registerTypeUrl() {
|
|
753
|
+
StringEvent.registerTypeUrl();
|
|
751
754
|
}
|
|
752
755
|
};
|
|
753
|
-
GlobalDecoderRegistry.register(ABCIMessageLog.typeUrl, ABCIMessageLog);
|
|
754
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ABCIMessageLog.aminoType, ABCIMessageLog.typeUrl);
|
|
755
756
|
function createBaseStringEvent(): StringEvent {
|
|
756
757
|
return {
|
|
757
758
|
type: "",
|
|
@@ -840,10 +841,11 @@ export const StringEvent = {
|
|
|
840
841
|
typeUrl: "/cosmos.base.abci.v1beta1.StringEvent",
|
|
841
842
|
value: StringEvent.encode(message).finish()
|
|
842
843
|
};
|
|
844
|
+
},
|
|
845
|
+
registerTypeUrl() {
|
|
846
|
+
Attribute.registerTypeUrl();
|
|
843
847
|
}
|
|
844
848
|
};
|
|
845
|
-
GlobalDecoderRegistry.register(StringEvent.typeUrl, StringEvent);
|
|
846
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(StringEvent.aminoType, StringEvent.typeUrl);
|
|
847
849
|
function createBaseAttribute(): Attribute {
|
|
848
850
|
return {
|
|
849
851
|
key: "",
|
|
@@ -930,10 +932,9 @@ export const Attribute = {
|
|
|
930
932
|
typeUrl: "/cosmos.base.abci.v1beta1.Attribute",
|
|
931
933
|
value: Attribute.encode(message).finish()
|
|
932
934
|
};
|
|
933
|
-
}
|
|
935
|
+
},
|
|
936
|
+
registerTypeUrl() {}
|
|
934
937
|
};
|
|
935
|
-
GlobalDecoderRegistry.register(Attribute.typeUrl, Attribute);
|
|
936
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(Attribute.aminoType, Attribute.typeUrl);
|
|
937
938
|
function createBaseGasInfo(): GasInfo {
|
|
938
939
|
return {
|
|
939
940
|
gasWanted: BigInt(0),
|
|
@@ -1020,10 +1021,9 @@ export const GasInfo = {
|
|
|
1020
1021
|
typeUrl: "/cosmos.base.abci.v1beta1.GasInfo",
|
|
1021
1022
|
value: GasInfo.encode(message).finish()
|
|
1022
1023
|
};
|
|
1023
|
-
}
|
|
1024
|
+
},
|
|
1025
|
+
registerTypeUrl() {}
|
|
1024
1026
|
};
|
|
1025
|
-
GlobalDecoderRegistry.register(GasInfo.typeUrl, GasInfo);
|
|
1026
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(GasInfo.aminoType, GasInfo.typeUrl);
|
|
1027
1027
|
function createBaseResult(): Result {
|
|
1028
1028
|
return {
|
|
1029
1029
|
data: new Uint8Array(),
|
|
@@ -1138,10 +1138,9 @@ export const Result = {
|
|
|
1138
1138
|
typeUrl: "/cosmos.base.abci.v1beta1.Result",
|
|
1139
1139
|
value: Result.encode(message).finish()
|
|
1140
1140
|
};
|
|
1141
|
-
}
|
|
1141
|
+
},
|
|
1142
|
+
registerTypeUrl() {}
|
|
1142
1143
|
};
|
|
1143
|
-
GlobalDecoderRegistry.register(Result.typeUrl, Result);
|
|
1144
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(Result.aminoType, Result.typeUrl);
|
|
1145
1144
|
function createBaseSimulationResponse(): SimulationResponse {
|
|
1146
1145
|
return {
|
|
1147
1146
|
gasInfo: GasInfo.fromPartial({}),
|
|
@@ -1228,10 +1227,12 @@ export const SimulationResponse = {
|
|
|
1228
1227
|
typeUrl: "/cosmos.base.abci.v1beta1.SimulationResponse",
|
|
1229
1228
|
value: SimulationResponse.encode(message).finish()
|
|
1230
1229
|
};
|
|
1230
|
+
},
|
|
1231
|
+
registerTypeUrl() {
|
|
1232
|
+
GasInfo.registerTypeUrl();
|
|
1233
|
+
Result.registerTypeUrl();
|
|
1231
1234
|
}
|
|
1232
1235
|
};
|
|
1233
|
-
GlobalDecoderRegistry.register(SimulationResponse.typeUrl, SimulationResponse);
|
|
1234
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(SimulationResponse.aminoType, SimulationResponse.typeUrl);
|
|
1235
1236
|
function createBaseMsgData(): MsgData {
|
|
1236
1237
|
return {
|
|
1237
1238
|
msgType: "",
|
|
@@ -1318,10 +1319,9 @@ export const MsgData = {
|
|
|
1318
1319
|
typeUrl: "/cosmos.base.abci.v1beta1.MsgData",
|
|
1319
1320
|
value: MsgData.encode(message).finish()
|
|
1320
1321
|
};
|
|
1321
|
-
}
|
|
1322
|
+
},
|
|
1323
|
+
registerTypeUrl() {}
|
|
1322
1324
|
};
|
|
1323
|
-
GlobalDecoderRegistry.register(MsgData.typeUrl, MsgData);
|
|
1324
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgData.aminoType, MsgData.typeUrl);
|
|
1325
1325
|
function createBaseTxMsgData(): TxMsgData {
|
|
1326
1326
|
return {
|
|
1327
1327
|
data: [],
|
|
@@ -1412,10 +1412,9 @@ export const TxMsgData = {
|
|
|
1412
1412
|
typeUrl: "/cosmos.base.abci.v1beta1.TxMsgData",
|
|
1413
1413
|
value: TxMsgData.encode(message).finish()
|
|
1414
1414
|
};
|
|
1415
|
-
}
|
|
1415
|
+
},
|
|
1416
|
+
registerTypeUrl() {}
|
|
1416
1417
|
};
|
|
1417
|
-
GlobalDecoderRegistry.register(TxMsgData.typeUrl, TxMsgData);
|
|
1418
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(TxMsgData.aminoType, TxMsgData.typeUrl);
|
|
1419
1418
|
function createBaseSearchTxsResult(): SearchTxsResult {
|
|
1420
1419
|
return {
|
|
1421
1420
|
totalCount: BigInt(0),
|
|
@@ -1552,10 +1551,11 @@ export const SearchTxsResult = {
|
|
|
1552
1551
|
typeUrl: "/cosmos.base.abci.v1beta1.SearchTxsResult",
|
|
1553
1552
|
value: SearchTxsResult.encode(message).finish()
|
|
1554
1553
|
};
|
|
1554
|
+
},
|
|
1555
|
+
registerTypeUrl() {
|
|
1556
|
+
TxResponse.registerTypeUrl();
|
|
1555
1557
|
}
|
|
1556
1558
|
};
|
|
1557
|
-
GlobalDecoderRegistry.register(SearchTxsResult.typeUrl, SearchTxsResult);
|
|
1558
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(SearchTxsResult.aminoType, SearchTxsResult.typeUrl);
|
|
1559
1559
|
function createBaseSearchBlocksResult(): SearchBlocksResult {
|
|
1560
1560
|
return {
|
|
1561
1561
|
totalCount: BigInt(0),
|
|
@@ -1692,7 +1692,8 @@ export const SearchBlocksResult = {
|
|
|
1692
1692
|
typeUrl: "/cosmos.base.abci.v1beta1.SearchBlocksResult",
|
|
1693
1693
|
value: SearchBlocksResult.encode(message).finish()
|
|
1694
1694
|
};
|
|
1695
|
+
},
|
|
1696
|
+
registerTypeUrl() {
|
|
1697
|
+
Block.registerTypeUrl();
|
|
1695
1698
|
}
|
|
1696
|
-
};
|
|
1697
|
-
GlobalDecoderRegistry.register(SearchBlocksResult.typeUrl, SearchBlocksResult);
|
|
1698
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(SearchBlocksResult.aminoType, SearchBlocksResult.typeUrl);
|
|
1699
|
+
};
|
|
@@ -5,12 +5,14 @@ export const createGetQuery = (clientResolver?: RpcResolver) => buildQuery<Query
|
|
|
5
5
|
decode: QueryResponse.decode,
|
|
6
6
|
service: "cosmos.base.grpc.v2.Service",
|
|
7
7
|
method: "Query",
|
|
8
|
-
clientResolver
|
|
8
|
+
clientResolver,
|
|
9
|
+
deps: [QueryRequest, QueryResponse]
|
|
9
10
|
});
|
|
10
11
|
export const createGetListQueryHandlers = (clientResolver?: RpcResolver) => buildQuery<ListQueryHandlersRequest, ListQueryHandlersResponse>({
|
|
11
12
|
encode: ListQueryHandlersRequest.encode,
|
|
12
13
|
decode: ListQueryHandlersResponse.decode,
|
|
13
14
|
service: "cosmos.base.grpc.v2.Service",
|
|
14
15
|
method: "ListQueryHandlers",
|
|
15
|
-
clientResolver
|
|
16
|
+
clientResolver,
|
|
17
|
+
deps: [ListQueryHandlersRequest, ListQueryHandlersResponse]
|
|
16
18
|
});
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Any, AnyAmino } from "../../../../google/protobuf/any";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../../helpers";
|
|
4
|
-
import { GlobalDecoderRegistry } from "../../../../registry";
|
|
5
4
|
/** QueryRequest is the request for the Query method */
|
|
6
5
|
export interface QueryRequest {
|
|
7
6
|
request?: Any;
|
|
@@ -154,10 +153,9 @@ export const QueryRequest = {
|
|
|
154
153
|
typeUrl: "/cosmos.base.grpc.v2.QueryRequest",
|
|
155
154
|
value: QueryRequest.encode(message).finish()
|
|
156
155
|
};
|
|
157
|
-
}
|
|
156
|
+
},
|
|
157
|
+
registerTypeUrl() {}
|
|
158
158
|
};
|
|
159
|
-
GlobalDecoderRegistry.register(QueryRequest.typeUrl, QueryRequest);
|
|
160
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(QueryRequest.aminoType, QueryRequest.typeUrl);
|
|
161
159
|
function createBaseQueryResponse(): QueryResponse {
|
|
162
160
|
return {
|
|
163
161
|
response: undefined
|
|
@@ -232,10 +230,9 @@ export const QueryResponse = {
|
|
|
232
230
|
typeUrl: "/cosmos.base.grpc.v2.QueryResponse",
|
|
233
231
|
value: QueryResponse.encode(message).finish()
|
|
234
232
|
};
|
|
235
|
-
}
|
|
233
|
+
},
|
|
234
|
+
registerTypeUrl() {}
|
|
236
235
|
};
|
|
237
|
-
GlobalDecoderRegistry.register(QueryResponse.typeUrl, QueryResponse);
|
|
238
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(QueryResponse.aminoType, QueryResponse.typeUrl);
|
|
239
236
|
function createBaseListQueryHandlersRequest(): ListQueryHandlersRequest {
|
|
240
237
|
return {};
|
|
241
238
|
}
|
|
@@ -297,10 +294,9 @@ export const ListQueryHandlersRequest = {
|
|
|
297
294
|
typeUrl: "/cosmos.base.grpc.v2.ListQueryHandlersRequest",
|
|
298
295
|
value: ListQueryHandlersRequest.encode(message).finish()
|
|
299
296
|
};
|
|
300
|
-
}
|
|
297
|
+
},
|
|
298
|
+
registerTypeUrl() {}
|
|
301
299
|
};
|
|
302
|
-
GlobalDecoderRegistry.register(ListQueryHandlersRequest.typeUrl, ListQueryHandlersRequest);
|
|
303
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ListQueryHandlersRequest.aminoType, ListQueryHandlersRequest.typeUrl);
|
|
304
300
|
function createBaseListQueryHandlersResponse(): ListQueryHandlersResponse {
|
|
305
301
|
return {
|
|
306
302
|
handlers: []
|
|
@@ -377,10 +373,11 @@ export const ListQueryHandlersResponse = {
|
|
|
377
373
|
typeUrl: "/cosmos.base.grpc.v2.ListQueryHandlersResponse",
|
|
378
374
|
value: ListQueryHandlersResponse.encode(message).finish()
|
|
379
375
|
};
|
|
376
|
+
},
|
|
377
|
+
registerTypeUrl() {
|
|
378
|
+
Handler.registerTypeUrl();
|
|
380
379
|
}
|
|
381
380
|
};
|
|
382
|
-
GlobalDecoderRegistry.register(ListQueryHandlersResponse.typeUrl, ListQueryHandlersResponse);
|
|
383
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ListQueryHandlersResponse.aminoType, ListQueryHandlersResponse.typeUrl);
|
|
384
381
|
function createBaseHandler(): Handler {
|
|
385
382
|
return {
|
|
386
383
|
requestName: "",
|
|
@@ -467,7 +464,6 @@ export const Handler = {
|
|
|
467
464
|
typeUrl: "/cosmos.base.grpc.v2.Handler",
|
|
468
465
|
value: Handler.encode(message).finish()
|
|
469
466
|
};
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(Handler.aminoType, Handler.typeUrl);
|
|
467
|
+
},
|
|
468
|
+
registerTypeUrl() {}
|
|
469
|
+
};
|
|
@@ -5,12 +5,14 @@ export const createGetConfig = (clientResolver?: RpcResolver) => buildQuery<Conf
|
|
|
5
5
|
decode: ConfigResponse.decode,
|
|
6
6
|
service: "cosmos.base.node.v1beta1.Service",
|
|
7
7
|
method: "Config",
|
|
8
|
-
clientResolver
|
|
8
|
+
clientResolver,
|
|
9
|
+
deps: [ConfigRequest, ConfigResponse]
|
|
9
10
|
});
|
|
10
11
|
export const createGetStatus = (clientResolver?: RpcResolver) => buildQuery<StatusRequest, StatusResponse>({
|
|
11
12
|
encode: StatusRequest.encode,
|
|
12
13
|
decode: StatusResponse.decode,
|
|
13
14
|
service: "cosmos.base.node.v1beta1.Service",
|
|
14
15
|
method: "Status",
|
|
15
|
-
clientResolver
|
|
16
|
+
clientResolver,
|
|
17
|
+
deps: [StatusRequest, StatusResponse]
|
|
16
18
|
});
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Timestamp } from "../../../../google/protobuf/timestamp";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
3
3
|
import { DeepPartial, toTimestamp, fromTimestamp, bytesFromBase64, base64FromBytes } from "../../../../helpers";
|
|
4
|
-
import { GlobalDecoderRegistry } from "../../../../registry";
|
|
5
4
|
/** ConfigRequest defines the request structure for the Config gRPC query. */
|
|
6
5
|
export interface ConfigRequest {}
|
|
7
6
|
export interface ConfigRequestProtoMsg {
|
|
@@ -143,10 +142,9 @@ export const ConfigRequest = {
|
|
|
143
142
|
typeUrl: "/cosmos.base.node.v1beta1.ConfigRequest",
|
|
144
143
|
value: ConfigRequest.encode(message).finish()
|
|
145
144
|
};
|
|
146
|
-
}
|
|
145
|
+
},
|
|
146
|
+
registerTypeUrl() {}
|
|
147
147
|
};
|
|
148
|
-
GlobalDecoderRegistry.register(ConfigRequest.typeUrl, ConfigRequest);
|
|
149
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ConfigRequest.aminoType, ConfigRequest.typeUrl);
|
|
150
148
|
function createBaseConfigResponse(): ConfigResponse {
|
|
151
149
|
return {
|
|
152
150
|
minimumGasPrice: "",
|
|
@@ -257,10 +255,9 @@ export const ConfigResponse = {
|
|
|
257
255
|
typeUrl: "/cosmos.base.node.v1beta1.ConfigResponse",
|
|
258
256
|
value: ConfigResponse.encode(message).finish()
|
|
259
257
|
};
|
|
260
|
-
}
|
|
258
|
+
},
|
|
259
|
+
registerTypeUrl() {}
|
|
261
260
|
};
|
|
262
|
-
GlobalDecoderRegistry.register(ConfigResponse.typeUrl, ConfigResponse);
|
|
263
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ConfigResponse.aminoType, ConfigResponse.typeUrl);
|
|
264
261
|
function createBaseStatusRequest(): StatusRequest {
|
|
265
262
|
return {};
|
|
266
263
|
}
|
|
@@ -322,10 +319,9 @@ export const StatusRequest = {
|
|
|
322
319
|
typeUrl: "/cosmos.base.node.v1beta1.StatusRequest",
|
|
323
320
|
value: StatusRequest.encode(message).finish()
|
|
324
321
|
};
|
|
325
|
-
}
|
|
322
|
+
},
|
|
323
|
+
registerTypeUrl() {}
|
|
326
324
|
};
|
|
327
|
-
GlobalDecoderRegistry.register(StatusRequest.typeUrl, StatusRequest);
|
|
328
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(StatusRequest.aminoType, StatusRequest.typeUrl);
|
|
329
325
|
function createBaseStatusResponse(): StatusResponse {
|
|
330
326
|
return {
|
|
331
327
|
earliestStoreHeight: BigInt(0),
|
|
@@ -448,7 +444,6 @@ export const StatusResponse = {
|
|
|
448
444
|
typeUrl: "/cosmos.base.node.v1beta1.StatusResponse",
|
|
449
445
|
value: StatusResponse.encode(message).finish()
|
|
450
446
|
};
|
|
451
|
-
}
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(StatusResponse.aminoType, StatusResponse.typeUrl);
|
|
447
|
+
},
|
|
448
|
+
registerTypeUrl() {}
|
|
449
|
+
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial, bytesFromBase64, base64FromBytes } from "../../../../helpers";
|
|
3
|
-
import { GlobalDecoderRegistry } from "../../../../registry";
|
|
4
3
|
/**
|
|
5
4
|
* PageRequest is to be embedded in gRPC request messages for efficient
|
|
6
5
|
* pagination. Ex:
|
|
@@ -265,10 +264,9 @@ export const PageRequest = {
|
|
|
265
264
|
typeUrl: "/cosmos.base.query.v1beta1.PageRequest",
|
|
266
265
|
value: PageRequest.encode(message).finish()
|
|
267
266
|
};
|
|
268
|
-
}
|
|
267
|
+
},
|
|
268
|
+
registerTypeUrl() {}
|
|
269
269
|
};
|
|
270
|
-
GlobalDecoderRegistry.register(PageRequest.typeUrl, PageRequest);
|
|
271
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(PageRequest.aminoType, PageRequest.typeUrl);
|
|
272
270
|
function createBasePageResponse(): PageResponse {
|
|
273
271
|
return {
|
|
274
272
|
nextKey: new Uint8Array(),
|
|
@@ -355,7 +353,6 @@ export const PageResponse = {
|
|
|
355
353
|
typeUrl: "/cosmos.base.query.v1beta1.PageResponse",
|
|
356
354
|
value: PageResponse.encode(message).finish()
|
|
357
355
|
};
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(PageResponse.aminoType, PageResponse.typeUrl);
|
|
356
|
+
},
|
|
357
|
+
registerTypeUrl() {}
|
|
358
|
+
};
|
|
@@ -5,12 +5,14 @@ export const createGetListAllInterfaces = (clientResolver?: RpcResolver) => buil
|
|
|
5
5
|
decode: ListAllInterfacesResponse.decode,
|
|
6
6
|
service: "cosmos.base.reflection.v1beta1.ReflectionService",
|
|
7
7
|
method: "ListAllInterfaces",
|
|
8
|
-
clientResolver
|
|
8
|
+
clientResolver,
|
|
9
|
+
deps: [ListAllInterfacesRequest, ListAllInterfacesResponse]
|
|
9
10
|
});
|
|
10
11
|
export const createGetListImplementations = (clientResolver?: RpcResolver) => buildQuery<ListImplementationsRequest, ListImplementationsResponse>({
|
|
11
12
|
encode: ListImplementationsRequest.encode,
|
|
12
13
|
decode: ListImplementationsResponse.decode,
|
|
13
14
|
service: "cosmos.base.reflection.v1beta1.ReflectionService",
|
|
14
15
|
method: "ListImplementations",
|
|
15
|
-
clientResolver
|
|
16
|
+
clientResolver,
|
|
17
|
+
deps: [ListImplementationsRequest, ListImplementationsResponse]
|
|
16
18
|
});
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
import { GlobalDecoderRegistry } from "../../../../registry";
|
|
4
3
|
/** ListAllInterfacesRequest is the request type of the ListAllInterfaces RPC. */
|
|
5
4
|
export interface ListAllInterfacesRequest {}
|
|
6
5
|
export interface ListAllInterfacesRequestProtoMsg {
|
|
@@ -138,10 +137,9 @@ export const ListAllInterfacesRequest = {
|
|
|
138
137
|
typeUrl: "/cosmos.base.reflection.v1beta1.ListAllInterfacesRequest",
|
|
139
138
|
value: ListAllInterfacesRequest.encode(message).finish()
|
|
140
139
|
};
|
|
141
|
-
}
|
|
140
|
+
},
|
|
141
|
+
registerTypeUrl() {}
|
|
142
142
|
};
|
|
143
|
-
GlobalDecoderRegistry.register(ListAllInterfacesRequest.typeUrl, ListAllInterfacesRequest);
|
|
144
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ListAllInterfacesRequest.aminoType, ListAllInterfacesRequest.typeUrl);
|
|
145
143
|
function createBaseListAllInterfacesResponse(): ListAllInterfacesResponse {
|
|
146
144
|
return {
|
|
147
145
|
interfaceNames: []
|
|
@@ -218,10 +216,9 @@ export const ListAllInterfacesResponse = {
|
|
|
218
216
|
typeUrl: "/cosmos.base.reflection.v1beta1.ListAllInterfacesResponse",
|
|
219
217
|
value: ListAllInterfacesResponse.encode(message).finish()
|
|
220
218
|
};
|
|
221
|
-
}
|
|
219
|
+
},
|
|
220
|
+
registerTypeUrl() {}
|
|
222
221
|
};
|
|
223
|
-
GlobalDecoderRegistry.register(ListAllInterfacesResponse.typeUrl, ListAllInterfacesResponse);
|
|
224
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ListAllInterfacesResponse.aminoType, ListAllInterfacesResponse.typeUrl);
|
|
225
222
|
function createBaseListImplementationsRequest(): ListImplementationsRequest {
|
|
226
223
|
return {
|
|
227
224
|
interfaceName: ""
|
|
@@ -296,10 +293,9 @@ export const ListImplementationsRequest = {
|
|
|
296
293
|
typeUrl: "/cosmos.base.reflection.v1beta1.ListImplementationsRequest",
|
|
297
294
|
value: ListImplementationsRequest.encode(message).finish()
|
|
298
295
|
};
|
|
299
|
-
}
|
|
296
|
+
},
|
|
297
|
+
registerTypeUrl() {}
|
|
300
298
|
};
|
|
301
|
-
GlobalDecoderRegistry.register(ListImplementationsRequest.typeUrl, ListImplementationsRequest);
|
|
302
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ListImplementationsRequest.aminoType, ListImplementationsRequest.typeUrl);
|
|
303
299
|
function createBaseListImplementationsResponse(): ListImplementationsResponse {
|
|
304
300
|
return {
|
|
305
301
|
implementationMessageNames: []
|
|
@@ -376,7 +372,6 @@ export const ListImplementationsResponse = {
|
|
|
376
372
|
typeUrl: "/cosmos.base.reflection.v1beta1.ListImplementationsResponse",
|
|
377
373
|
value: ListImplementationsResponse.encode(message).finish()
|
|
378
374
|
};
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(ListImplementationsResponse.aminoType, ListImplementationsResponse.typeUrl);
|
|
375
|
+
},
|
|
376
|
+
registerTypeUrl() {}
|
|
377
|
+
};
|
|
@@ -5,40 +5,46 @@ export const createGetGetAuthnDescriptor = (clientResolver?: RpcResolver) => bui
|
|
|
5
5
|
decode: GetAuthnDescriptorResponse.decode,
|
|
6
6
|
service: "cosmos.base.reflection.v2alpha1.ReflectionService",
|
|
7
7
|
method: "GetAuthnDescriptor",
|
|
8
|
-
clientResolver
|
|
8
|
+
clientResolver,
|
|
9
|
+
deps: [GetAuthnDescriptorRequest, GetAuthnDescriptorResponse]
|
|
9
10
|
});
|
|
10
11
|
export const createGetGetChainDescriptor = (clientResolver?: RpcResolver) => buildQuery<GetChainDescriptorRequest, GetChainDescriptorResponse>({
|
|
11
12
|
encode: GetChainDescriptorRequest.encode,
|
|
12
13
|
decode: GetChainDescriptorResponse.decode,
|
|
13
14
|
service: "cosmos.base.reflection.v2alpha1.ReflectionService",
|
|
14
15
|
method: "GetChainDescriptor",
|
|
15
|
-
clientResolver
|
|
16
|
+
clientResolver,
|
|
17
|
+
deps: [GetChainDescriptorRequest, GetChainDescriptorResponse]
|
|
16
18
|
});
|
|
17
19
|
export const createGetGetCodecDescriptor = (clientResolver?: RpcResolver) => buildQuery<GetCodecDescriptorRequest, GetCodecDescriptorResponse>({
|
|
18
20
|
encode: GetCodecDescriptorRequest.encode,
|
|
19
21
|
decode: GetCodecDescriptorResponse.decode,
|
|
20
22
|
service: "cosmos.base.reflection.v2alpha1.ReflectionService",
|
|
21
23
|
method: "GetCodecDescriptor",
|
|
22
|
-
clientResolver
|
|
24
|
+
clientResolver,
|
|
25
|
+
deps: [GetCodecDescriptorRequest, GetCodecDescriptorResponse]
|
|
23
26
|
});
|
|
24
27
|
export const createGetGetConfigurationDescriptor = (clientResolver?: RpcResolver) => buildQuery<GetConfigurationDescriptorRequest, GetConfigurationDescriptorResponse>({
|
|
25
28
|
encode: GetConfigurationDescriptorRequest.encode,
|
|
26
29
|
decode: GetConfigurationDescriptorResponse.decode,
|
|
27
30
|
service: "cosmos.base.reflection.v2alpha1.ReflectionService",
|
|
28
31
|
method: "GetConfigurationDescriptor",
|
|
29
|
-
clientResolver
|
|
32
|
+
clientResolver,
|
|
33
|
+
deps: [GetConfigurationDescriptorRequest, GetConfigurationDescriptorResponse]
|
|
30
34
|
});
|
|
31
35
|
export const createGetGetQueryServicesDescriptor = (clientResolver?: RpcResolver) => buildQuery<GetQueryServicesDescriptorRequest, GetQueryServicesDescriptorResponse>({
|
|
32
36
|
encode: GetQueryServicesDescriptorRequest.encode,
|
|
33
37
|
decode: GetQueryServicesDescriptorResponse.decode,
|
|
34
38
|
service: "cosmos.base.reflection.v2alpha1.ReflectionService",
|
|
35
39
|
method: "GetQueryServicesDescriptor",
|
|
36
|
-
clientResolver
|
|
40
|
+
clientResolver,
|
|
41
|
+
deps: [GetQueryServicesDescriptorRequest, GetQueryServicesDescriptorResponse]
|
|
37
42
|
});
|
|
38
43
|
export const createGetGetTxDescriptor = (clientResolver?: RpcResolver) => buildQuery<GetTxDescriptorRequest, GetTxDescriptorResponse>({
|
|
39
44
|
encode: GetTxDescriptorRequest.encode,
|
|
40
45
|
decode: GetTxDescriptorResponse.decode,
|
|
41
46
|
service: "cosmos.base.reflection.v2alpha1.ReflectionService",
|
|
42
47
|
method: "GetTxDescriptor",
|
|
43
|
-
clientResolver
|
|
48
|
+
clientResolver,
|
|
49
|
+
deps: [GetTxDescriptorRequest, GetTxDescriptorResponse]
|
|
44
50
|
});
|