@xpla/xpla-react 1.7.0 → 1.8.0-rc.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/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
- package/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/cosmos/app/v1alpha1/config.d.ts +72 -10
- package/cosmos/app/v1alpha1/config.js +31 -0
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +23 -0
- package/cosmos/app/v1alpha1/query.d.ts +42 -6
- package/cosmos/app/v1alpha1/query.js +16 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
- package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
- package/cosmos/auth/module/v1/module.d.ts +60 -12
- package/cosmos/auth/module/v1/module.js +16 -0
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +34 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +169 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
- package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
- package/cosmos/auth/v1beta1/tx.d.ts +35 -2
- package/cosmos/auth/v1beta1/tx.js +21 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/auth/v1beta1/tx.registry.js +27 -1
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +36 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +10 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +55 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
- package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +43 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/authz/v1beta1/tx.registry.js +63 -1
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
- package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
- package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
- package/cosmos/autocli/v1/options.d.ts +208 -38
- package/cosmos/autocli/v1/options.js +54 -0
- package/cosmos/autocli/v1/query.d.ts +57 -6
- package/cosmos/autocli/v1/query.js +21 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/autocli/v1/query.rpc.func.js +8 -4
- package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/autocli/v1/query.rpc.react.js +7 -1
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +15 -0
- package/cosmos/bank/v1beta1/authz.js +12 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +63 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
- package/cosmos/bank/v1beta1/genesis.js +20 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +263 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
- package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +74 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/bank/v1beta1/tx.registry.js +81 -1
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
- package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
- package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
- package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
- package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
- package/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
- package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
- package/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +188 -0
- package/cosmos/bundle.js +990 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +16 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/consensus/v1/query.rpc.func.js +8 -4
- package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/consensus/v1/query.rpc.react.js +7 -1
- package/cosmos/consensus/v1/tx.d.ts +43 -6
- package/cosmos/consensus/v1/tx.js +17 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
- package/cosmos/consensus/v1/tx.registry.js +27 -1
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
- package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
- package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +164 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
- package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +128 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
- package/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
- package/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/cosmos/evidence/v1beta1/query.d.ts +88 -14
- package/cosmos/evidence/v1beta1/query.js +33 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
- package/cosmos/evidence/v1beta1/tx.js +13 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
- package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
- package/cosmos/evm/feemarket/v1/events.js +182 -0
- package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
- package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
- package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
- package/cosmos/evm/feemarket/v1/genesis.js +106 -0
- package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
- package/cosmos/evm/feemarket/v1/query.js +473 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
- package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
- package/cosmos/evm/feemarket/v1/tx.js +177 -0
- package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
- package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
- package/cosmos/evm/vm/v1/events.d.ts +286 -0
- package/cosmos/evm/vm/v1/events.js +435 -0
- package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
- package/cosmos/evm/vm/v1/evm.js +1617 -0
- package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
- package/cosmos/evm/vm/v1/genesis.js +227 -0
- package/cosmos/evm/vm/v1/query.d.ts +1773 -0
- package/cosmos/evm/vm/v1/query.js +2680 -0
- package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
- package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
- package/cosmos/evm/vm/v1/tx.d.ts +747 -0
- package/cosmos/evm/vm/v1/tx.js +1132 -0
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
- package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
- package/cosmos/feegrant/v1beta1/query.js +56 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -16
- package/cosmos/gov/v1/genesis.js +10 -0
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +77 -0
- package/cosmos/gov/v1/query.d.ts +469 -88
- package/cosmos/gov/v1/query.js +143 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
- package/cosmos/gov/v1/query.rpc.func.js +64 -28
- package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
- package/cosmos/gov/v1/query.rpc.react.js +63 -9
- package/cosmos/gov/v1/tx.d.ts +377 -67
- package/cosmos/gov/v1/tx.js +111 -3
- package/cosmos/gov/v1/tx.registry.d.ts +93 -0
- package/cosmos/gov/v1/tx.registry.js +135 -1
- package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
- package/cosmos/gov/v1/tx.rpc.func.js +63 -51
- package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
- package/cosmos/gov/v1/tx.rpc.react.js +55 -7
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +10 -0
- package/cosmos/gov/v1beta1/gov.d.ts +294 -63
- package/cosmos/gov/v1beta1/gov.js +74 -3
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +131 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
- package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
- package/cosmos/gov/v1beta1/tx.d.ts +214 -39
- package/cosmos/gov/v1beta1/tx.js +62 -3
- package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/gov/v1beta1/tx.registry.js +81 -1
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
- package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
- package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +169 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +10 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +43 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/mint/v1beta1/tx.d.ts +35 -2
- package/cosmos/mint/v1beta1/tx.js +21 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/mint/v1beta1/tx.registry.js +27 -1
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +16 -0
- package/cosmos/params/v1beta1/query.d.ts +99 -10
- package/cosmos/params/v1beta1/query.js +46 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
- package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
- package/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/cosmos/slashing/v1beta1/query.d.ts +106 -10
- package/cosmos/slashing/v1beta1/query.js +53 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
- package/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
- package/cosmos/slashing/v1beta1/tx.js +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +44 -6
- package/cosmos/staking/v1beta1/authz.js +17 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +16 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +250 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
- package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +186 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +120 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/staking/v1beta1/tx.registry.js +135 -1
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
- package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
- package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +176 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
- package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
- package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +127 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
- package/cosmos/upgrade/v1beta1/query.js +85 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
- package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
- package/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/cosmos_proto/bundle.d.ts +1 -0
- package/cosmos_proto/bundle.js +8 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +12 -0
- package/cosmwasm/bundle.js +174 -0
- package/cosmwasm/wasm/v1/authz.d.ts +212 -22
- package/cosmwasm/wasm/v1/authz.js +113 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
- package/cosmwasm/wasm/v1/genesis.js +34 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
- package/cosmwasm/wasm/v1/ibc.js +24 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/cosmwasm/wasm/v1/query.d.ts +761 -76
- package/cosmwasm/wasm/v1/query.js +581 -1
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
- package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
- package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +267 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
- package/cosmwasm/wasm/v1/tx.registry.js +315 -1
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
- package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
- package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/esm/cosmos/app/v1alpha1/config.js +31 -0
- package/esm/cosmos/app/v1alpha1/module.js +23 -0
- package/esm/cosmos/app/v1alpha1/query.js +16 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
- package/esm/cosmos/auth/module/v1/module.js +16 -0
- package/esm/cosmos/auth/v1beta1/auth.js +34 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +169 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
- package/esm/cosmos/auth/v1beta1/tx.js +21 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +36 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
- package/esm/cosmos/authz/v1beta1/query.js +55 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
- package/esm/cosmos/authz/v1beta1/tx.js +43 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
- package/esm/cosmos/autocli/v1/options.js +54 -0
- package/esm/cosmos/autocli/v1/query.js +21 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +12 -0
- package/esm/cosmos/bank/v1beta1/bank.js +63 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
- package/esm/cosmos/bank/v1beta1/query.js +263 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
- package/esm/cosmos/bank/v1beta1/tx.js +74 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
- package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
- package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
- package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +188 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +16 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/consensus/v1/tx.js +17 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/esm/cosmos/distribution/v1beta1/query.js +164 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
- package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/esm/cosmos/evidence/v1beta1/query.js +33 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
- package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
- package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
- package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
- package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
- package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
- package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
- package/esm/cosmos/evm/vm/v1/events.js +432 -0
- package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
- package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
- package/esm/cosmos/evm/vm/v1/query.js +2677 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
- package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
- package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
- package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +10 -0
- package/esm/cosmos/gov/v1/gov.js +77 -0
- package/esm/cosmos/gov/v1/query.js +143 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
- package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
- package/esm/cosmos/gov/v1/tx.js +111 -3
- package/esm/cosmos/gov/v1/tx.registry.js +134 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
- package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
- package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
- package/esm/cosmos/gov/v1beta1/gov.js +74 -3
- package/esm/cosmos/gov/v1beta1/query.js +131 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
- package/esm/cosmos/gov/v1beta1/tx.js +62 -3
- package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
- package/esm/cosmos/ics23/v1/proofs.js +169 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +43 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/mint/v1beta1/tx.js +21 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +16 -0
- package/esm/cosmos/params/v1beta1/query.js +46 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/esm/cosmos/slashing/v1beta1/query.js +53 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +17 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
- package/esm/cosmos/staking/v1beta1/query.js +250 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
- package/esm/cosmos/staking/v1beta1/staking.js +186 -0
- package/esm/cosmos/staking/v1beta1/tx.js +120 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/esm/cosmos/tx/v1beta1/service.js +176 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/esm/cosmos/tx/v1beta1/tx.js +127 -0
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/esm/cosmos_proto/bundle.js +1 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +12 -0
- package/esm/cosmwasm/wasm/v1/authz.js +113 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/esm/cosmwasm/wasm/v1/query.js +580 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/esm/cosmwasm/wasm/v1/tx.js +267 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
- package/esm/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/ethermint/bundle.js +25 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/esm/ethermint/evm/v1/events.js +24 -0
- package/esm/ethermint/evm/v1/evm.js +69 -0
- package/esm/ethermint/evm/v1/genesis.js +21 -0
- package/esm/ethermint/evm/v1/query.js +167 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
- package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
- package/esm/ethermint/evm/v1/tx.js +66 -0
- package/esm/ethermint/evm/v1/tx.registry.js +44 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
- package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
- package/esm/ethermint/feemarket/v1/events.js +12 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
- package/esm/ethermint/feemarket/v1/genesis.js +10 -0
- package/esm/ethermint/feemarket/v1/query.js +42 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
- package/esm/ethermint/feemarket/v1/tx.js +17 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
- package/esm/ethermint/types/v1/account.js +10 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
- package/esm/ethermint/types/v1/indexer.js +6 -0
- package/esm/ethermint/types/v1/web3.js +7 -0
- package/esm/extern.js +14 -4
- package/esm/google/api/http.js +290 -0
- package/esm/google/bundle.js +5 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +553 -11
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +14 -22
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/transfer/v1/authz.js +19 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
- package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/esm/ibc/applications/transfer/v1/query.js +270 -175
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/esm/ibc/applications/transfer/v1/token.js +300 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
- package/esm/ibc/applications/transfer/v1/tx.js +49 -3
- package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/bundle.js +94 -0
- package/esm/ibc/core/channel/v1/channel.js +84 -124
- package/esm/ibc/core/channel/v1/genesis.js +21 -17
- package/esm/ibc/core/channel/v1/query.js +252 -530
- package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
- package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/esm/ibc/core/channel/v1/tx.js +164 -1970
- package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/esm/ibc/core/channel/v2/genesis.js +360 -0
- package/esm/ibc/core/channel/v2/packet.js +508 -0
- package/esm/ibc/core/channel/v2/query.js +1727 -0
- package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
- package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
- package/esm/ibc/core/channel/v2/tx.js +901 -0
- package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
- package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
- package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
- package/esm/ibc/core/client/v1/client.js +50 -235
- package/esm/ibc/core/client/v1/genesis.js +27 -0
- package/esm/ibc/core/client/v1/query.js +355 -16
- package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
- package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/esm/ibc/core/client/v1/tx.js +279 -7
- package/esm/ibc/core/client/v1/tx.registry.js +154 -2
- package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
- package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/esm/ibc/core/client/v2/config.js +90 -0
- package/esm/ibc/core/client/v2/counterparty.js +100 -0
- package/esm/ibc/core/client/v2/genesis.js +194 -0
- package/esm/ibc/core/client/v2/query.js +348 -0
- package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
- package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
- package/esm/ibc/core/client/v2/tx.js +378 -0
- package/esm/ibc/core/client/v2/tx.registry.js +46 -0
- package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
- package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
- package/esm/ibc/core/commitment/v1/commitment.js +29 -80
- package/esm/ibc/core/commitment/v2/commitment.js +118 -0
- package/esm/ibc/core/connection/v1/connection.js +57 -0
- package/esm/ibc/core/connection/v1/genesis.js +10 -0
- package/esm/ibc/core/connection/v1/query.js +105 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
- package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
- package/esm/ibc/core/connection/v1/tx.js +82 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
- package/esm/ibc/core/types/v1/genesis.js +41 -3
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/esm/index.js +21 -0
- package/esm/react-query.js +4 -6
- package/esm/registry.js +9 -1
- package/esm/tendermint/abci/types.js +322 -0
- package/esm/tendermint/bundle.js +10 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +36 -0
- package/esm/tendermint/p2p/types.js +24 -0
- package/esm/tendermint/types/block.js +9 -0
- package/esm/tendermint/types/evidence.js +35 -0
- package/esm/tendermint/types/params.js +50 -0
- package/esm/tendermint/types/types.js +121 -0
- package/esm/tendermint/types/validator.js +25 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/esm/xpla/bundle.js +28 -0
- package/esm/xpla/burn/v1beta1/burn.js +111 -0
- package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/esm/xpla/burn/v1beta1/query.js +327 -0
- package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
- package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
- package/esm/xpla/burn/v1beta1/tx.js +169 -0
- package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
- package/esm/xpla/reward/v1beta1/genesis.js +10 -0
- package/esm/xpla/reward/v1beta1/query.js +33 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
- package/esm/xpla/reward/v1beta1/reward.js +6 -0
- package/esm/xpla/reward/v1beta1/tx.js +35 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
- package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/esm/xpla/volunteer/v1beta1/query.js +12 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
- package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/ethermint/bundle.d.ts +25 -0
- package/ethermint/bundle.js +142 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/ethermint/evm/v1/events.d.ts +144 -32
- package/ethermint/evm/v1/events.js +24 -0
- package/ethermint/evm/v1/evm.d.ts +434 -110
- package/ethermint/evm/v1/evm.js +69 -0
- package/ethermint/evm/v1/genesis.d.ts +62 -12
- package/ethermint/evm/v1/genesis.js +21 -0
- package/ethermint/evm/v1/query.d.ts +673 -126
- package/ethermint/evm/v1/query.js +167 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
- package/ethermint/evm/v1/query.rpc.func.js +88 -37
- package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
- package/ethermint/evm/v1/query.rpc.react.js +87 -12
- package/ethermint/evm/v1/tx.d.ts +363 -88
- package/ethermint/evm/v1/tx.js +66 -0
- package/ethermint/evm/v1/tx.registry.d.ts +33 -0
- package/ethermint/evm/v1/tx.registry.js +45 -1
- package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
- package/ethermint/evm/v1/tx.rpc.func.js +18 -16
- package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
- package/ethermint/evm/v1/tx.rpc.react.js +15 -2
- package/ethermint/feemarket/v1/events.d.ts +54 -10
- package/ethermint/feemarket/v1/events.js +12 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
- package/ethermint/feemarket/v1/feemarket.js +6 -0
- package/ethermint/feemarket/v1/genesis.d.ts +24 -4
- package/ethermint/feemarket/v1/genesis.js +10 -0
- package/ethermint/feemarket/v1/query.d.ts +116 -14
- package/ethermint/feemarket/v1/query.js +42 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
- package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
- package/ethermint/feemarket/v1/tx.d.ts +37 -4
- package/ethermint/feemarket/v1/tx.js +17 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
- package/ethermint/feemarket/v1/tx.registry.js +27 -1
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
- package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
- package/ethermint/types/v1/account.d.ts +25 -4
- package/ethermint/types/v1/account.js +10 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
- package/ethermint/types/v1/dynamic_fee.js +6 -0
- package/ethermint/types/v1/indexer.d.ts +42 -10
- package/ethermint/types/v1/indexer.js +6 -0
- package/ethermint/types/v1/web3.d.ts +13 -0
- package/ethermint/types/v1/web3.js +7 -0
- package/extern.d.ts +3 -2
- package/extern.js +14 -4
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +290 -0
- package/google/bundle.d.ts +5 -0
- package/google/bundle.js +21 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +833 -86
- package/google/protobuf/descriptor.js +561 -13
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +7 -87
- package/helper-func-types.js +15 -24
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +19 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
- package/ibc/applications/transfer/v1/denomtrace.js +101 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
- package/ibc/applications/transfer/v1/genesis.js +23 -12
- package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
- package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/ibc/applications/transfer/v1/query.d.ts +389 -170
- package/ibc/applications/transfer/v1/query.js +270 -175
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
- package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
- package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/ibc/applications/transfer/v1/token.d.ts +179 -0
- package/ibc/applications/transfer/v1/token.js +303 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
- package/ibc/applications/transfer/v1/transfer.js +10 -90
- package/ibc/applications/transfer/v1/tx.d.ts +127 -24
- package/ibc/applications/transfer/v1/tx.js +49 -3
- package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/transfer/v1/tx.registry.js +45 -1
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
- package/ibc/bundle.d.ts +94 -0
- package/ibc/bundle.js +540 -0
- package/ibc/core/channel/v1/channel.d.ts +293 -120
- package/ibc/core/channel/v1/channel.js +85 -125
- package/ibc/core/channel/v1/genesis.d.ts +38 -7
- package/ibc/core/channel/v1/genesis.js +20 -16
- package/ibc/core/channel/v1/query.d.ts +840 -378
- package/ibc/core/channel/v1/query.js +252 -530
- package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
- package/ibc/core/channel/v1/query.rpc.func.js +107 -70
- package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
- package/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/ibc/core/channel/v1/tx.d.ts +335 -747
- package/ibc/core/channel/v1/tx.js +164 -1970
- package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
- package/ibc/core/channel/v1/tx.registry.js +190 -2
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
- package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
- package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/ibc/core/channel/v2/genesis.d.ts +202 -0
- package/ibc/core/channel/v2/genesis.js +363 -0
- package/ibc/core/channel/v2/packet.d.ts +322 -0
- package/ibc/core/channel/v2/packet.js +513 -0
- package/ibc/core/channel/v2/query.d.ts +1067 -0
- package/ibc/core/channel/v2/query.js +1730 -0
- package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.func.js +109 -0
- package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.react.js +85 -0
- package/ibc/core/channel/v2/tx.d.ts +437 -0
- package/ibc/core/channel/v2/tx.js +906 -0
- package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
- package/ibc/core/channel/v2/tx.registry.js +85 -0
- package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
- package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
- package/ibc/core/client/v1/client.d.ts +133 -153
- package/ibc/core/client/v1/client.js +51 -236
- package/ibc/core/client/v1/genesis.d.ts +86 -20
- package/ibc/core/client/v1/genesis.js +27 -0
- package/ibc/core/client/v1/query.d.ts +591 -75
- package/ibc/core/client/v1/query.js +356 -17
- package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
- package/ibc/core/client/v1/query.rpc.func.js +86 -31
- package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
- package/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/ibc/core/client/v1/tx.d.ts +454 -60
- package/ibc/core/client/v1/tx.js +280 -8
- package/ibc/core/client/v1/tx.registry.d.ts +105 -0
- package/ibc/core/client/v1/tx.registry.js +154 -2
- package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
- package/ibc/core/client/v1/tx.rpc.func.js +73 -58
- package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
- package/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/ibc/core/client/v2/config.d.ts +66 -0
- package/ibc/core/client/v2/config.js +93 -0
- package/ibc/core/client/v2/counterparty.d.ts +65 -0
- package/ibc/core/client/v2/counterparty.js +103 -0
- package/ibc/core/client/v2/genesis.d.ts +121 -0
- package/ibc/core/client/v2/genesis.js +197 -0
- package/ibc/core/client/v2/query.d.ts +218 -0
- package/ibc/core/client/v2/query.js +351 -0
- package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.func.js +31 -0
- package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.react.js +25 -0
- package/ibc/core/client/v2/tx.d.ts +251 -0
- package/ibc/core/client/v2/tx.js +381 -0
- package/ibc/core/client/v2/tx.registry.d.ts +35 -0
- package/ibc/core/client/v2/tx.registry.js +49 -0
- package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.func.js +23 -0
- package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.react.js +23 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -41
- package/ibc/core/commitment/v1/commitment.js +30 -81
- package/ibc/core/commitment/v2/commitment.d.ts +141 -0
- package/ibc/core/commitment/v2/commitment.js +121 -0
- package/ibc/core/connection/v1/connection.d.ts +199 -38
- package/ibc/core/connection/v1/connection.js +57 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +10 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +105 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
- package/ibc/core/connection/v1/query.rpc.func.js +46 -19
- package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
- package/ibc/core/connection/v1/query.rpc.react.js +45 -6
- package/ibc/core/connection/v1/tx.d.ts +254 -32
- package/ibc/core/connection/v1/tx.js +82 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
- package/ibc/core/connection/v1/tx.registry.js +99 -1
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
- package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
- package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
- package/ibc/core/types/v1/genesis.d.ts +56 -8
- package/ibc/core/types/v1/genesis.js +41 -3
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
- package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
- package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
- package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +31 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
- package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
- package/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/index.d.ts +21 -0
- package/index.js +37 -0
- package/package.json +8 -9
- package/react-query.d.ts +8 -6
- package/react-query.js +5 -7
- package/registry.d.ts +3 -1
- package/registry.js +9 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +322 -0
- package/tendermint/bundle.d.ts +10 -0
- package/tendermint/bundle.js +115 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +36 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +24 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +9 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +35 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +50 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +121 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +25 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +4 -49
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/xpla/bundle.d.ts +28 -0
- package/xpla/bundle.js +71 -0
- package/xpla/burn/v1beta1/burn.d.ts +54 -0
- package/xpla/burn/v1beta1/burn.js +114 -0
- package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
- package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/xpla/burn/v1beta1/query.d.ts +204 -0
- package/xpla/burn/v1beta1/query.js +330 -0
- package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
- package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
- package/xpla/burn/v1beta1/tx.d.ts +105 -0
- package/xpla/burn/v1beta1/tx.js +172 -0
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
- package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
- package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
- package/xpla/reward/v1beta1/genesis.d.ts +24 -4
- package/xpla/reward/v1beta1/genesis.js +10 -0
- package/xpla/reward/v1beta1/query.d.ts +74 -8
- package/xpla/reward/v1beta1/query.js +33 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
- package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
- package/xpla/reward/v1beta1/reward.d.ts +18 -2
- package/xpla/reward/v1beta1/reward.js +6 -0
- package/xpla/reward/v1beta1/tx.d.ts +64 -4
- package/xpla/reward/v1beta1/tx.js +35 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/reward/v1beta1/tx.registry.js +45 -1
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
- package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
- package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
- package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
- package/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
- package/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/xpla/volunteer/v1beta1/query.d.ts +36 -4
- package/xpla/volunteer/v1beta1/query.js +12 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
- package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
- package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
- package/xpla/volunteer/v1beta1/tx.js +31 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
- package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/cosmos/app/runtime/v2/module.d.ts +0 -231
- package/cosmos/app/runtime/v2/module.js +0 -421
- package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
- package/cosmos/auth/v1beta1/accounts.js +0 -161
- package/cosmos/base/grpc/v2/service.d.ts +0 -168
- package/cosmos/base/grpc/v2/service.js +0 -394
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
- package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
- package/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/cosmos/circuit/module/v1/module.js +0 -83
- package/cosmos/circuit/v1/query.d.ts +0 -200
- package/cosmos/circuit/v1/query.js +0 -480
- package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/query.rpc.func.js +0 -42
- package/cosmos/circuit/v1/tx.d.ts +0 -251
- package/cosmos/circuit/v1/tx.js +0 -528
- package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
- package/cosmos/circuit/v1/tx.registry.js +0 -67
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
- package/cosmos/circuit/v1/types.d.ts +0 -151
- package/cosmos/circuit/v1/types.js +0 -350
- package/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/cosmos/crisis/module/v1/module.js +0 -95
- package/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/cosmos/crisis/v1beta1/tx.js +0 -328
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
- package/cosmos/crypto/ed25519/keys.d.ts +0 -84
- package/cosmos/crypto/ed25519/keys.js +0 -162
- package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/cosmos/crypto/hd/v1/hd.js +0 -131
- package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/cosmos/crypto/keyring/v1/record.js +0 -431
- package/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/cosmos/crypto/multisig/keys.js +0 -99
- package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
- package/cosmos/crypto/secp256k1/keys.js +0 -162
- package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
- package/cosmos/crypto/secp256r1/keys.js +0 -162
- package/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/cosmos/genutil/module/v1/module.js +0 -70
- package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/cosmos/group/module/v1/module.d.ts +0 -53
- package/cosmos/group/module/v1/module.js +0 -96
- package/cosmos/group/v1/events.d.ts +0 -363
- package/cosmos/group/v1/events.js +0 -847
- package/cosmos/group/v1/genesis.d.ts +0 -83
- package/cosmos/group/v1/genesis.js +0 -183
- package/cosmos/group/v1/query.d.ts +0 -1044
- package/cosmos/group/v1/query.js +0 -2434
- package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/query.rpc.func.js +0 -174
- package/cosmos/group/v1/tx.d.ts +0 -1140
- package/cosmos/group/v1/tx.js +0 -2567
- package/cosmos/group/v1/tx.registry.d.ts +0 -179
- package/cosmos/group/v1/tx.registry.js +0 -265
- package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/tx.rpc.func.js +0 -147
- package/cosmos/group/v1/types.d.ts +0 -799
- package/cosmos/group/v1/types.js +0 -1542
- package/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/cosmos/msg/textual/v1/textual.js +0 -2
- package/cosmos/nft/module/v1/module.d.ts +0 -32
- package/cosmos/nft/module/v1/module.js +0 -70
- package/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/cosmos/nft/v1beta1/event.js +0 -323
- package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/cosmos/nft/v1beta1/genesis.js +0 -195
- package/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/cosmos/nft/v1beta1/nft.js +0 -282
- package/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/cosmos/nft/v1beta1/query.js +0 -1189
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
- package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
- package/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/cosmos/nft/v1beta1/tx.js +0 -184
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
- package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
- package/cosmos/orm/v1/orm.d.ts +0 -278
- package/cosmos/orm/v1/orm.js +0 -380
- package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/cosmos/orm/v1alpha1/schema.js +0 -258
- package/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/cosmos/reflection/v1/reflection.js +0 -152
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
- package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/cosmos/store/streaming/abci/grpc.js +0 -332
- package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/cosmos/store/v1beta1/commit_info.js +0 -292
- package/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/cosmos/store/v1beta1/listening.js +0 -223
- package/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/cosmos/streaming/v1/grpc.js +0 -826
- package/cosmos/validate/module/v1/module.d.ts +0 -32
- package/cosmos/validate/module/v1/module.js +0 -70
- package/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/cosmos/vesting/module/v1/module.js +0 -70
- package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
- package/cosmos/vesting/v1beta1/tx.js +0 -553
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
- package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
- package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
- package/cosmos/vesting/v1beta1/vesting.js +0 -586
- package/dist/package.json +0 -50
- package/esm/cosmos/app/runtime/v2/module.js +0 -418
- package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
- package/esm/cosmos/base/grpc/v2/service.js +0 -391
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
- package/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/esm/cosmos/circuit/v1/query.js +0 -477
- package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
- package/esm/cosmos/circuit/v1/tx.js +0 -525
- package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
- package/esm/cosmos/circuit/v1/types.js +0 -345
- package/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
- package/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/esm/cosmos/group/module/v1/module.js +0 -93
- package/esm/cosmos/group/v1/events.js +0 -844
- package/esm/cosmos/group/v1/genesis.js +0 -180
- package/esm/cosmos/group/v1/query.js +0 -2431
- package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
- package/esm/cosmos/group/v1/tx.js +0 -2562
- package/esm/cosmos/group/v1/tx.registry.js +0 -262
- package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
- package/esm/cosmos/group/v1/types.js +0 -1533
- package/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/esm/cosmos/nft/module/v1/module.js +0 -67
- package/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
- package/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
- package/esm/cosmos/orm/v1/orm.js +0 -377
- package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/esm/cosmos/validate/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
- package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/esm/ibc/applications/fee/v1/ack.js +0 -103
- package/esm/ibc/applications/fee/v1/fee.js +0 -398
- package/esm/ibc/applications/fee/v1/genesis.js +0 -531
- package/esm/ibc/applications/fee/v1/metadata.js +0 -90
- package/esm/ibc/applications/fee/v1/query.js +0 -1739
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
- package/esm/ibc/applications/fee/v1/tx.js +0 -707
- package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
- package/esm/ibc/core/channel/v1/upgrade.js +0 -300
- package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/ibc/applications/fee/v1/ack.d.ts +0 -45
- package/ibc/applications/fee/v1/ack.js +0 -106
- package/ibc/applications/fee/v1/fee.d.ts +0 -164
- package/ibc/applications/fee/v1/fee.js +0 -401
- package/ibc/applications/fee/v1/genesis.d.ts +0 -225
- package/ibc/applications/fee/v1/genesis.js +0 -534
- package/ibc/applications/fee/v1/metadata.d.ts +0 -47
- package/ibc/applications/fee/v1/metadata.js +0 -93
- package/ibc/applications/fee/v1/query.d.ts +0 -757
- package/ibc/applications/fee/v1/query.js +0 -1742
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
- package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
- package/ibc/applications/fee/v1/tx.d.ts +0 -326
- package/ibc/applications/fee/v1/tx.js +0 -710
- package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
- package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
- package/ibc/core/channel/v1/upgrade.d.ts +0 -142
- package/ibc/core/channel/v1/upgrade.js +0 -303
- package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
- package/ibc/lightclients/localhost/v2/localhost.js +0 -84
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
2
2
|
import { isSet, bytesFromBase64, base64FromBytes } from "../../helpers";
|
|
3
|
+
import { GlobalDecoderRegistry } from "../../registry";
|
|
3
4
|
/** The full set of known editions. */
|
|
4
5
|
export var Edition;
|
|
5
6
|
(function (Edition) {
|
|
@@ -880,6 +881,102 @@ export function featureSet_JsonFormatToJSON(object) {
|
|
|
880
881
|
return "UNRECOGNIZED";
|
|
881
882
|
}
|
|
882
883
|
}
|
|
884
|
+
export var FeatureSet_EnforceNamingStyle;
|
|
885
|
+
(function (FeatureSet_EnforceNamingStyle) {
|
|
886
|
+
FeatureSet_EnforceNamingStyle[FeatureSet_EnforceNamingStyle["ENFORCE_NAMING_STYLE_UNKNOWN"] = 0] = "ENFORCE_NAMING_STYLE_UNKNOWN";
|
|
887
|
+
FeatureSet_EnforceNamingStyle[FeatureSet_EnforceNamingStyle["STYLE2024"] = 1] = "STYLE2024";
|
|
888
|
+
FeatureSet_EnforceNamingStyle[FeatureSet_EnforceNamingStyle["STYLE_LEGACY"] = 2] = "STYLE_LEGACY";
|
|
889
|
+
FeatureSet_EnforceNamingStyle[FeatureSet_EnforceNamingStyle["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
890
|
+
})(FeatureSet_EnforceNamingStyle || (FeatureSet_EnforceNamingStyle = {}));
|
|
891
|
+
export const FeatureSet_EnforceNamingStyleAmino = FeatureSet_EnforceNamingStyle;
|
|
892
|
+
export function featureSet_EnforceNamingStyleFromJSON(object) {
|
|
893
|
+
switch (object) {
|
|
894
|
+
case 0:
|
|
895
|
+
case "ENFORCE_NAMING_STYLE_UNKNOWN":
|
|
896
|
+
return FeatureSet_EnforceNamingStyle.ENFORCE_NAMING_STYLE_UNKNOWN;
|
|
897
|
+
case 1:
|
|
898
|
+
case "STYLE2024":
|
|
899
|
+
return FeatureSet_EnforceNamingStyle.STYLE2024;
|
|
900
|
+
case 2:
|
|
901
|
+
case "STYLE_LEGACY":
|
|
902
|
+
return FeatureSet_EnforceNamingStyle.STYLE_LEGACY;
|
|
903
|
+
case -1:
|
|
904
|
+
case "UNRECOGNIZED":
|
|
905
|
+
default:
|
|
906
|
+
return FeatureSet_EnforceNamingStyle.UNRECOGNIZED;
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
export function featureSet_EnforceNamingStyleToJSON(object) {
|
|
910
|
+
switch (object) {
|
|
911
|
+
case FeatureSet_EnforceNamingStyle.ENFORCE_NAMING_STYLE_UNKNOWN:
|
|
912
|
+
return "ENFORCE_NAMING_STYLE_UNKNOWN";
|
|
913
|
+
case FeatureSet_EnforceNamingStyle.STYLE2024:
|
|
914
|
+
return "STYLE2024";
|
|
915
|
+
case FeatureSet_EnforceNamingStyle.STYLE_LEGACY:
|
|
916
|
+
return "STYLE_LEGACY";
|
|
917
|
+
case FeatureSet_EnforceNamingStyle.UNRECOGNIZED:
|
|
918
|
+
default:
|
|
919
|
+
return "UNRECOGNIZED";
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
export var FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
923
|
+
(function (FeatureSet_VisibilityFeature_DefaultSymbolVisibility) {
|
|
924
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["DEFAULT_SYMBOL_VISIBILITY_UNKNOWN"] = 0] = "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN";
|
|
925
|
+
/** EXPORT_ALL - Default pre-EDITION_2024, all UNSET visibility are export. */
|
|
926
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["EXPORT_ALL"] = 1] = "EXPORT_ALL";
|
|
927
|
+
/** EXPORT_TOP_LEVEL - All top-level symbols default to export, nested default to local. */
|
|
928
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["EXPORT_TOP_LEVEL"] = 2] = "EXPORT_TOP_LEVEL";
|
|
929
|
+
/** LOCAL_ALL - All symbols default to local. */
|
|
930
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["LOCAL_ALL"] = 3] = "LOCAL_ALL";
|
|
931
|
+
/**
|
|
932
|
+
* STRICT - All symbols local by default. Nested types cannot be exported.
|
|
933
|
+
* With special case caveat for message { enum {} reserved 1 to max; }
|
|
934
|
+
* This is the recommended setting for new protos.
|
|
935
|
+
*/
|
|
936
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["STRICT"] = 4] = "STRICT";
|
|
937
|
+
FeatureSet_VisibilityFeature_DefaultSymbolVisibility[FeatureSet_VisibilityFeature_DefaultSymbolVisibility["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
938
|
+
})(FeatureSet_VisibilityFeature_DefaultSymbolVisibility || (FeatureSet_VisibilityFeature_DefaultSymbolVisibility = {}));
|
|
939
|
+
export const FeatureSet_VisibilityFeature_DefaultSymbolVisibilityAmino = FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
940
|
+
export function featureSet_VisibilityFeature_DefaultSymbolVisibilityFromJSON(object) {
|
|
941
|
+
switch (object) {
|
|
942
|
+
case 0:
|
|
943
|
+
case "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN":
|
|
944
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.DEFAULT_SYMBOL_VISIBILITY_UNKNOWN;
|
|
945
|
+
case 1:
|
|
946
|
+
case "EXPORT_ALL":
|
|
947
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_ALL;
|
|
948
|
+
case 2:
|
|
949
|
+
case "EXPORT_TOP_LEVEL":
|
|
950
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_TOP_LEVEL;
|
|
951
|
+
case 3:
|
|
952
|
+
case "LOCAL_ALL":
|
|
953
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.LOCAL_ALL;
|
|
954
|
+
case 4:
|
|
955
|
+
case "STRICT":
|
|
956
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.STRICT;
|
|
957
|
+
case -1:
|
|
958
|
+
case "UNRECOGNIZED":
|
|
959
|
+
default:
|
|
960
|
+
return FeatureSet_VisibilityFeature_DefaultSymbolVisibility.UNRECOGNIZED;
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
export function featureSet_VisibilityFeature_DefaultSymbolVisibilityToJSON(object) {
|
|
964
|
+
switch (object) {
|
|
965
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.DEFAULT_SYMBOL_VISIBILITY_UNKNOWN:
|
|
966
|
+
return "DEFAULT_SYMBOL_VISIBILITY_UNKNOWN";
|
|
967
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_ALL:
|
|
968
|
+
return "EXPORT_ALL";
|
|
969
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.EXPORT_TOP_LEVEL:
|
|
970
|
+
return "EXPORT_TOP_LEVEL";
|
|
971
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.LOCAL_ALL:
|
|
972
|
+
return "LOCAL_ALL";
|
|
973
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.STRICT:
|
|
974
|
+
return "STRICT";
|
|
975
|
+
case FeatureSet_VisibilityFeature_DefaultSymbolVisibility.UNRECOGNIZED:
|
|
976
|
+
default:
|
|
977
|
+
return "UNRECOGNIZED";
|
|
978
|
+
}
|
|
979
|
+
}
|
|
883
980
|
/**
|
|
884
981
|
* Represents the identified object's effect on the element in the original
|
|
885
982
|
* .proto file.
|
|
@@ -925,11 +1022,63 @@ export function generatedCodeInfo_Annotation_SemanticToJSON(object) {
|
|
|
925
1022
|
return "UNRECOGNIZED";
|
|
926
1023
|
}
|
|
927
1024
|
}
|
|
1025
|
+
/**
|
|
1026
|
+
* Describes the 'visibility' of a symbol with respect to the proto import
|
|
1027
|
+
* system. Symbols can only be imported when the visibility rules do not prevent
|
|
1028
|
+
* it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
|
1029
|
+
* on `message` and `enum` as they are the only types available to be referenced
|
|
1030
|
+
* from other files.
|
|
1031
|
+
*/
|
|
1032
|
+
export var SymbolVisibility;
|
|
1033
|
+
(function (SymbolVisibility) {
|
|
1034
|
+
SymbolVisibility[SymbolVisibility["VISIBILITY_UNSET"] = 0] = "VISIBILITY_UNSET";
|
|
1035
|
+
SymbolVisibility[SymbolVisibility["VISIBILITY_LOCAL"] = 1] = "VISIBILITY_LOCAL";
|
|
1036
|
+
SymbolVisibility[SymbolVisibility["VISIBILITY_EXPORT"] = 2] = "VISIBILITY_EXPORT";
|
|
1037
|
+
SymbolVisibility[SymbolVisibility["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1038
|
+
})(SymbolVisibility || (SymbolVisibility = {}));
|
|
1039
|
+
export const SymbolVisibilityAmino = SymbolVisibility;
|
|
1040
|
+
export function symbolVisibilityFromJSON(object) {
|
|
1041
|
+
switch (object) {
|
|
1042
|
+
case 0:
|
|
1043
|
+
case "VISIBILITY_UNSET":
|
|
1044
|
+
return SymbolVisibility.VISIBILITY_UNSET;
|
|
1045
|
+
case 1:
|
|
1046
|
+
case "VISIBILITY_LOCAL":
|
|
1047
|
+
return SymbolVisibility.VISIBILITY_LOCAL;
|
|
1048
|
+
case 2:
|
|
1049
|
+
case "VISIBILITY_EXPORT":
|
|
1050
|
+
return SymbolVisibility.VISIBILITY_EXPORT;
|
|
1051
|
+
case -1:
|
|
1052
|
+
case "UNRECOGNIZED":
|
|
1053
|
+
default:
|
|
1054
|
+
return SymbolVisibility.UNRECOGNIZED;
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
export function symbolVisibilityToJSON(object) {
|
|
1058
|
+
switch (object) {
|
|
1059
|
+
case SymbolVisibility.VISIBILITY_UNSET:
|
|
1060
|
+
return "VISIBILITY_UNSET";
|
|
1061
|
+
case SymbolVisibility.VISIBILITY_LOCAL:
|
|
1062
|
+
return "VISIBILITY_LOCAL";
|
|
1063
|
+
case SymbolVisibility.VISIBILITY_EXPORT:
|
|
1064
|
+
return "VISIBILITY_EXPORT";
|
|
1065
|
+
case SymbolVisibility.UNRECOGNIZED:
|
|
1066
|
+
default:
|
|
1067
|
+
return "UNRECOGNIZED";
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
928
1070
|
function createBaseFileDescriptorSet() {
|
|
929
1071
|
return {
|
|
930
1072
|
file: []
|
|
931
1073
|
};
|
|
932
1074
|
}
|
|
1075
|
+
/**
|
|
1076
|
+
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
|
1077
|
+
* files it parses.
|
|
1078
|
+
* @name FileDescriptorSet
|
|
1079
|
+
* @package google.protobuf
|
|
1080
|
+
* @see proto type: google.protobuf.FileDescriptorSet
|
|
1081
|
+
*/
|
|
933
1082
|
export const FileDescriptorSet = {
|
|
934
1083
|
typeUrl: "/google.protobuf.FileDescriptorSet",
|
|
935
1084
|
is(o) {
|
|
@@ -997,6 +1146,9 @@ export const FileDescriptorSet = {
|
|
|
997
1146
|
};
|
|
998
1147
|
},
|
|
999
1148
|
registerTypeUrl() {
|
|
1149
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FileDescriptorSet.typeUrl)) {
|
|
1150
|
+
return;
|
|
1151
|
+
}
|
|
1000
1152
|
FileDescriptorProto.registerTypeUrl();
|
|
1001
1153
|
}
|
|
1002
1154
|
};
|
|
@@ -1007,6 +1159,7 @@ function createBaseFileDescriptorProto() {
|
|
|
1007
1159
|
dependency: [],
|
|
1008
1160
|
publicDependency: [],
|
|
1009
1161
|
weakDependency: [],
|
|
1162
|
+
optionDependency: [],
|
|
1010
1163
|
messageType: [],
|
|
1011
1164
|
enumType: [],
|
|
1012
1165
|
service: [],
|
|
@@ -1017,13 +1170,19 @@ function createBaseFileDescriptorProto() {
|
|
|
1017
1170
|
edition: 1
|
|
1018
1171
|
};
|
|
1019
1172
|
}
|
|
1173
|
+
/**
|
|
1174
|
+
* Describes a complete .proto file.
|
|
1175
|
+
* @name FileDescriptorProto
|
|
1176
|
+
* @package google.protobuf
|
|
1177
|
+
* @see proto type: google.protobuf.FileDescriptorProto
|
|
1178
|
+
*/
|
|
1020
1179
|
export const FileDescriptorProto = {
|
|
1021
1180
|
typeUrl: "/google.protobuf.FileDescriptorProto",
|
|
1022
1181
|
is(o) {
|
|
1023
|
-
return o && (o.$typeUrl === FileDescriptorProto.typeUrl || typeof o.name === "string" && typeof o.package === "string" && Array.isArray(o.dependency) && (!o.dependency.length || typeof o.dependency[0] === "string") && Array.isArray(o.publicDependency) && (!o.publicDependency.length || typeof o.publicDependency[0] === "number") && Array.isArray(o.weakDependency) && (!o.weakDependency.length || typeof o.weakDependency[0] === "number") && Array.isArray(o.messageType) && (!o.messageType.length || DescriptorProto.is(o.messageType[0])) && Array.isArray(o.enumType) && (!o.enumType.length || EnumDescriptorProto.is(o.enumType[0])) && Array.isArray(o.service) && (!o.service.length || ServiceDescriptorProto.is(o.service[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.is(o.extension[0])) && typeof o.syntax === "string" && isSet(o.edition));
|
|
1182
|
+
return o && (o.$typeUrl === FileDescriptorProto.typeUrl || typeof o.name === "string" && typeof o.package === "string" && Array.isArray(o.dependency) && (!o.dependency.length || typeof o.dependency[0] === "string") && Array.isArray(o.publicDependency) && (!o.publicDependency.length || typeof o.publicDependency[0] === "number") && Array.isArray(o.weakDependency) && (!o.weakDependency.length || typeof o.weakDependency[0] === "number") && Array.isArray(o.optionDependency) && (!o.optionDependency.length || typeof o.optionDependency[0] === "string") && Array.isArray(o.messageType) && (!o.messageType.length || DescriptorProto.is(o.messageType[0])) && Array.isArray(o.enumType) && (!o.enumType.length || EnumDescriptorProto.is(o.enumType[0])) && Array.isArray(o.service) && (!o.service.length || ServiceDescriptorProto.is(o.service[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.is(o.extension[0])) && typeof o.syntax === "string" && isSet(o.edition));
|
|
1024
1183
|
},
|
|
1025
1184
|
isAmino(o) {
|
|
1026
|
-
return o && (o.$typeUrl === FileDescriptorProto.typeUrl || typeof o.name === "string" && typeof o.package === "string" && Array.isArray(o.dependency) && (!o.dependency.length || typeof o.dependency[0] === "string") && Array.isArray(o.public_dependency) && (!o.public_dependency.length || typeof o.public_dependency[0] === "number") && Array.isArray(o.weak_dependency) && (!o.weak_dependency.length || typeof o.weak_dependency[0] === "number") && Array.isArray(o.message_type) && (!o.message_type.length || DescriptorProto.isAmino(o.message_type[0])) && Array.isArray(o.enum_type) && (!o.enum_type.length || EnumDescriptorProto.isAmino(o.enum_type[0])) && Array.isArray(o.service) && (!o.service.length || ServiceDescriptorProto.isAmino(o.service[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.isAmino(o.extension[0])) && typeof o.syntax === "string" && isSet(o.edition));
|
|
1185
|
+
return o && (o.$typeUrl === FileDescriptorProto.typeUrl || typeof o.name === "string" && typeof o.package === "string" && Array.isArray(o.dependency) && (!o.dependency.length || typeof o.dependency[0] === "string") && Array.isArray(o.public_dependency) && (!o.public_dependency.length || typeof o.public_dependency[0] === "number") && Array.isArray(o.weak_dependency) && (!o.weak_dependency.length || typeof o.weak_dependency[0] === "number") && Array.isArray(o.option_dependency) && (!o.option_dependency.length || typeof o.option_dependency[0] === "string") && Array.isArray(o.message_type) && (!o.message_type.length || DescriptorProto.isAmino(o.message_type[0])) && Array.isArray(o.enum_type) && (!o.enum_type.length || EnumDescriptorProto.isAmino(o.enum_type[0])) && Array.isArray(o.service) && (!o.service.length || ServiceDescriptorProto.isAmino(o.service[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.isAmino(o.extension[0])) && typeof o.syntax === "string" && isSet(o.edition));
|
|
1027
1186
|
},
|
|
1028
1187
|
encode(message, writer = BinaryWriter.create()) {
|
|
1029
1188
|
if (message.name !== "") {
|
|
@@ -1045,6 +1204,9 @@ export const FileDescriptorProto = {
|
|
|
1045
1204
|
writer.int32(v);
|
|
1046
1205
|
}
|
|
1047
1206
|
writer.ldelim();
|
|
1207
|
+
for (const v of message.optionDependency) {
|
|
1208
|
+
writer.uint32(122).string(v);
|
|
1209
|
+
}
|
|
1048
1210
|
for (const v of message.messageType) {
|
|
1049
1211
|
DescriptorProto.encode(v, writer.uint32(34).fork()).ldelim();
|
|
1050
1212
|
}
|
|
@@ -1109,6 +1271,9 @@ export const FileDescriptorProto = {
|
|
|
1109
1271
|
message.weakDependency.push(reader.int32());
|
|
1110
1272
|
}
|
|
1111
1273
|
break;
|
|
1274
|
+
case 15:
|
|
1275
|
+
message.optionDependency.push(reader.string());
|
|
1276
|
+
break;
|
|
1112
1277
|
case 4:
|
|
1113
1278
|
message.messageType.push(DescriptorProto.decode(reader, reader.uint32()));
|
|
1114
1279
|
break;
|
|
@@ -1147,6 +1312,7 @@ export const FileDescriptorProto = {
|
|
|
1147
1312
|
message.dependency = object.dependency?.map(e => e) || [];
|
|
1148
1313
|
message.publicDependency = object.publicDependency?.map(e => e) || [];
|
|
1149
1314
|
message.weakDependency = object.weakDependency?.map(e => e) || [];
|
|
1315
|
+
message.optionDependency = object.optionDependency?.map(e => e) || [];
|
|
1150
1316
|
message.messageType = object.messageType?.map(e => DescriptorProto.fromPartial(e)) || [];
|
|
1151
1317
|
message.enumType = object.enumType?.map(e => EnumDescriptorProto.fromPartial(e)) || [];
|
|
1152
1318
|
message.service = object.service?.map(e => ServiceDescriptorProto.fromPartial(e)) || [];
|
|
@@ -1168,6 +1334,7 @@ export const FileDescriptorProto = {
|
|
|
1168
1334
|
message.dependency = object.dependency?.map(e => e) || [];
|
|
1169
1335
|
message.publicDependency = object.public_dependency?.map(e => e) || [];
|
|
1170
1336
|
message.weakDependency = object.weak_dependency?.map(e => e) || [];
|
|
1337
|
+
message.optionDependency = object.option_dependency?.map(e => e) || [];
|
|
1171
1338
|
message.messageType = object.message_type?.map(e => DescriptorProto.fromAmino(e)) || [];
|
|
1172
1339
|
message.enumType = object.enum_type?.map(e => EnumDescriptorProto.fromAmino(e)) || [];
|
|
1173
1340
|
message.service = object.service?.map(e => ServiceDescriptorProto.fromAmino(e)) || [];
|
|
@@ -1208,6 +1375,12 @@ export const FileDescriptorProto = {
|
|
|
1208
1375
|
else {
|
|
1209
1376
|
obj.weak_dependency = message.weakDependency;
|
|
1210
1377
|
}
|
|
1378
|
+
if (message.optionDependency) {
|
|
1379
|
+
obj.option_dependency = message.optionDependency.map(e => e);
|
|
1380
|
+
}
|
|
1381
|
+
else {
|
|
1382
|
+
obj.option_dependency = message.optionDependency;
|
|
1383
|
+
}
|
|
1211
1384
|
if (message.messageType) {
|
|
1212
1385
|
obj.message_type = message.messageType.map(e => e ? DescriptorProto.toAmino(e) : undefined);
|
|
1213
1386
|
}
|
|
@@ -1254,6 +1427,9 @@ export const FileDescriptorProto = {
|
|
|
1254
1427
|
};
|
|
1255
1428
|
},
|
|
1256
1429
|
registerTypeUrl() {
|
|
1430
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FileDescriptorProto.typeUrl)) {
|
|
1431
|
+
return;
|
|
1432
|
+
}
|
|
1257
1433
|
DescriptorProto.registerTypeUrl();
|
|
1258
1434
|
EnumDescriptorProto.registerTypeUrl();
|
|
1259
1435
|
ServiceDescriptorProto.registerTypeUrl();
|
|
@@ -1273,16 +1449,23 @@ function createBaseDescriptorProto() {
|
|
|
1273
1449
|
oneofDecl: [],
|
|
1274
1450
|
options: undefined,
|
|
1275
1451
|
reservedRange: [],
|
|
1276
|
-
reservedName: []
|
|
1452
|
+
reservedName: [],
|
|
1453
|
+
visibility: 1
|
|
1277
1454
|
};
|
|
1278
1455
|
}
|
|
1456
|
+
/**
|
|
1457
|
+
* Describes a message type.
|
|
1458
|
+
* @name DescriptorProto
|
|
1459
|
+
* @package google.protobuf
|
|
1460
|
+
* @see proto type: google.protobuf.DescriptorProto
|
|
1461
|
+
*/
|
|
1279
1462
|
export const DescriptorProto = {
|
|
1280
1463
|
typeUrl: "/google.protobuf.DescriptorProto",
|
|
1281
1464
|
is(o) {
|
|
1282
|
-
return o && (o.$typeUrl === DescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.field) && (!o.field.length || FieldDescriptorProto.is(o.field[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.is(o.extension[0])) && Array.isArray(o.nestedType) && (!o.nestedType.length || DescriptorProto.is(o.nestedType[0])) && Array.isArray(o.enumType) && (!o.enumType.length || EnumDescriptorProto.is(o.enumType[0])) && Array.isArray(o.extensionRange) && (!o.extensionRange.length || DescriptorProto_ExtensionRange.is(o.extensionRange[0])) && Array.isArray(o.oneofDecl) && (!o.oneofDecl.length || OneofDescriptorProto.is(o.oneofDecl[0])) && Array.isArray(o.reservedRange) && (!o.reservedRange.length || DescriptorProto_ReservedRange.is(o.reservedRange[0])) && Array.isArray(o.reservedName) && (!o.reservedName.length || typeof o.reservedName[0] === "string"));
|
|
1465
|
+
return o && (o.$typeUrl === DescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.field) && (!o.field.length || FieldDescriptorProto.is(o.field[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.is(o.extension[0])) && Array.isArray(o.nestedType) && (!o.nestedType.length || DescriptorProto.is(o.nestedType[0])) && Array.isArray(o.enumType) && (!o.enumType.length || EnumDescriptorProto.is(o.enumType[0])) && Array.isArray(o.extensionRange) && (!o.extensionRange.length || DescriptorProto_ExtensionRange.is(o.extensionRange[0])) && Array.isArray(o.oneofDecl) && (!o.oneofDecl.length || OneofDescriptorProto.is(o.oneofDecl[0])) && Array.isArray(o.reservedRange) && (!o.reservedRange.length || DescriptorProto_ReservedRange.is(o.reservedRange[0])) && Array.isArray(o.reservedName) && (!o.reservedName.length || typeof o.reservedName[0] === "string") && isSet(o.visibility));
|
|
1283
1466
|
},
|
|
1284
1467
|
isAmino(o) {
|
|
1285
|
-
return o && (o.$typeUrl === DescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.field) && (!o.field.length || FieldDescriptorProto.isAmino(o.field[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.isAmino(o.extension[0])) && Array.isArray(o.nested_type) && (!o.nested_type.length || DescriptorProto.isAmino(o.nested_type[0])) && Array.isArray(o.enum_type) && (!o.enum_type.length || EnumDescriptorProto.isAmino(o.enum_type[0])) && Array.isArray(o.extension_range) && (!o.extension_range.length || DescriptorProto_ExtensionRange.isAmino(o.extension_range[0])) && Array.isArray(o.oneof_decl) && (!o.oneof_decl.length || OneofDescriptorProto.isAmino(o.oneof_decl[0])) && Array.isArray(o.reserved_range) && (!o.reserved_range.length || DescriptorProto_ReservedRange.isAmino(o.reserved_range[0])) && Array.isArray(o.reserved_name) && (!o.reserved_name.length || typeof o.reserved_name[0] === "string"));
|
|
1468
|
+
return o && (o.$typeUrl === DescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.field) && (!o.field.length || FieldDescriptorProto.isAmino(o.field[0])) && Array.isArray(o.extension) && (!o.extension.length || FieldDescriptorProto.isAmino(o.extension[0])) && Array.isArray(o.nested_type) && (!o.nested_type.length || DescriptorProto.isAmino(o.nested_type[0])) && Array.isArray(o.enum_type) && (!o.enum_type.length || EnumDescriptorProto.isAmino(o.enum_type[0])) && Array.isArray(o.extension_range) && (!o.extension_range.length || DescriptorProto_ExtensionRange.isAmino(o.extension_range[0])) && Array.isArray(o.oneof_decl) && (!o.oneof_decl.length || OneofDescriptorProto.isAmino(o.oneof_decl[0])) && Array.isArray(o.reserved_range) && (!o.reserved_range.length || DescriptorProto_ReservedRange.isAmino(o.reserved_range[0])) && Array.isArray(o.reserved_name) && (!o.reserved_name.length || typeof o.reserved_name[0] === "string") && isSet(o.visibility));
|
|
1286
1469
|
},
|
|
1287
1470
|
encode(message, writer = BinaryWriter.create()) {
|
|
1288
1471
|
if (message.name !== "") {
|
|
@@ -1315,6 +1498,9 @@ export const DescriptorProto = {
|
|
|
1315
1498
|
for (const v of message.reservedName) {
|
|
1316
1499
|
writer.uint32(82).string(v);
|
|
1317
1500
|
}
|
|
1501
|
+
if (message.visibility !== 1) {
|
|
1502
|
+
writer.uint32(88).int32(message.visibility);
|
|
1503
|
+
}
|
|
1318
1504
|
return writer;
|
|
1319
1505
|
},
|
|
1320
1506
|
decode(input, length) {
|
|
@@ -1354,6 +1540,9 @@ export const DescriptorProto = {
|
|
|
1354
1540
|
case 10:
|
|
1355
1541
|
message.reservedName.push(reader.string());
|
|
1356
1542
|
break;
|
|
1543
|
+
case 11:
|
|
1544
|
+
message.visibility = reader.int32();
|
|
1545
|
+
break;
|
|
1357
1546
|
default:
|
|
1358
1547
|
reader.skipType(tag & 7);
|
|
1359
1548
|
break;
|
|
@@ -1373,6 +1562,7 @@ export const DescriptorProto = {
|
|
|
1373
1562
|
message.options = object.options !== undefined && object.options !== null ? MessageOptions.fromPartial(object.options) : undefined;
|
|
1374
1563
|
message.reservedRange = object.reservedRange?.map(e => DescriptorProto_ReservedRange.fromPartial(e)) || [];
|
|
1375
1564
|
message.reservedName = object.reservedName?.map(e => e) || [];
|
|
1565
|
+
message.visibility = object.visibility ?? 1;
|
|
1376
1566
|
return message;
|
|
1377
1567
|
},
|
|
1378
1568
|
fromAmino(object) {
|
|
@@ -1391,6 +1581,9 @@ export const DescriptorProto = {
|
|
|
1391
1581
|
}
|
|
1392
1582
|
message.reservedRange = object.reserved_range?.map(e => DescriptorProto_ReservedRange.fromAmino(e)) || [];
|
|
1393
1583
|
message.reservedName = object.reserved_name?.map(e => e) || [];
|
|
1584
|
+
if (object.visibility !== undefined && object.visibility !== null) {
|
|
1585
|
+
message.visibility = object.visibility;
|
|
1586
|
+
}
|
|
1394
1587
|
return message;
|
|
1395
1588
|
},
|
|
1396
1589
|
toAmino(message) {
|
|
@@ -1445,6 +1638,7 @@ export const DescriptorProto = {
|
|
|
1445
1638
|
else {
|
|
1446
1639
|
obj.reserved_name = message.reservedName;
|
|
1447
1640
|
}
|
|
1641
|
+
obj.visibility = message.visibility === 1 ? undefined : message.visibility;
|
|
1448
1642
|
return obj;
|
|
1449
1643
|
},
|
|
1450
1644
|
fromAminoMsg(object) {
|
|
@@ -1463,6 +1657,9 @@ export const DescriptorProto = {
|
|
|
1463
1657
|
};
|
|
1464
1658
|
},
|
|
1465
1659
|
registerTypeUrl() {
|
|
1660
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(DescriptorProto.typeUrl)) {
|
|
1661
|
+
return;
|
|
1662
|
+
}
|
|
1466
1663
|
FieldDescriptorProto.registerTypeUrl();
|
|
1467
1664
|
DescriptorProto.registerTypeUrl();
|
|
1468
1665
|
EnumDescriptorProto.registerTypeUrl();
|
|
@@ -1479,6 +1676,11 @@ function createBaseDescriptorProto_ExtensionRange() {
|
|
|
1479
1676
|
options: undefined
|
|
1480
1677
|
};
|
|
1481
1678
|
}
|
|
1679
|
+
/**
|
|
1680
|
+
* @name DescriptorProto_ExtensionRange
|
|
1681
|
+
* @package google.protobuf
|
|
1682
|
+
* @see proto type: google.protobuf.ExtensionRange
|
|
1683
|
+
*/
|
|
1482
1684
|
export const DescriptorProto_ExtensionRange = {
|
|
1483
1685
|
typeUrl: "/google.protobuf.ExtensionRange",
|
|
1484
1686
|
is(o) {
|
|
@@ -1565,6 +1767,9 @@ export const DescriptorProto_ExtensionRange = {
|
|
|
1565
1767
|
};
|
|
1566
1768
|
},
|
|
1567
1769
|
registerTypeUrl() {
|
|
1770
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(DescriptorProto_ExtensionRange.typeUrl)) {
|
|
1771
|
+
return;
|
|
1772
|
+
}
|
|
1568
1773
|
ExtensionRangeOptions.registerTypeUrl();
|
|
1569
1774
|
}
|
|
1570
1775
|
};
|
|
@@ -1574,6 +1779,14 @@ function createBaseDescriptorProto_ReservedRange() {
|
|
|
1574
1779
|
end: 0
|
|
1575
1780
|
};
|
|
1576
1781
|
}
|
|
1782
|
+
/**
|
|
1783
|
+
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
|
1784
|
+
* fields or extension ranges in the same message. Reserved ranges may
|
|
1785
|
+
* not overlap.
|
|
1786
|
+
* @name DescriptorProto_ReservedRange
|
|
1787
|
+
* @package google.protobuf
|
|
1788
|
+
* @see proto type: google.protobuf.ReservedRange
|
|
1789
|
+
*/
|
|
1577
1790
|
export const DescriptorProto_ReservedRange = {
|
|
1578
1791
|
typeUrl: "/google.protobuf.ReservedRange",
|
|
1579
1792
|
is(o) {
|
|
@@ -1658,6 +1871,11 @@ function createBaseExtensionRangeOptions() {
|
|
|
1658
1871
|
verification: 1
|
|
1659
1872
|
};
|
|
1660
1873
|
}
|
|
1874
|
+
/**
|
|
1875
|
+
* @name ExtensionRangeOptions
|
|
1876
|
+
* @package google.protobuf
|
|
1877
|
+
* @see proto type: google.protobuf.ExtensionRangeOptions
|
|
1878
|
+
*/
|
|
1661
1879
|
export const ExtensionRangeOptions = {
|
|
1662
1880
|
typeUrl: "/google.protobuf.ExtensionRangeOptions",
|
|
1663
1881
|
is(o) {
|
|
@@ -1761,6 +1979,9 @@ export const ExtensionRangeOptions = {
|
|
|
1761
1979
|
};
|
|
1762
1980
|
},
|
|
1763
1981
|
registerTypeUrl() {
|
|
1982
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(ExtensionRangeOptions.typeUrl)) {
|
|
1983
|
+
return;
|
|
1984
|
+
}
|
|
1764
1985
|
UninterpretedOption.registerTypeUrl();
|
|
1765
1986
|
ExtensionRangeOptions_Declaration.registerTypeUrl();
|
|
1766
1987
|
FeatureSet.registerTypeUrl();
|
|
@@ -1775,6 +1996,11 @@ function createBaseExtensionRangeOptions_Declaration() {
|
|
|
1775
1996
|
repeated: false
|
|
1776
1997
|
};
|
|
1777
1998
|
}
|
|
1999
|
+
/**
|
|
2000
|
+
* @name ExtensionRangeOptions_Declaration
|
|
2001
|
+
* @package google.protobuf
|
|
2002
|
+
* @see proto type: google.protobuf.Declaration
|
|
2003
|
+
*/
|
|
1778
2004
|
export const ExtensionRangeOptions_Declaration = {
|
|
1779
2005
|
typeUrl: "/google.protobuf.Declaration",
|
|
1780
2006
|
is(o) {
|
|
@@ -1899,6 +2125,12 @@ function createBaseFieldDescriptorProto() {
|
|
|
1899
2125
|
proto3Optional: false
|
|
1900
2126
|
};
|
|
1901
2127
|
}
|
|
2128
|
+
/**
|
|
2129
|
+
* Describes a field within a message.
|
|
2130
|
+
* @name FieldDescriptorProto
|
|
2131
|
+
* @package google.protobuf
|
|
2132
|
+
* @see proto type: google.protobuf.FieldDescriptorProto
|
|
2133
|
+
*/
|
|
1902
2134
|
export const FieldDescriptorProto = {
|
|
1903
2135
|
typeUrl: "/google.protobuf.FieldDescriptorProto",
|
|
1904
2136
|
is(o) {
|
|
@@ -2073,6 +2305,9 @@ export const FieldDescriptorProto = {
|
|
|
2073
2305
|
};
|
|
2074
2306
|
},
|
|
2075
2307
|
registerTypeUrl() {
|
|
2308
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FieldDescriptorProto.typeUrl)) {
|
|
2309
|
+
return;
|
|
2310
|
+
}
|
|
2076
2311
|
FieldOptions.registerTypeUrl();
|
|
2077
2312
|
}
|
|
2078
2313
|
};
|
|
@@ -2082,6 +2317,12 @@ function createBaseOneofDescriptorProto() {
|
|
|
2082
2317
|
options: undefined
|
|
2083
2318
|
};
|
|
2084
2319
|
}
|
|
2320
|
+
/**
|
|
2321
|
+
* Describes a oneof.
|
|
2322
|
+
* @name OneofDescriptorProto
|
|
2323
|
+
* @package google.protobuf
|
|
2324
|
+
* @see proto type: google.protobuf.OneofDescriptorProto
|
|
2325
|
+
*/
|
|
2085
2326
|
export const OneofDescriptorProto = {
|
|
2086
2327
|
typeUrl: "/google.protobuf.OneofDescriptorProto",
|
|
2087
2328
|
is(o) {
|
|
@@ -2157,6 +2398,9 @@ export const OneofDescriptorProto = {
|
|
|
2157
2398
|
};
|
|
2158
2399
|
},
|
|
2159
2400
|
registerTypeUrl() {
|
|
2401
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(OneofDescriptorProto.typeUrl)) {
|
|
2402
|
+
return;
|
|
2403
|
+
}
|
|
2160
2404
|
OneofOptions.registerTypeUrl();
|
|
2161
2405
|
}
|
|
2162
2406
|
};
|
|
@@ -2166,16 +2410,23 @@ function createBaseEnumDescriptorProto() {
|
|
|
2166
2410
|
value: [],
|
|
2167
2411
|
options: undefined,
|
|
2168
2412
|
reservedRange: [],
|
|
2169
|
-
reservedName: []
|
|
2413
|
+
reservedName: [],
|
|
2414
|
+
visibility: 1
|
|
2170
2415
|
};
|
|
2171
2416
|
}
|
|
2417
|
+
/**
|
|
2418
|
+
* Describes an enum type.
|
|
2419
|
+
* @name EnumDescriptorProto
|
|
2420
|
+
* @package google.protobuf
|
|
2421
|
+
* @see proto type: google.protobuf.EnumDescriptorProto
|
|
2422
|
+
*/
|
|
2172
2423
|
export const EnumDescriptorProto = {
|
|
2173
2424
|
typeUrl: "/google.protobuf.EnumDescriptorProto",
|
|
2174
2425
|
is(o) {
|
|
2175
|
-
return o && (o.$typeUrl === EnumDescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.value) && (!o.value.length || EnumValueDescriptorProto.is(o.value[0])) && Array.isArray(o.reservedRange) && (!o.reservedRange.length || EnumDescriptorProto_EnumReservedRange.is(o.reservedRange[0])) && Array.isArray(o.reservedName) && (!o.reservedName.length || typeof o.reservedName[0] === "string"));
|
|
2426
|
+
return o && (o.$typeUrl === EnumDescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.value) && (!o.value.length || EnumValueDescriptorProto.is(o.value[0])) && Array.isArray(o.reservedRange) && (!o.reservedRange.length || EnumDescriptorProto_EnumReservedRange.is(o.reservedRange[0])) && Array.isArray(o.reservedName) && (!o.reservedName.length || typeof o.reservedName[0] === "string") && isSet(o.visibility));
|
|
2176
2427
|
},
|
|
2177
2428
|
isAmino(o) {
|
|
2178
|
-
return o && (o.$typeUrl === EnumDescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.value) && (!o.value.length || EnumValueDescriptorProto.isAmino(o.value[0])) && Array.isArray(o.reserved_range) && (!o.reserved_range.length || EnumDescriptorProto_EnumReservedRange.isAmino(o.reserved_range[0])) && Array.isArray(o.reserved_name) && (!o.reserved_name.length || typeof o.reserved_name[0] === "string"));
|
|
2429
|
+
return o && (o.$typeUrl === EnumDescriptorProto.typeUrl || typeof o.name === "string" && Array.isArray(o.value) && (!o.value.length || EnumValueDescriptorProto.isAmino(o.value[0])) && Array.isArray(o.reserved_range) && (!o.reserved_range.length || EnumDescriptorProto_EnumReservedRange.isAmino(o.reserved_range[0])) && Array.isArray(o.reserved_name) && (!o.reserved_name.length || typeof o.reserved_name[0] === "string") && isSet(o.visibility));
|
|
2179
2430
|
},
|
|
2180
2431
|
encode(message, writer = BinaryWriter.create()) {
|
|
2181
2432
|
if (message.name !== "") {
|
|
@@ -2193,6 +2444,9 @@ export const EnumDescriptorProto = {
|
|
|
2193
2444
|
for (const v of message.reservedName) {
|
|
2194
2445
|
writer.uint32(42).string(v);
|
|
2195
2446
|
}
|
|
2447
|
+
if (message.visibility !== 1) {
|
|
2448
|
+
writer.uint32(48).int32(message.visibility);
|
|
2449
|
+
}
|
|
2196
2450
|
return writer;
|
|
2197
2451
|
},
|
|
2198
2452
|
decode(input, length) {
|
|
@@ -2217,6 +2471,9 @@ export const EnumDescriptorProto = {
|
|
|
2217
2471
|
case 5:
|
|
2218
2472
|
message.reservedName.push(reader.string());
|
|
2219
2473
|
break;
|
|
2474
|
+
case 6:
|
|
2475
|
+
message.visibility = reader.int32();
|
|
2476
|
+
break;
|
|
2220
2477
|
default:
|
|
2221
2478
|
reader.skipType(tag & 7);
|
|
2222
2479
|
break;
|
|
@@ -2231,6 +2488,7 @@ export const EnumDescriptorProto = {
|
|
|
2231
2488
|
message.options = object.options !== undefined && object.options !== null ? EnumOptions.fromPartial(object.options) : undefined;
|
|
2232
2489
|
message.reservedRange = object.reservedRange?.map(e => EnumDescriptorProto_EnumReservedRange.fromPartial(e)) || [];
|
|
2233
2490
|
message.reservedName = object.reservedName?.map(e => e) || [];
|
|
2491
|
+
message.visibility = object.visibility ?? 1;
|
|
2234
2492
|
return message;
|
|
2235
2493
|
},
|
|
2236
2494
|
fromAmino(object) {
|
|
@@ -2244,6 +2502,9 @@ export const EnumDescriptorProto = {
|
|
|
2244
2502
|
}
|
|
2245
2503
|
message.reservedRange = object.reserved_range?.map(e => EnumDescriptorProto_EnumReservedRange.fromAmino(e)) || [];
|
|
2246
2504
|
message.reservedName = object.reserved_name?.map(e => e) || [];
|
|
2505
|
+
if (object.visibility !== undefined && object.visibility !== null) {
|
|
2506
|
+
message.visibility = object.visibility;
|
|
2507
|
+
}
|
|
2247
2508
|
return message;
|
|
2248
2509
|
},
|
|
2249
2510
|
toAmino(message) {
|
|
@@ -2268,6 +2529,7 @@ export const EnumDescriptorProto = {
|
|
|
2268
2529
|
else {
|
|
2269
2530
|
obj.reserved_name = message.reservedName;
|
|
2270
2531
|
}
|
|
2532
|
+
obj.visibility = message.visibility === 1 ? undefined : message.visibility;
|
|
2271
2533
|
return obj;
|
|
2272
2534
|
},
|
|
2273
2535
|
fromAminoMsg(object) {
|
|
@@ -2286,6 +2548,9 @@ export const EnumDescriptorProto = {
|
|
|
2286
2548
|
};
|
|
2287
2549
|
},
|
|
2288
2550
|
registerTypeUrl() {
|
|
2551
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(EnumDescriptorProto.typeUrl)) {
|
|
2552
|
+
return;
|
|
2553
|
+
}
|
|
2289
2554
|
EnumValueDescriptorProto.registerTypeUrl();
|
|
2290
2555
|
EnumOptions.registerTypeUrl();
|
|
2291
2556
|
EnumDescriptorProto_EnumReservedRange.registerTypeUrl();
|
|
@@ -2297,6 +2562,17 @@ function createBaseEnumDescriptorProto_EnumReservedRange() {
|
|
|
2297
2562
|
end: 0
|
|
2298
2563
|
};
|
|
2299
2564
|
}
|
|
2565
|
+
/**
|
|
2566
|
+
* Range of reserved numeric values. Reserved values may not be used by
|
|
2567
|
+
* entries in the same enum. Reserved ranges may not overlap.
|
|
2568
|
+
*
|
|
2569
|
+
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
|
2570
|
+
* is inclusive such that it can appropriately represent the entire int32
|
|
2571
|
+
* domain.
|
|
2572
|
+
* @name EnumDescriptorProto_EnumReservedRange
|
|
2573
|
+
* @package google.protobuf
|
|
2574
|
+
* @see proto type: google.protobuf.EnumReservedRange
|
|
2575
|
+
*/
|
|
2300
2576
|
export const EnumDescriptorProto_EnumReservedRange = {
|
|
2301
2577
|
typeUrl: "/google.protobuf.EnumReservedRange",
|
|
2302
2578
|
is(o) {
|
|
@@ -2380,6 +2656,12 @@ function createBaseEnumValueDescriptorProto() {
|
|
|
2380
2656
|
options: undefined
|
|
2381
2657
|
};
|
|
2382
2658
|
}
|
|
2659
|
+
/**
|
|
2660
|
+
* Describes a value within an enum.
|
|
2661
|
+
* @name EnumValueDescriptorProto
|
|
2662
|
+
* @package google.protobuf
|
|
2663
|
+
* @see proto type: google.protobuf.EnumValueDescriptorProto
|
|
2664
|
+
*/
|
|
2383
2665
|
export const EnumValueDescriptorProto = {
|
|
2384
2666
|
typeUrl: "/google.protobuf.EnumValueDescriptorProto",
|
|
2385
2667
|
is(o) {
|
|
@@ -2466,6 +2748,9 @@ export const EnumValueDescriptorProto = {
|
|
|
2466
2748
|
};
|
|
2467
2749
|
},
|
|
2468
2750
|
registerTypeUrl() {
|
|
2751
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(EnumValueDescriptorProto.typeUrl)) {
|
|
2752
|
+
return;
|
|
2753
|
+
}
|
|
2469
2754
|
EnumValueOptions.registerTypeUrl();
|
|
2470
2755
|
}
|
|
2471
2756
|
};
|
|
@@ -2476,6 +2761,12 @@ function createBaseServiceDescriptorProto() {
|
|
|
2476
2761
|
options: undefined
|
|
2477
2762
|
};
|
|
2478
2763
|
}
|
|
2764
|
+
/**
|
|
2765
|
+
* Describes a service.
|
|
2766
|
+
* @name ServiceDescriptorProto
|
|
2767
|
+
* @package google.protobuf
|
|
2768
|
+
* @see proto type: google.protobuf.ServiceDescriptorProto
|
|
2769
|
+
*/
|
|
2479
2770
|
export const ServiceDescriptorProto = {
|
|
2480
2771
|
typeUrl: "/google.protobuf.ServiceDescriptorProto",
|
|
2481
2772
|
is(o) {
|
|
@@ -2565,6 +2856,9 @@ export const ServiceDescriptorProto = {
|
|
|
2565
2856
|
};
|
|
2566
2857
|
},
|
|
2567
2858
|
registerTypeUrl() {
|
|
2859
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(ServiceDescriptorProto.typeUrl)) {
|
|
2860
|
+
return;
|
|
2861
|
+
}
|
|
2568
2862
|
MethodDescriptorProto.registerTypeUrl();
|
|
2569
2863
|
ServiceOptions.registerTypeUrl();
|
|
2570
2864
|
}
|
|
@@ -2579,6 +2873,12 @@ function createBaseMethodDescriptorProto() {
|
|
|
2579
2873
|
serverStreaming: false
|
|
2580
2874
|
};
|
|
2581
2875
|
}
|
|
2876
|
+
/**
|
|
2877
|
+
* Describes a method of a service.
|
|
2878
|
+
* @name MethodDescriptorProto
|
|
2879
|
+
* @package google.protobuf
|
|
2880
|
+
* @see proto type: google.protobuf.MethodDescriptorProto
|
|
2881
|
+
*/
|
|
2582
2882
|
export const MethodDescriptorProto = {
|
|
2583
2883
|
typeUrl: "/google.protobuf.MethodDescriptorProto",
|
|
2584
2884
|
is(o) {
|
|
@@ -2698,6 +2998,9 @@ export const MethodDescriptorProto = {
|
|
|
2698
2998
|
};
|
|
2699
2999
|
},
|
|
2700
3000
|
registerTypeUrl() {
|
|
3001
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(MethodDescriptorProto.typeUrl)) {
|
|
3002
|
+
return;
|
|
3003
|
+
}
|
|
2701
3004
|
MethodOptions.registerTypeUrl();
|
|
2702
3005
|
}
|
|
2703
3006
|
};
|
|
@@ -2726,6 +3029,11 @@ function createBaseFileOptions() {
|
|
|
2726
3029
|
uninterpretedOption: []
|
|
2727
3030
|
};
|
|
2728
3031
|
}
|
|
3032
|
+
/**
|
|
3033
|
+
* @name FileOptions
|
|
3034
|
+
* @package google.protobuf
|
|
3035
|
+
* @see proto type: google.protobuf.FileOptions
|
|
3036
|
+
*/
|
|
2729
3037
|
export const FileOptions = {
|
|
2730
3038
|
typeUrl: "/google.protobuf.FileOptions",
|
|
2731
3039
|
is(o) {
|
|
@@ -3013,6 +3321,9 @@ export const FileOptions = {
|
|
|
3013
3321
|
};
|
|
3014
3322
|
},
|
|
3015
3323
|
registerTypeUrl() {
|
|
3324
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FileOptions.typeUrl)) {
|
|
3325
|
+
return;
|
|
3326
|
+
}
|
|
3016
3327
|
FeatureSet.registerTypeUrl();
|
|
3017
3328
|
UninterpretedOption.registerTypeUrl();
|
|
3018
3329
|
}
|
|
@@ -3028,6 +3339,11 @@ function createBaseMessageOptions() {
|
|
|
3028
3339
|
uninterpretedOption: []
|
|
3029
3340
|
};
|
|
3030
3341
|
}
|
|
3342
|
+
/**
|
|
3343
|
+
* @name MessageOptions
|
|
3344
|
+
* @package google.protobuf
|
|
3345
|
+
* @see proto type: google.protobuf.MessageOptions
|
|
3346
|
+
*/
|
|
3031
3347
|
export const MessageOptions = {
|
|
3032
3348
|
typeUrl: "/google.protobuf.MessageOptions",
|
|
3033
3349
|
is(o) {
|
|
@@ -3161,6 +3477,9 @@ export const MessageOptions = {
|
|
|
3161
3477
|
};
|
|
3162
3478
|
},
|
|
3163
3479
|
registerTypeUrl() {
|
|
3480
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(MessageOptions.typeUrl)) {
|
|
3481
|
+
return;
|
|
3482
|
+
}
|
|
3164
3483
|
FeatureSet.registerTypeUrl();
|
|
3165
3484
|
UninterpretedOption.registerTypeUrl();
|
|
3166
3485
|
}
|
|
@@ -3183,6 +3502,11 @@ function createBaseFieldOptions() {
|
|
|
3183
3502
|
uninterpretedOption: []
|
|
3184
3503
|
};
|
|
3185
3504
|
}
|
|
3505
|
+
/**
|
|
3506
|
+
* @name FieldOptions
|
|
3507
|
+
* @package google.protobuf
|
|
3508
|
+
* @see proto type: google.protobuf.FieldOptions
|
|
3509
|
+
*/
|
|
3186
3510
|
export const FieldOptions = {
|
|
3187
3511
|
typeUrl: "/google.protobuf.FieldOptions",
|
|
3188
3512
|
is(o) {
|
|
@@ -3409,6 +3733,9 @@ export const FieldOptions = {
|
|
|
3409
3733
|
};
|
|
3410
3734
|
},
|
|
3411
3735
|
registerTypeUrl() {
|
|
3736
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FieldOptions.typeUrl)) {
|
|
3737
|
+
return;
|
|
3738
|
+
}
|
|
3412
3739
|
FieldOptions_EditionDefault.registerTypeUrl();
|
|
3413
3740
|
FeatureSet.registerTypeUrl();
|
|
3414
3741
|
FieldOptions_FeatureSupport.registerTypeUrl();
|
|
@@ -3421,6 +3748,11 @@ function createBaseFieldOptions_EditionDefault() {
|
|
|
3421
3748
|
value: ""
|
|
3422
3749
|
};
|
|
3423
3750
|
}
|
|
3751
|
+
/**
|
|
3752
|
+
* @name FieldOptions_EditionDefault
|
|
3753
|
+
* @package google.protobuf
|
|
3754
|
+
* @see proto type: google.protobuf.EditionDefault
|
|
3755
|
+
*/
|
|
3424
3756
|
export const FieldOptions_EditionDefault = {
|
|
3425
3757
|
typeUrl: "/google.protobuf.EditionDefault",
|
|
3426
3758
|
is(o) {
|
|
@@ -3505,6 +3837,12 @@ function createBaseFieldOptions_FeatureSupport() {
|
|
|
3505
3837
|
editionRemoved: 1
|
|
3506
3838
|
};
|
|
3507
3839
|
}
|
|
3840
|
+
/**
|
|
3841
|
+
* Information about the support window of a feature.
|
|
3842
|
+
* @name FieldOptions_FeatureSupport
|
|
3843
|
+
* @package google.protobuf
|
|
3844
|
+
* @see proto type: google.protobuf.FeatureSupport
|
|
3845
|
+
*/
|
|
3508
3846
|
export const FieldOptions_FeatureSupport = {
|
|
3509
3847
|
typeUrl: "/google.protobuf.FeatureSupport",
|
|
3510
3848
|
is(o) {
|
|
@@ -3609,6 +3947,11 @@ function createBaseOneofOptions() {
|
|
|
3609
3947
|
uninterpretedOption: []
|
|
3610
3948
|
};
|
|
3611
3949
|
}
|
|
3950
|
+
/**
|
|
3951
|
+
* @name OneofOptions
|
|
3952
|
+
* @package google.protobuf
|
|
3953
|
+
* @see proto type: google.protobuf.OneofOptions
|
|
3954
|
+
*/
|
|
3612
3955
|
export const OneofOptions = {
|
|
3613
3956
|
typeUrl: "/google.protobuf.OneofOptions",
|
|
3614
3957
|
is(o) {
|
|
@@ -3687,6 +4030,9 @@ export const OneofOptions = {
|
|
|
3687
4030
|
};
|
|
3688
4031
|
},
|
|
3689
4032
|
registerTypeUrl() {
|
|
4033
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(OneofOptions.typeUrl)) {
|
|
4034
|
+
return;
|
|
4035
|
+
}
|
|
3690
4036
|
FeatureSet.registerTypeUrl();
|
|
3691
4037
|
UninterpretedOption.registerTypeUrl();
|
|
3692
4038
|
}
|
|
@@ -3700,6 +4046,11 @@ function createBaseEnumOptions() {
|
|
|
3700
4046
|
uninterpretedOption: []
|
|
3701
4047
|
};
|
|
3702
4048
|
}
|
|
4049
|
+
/**
|
|
4050
|
+
* @name EnumOptions
|
|
4051
|
+
* @package google.protobuf
|
|
4052
|
+
* @see proto type: google.protobuf.EnumOptions
|
|
4053
|
+
*/
|
|
3703
4054
|
export const EnumOptions = {
|
|
3704
4055
|
typeUrl: "/google.protobuf.EnumOptions",
|
|
3705
4056
|
is(o) {
|
|
@@ -3811,6 +4162,9 @@ export const EnumOptions = {
|
|
|
3811
4162
|
};
|
|
3812
4163
|
},
|
|
3813
4164
|
registerTypeUrl() {
|
|
4165
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(EnumOptions.typeUrl)) {
|
|
4166
|
+
return;
|
|
4167
|
+
}
|
|
3814
4168
|
FeatureSet.registerTypeUrl();
|
|
3815
4169
|
UninterpretedOption.registerTypeUrl();
|
|
3816
4170
|
}
|
|
@@ -3824,6 +4178,11 @@ function createBaseEnumValueOptions() {
|
|
|
3824
4178
|
uninterpretedOption: []
|
|
3825
4179
|
};
|
|
3826
4180
|
}
|
|
4181
|
+
/**
|
|
4182
|
+
* @name EnumValueOptions
|
|
4183
|
+
* @package google.protobuf
|
|
4184
|
+
* @see proto type: google.protobuf.EnumValueOptions
|
|
4185
|
+
*/
|
|
3827
4186
|
export const EnumValueOptions = {
|
|
3828
4187
|
typeUrl: "/google.protobuf.EnumValueOptions",
|
|
3829
4188
|
is(o) {
|
|
@@ -3935,6 +4294,9 @@ export const EnumValueOptions = {
|
|
|
3935
4294
|
};
|
|
3936
4295
|
},
|
|
3937
4296
|
registerTypeUrl() {
|
|
4297
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(EnumValueOptions.typeUrl)) {
|
|
4298
|
+
return;
|
|
4299
|
+
}
|
|
3938
4300
|
FeatureSet.registerTypeUrl();
|
|
3939
4301
|
FieldOptions_FeatureSupport.registerTypeUrl();
|
|
3940
4302
|
UninterpretedOption.registerTypeUrl();
|
|
@@ -3947,6 +4309,11 @@ function createBaseServiceOptions() {
|
|
|
3947
4309
|
uninterpretedOption: []
|
|
3948
4310
|
};
|
|
3949
4311
|
}
|
|
4312
|
+
/**
|
|
4313
|
+
* @name ServiceOptions
|
|
4314
|
+
* @package google.protobuf
|
|
4315
|
+
* @see proto type: google.protobuf.ServiceOptions
|
|
4316
|
+
*/
|
|
3950
4317
|
export const ServiceOptions = {
|
|
3951
4318
|
typeUrl: "/google.protobuf.ServiceOptions",
|
|
3952
4319
|
is(o) {
|
|
@@ -4036,6 +4403,9 @@ export const ServiceOptions = {
|
|
|
4036
4403
|
};
|
|
4037
4404
|
},
|
|
4038
4405
|
registerTypeUrl() {
|
|
4406
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(ServiceOptions.typeUrl)) {
|
|
4407
|
+
return;
|
|
4408
|
+
}
|
|
4039
4409
|
FeatureSet.registerTypeUrl();
|
|
4040
4410
|
UninterpretedOption.registerTypeUrl();
|
|
4041
4411
|
}
|
|
@@ -4048,6 +4418,11 @@ function createBaseMethodOptions() {
|
|
|
4048
4418
|
uninterpretedOption: []
|
|
4049
4419
|
};
|
|
4050
4420
|
}
|
|
4421
|
+
/**
|
|
4422
|
+
* @name MethodOptions
|
|
4423
|
+
* @package google.protobuf
|
|
4424
|
+
* @see proto type: google.protobuf.MethodOptions
|
|
4425
|
+
*/
|
|
4051
4426
|
export const MethodOptions = {
|
|
4052
4427
|
typeUrl: "/google.protobuf.MethodOptions",
|
|
4053
4428
|
is(o) {
|
|
@@ -4148,6 +4523,9 @@ export const MethodOptions = {
|
|
|
4148
4523
|
};
|
|
4149
4524
|
},
|
|
4150
4525
|
registerTypeUrl() {
|
|
4526
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(MethodOptions.typeUrl)) {
|
|
4527
|
+
return;
|
|
4528
|
+
}
|
|
4151
4529
|
FeatureSet.registerTypeUrl();
|
|
4152
4530
|
UninterpretedOption.registerTypeUrl();
|
|
4153
4531
|
}
|
|
@@ -4163,6 +4541,17 @@ function createBaseUninterpretedOption() {
|
|
|
4163
4541
|
aggregateValue: ""
|
|
4164
4542
|
};
|
|
4165
4543
|
}
|
|
4544
|
+
/**
|
|
4545
|
+
* A message representing a option the parser does not recognize. This only
|
|
4546
|
+
* appears in options protos created by the compiler::Parser class.
|
|
4547
|
+
* DescriptorPool resolves these when building Descriptor objects. Therefore,
|
|
4548
|
+
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
|
4549
|
+
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
|
4550
|
+
* in them.
|
|
4551
|
+
* @name UninterpretedOption
|
|
4552
|
+
* @package google.protobuf
|
|
4553
|
+
* @see proto type: google.protobuf.UninterpretedOption
|
|
4554
|
+
*/
|
|
4166
4555
|
export const UninterpretedOption = {
|
|
4167
4556
|
typeUrl: "/google.protobuf.UninterpretedOption",
|
|
4168
4557
|
is(o) {
|
|
@@ -4296,6 +4685,9 @@ export const UninterpretedOption = {
|
|
|
4296
4685
|
};
|
|
4297
4686
|
},
|
|
4298
4687
|
registerTypeUrl() {
|
|
4688
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(UninterpretedOption.typeUrl)) {
|
|
4689
|
+
return;
|
|
4690
|
+
}
|
|
4299
4691
|
UninterpretedOption_NamePart.registerTypeUrl();
|
|
4300
4692
|
}
|
|
4301
4693
|
};
|
|
@@ -4305,6 +4697,16 @@ function createBaseUninterpretedOption_NamePart() {
|
|
|
4305
4697
|
isExtension: false
|
|
4306
4698
|
};
|
|
4307
4699
|
}
|
|
4700
|
+
/**
|
|
4701
|
+
* The name of the uninterpreted option. Each string represents a segment in
|
|
4702
|
+
* a dot-separated name. is_extension is true iff a segment represents an
|
|
4703
|
+
* extension (denoted with parentheses in options specs in .proto files).
|
|
4704
|
+
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
|
4705
|
+
* "foo.(bar.baz).moo".
|
|
4706
|
+
* @name UninterpretedOption_NamePart
|
|
4707
|
+
* @package google.protobuf
|
|
4708
|
+
* @see proto type: google.protobuf.NamePart
|
|
4709
|
+
*/
|
|
4308
4710
|
export const UninterpretedOption_NamePart = {
|
|
4309
4711
|
typeUrl: "/google.protobuf.NamePart",
|
|
4310
4712
|
is(o) {
|
|
@@ -4388,16 +4790,28 @@ function createBaseFeatureSet() {
|
|
|
4388
4790
|
repeatedFieldEncoding: 1,
|
|
4389
4791
|
utf8Validation: 0,
|
|
4390
4792
|
messageEncoding: 1,
|
|
4391
|
-
jsonFormat: 1
|
|
4793
|
+
jsonFormat: 1,
|
|
4794
|
+
enforceNamingStyle: 1
|
|
4392
4795
|
};
|
|
4393
4796
|
}
|
|
4797
|
+
/**
|
|
4798
|
+
* TODO Enums in C++ gencode (and potentially other languages) are
|
|
4799
|
+
* not well scoped. This means that each of the feature enums below can clash
|
|
4800
|
+
* with each other. The short names we've chosen maximize call-site
|
|
4801
|
+
* readability, but leave us very open to this scenario. A future feature will
|
|
4802
|
+
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
4803
|
+
* conflict here.
|
|
4804
|
+
* @name FeatureSet
|
|
4805
|
+
* @package google.protobuf
|
|
4806
|
+
* @see proto type: google.protobuf.FeatureSet
|
|
4807
|
+
*/
|
|
4394
4808
|
export const FeatureSet = {
|
|
4395
4809
|
typeUrl: "/google.protobuf.FeatureSet",
|
|
4396
4810
|
is(o) {
|
|
4397
|
-
return o && (o.$typeUrl === FeatureSet.typeUrl || isSet(o.fieldPresence) && isSet(o.enumType) && isSet(o.repeatedFieldEncoding) && isSet(o.utf8Validation) && isSet(o.messageEncoding) && isSet(o.jsonFormat));
|
|
4811
|
+
return o && (o.$typeUrl === FeatureSet.typeUrl || isSet(o.fieldPresence) && isSet(o.enumType) && isSet(o.repeatedFieldEncoding) && isSet(o.utf8Validation) && isSet(o.messageEncoding) && isSet(o.jsonFormat) && isSet(o.enforceNamingStyle));
|
|
4398
4812
|
},
|
|
4399
4813
|
isAmino(o) {
|
|
4400
|
-
return o && (o.$typeUrl === FeatureSet.typeUrl || isSet(o.field_presence) && isSet(o.enum_type) && isSet(o.repeated_field_encoding) && isSet(o.utf8_validation) && isSet(o.message_encoding) && isSet(o.json_format));
|
|
4814
|
+
return o && (o.$typeUrl === FeatureSet.typeUrl || isSet(o.field_presence) && isSet(o.enum_type) && isSet(o.repeated_field_encoding) && isSet(o.utf8_validation) && isSet(o.message_encoding) && isSet(o.json_format) && isSet(o.enforce_naming_style));
|
|
4401
4815
|
},
|
|
4402
4816
|
encode(message, writer = BinaryWriter.create()) {
|
|
4403
4817
|
if (message.fieldPresence !== 1) {
|
|
@@ -4418,6 +4832,9 @@ export const FeatureSet = {
|
|
|
4418
4832
|
if (message.jsonFormat !== 1) {
|
|
4419
4833
|
writer.uint32(48).int32(message.jsonFormat);
|
|
4420
4834
|
}
|
|
4835
|
+
if (message.enforceNamingStyle !== 1) {
|
|
4836
|
+
writer.uint32(56).int32(message.enforceNamingStyle);
|
|
4837
|
+
}
|
|
4421
4838
|
return writer;
|
|
4422
4839
|
},
|
|
4423
4840
|
decode(input, length) {
|
|
@@ -4445,6 +4862,9 @@ export const FeatureSet = {
|
|
|
4445
4862
|
case 6:
|
|
4446
4863
|
message.jsonFormat = reader.int32();
|
|
4447
4864
|
break;
|
|
4865
|
+
case 7:
|
|
4866
|
+
message.enforceNamingStyle = reader.int32();
|
|
4867
|
+
break;
|
|
4448
4868
|
default:
|
|
4449
4869
|
reader.skipType(tag & 7);
|
|
4450
4870
|
break;
|
|
@@ -4460,6 +4880,7 @@ export const FeatureSet = {
|
|
|
4460
4880
|
message.utf8Validation = object.utf8Validation ?? 0;
|
|
4461
4881
|
message.messageEncoding = object.messageEncoding ?? 1;
|
|
4462
4882
|
message.jsonFormat = object.jsonFormat ?? 1;
|
|
4883
|
+
message.enforceNamingStyle = object.enforceNamingStyle ?? 1;
|
|
4463
4884
|
return message;
|
|
4464
4885
|
},
|
|
4465
4886
|
fromAmino(object) {
|
|
@@ -4482,6 +4903,9 @@ export const FeatureSet = {
|
|
|
4482
4903
|
if (object.json_format !== undefined && object.json_format !== null) {
|
|
4483
4904
|
message.jsonFormat = object.json_format;
|
|
4484
4905
|
}
|
|
4906
|
+
if (object.enforce_naming_style !== undefined && object.enforce_naming_style !== null) {
|
|
4907
|
+
message.enforceNamingStyle = object.enforce_naming_style;
|
|
4908
|
+
}
|
|
4485
4909
|
return message;
|
|
4486
4910
|
},
|
|
4487
4911
|
toAmino(message) {
|
|
@@ -4492,6 +4916,7 @@ export const FeatureSet = {
|
|
|
4492
4916
|
obj.utf8_validation = message.utf8Validation === 0 ? undefined : message.utf8Validation;
|
|
4493
4917
|
obj.message_encoding = message.messageEncoding === 1 ? undefined : message.messageEncoding;
|
|
4494
4918
|
obj.json_format = message.jsonFormat === 1 ? undefined : message.jsonFormat;
|
|
4919
|
+
obj.enforce_naming_style = message.enforceNamingStyle === 1 ? undefined : message.enforceNamingStyle;
|
|
4495
4920
|
return obj;
|
|
4496
4921
|
},
|
|
4497
4922
|
fromAminoMsg(object) {
|
|
@@ -4511,6 +4936,68 @@ export const FeatureSet = {
|
|
|
4511
4936
|
},
|
|
4512
4937
|
registerTypeUrl() { }
|
|
4513
4938
|
};
|
|
4939
|
+
function createBaseFeatureSet_VisibilityFeature() {
|
|
4940
|
+
return {};
|
|
4941
|
+
}
|
|
4942
|
+
/**
|
|
4943
|
+
* @name FeatureSet_VisibilityFeature
|
|
4944
|
+
* @package google.protobuf
|
|
4945
|
+
* @see proto type: google.protobuf.VisibilityFeature
|
|
4946
|
+
*/
|
|
4947
|
+
export const FeatureSet_VisibilityFeature = {
|
|
4948
|
+
typeUrl: "/google.protobuf.VisibilityFeature",
|
|
4949
|
+
is(o) {
|
|
4950
|
+
return o && o.$typeUrl === FeatureSet_VisibilityFeature.typeUrl;
|
|
4951
|
+
},
|
|
4952
|
+
isAmino(o) {
|
|
4953
|
+
return o && o.$typeUrl === FeatureSet_VisibilityFeature.typeUrl;
|
|
4954
|
+
},
|
|
4955
|
+
encode(_, writer = BinaryWriter.create()) {
|
|
4956
|
+
return writer;
|
|
4957
|
+
},
|
|
4958
|
+
decode(input, length) {
|
|
4959
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
4960
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
4961
|
+
const message = createBaseFeatureSet_VisibilityFeature();
|
|
4962
|
+
while (reader.pos < end) {
|
|
4963
|
+
const tag = reader.uint32();
|
|
4964
|
+
switch (tag >>> 3) {
|
|
4965
|
+
default:
|
|
4966
|
+
reader.skipType(tag & 7);
|
|
4967
|
+
break;
|
|
4968
|
+
}
|
|
4969
|
+
}
|
|
4970
|
+
return message;
|
|
4971
|
+
},
|
|
4972
|
+
fromPartial(_) {
|
|
4973
|
+
const message = createBaseFeatureSet_VisibilityFeature();
|
|
4974
|
+
return message;
|
|
4975
|
+
},
|
|
4976
|
+
fromAmino(_) {
|
|
4977
|
+
const message = createBaseFeatureSet_VisibilityFeature();
|
|
4978
|
+
return message;
|
|
4979
|
+
},
|
|
4980
|
+
toAmino(_) {
|
|
4981
|
+
const obj = {};
|
|
4982
|
+
return obj;
|
|
4983
|
+
},
|
|
4984
|
+
fromAminoMsg(object) {
|
|
4985
|
+
return FeatureSet_VisibilityFeature.fromAmino(object.value);
|
|
4986
|
+
},
|
|
4987
|
+
fromProtoMsg(message) {
|
|
4988
|
+
return FeatureSet_VisibilityFeature.decode(message.value);
|
|
4989
|
+
},
|
|
4990
|
+
toProto(message) {
|
|
4991
|
+
return FeatureSet_VisibilityFeature.encode(message).finish();
|
|
4992
|
+
},
|
|
4993
|
+
toProtoMsg(message) {
|
|
4994
|
+
return {
|
|
4995
|
+
typeUrl: "/google.protobuf.VisibilityFeature",
|
|
4996
|
+
value: FeatureSet_VisibilityFeature.encode(message).finish()
|
|
4997
|
+
};
|
|
4998
|
+
},
|
|
4999
|
+
registerTypeUrl() { }
|
|
5000
|
+
};
|
|
4514
5001
|
function createBaseFeatureSetDefaults() {
|
|
4515
5002
|
return {
|
|
4516
5003
|
defaults: [],
|
|
@@ -4518,6 +5005,15 @@ function createBaseFeatureSetDefaults() {
|
|
|
4518
5005
|
maximumEdition: 1
|
|
4519
5006
|
};
|
|
4520
5007
|
}
|
|
5008
|
+
/**
|
|
5009
|
+
* A compiled specification for the defaults of a set of features. These
|
|
5010
|
+
* messages are generated from FeatureSet extensions and can be used to seed
|
|
5011
|
+
* feature resolution. The resolution with this object becomes a simple search
|
|
5012
|
+
* for the closest matching edition, followed by proto merges.
|
|
5013
|
+
* @name FeatureSetDefaults
|
|
5014
|
+
* @package google.protobuf
|
|
5015
|
+
* @see proto type: google.protobuf.FeatureSetDefaults
|
|
5016
|
+
*/
|
|
4521
5017
|
export const FeatureSetDefaults = {
|
|
4522
5018
|
typeUrl: "/google.protobuf.FeatureSetDefaults",
|
|
4523
5019
|
is(o) {
|
|
@@ -4607,6 +5103,9 @@ export const FeatureSetDefaults = {
|
|
|
4607
5103
|
};
|
|
4608
5104
|
},
|
|
4609
5105
|
registerTypeUrl() {
|
|
5106
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FeatureSetDefaults.typeUrl)) {
|
|
5107
|
+
return;
|
|
5108
|
+
}
|
|
4610
5109
|
FeatureSetDefaults_FeatureSetEditionDefault.registerTypeUrl();
|
|
4611
5110
|
}
|
|
4612
5111
|
};
|
|
@@ -4617,6 +5116,15 @@ function createBaseFeatureSetDefaults_FeatureSetEditionDefault() {
|
|
|
4617
5116
|
fixedFeatures: undefined
|
|
4618
5117
|
};
|
|
4619
5118
|
}
|
|
5119
|
+
/**
|
|
5120
|
+
* A map from every known edition with a unique set of defaults to its
|
|
5121
|
+
* defaults. Not all editions may be contained here. For a given edition,
|
|
5122
|
+
* the defaults at the closest matching edition ordered at or before it should
|
|
5123
|
+
* be used. This field must be in strict ascending order by edition.
|
|
5124
|
+
* @name FeatureSetDefaults_FeatureSetEditionDefault
|
|
5125
|
+
* @package google.protobuf
|
|
5126
|
+
* @see proto type: google.protobuf.FeatureSetEditionDefault
|
|
5127
|
+
*/
|
|
4620
5128
|
export const FeatureSetDefaults_FeatureSetEditionDefault = {
|
|
4621
5129
|
typeUrl: "/google.protobuf.FeatureSetEditionDefault",
|
|
4622
5130
|
is(o) {
|
|
@@ -4703,6 +5211,9 @@ export const FeatureSetDefaults_FeatureSetEditionDefault = {
|
|
|
4703
5211
|
};
|
|
4704
5212
|
},
|
|
4705
5213
|
registerTypeUrl() {
|
|
5214
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(FeatureSetDefaults_FeatureSetEditionDefault.typeUrl)) {
|
|
5215
|
+
return;
|
|
5216
|
+
}
|
|
4706
5217
|
FeatureSet.registerTypeUrl();
|
|
4707
5218
|
}
|
|
4708
5219
|
};
|
|
@@ -4711,6 +5222,13 @@ function createBaseSourceCodeInfo() {
|
|
|
4711
5222
|
location: []
|
|
4712
5223
|
};
|
|
4713
5224
|
}
|
|
5225
|
+
/**
|
|
5226
|
+
* Encapsulates information about the original source file from which a
|
|
5227
|
+
* FileDescriptorProto was generated.
|
|
5228
|
+
* @name SourceCodeInfo
|
|
5229
|
+
* @package google.protobuf
|
|
5230
|
+
* @see proto type: google.protobuf.SourceCodeInfo
|
|
5231
|
+
*/
|
|
4714
5232
|
export const SourceCodeInfo = {
|
|
4715
5233
|
typeUrl: "/google.protobuf.SourceCodeInfo",
|
|
4716
5234
|
is(o) {
|
|
@@ -4778,6 +5296,9 @@ export const SourceCodeInfo = {
|
|
|
4778
5296
|
};
|
|
4779
5297
|
},
|
|
4780
5298
|
registerTypeUrl() {
|
|
5299
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(SourceCodeInfo.typeUrl)) {
|
|
5300
|
+
return;
|
|
5301
|
+
}
|
|
4781
5302
|
SourceCodeInfo_Location.registerTypeUrl();
|
|
4782
5303
|
}
|
|
4783
5304
|
};
|
|
@@ -4790,6 +5311,11 @@ function createBaseSourceCodeInfo_Location() {
|
|
|
4790
5311
|
leadingDetachedComments: []
|
|
4791
5312
|
};
|
|
4792
5313
|
}
|
|
5314
|
+
/**
|
|
5315
|
+
* @name SourceCodeInfo_Location
|
|
5316
|
+
* @package google.protobuf
|
|
5317
|
+
* @see proto type: google.protobuf.Location
|
|
5318
|
+
*/
|
|
4793
5319
|
export const SourceCodeInfo_Location = {
|
|
4794
5320
|
typeUrl: "/google.protobuf.Location",
|
|
4795
5321
|
is(o) {
|
|
@@ -4933,6 +5459,14 @@ function createBaseGeneratedCodeInfo() {
|
|
|
4933
5459
|
annotation: []
|
|
4934
5460
|
};
|
|
4935
5461
|
}
|
|
5462
|
+
/**
|
|
5463
|
+
* Describes the relationship between generated code and its original source
|
|
5464
|
+
* file. A GeneratedCodeInfo message is associated with only one generated
|
|
5465
|
+
* source file, but may contain references to different source .proto files.
|
|
5466
|
+
* @name GeneratedCodeInfo
|
|
5467
|
+
* @package google.protobuf
|
|
5468
|
+
* @see proto type: google.protobuf.GeneratedCodeInfo
|
|
5469
|
+
*/
|
|
4936
5470
|
export const GeneratedCodeInfo = {
|
|
4937
5471
|
typeUrl: "/google.protobuf.GeneratedCodeInfo",
|
|
4938
5472
|
is(o) {
|
|
@@ -5000,6 +5534,9 @@ export const GeneratedCodeInfo = {
|
|
|
5000
5534
|
};
|
|
5001
5535
|
},
|
|
5002
5536
|
registerTypeUrl() {
|
|
5537
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(GeneratedCodeInfo.typeUrl)) {
|
|
5538
|
+
return;
|
|
5539
|
+
}
|
|
5003
5540
|
GeneratedCodeInfo_Annotation.registerTypeUrl();
|
|
5004
5541
|
}
|
|
5005
5542
|
};
|
|
@@ -5012,6 +5549,11 @@ function createBaseGeneratedCodeInfo_Annotation() {
|
|
|
5012
5549
|
semantic: 1
|
|
5013
5550
|
};
|
|
5014
5551
|
}
|
|
5552
|
+
/**
|
|
5553
|
+
* @name GeneratedCodeInfo_Annotation
|
|
5554
|
+
* @package google.protobuf
|
|
5555
|
+
* @see proto type: google.protobuf.Annotation
|
|
5556
|
+
*/
|
|
5015
5557
|
export const GeneratedCodeInfo_Annotation = {
|
|
5016
5558
|
typeUrl: "/google.protobuf.Annotation",
|
|
5017
5559
|
is(o) {
|