injectivejs 1.11.13 → 1.11.15
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/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -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/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- 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 +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -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 +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- 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
|
@@ -24,6 +24,13 @@ function createBaseTxResponse() {
|
|
|
24
24
|
events: []
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* TxResponse defines a structure containing relevant tx data and metadata. The
|
|
29
|
+
* tags are stringified and the log is JSON decoded.
|
|
30
|
+
* @name TxResponse
|
|
31
|
+
* @package cosmos.base.abci.v1beta1
|
|
32
|
+
* @see proto type: cosmos.base.abci.v1beta1.TxResponse
|
|
33
|
+
*/
|
|
27
34
|
exports.TxResponse = {
|
|
28
35
|
typeUrl: "/cosmos.base.abci.v1beta1.TxResponse",
|
|
29
36
|
aminoType: "cosmos-sdk/TxResponse",
|
|
@@ -246,6 +253,12 @@ function createBaseABCIMessageLog() {
|
|
|
246
253
|
events: []
|
|
247
254
|
};
|
|
248
255
|
}
|
|
256
|
+
/**
|
|
257
|
+
* ABCIMessageLog defines a structure containing an indexed tx ABCI message log.
|
|
258
|
+
* @name ABCIMessageLog
|
|
259
|
+
* @package cosmos.base.abci.v1beta1
|
|
260
|
+
* @see proto type: cosmos.base.abci.v1beta1.ABCIMessageLog
|
|
261
|
+
*/
|
|
249
262
|
exports.ABCIMessageLog = {
|
|
250
263
|
typeUrl: "/cosmos.base.abci.v1beta1.ABCIMessageLog",
|
|
251
264
|
aminoType: "cosmos-sdk/ABCIMessageLog",
|
|
@@ -354,6 +367,13 @@ function createBaseStringEvent() {
|
|
|
354
367
|
attributes: []
|
|
355
368
|
};
|
|
356
369
|
}
|
|
370
|
+
/**
|
|
371
|
+
* StringEvent defines en Event object wrapper where all the attributes
|
|
372
|
+
* contain key/value pairs that are strings instead of raw bytes.
|
|
373
|
+
* @name StringEvent
|
|
374
|
+
* @package cosmos.base.abci.v1beta1
|
|
375
|
+
* @see proto type: cosmos.base.abci.v1beta1.StringEvent
|
|
376
|
+
*/
|
|
357
377
|
exports.StringEvent = {
|
|
358
378
|
typeUrl: "/cosmos.base.abci.v1beta1.StringEvent",
|
|
359
379
|
aminoType: "cosmos-sdk/StringEvent",
|
|
@@ -451,6 +471,13 @@ function createBaseAttribute() {
|
|
|
451
471
|
value: ""
|
|
452
472
|
};
|
|
453
473
|
}
|
|
474
|
+
/**
|
|
475
|
+
* Attribute defines an attribute wrapper where the key and value are
|
|
476
|
+
* strings instead of raw bytes.
|
|
477
|
+
* @name Attribute
|
|
478
|
+
* @package cosmos.base.abci.v1beta1
|
|
479
|
+
* @see proto type: cosmos.base.abci.v1beta1.Attribute
|
|
480
|
+
*/
|
|
454
481
|
exports.Attribute = {
|
|
455
482
|
typeUrl: "/cosmos.base.abci.v1beta1.Attribute",
|
|
456
483
|
aminoType: "cosmos-sdk/Attribute",
|
|
@@ -540,6 +567,12 @@ function createBaseGasInfo() {
|
|
|
540
567
|
gasUsed: BigInt(0)
|
|
541
568
|
};
|
|
542
569
|
}
|
|
570
|
+
/**
|
|
571
|
+
* GasInfo defines tx execution gas context.
|
|
572
|
+
* @name GasInfo
|
|
573
|
+
* @package cosmos.base.abci.v1beta1
|
|
574
|
+
* @see proto type: cosmos.base.abci.v1beta1.GasInfo
|
|
575
|
+
*/
|
|
543
576
|
exports.GasInfo = {
|
|
544
577
|
typeUrl: "/cosmos.base.abci.v1beta1.GasInfo",
|
|
545
578
|
aminoType: "cosmos-sdk/GasInfo",
|
|
@@ -631,6 +664,12 @@ function createBaseResult() {
|
|
|
631
664
|
msgResponses: []
|
|
632
665
|
};
|
|
633
666
|
}
|
|
667
|
+
/**
|
|
668
|
+
* Result is the union of ResponseFormat and ResponseCheckTx.
|
|
669
|
+
* @name Result
|
|
670
|
+
* @package cosmos.base.abci.v1beta1
|
|
671
|
+
* @see proto type: cosmos.base.abci.v1beta1.Result
|
|
672
|
+
*/
|
|
634
673
|
exports.Result = {
|
|
635
674
|
typeUrl: "/cosmos.base.abci.v1beta1.Result",
|
|
636
675
|
aminoType: "cosmos-sdk/Result",
|
|
@@ -748,6 +787,13 @@ function createBaseSimulationResponse() {
|
|
|
748
787
|
result: undefined
|
|
749
788
|
};
|
|
750
789
|
}
|
|
790
|
+
/**
|
|
791
|
+
* SimulationResponse defines the response generated when a transaction is
|
|
792
|
+
* successfully simulated.
|
|
793
|
+
* @name SimulationResponse
|
|
794
|
+
* @package cosmos.base.abci.v1beta1
|
|
795
|
+
* @see proto type: cosmos.base.abci.v1beta1.SimulationResponse
|
|
796
|
+
*/
|
|
751
797
|
exports.SimulationResponse = {
|
|
752
798
|
typeUrl: "/cosmos.base.abci.v1beta1.SimulationResponse",
|
|
753
799
|
aminoType: "cosmos-sdk/SimulationResponse",
|
|
@@ -843,6 +889,14 @@ function createBaseMsgData() {
|
|
|
843
889
|
data: new Uint8Array()
|
|
844
890
|
};
|
|
845
891
|
}
|
|
892
|
+
/**
|
|
893
|
+
* MsgData defines the data returned in a Result object during message
|
|
894
|
+
* execution.
|
|
895
|
+
* @name MsgData
|
|
896
|
+
* @package cosmos.base.abci.v1beta1
|
|
897
|
+
* @see proto type: cosmos.base.abci.v1beta1.MsgData
|
|
898
|
+
* @deprecated
|
|
899
|
+
*/
|
|
846
900
|
exports.MsgData = {
|
|
847
901
|
typeUrl: "/cosmos.base.abci.v1beta1.MsgData",
|
|
848
902
|
aminoType: "cosmos-sdk/MsgData",
|
|
@@ -932,6 +986,13 @@ function createBaseTxMsgData() {
|
|
|
932
986
|
msgResponses: []
|
|
933
987
|
};
|
|
934
988
|
}
|
|
989
|
+
/**
|
|
990
|
+
* TxMsgData defines a list of MsgData. A transaction will have a MsgData object
|
|
991
|
+
* for each message.
|
|
992
|
+
* @name TxMsgData
|
|
993
|
+
* @package cosmos.base.abci.v1beta1
|
|
994
|
+
* @see proto type: cosmos.base.abci.v1beta1.TxMsgData
|
|
995
|
+
*/
|
|
935
996
|
exports.TxMsgData = {
|
|
936
997
|
typeUrl: "/cosmos.base.abci.v1beta1.TxMsgData",
|
|
937
998
|
aminoType: "cosmos-sdk/TxMsgData",
|
|
@@ -1031,6 +1092,12 @@ function createBaseSearchTxsResult() {
|
|
|
1031
1092
|
txs: []
|
|
1032
1093
|
};
|
|
1033
1094
|
}
|
|
1095
|
+
/**
|
|
1096
|
+
* SearchTxsResult defines a structure for querying txs pageable
|
|
1097
|
+
* @name SearchTxsResult
|
|
1098
|
+
* @package cosmos.base.abci.v1beta1
|
|
1099
|
+
* @see proto type: cosmos.base.abci.v1beta1.SearchTxsResult
|
|
1100
|
+
*/
|
|
1034
1101
|
exports.SearchTxsResult = {
|
|
1035
1102
|
typeUrl: "/cosmos.base.abci.v1beta1.SearchTxsResult",
|
|
1036
1103
|
aminoType: "cosmos-sdk/SearchTxsResult",
|
|
@@ -1176,6 +1243,12 @@ function createBaseSearchBlocksResult() {
|
|
|
1176
1243
|
blocks: []
|
|
1177
1244
|
};
|
|
1178
1245
|
}
|
|
1246
|
+
/**
|
|
1247
|
+
* SearchBlocksResult defines a structure for querying blocks pageable
|
|
1248
|
+
* @name SearchBlocksResult
|
|
1249
|
+
* @package cosmos.base.abci.v1beta1
|
|
1250
|
+
* @see proto type: cosmos.base.abci.v1beta1.SearchBlocksResult
|
|
1251
|
+
*/
|
|
1179
1252
|
exports.SearchBlocksResult = {
|
|
1180
1253
|
typeUrl: "/cosmos.base.abci.v1beta1.SearchBlocksResult",
|
|
1181
1254
|
aminoType: "cosmos-sdk/SearchBlocksResult",
|
|
@@ -8,6 +8,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
8
8
|
* Foo some_parameter = 1;
|
|
9
9
|
* PageRequest pagination = 2;
|
|
10
10
|
* }
|
|
11
|
+
* @name PageRequest
|
|
12
|
+
* @package cosmos.base.query.v1beta1
|
|
13
|
+
* @see proto type: cosmos.base.query.v1beta1.PageRequest
|
|
11
14
|
*/
|
|
12
15
|
export interface PageRequest {
|
|
13
16
|
/**
|
|
@@ -53,6 +56,9 @@ export interface PageRequestProtoMsg {
|
|
|
53
56
|
* Foo some_parameter = 1;
|
|
54
57
|
* PageRequest pagination = 2;
|
|
55
58
|
* }
|
|
59
|
+
* @name PageRequestAmino
|
|
60
|
+
* @package cosmos.base.query.v1beta1
|
|
61
|
+
* @see proto type: cosmos.base.query.v1beta1.PageRequest
|
|
56
62
|
*/
|
|
57
63
|
export interface PageRequestAmino {
|
|
58
64
|
/**
|
|
@@ -98,6 +104,9 @@ export interface PageRequestAminoMsg {
|
|
|
98
104
|
* repeated Bar results = 1;
|
|
99
105
|
* PageResponse page = 2;
|
|
100
106
|
* }
|
|
107
|
+
* @name PageResponse
|
|
108
|
+
* @package cosmos.base.query.v1beta1
|
|
109
|
+
* @see proto type: cosmos.base.query.v1beta1.PageResponse
|
|
101
110
|
*/
|
|
102
111
|
export interface PageResponse {
|
|
103
112
|
/**
|
|
@@ -124,6 +133,9 @@ export interface PageResponseProtoMsg {
|
|
|
124
133
|
* repeated Bar results = 1;
|
|
125
134
|
* PageResponse page = 2;
|
|
126
135
|
* }
|
|
136
|
+
* @name PageResponseAmino
|
|
137
|
+
* @package cosmos.base.query.v1beta1
|
|
138
|
+
* @see proto type: cosmos.base.query.v1beta1.PageResponse
|
|
127
139
|
*/
|
|
128
140
|
export interface PageResponseAmino {
|
|
129
141
|
/**
|
|
@@ -142,6 +154,18 @@ export interface PageResponseAminoMsg {
|
|
|
142
154
|
type: "cosmos-sdk/PageResponse";
|
|
143
155
|
value: PageResponseAmino;
|
|
144
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* PageRequest is to be embedded in gRPC request messages for efficient
|
|
159
|
+
* pagination. Ex:
|
|
160
|
+
*
|
|
161
|
+
* message SomeRequest {
|
|
162
|
+
* Foo some_parameter = 1;
|
|
163
|
+
* PageRequest pagination = 2;
|
|
164
|
+
* }
|
|
165
|
+
* @name PageRequest
|
|
166
|
+
* @package cosmos.base.query.v1beta1
|
|
167
|
+
* @see proto type: cosmos.base.query.v1beta1.PageRequest
|
|
168
|
+
*/
|
|
145
169
|
export declare const PageRequest: {
|
|
146
170
|
typeUrl: string;
|
|
147
171
|
aminoType: string;
|
|
@@ -159,6 +183,18 @@ export declare const PageRequest: {
|
|
|
159
183
|
toProtoMsg(message: PageRequest): PageRequestProtoMsg;
|
|
160
184
|
registerTypeUrl(): void;
|
|
161
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
188
|
+
* corresponding request message has used PageRequest.
|
|
189
|
+
*
|
|
190
|
+
* message SomeResponse {
|
|
191
|
+
* repeated Bar results = 1;
|
|
192
|
+
* PageResponse page = 2;
|
|
193
|
+
* }
|
|
194
|
+
* @name PageResponse
|
|
195
|
+
* @package cosmos.base.query.v1beta1
|
|
196
|
+
* @see proto type: cosmos.base.query.v1beta1.PageResponse
|
|
197
|
+
*/
|
|
162
198
|
export declare const PageResponse: {
|
|
163
199
|
typeUrl: string;
|
|
164
200
|
aminoType: string;
|
|
@@ -12,6 +12,18 @@ function createBasePageRequest() {
|
|
|
12
12
|
reverse: false
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* PageRequest is to be embedded in gRPC request messages for efficient
|
|
17
|
+
* pagination. Ex:
|
|
18
|
+
*
|
|
19
|
+
* message SomeRequest {
|
|
20
|
+
* Foo some_parameter = 1;
|
|
21
|
+
* PageRequest pagination = 2;
|
|
22
|
+
* }
|
|
23
|
+
* @name PageRequest
|
|
24
|
+
* @package cosmos.base.query.v1beta1
|
|
25
|
+
* @see proto type: cosmos.base.query.v1beta1.PageRequest
|
|
26
|
+
*/
|
|
15
27
|
exports.PageRequest = {
|
|
16
28
|
typeUrl: "/cosmos.base.query.v1beta1.PageRequest",
|
|
17
29
|
aminoType: "cosmos-sdk/PageRequest",
|
|
@@ -134,6 +146,18 @@ function createBasePageResponse() {
|
|
|
134
146
|
total: BigInt(0)
|
|
135
147
|
};
|
|
136
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
151
|
+
* corresponding request message has used PageRequest.
|
|
152
|
+
*
|
|
153
|
+
* message SomeResponse {
|
|
154
|
+
* repeated Bar results = 1;
|
|
155
|
+
* PageResponse page = 2;
|
|
156
|
+
* }
|
|
157
|
+
* @name PageResponse
|
|
158
|
+
* @package cosmos.base.query.v1beta1
|
|
159
|
+
* @see proto type: cosmos.base.query.v1beta1.PageResponse
|
|
160
|
+
*/
|
|
137
161
|
exports.PageResponse = {
|
|
138
162
|
typeUrl: "/cosmos.base.query.v1beta1.PageResponse",
|
|
139
163
|
aminoType: "cosmos-sdk/PageResponse",
|
|
@@ -5,6 +5,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
*
|
|
6
6
|
* NOTE: The amount field is an Int which implements the custom method
|
|
7
7
|
* signatures required by gogoproto.
|
|
8
|
+
* @name Coin
|
|
9
|
+
* @package cosmos.base.v1beta1
|
|
10
|
+
* @see proto type: cosmos.base.v1beta1.Coin
|
|
8
11
|
*/
|
|
9
12
|
export interface Coin {
|
|
10
13
|
denom: string;
|
|
@@ -19,6 +22,9 @@ export interface CoinProtoMsg {
|
|
|
19
22
|
*
|
|
20
23
|
* NOTE: The amount field is an Int which implements the custom method
|
|
21
24
|
* signatures required by gogoproto.
|
|
25
|
+
* @name CoinAmino
|
|
26
|
+
* @package cosmos.base.v1beta1
|
|
27
|
+
* @see proto type: cosmos.base.v1beta1.Coin
|
|
22
28
|
*/
|
|
23
29
|
export interface CoinAmino {
|
|
24
30
|
denom: string;
|
|
@@ -33,6 +39,9 @@ export interface CoinAminoMsg {
|
|
|
33
39
|
*
|
|
34
40
|
* NOTE: The amount field is an Dec which implements the custom method
|
|
35
41
|
* signatures required by gogoproto.
|
|
42
|
+
* @name DecCoin
|
|
43
|
+
* @package cosmos.base.v1beta1
|
|
44
|
+
* @see proto type: cosmos.base.v1beta1.DecCoin
|
|
36
45
|
*/
|
|
37
46
|
export interface DecCoin {
|
|
38
47
|
denom: string;
|
|
@@ -47,6 +56,9 @@ export interface DecCoinProtoMsg {
|
|
|
47
56
|
*
|
|
48
57
|
* NOTE: The amount field is an Dec which implements the custom method
|
|
49
58
|
* signatures required by gogoproto.
|
|
59
|
+
* @name DecCoinAmino
|
|
60
|
+
* @package cosmos.base.v1beta1
|
|
61
|
+
* @see proto type: cosmos.base.v1beta1.DecCoin
|
|
50
62
|
*/
|
|
51
63
|
export interface DecCoinAmino {
|
|
52
64
|
denom: string;
|
|
@@ -59,6 +71,9 @@ export interface DecCoinAminoMsg {
|
|
|
59
71
|
/**
|
|
60
72
|
* IntProto defines a Protobuf wrapper around an Int object.
|
|
61
73
|
* Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.
|
|
74
|
+
* @name IntProto
|
|
75
|
+
* @package cosmos.base.v1beta1
|
|
76
|
+
* @see proto type: cosmos.base.v1beta1.IntProto
|
|
62
77
|
*/
|
|
63
78
|
export interface IntProto {
|
|
64
79
|
int: string;
|
|
@@ -70,6 +85,9 @@ export interface IntProtoProtoMsg {
|
|
|
70
85
|
/**
|
|
71
86
|
* IntProto defines a Protobuf wrapper around an Int object.
|
|
72
87
|
* Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.
|
|
88
|
+
* @name IntProtoAmino
|
|
89
|
+
* @package cosmos.base.v1beta1
|
|
90
|
+
* @see proto type: cosmos.base.v1beta1.IntProto
|
|
73
91
|
*/
|
|
74
92
|
export interface IntProtoAmino {
|
|
75
93
|
int: string;
|
|
@@ -81,6 +99,9 @@ export interface IntProtoAminoMsg {
|
|
|
81
99
|
/**
|
|
82
100
|
* DecProto defines a Protobuf wrapper around a Dec object.
|
|
83
101
|
* Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.
|
|
102
|
+
* @name DecProto
|
|
103
|
+
* @package cosmos.base.v1beta1
|
|
104
|
+
* @see proto type: cosmos.base.v1beta1.DecProto
|
|
84
105
|
*/
|
|
85
106
|
export interface DecProto {
|
|
86
107
|
dec: string;
|
|
@@ -92,6 +113,9 @@ export interface DecProtoProtoMsg {
|
|
|
92
113
|
/**
|
|
93
114
|
* DecProto defines a Protobuf wrapper around a Dec object.
|
|
94
115
|
* Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.
|
|
116
|
+
* @name DecProtoAmino
|
|
117
|
+
* @package cosmos.base.v1beta1
|
|
118
|
+
* @see proto type: cosmos.base.v1beta1.DecProto
|
|
95
119
|
*/
|
|
96
120
|
export interface DecProtoAmino {
|
|
97
121
|
dec: string;
|
|
@@ -100,6 +124,15 @@ export interface DecProtoAminoMsg {
|
|
|
100
124
|
type: "cosmos-sdk/DecProto";
|
|
101
125
|
value: DecProtoAmino;
|
|
102
126
|
}
|
|
127
|
+
/**
|
|
128
|
+
* Coin defines a token with a denomination and an amount.
|
|
129
|
+
*
|
|
130
|
+
* NOTE: The amount field is an Int which implements the custom method
|
|
131
|
+
* signatures required by gogoproto.
|
|
132
|
+
* @name Coin
|
|
133
|
+
* @package cosmos.base.v1beta1
|
|
134
|
+
* @see proto type: cosmos.base.v1beta1.Coin
|
|
135
|
+
*/
|
|
103
136
|
export declare const Coin: {
|
|
104
137
|
typeUrl: string;
|
|
105
138
|
aminoType: string;
|
|
@@ -117,6 +150,15 @@ export declare const Coin: {
|
|
|
117
150
|
toProtoMsg(message: Coin): CoinProtoMsg;
|
|
118
151
|
registerTypeUrl(): void;
|
|
119
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* DecCoin defines a token with a denomination and a decimal amount.
|
|
155
|
+
*
|
|
156
|
+
* NOTE: The amount field is an Dec which implements the custom method
|
|
157
|
+
* signatures required by gogoproto.
|
|
158
|
+
* @name DecCoin
|
|
159
|
+
* @package cosmos.base.v1beta1
|
|
160
|
+
* @see proto type: cosmos.base.v1beta1.DecCoin
|
|
161
|
+
*/
|
|
120
162
|
export declare const DecCoin: {
|
|
121
163
|
typeUrl: string;
|
|
122
164
|
aminoType: string;
|
|
@@ -134,6 +176,13 @@ export declare const DecCoin: {
|
|
|
134
176
|
toProtoMsg(message: DecCoin): DecCoinProtoMsg;
|
|
135
177
|
registerTypeUrl(): void;
|
|
136
178
|
};
|
|
179
|
+
/**
|
|
180
|
+
* IntProto defines a Protobuf wrapper around an Int object.
|
|
181
|
+
* Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.
|
|
182
|
+
* @name IntProto
|
|
183
|
+
* @package cosmos.base.v1beta1
|
|
184
|
+
* @see proto type: cosmos.base.v1beta1.IntProto
|
|
185
|
+
*/
|
|
137
186
|
export declare const IntProto: {
|
|
138
187
|
typeUrl: string;
|
|
139
188
|
aminoType: string;
|
|
@@ -151,6 +200,13 @@ export declare const IntProto: {
|
|
|
151
200
|
toProtoMsg(message: IntProto): IntProtoProtoMsg;
|
|
152
201
|
registerTypeUrl(): void;
|
|
153
202
|
};
|
|
203
|
+
/**
|
|
204
|
+
* DecProto defines a Protobuf wrapper around a Dec object.
|
|
205
|
+
* Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.
|
|
206
|
+
* @name DecProto
|
|
207
|
+
* @package cosmos.base.v1beta1
|
|
208
|
+
* @see proto type: cosmos.base.v1beta1.DecProto
|
|
209
|
+
*/
|
|
154
210
|
export declare const DecProto: {
|
|
155
211
|
typeUrl: string;
|
|
156
212
|
aminoType: string;
|
|
@@ -9,6 +9,15 @@ function createBaseCoin() {
|
|
|
9
9
|
amount: ""
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Coin defines a token with a denomination and an amount.
|
|
14
|
+
*
|
|
15
|
+
* NOTE: The amount field is an Int which implements the custom method
|
|
16
|
+
* signatures required by gogoproto.
|
|
17
|
+
* @name Coin
|
|
18
|
+
* @package cosmos.base.v1beta1
|
|
19
|
+
* @see proto type: cosmos.base.v1beta1.Coin
|
|
20
|
+
*/
|
|
12
21
|
exports.Coin = {
|
|
13
22
|
typeUrl: "/cosmos.base.v1beta1.Coin",
|
|
14
23
|
aminoType: "cosmos-sdk/Coin",
|
|
@@ -98,6 +107,15 @@ function createBaseDecCoin() {
|
|
|
98
107
|
amount: ""
|
|
99
108
|
};
|
|
100
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* DecCoin defines a token with a denomination and a decimal amount.
|
|
112
|
+
*
|
|
113
|
+
* NOTE: The amount field is an Dec which implements the custom method
|
|
114
|
+
* signatures required by gogoproto.
|
|
115
|
+
* @name DecCoin
|
|
116
|
+
* @package cosmos.base.v1beta1
|
|
117
|
+
* @see proto type: cosmos.base.v1beta1.DecCoin
|
|
118
|
+
*/
|
|
101
119
|
exports.DecCoin = {
|
|
102
120
|
typeUrl: "/cosmos.base.v1beta1.DecCoin",
|
|
103
121
|
aminoType: "cosmos-sdk/DecCoin",
|
|
@@ -186,6 +204,13 @@ function createBaseIntProto() {
|
|
|
186
204
|
int: ""
|
|
187
205
|
};
|
|
188
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* IntProto defines a Protobuf wrapper around an Int object.
|
|
209
|
+
* Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.
|
|
210
|
+
* @name IntProto
|
|
211
|
+
* @package cosmos.base.v1beta1
|
|
212
|
+
* @see proto type: cosmos.base.v1beta1.IntProto
|
|
213
|
+
*/
|
|
189
214
|
exports.IntProto = {
|
|
190
215
|
typeUrl: "/cosmos.base.v1beta1.IntProto",
|
|
191
216
|
aminoType: "cosmos-sdk/IntProto",
|
|
@@ -263,6 +288,13 @@ function createBaseDecProto() {
|
|
|
263
288
|
dec: ""
|
|
264
289
|
};
|
|
265
290
|
}
|
|
291
|
+
/**
|
|
292
|
+
* DecProto defines a Protobuf wrapper around a Dec object.
|
|
293
|
+
* Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.
|
|
294
|
+
* @name DecProto
|
|
295
|
+
* @package cosmos.base.v1beta1
|
|
296
|
+
* @see proto type: cosmos.base.v1beta1.DecProto
|
|
297
|
+
*/
|
|
266
298
|
exports.DecProto = {
|
|
267
299
|
typeUrl: "/cosmos.base.v1beta1.DecProto",
|
|
268
300
|
aminoType: "cosmos-sdk/DecProto",
|
package/cosmos/bundle.d.ts
CHANGED
|
@@ -42,16 +42,16 @@ export { registry as CosmosGroupV1Registry, MessageComposer as CosmosGroupV1Mess
|
|
|
42
42
|
export { registry as CosmosStakingV1beta1Registry, MessageComposer as CosmosStakingV1beta1MessageComposer } from "./staking/v1beta1/tx.registry";
|
|
43
43
|
export { registry as CosmosVestingV1beta1Registry, MessageComposer as CosmosVestingV1beta1MessageComposer } from "./vesting/v1beta1/tx.registry";
|
|
44
44
|
export { getAccounts, getAccount, getAccountAddressByID, getParams, getModuleAccounts, getModuleAccountByName, getBech32Prefix, getAddressBytesToString, getAddressStringToBytes, getAccountInfo } from "./auth/v1beta1/query.rpc.func";
|
|
45
|
-
export { getBalance, getAllBalances, getSpendableBalances, getSpendableBalanceByDenom, getTotalSupply, getSupplyOf, getParams as
|
|
46
|
-
export { getProposal, getProposals, getVote, getVotes, getParams as
|
|
47
|
-
export { getValidators, getValidator, getValidatorDelegations, getValidatorUnbondingDelegations, getDelegation, getUnbondingDelegation, getDelegatorDelegations, getDelegatorUnbondingDelegations, getRedelegations, getDelegatorValidators, getDelegatorValidator, getHistoricalInfo, getPool, getParams as
|
|
45
|
+
export { getBalance, getAllBalances, getSpendableBalances, getSpendableBalanceByDenom, getTotalSupply, getSupplyOf, getParams as getParamsCosmosBankV1beta1, getDenomMetadata, getDenomMetadataByQueryString, getDenomsMetadata, getDenomOwners, getDenomOwnersByQuery, getSendEnabled } from "./bank/v1beta1/query.rpc.func";
|
|
46
|
+
export { getProposal, getProposals, getVote, getVotes, getParams as getParamsCosmosGovV1beta1, getDeposit, getDeposits, getTallyResult } from "./gov/v1beta1/query.rpc.func";
|
|
47
|
+
export { getValidators, getValidator, getValidatorDelegations, getValidatorUnbondingDelegations, getDelegation, getUnbondingDelegation, getDelegatorDelegations, getDelegatorUnbondingDelegations, getRedelegations, getDelegatorValidators, getDelegatorValidator, getHistoricalInfo, getPool, getParams as getParamsCosmosStakingV1beta1 } from "./staking/v1beta1/query.rpc.func";
|
|
48
48
|
export * from "./tx/v1beta1/service.rpc.func";
|
|
49
49
|
export { grant, exec, revoke } from "./authz/v1beta1/tx.rpc.func";
|
|
50
50
|
export { send, multiSend, updateParams, setSendEnabled } from "./bank/v1beta1/tx.rpc.func";
|
|
51
|
-
export { setWithdrawAddress, withdrawDelegatorReward, withdrawValidatorCommission, fundCommunityPool, updateParams as
|
|
51
|
+
export { setWithdrawAddress, withdrawDelegatorReward, withdrawValidatorCommission, fundCommunityPool, updateParams as updateParamsCosmosDistributionV1beta1, communityPoolSpend, depositValidatorRewardsPool } from "./distribution/v1beta1/tx.rpc.func";
|
|
52
52
|
export * from "./feegrant/v1beta1/tx.rpc.func";
|
|
53
|
-
export { submitProposal, execLegacyContent, vote, voteWeighted, deposit, updateParams as
|
|
54
|
-
export { submitProposal as
|
|
55
|
-
export { createGroup, updateGroupMembers, updateGroupAdmin, updateGroupMetadata, createGroupPolicy, createGroupWithPolicy, updateGroupPolicyAdmin, updateGroupPolicyDecisionPolicy, updateGroupPolicyMetadata, submitProposal as
|
|
56
|
-
export { createValidator, editValidator, delegate, beginRedelegate, undelegate, cancelUnbondingDelegation, updateParams as
|
|
53
|
+
export { submitProposal, execLegacyContent, vote, voteWeighted, deposit, updateParams as updateParamsCosmosGovV1, cancelProposal } from "./gov/v1/tx.rpc.func";
|
|
54
|
+
export { submitProposal as submitProposalCosmosGovV1beta1, vote as voteCosmosGovV1beta1, voteWeighted as voteWeightedCosmosGovV1beta1, deposit as depositCosmosGovV1beta1 } from "./gov/v1beta1/tx.rpc.func";
|
|
55
|
+
export { createGroup, updateGroupMembers, updateGroupAdmin, updateGroupMetadata, createGroupPolicy, createGroupWithPolicy, updateGroupPolicyAdmin, updateGroupPolicyDecisionPolicy, updateGroupPolicyMetadata, submitProposal as submitProposalCosmosGroupV1, withdrawProposal, vote as voteCosmosGroupV1, exec as execCosmosGroupV1, leaveGroup } from "./group/v1/tx.rpc.func";
|
|
56
|
+
export { createValidator, editValidator, delegate, beginRedelegate, undelegate, cancelUnbondingDelegation, updateParams as updateParamsCosmosStakingV1beta1 } from "./staking/v1beta1/tx.rpc.func";
|
|
57
57
|
export * from "./vesting/v1beta1/tx.rpc.func";
|
package/cosmos/bundle.js
CHANGED
|
@@ -20,8 +20,8 @@ exports.QueryProposalResponse = exports.QueryProposalRequest = exports.CosmosGov
|
|
|
20
20
|
exports.CosmosGroupV1MsgExecResponse = exports.CosmosGroupV1MsgExec = exports.CosmosGroupV1MsgVoteResponse = exports.CosmosGroupV1MsgVote = exports.MsgWithdrawProposalResponse = exports.MsgWithdrawProposal = exports.CosmosGroupV1MsgSubmitProposalResponse = exports.CosmosGroupV1MsgSubmitProposal = exports.MsgUpdateGroupPolicyMetadataResponse = exports.MsgUpdateGroupPolicyMetadata = exports.MsgUpdateGroupPolicyDecisionPolicyResponse = exports.MsgUpdateGroupPolicyDecisionPolicy = exports.MsgCreateGroupWithPolicyResponse = exports.MsgCreateGroupWithPolicy = exports.MsgUpdateGroupPolicyAdminResponse = exports.MsgUpdateGroupPolicyAdmin = exports.MsgCreateGroupPolicyResponse = exports.MsgCreateGroupPolicy = exports.MsgUpdateGroupMetadataResponse = exports.MsgUpdateGroupMetadata = exports.MsgUpdateGroupAdminResponse = exports.MsgUpdateGroupAdmin = exports.MsgUpdateGroupMembersResponse = exports.MsgUpdateGroupMembers = exports.MsgCreateGroupResponse = exports.MsgCreateGroup = exports.ExecAmino = exports.Exec = exports.CosmosGovV1beta1MsgDepositResponse = exports.CosmosGovV1beta1MsgDeposit = exports.CosmosGovV1beta1MsgVoteWeightedResponse = exports.CosmosGovV1beta1MsgVoteWeighted = exports.CosmosGovV1beta1MsgVoteResponse = exports.CosmosGovV1beta1MsgVote = exports.CosmosGovV1beta1MsgSubmitProposalResponse = exports.CosmosGovV1beta1MsgSubmitProposal = exports.QueryTallyResultResponse = exports.QueryTallyResultRequest = exports.QueryDepositsResponse = exports.QueryDepositsRequest = exports.QueryDepositResponse = exports.QueryDepositRequest = exports.CosmosGovV1beta1QueryParamsResponse = exports.CosmosGovV1beta1QueryParamsRequest = exports.QueryVotesResponse = exports.QueryVotesRequest = exports.QueryVoteResponse = exports.QueryVoteRequest = exports.QueryProposalsResponse = exports.QueryProposalsRequest = void 0;
|
|
21
21
|
exports.Infraction = exports.BondStatusAmino = exports.BondStatus = exports.CosmosStakingV1beta1QueryParamsResponse = exports.CosmosStakingV1beta1QueryParamsRequest = exports.QueryPoolResponse = exports.QueryPoolRequest = exports.QueryHistoricalInfoResponse = exports.QueryHistoricalInfoRequest = exports.QueryDelegatorValidatorResponse = exports.QueryDelegatorValidatorRequest = exports.QueryDelegatorValidatorsResponse = exports.QueryDelegatorValidatorsRequest = exports.QueryRedelegationsResponse = exports.QueryRedelegationsRequest = exports.QueryDelegatorUnbondingDelegationsResponse = exports.QueryDelegatorUnbondingDelegationsRequest = exports.QueryDelegatorDelegationsResponse = exports.QueryDelegatorDelegationsRequest = exports.QueryUnbondingDelegationResponse = exports.QueryUnbondingDelegationRequest = exports.QueryDelegationResponse = exports.QueryDelegationRequest = exports.QueryValidatorUnbondingDelegationsResponse = exports.QueryValidatorUnbondingDelegationsRequest = exports.QueryValidatorDelegationsResponse = exports.QueryValidatorDelegationsRequest = exports.QueryValidatorResponse = exports.QueryValidatorRequest = exports.QueryValidatorsResponse = exports.QueryValidatorsRequest = exports.CosmosGroupV1Vote = exports.CosmosGroupV1TallyResult = exports.CosmosGroupV1Proposal = exports.GroupPolicyInfo = exports.GroupMember = exports.GroupInfo = exports.DecisionPolicyWindows = exports.PercentageDecisionPolicy = exports.ThresholdDecisionPolicy = exports.MemberRequest = exports.Member = exports.ProposalExecutorResultAmino = exports.ProposalExecutorResult = exports.CosmosGroupV1ProposalStatusAmino = exports.CosmosGroupV1ProposalStatus = exports.CosmosGroupV1VoteOptionAmino = exports.CosmosGroupV1VoteOption = exports.MsgLeaveGroupResponse = exports.MsgLeaveGroup = void 0;
|
|
22
22
|
exports.CosmosGroupV1MessageComposer = exports.CosmosGroupV1Registry = exports.CosmosGovV1beta1MessageComposer = exports.CosmosGovV1beta1Registry = exports.CosmosGovV1MessageComposer = exports.CosmosGovV1Registry = exports.CosmosFeegrantV1beta1MessageComposer = exports.CosmosFeegrantV1beta1Registry = exports.CosmosDistributionV1beta1MessageComposer = exports.CosmosDistributionV1beta1Registry = exports.CosmosBankV1beta1MessageComposer = exports.CosmosBankV1beta1Registry = exports.MessageComposer = exports.registry = exports.CosmosStakingV1beta1MsgUpdateParamsResponse = exports.CosmosStakingV1beta1MsgUpdateParams = exports.MsgCancelUnbondingDelegationResponse = exports.MsgCancelUnbondingDelegation = exports.MsgUndelegateResponse = exports.MsgUndelegate = exports.MsgBeginRedelegateResponse = exports.MsgBeginRedelegate = exports.MsgDelegateResponse = exports.MsgDelegate = exports.MsgEditValidatorResponse = exports.MsgEditValidator = exports.MsgCreateValidatorResponse = exports.MsgCreateValidator = exports.ValidatorUpdates = exports.Pool = exports.RedelegationResponse = exports.RedelegationEntryResponse = exports.DelegationResponse = exports.CosmosStakingV1beta1Params = exports.Redelegation = exports.RedelegationEntry = exports.UnbondingDelegationEntry = exports.UnbondingDelegation = exports.Delegation = exports.DVVTriplets = exports.DVVTriplet = exports.DVPairs = exports.DVPair = exports.ValAddresses = exports.Validator = exports.Description = exports.Commission = exports.CommissionRates = exports.HistoricalInfo = exports.InfractionAmino = void 0;
|
|
23
|
-
exports.grant = exports.
|
|
24
|
-
exports.
|
|
23
|
+
exports.grant = exports.getParamsCosmosStakingV1beta1 = exports.getPool = exports.getHistoricalInfo = exports.getDelegatorValidator = exports.getDelegatorValidators = exports.getRedelegations = exports.getDelegatorUnbondingDelegations = exports.getDelegatorDelegations = exports.getUnbondingDelegation = exports.getDelegation = exports.getValidatorUnbondingDelegations = exports.getValidatorDelegations = exports.getValidator = exports.getValidators = exports.getTallyResult = exports.getDeposits = exports.getDeposit = exports.getParamsCosmosGovV1beta1 = exports.getVotes = exports.getVote = exports.getProposals = exports.getProposal = exports.getSendEnabled = exports.getDenomOwnersByQuery = exports.getDenomOwners = exports.getDenomsMetadata = exports.getDenomMetadataByQueryString = exports.getDenomMetadata = exports.getParamsCosmosBankV1beta1 = exports.getSupplyOf = exports.getTotalSupply = exports.getSpendableBalanceByDenom = exports.getSpendableBalances = exports.getAllBalances = exports.getBalance = exports.getAccountInfo = exports.getAddressStringToBytes = exports.getAddressBytesToString = exports.getBech32Prefix = exports.getModuleAccountByName = exports.getModuleAccounts = exports.getParams = exports.getAccountAddressByID = exports.getAccount = exports.getAccounts = exports.CosmosVestingV1beta1MessageComposer = exports.CosmosVestingV1beta1Registry = exports.CosmosStakingV1beta1MessageComposer = exports.CosmosStakingV1beta1Registry = void 0;
|
|
24
|
+
exports.updateParamsCosmosStakingV1beta1 = exports.cancelUnbondingDelegation = exports.undelegate = exports.beginRedelegate = exports.delegate = exports.editValidator = exports.createValidator = exports.leaveGroup = exports.execCosmosGroupV1 = exports.voteCosmosGroupV1 = exports.withdrawProposal = exports.submitProposalCosmosGroupV1 = exports.updateGroupPolicyMetadata = exports.updateGroupPolicyDecisionPolicy = exports.updateGroupPolicyAdmin = exports.createGroupWithPolicy = exports.createGroupPolicy = exports.updateGroupMetadata = exports.updateGroupAdmin = exports.updateGroupMembers = exports.createGroup = exports.depositCosmosGovV1beta1 = exports.voteWeightedCosmosGovV1beta1 = exports.voteCosmosGovV1beta1 = exports.submitProposalCosmosGovV1beta1 = exports.cancelProposal = exports.updateParamsCosmosGovV1 = exports.deposit = exports.voteWeighted = exports.vote = exports.execLegacyContent = exports.submitProposal = exports.depositValidatorRewardsPool = exports.communityPoolSpend = exports.updateParamsCosmosDistributionV1beta1 = exports.fundCommunityPool = exports.withdrawValidatorCommission = exports.withdrawDelegatorReward = exports.setWithdrawAddress = exports.setSendEnabled = exports.updateParams = exports.multiSend = exports.send = exports.revoke = exports.exec = void 0;
|
|
25
25
|
var auth_1 = require("./auth/v1beta1/auth");
|
|
26
26
|
Object.defineProperty(exports, "BaseAccount", { enumerable: true, get: function () { return auth_1.BaseAccount; } });
|
|
27
27
|
Object.defineProperty(exports, "ModuleAccount", { enumerable: true, get: function () { return auth_1.ModuleAccount; } });
|
|
@@ -387,7 +387,7 @@ Object.defineProperty(exports, "getSpendableBalances", { enumerable: true, get:
|
|
|
387
387
|
Object.defineProperty(exports, "getSpendableBalanceByDenom", { enumerable: true, get: function () { return query_rpc_func_2.getSpendableBalanceByDenom; } });
|
|
388
388
|
Object.defineProperty(exports, "getTotalSupply", { enumerable: true, get: function () { return query_rpc_func_2.getTotalSupply; } });
|
|
389
389
|
Object.defineProperty(exports, "getSupplyOf", { enumerable: true, get: function () { return query_rpc_func_2.getSupplyOf; } });
|
|
390
|
-
Object.defineProperty(exports, "
|
|
390
|
+
Object.defineProperty(exports, "getParamsCosmosBankV1beta1", { enumerable: true, get: function () { return query_rpc_func_2.getParams; } });
|
|
391
391
|
Object.defineProperty(exports, "getDenomMetadata", { enumerable: true, get: function () { return query_rpc_func_2.getDenomMetadata; } });
|
|
392
392
|
Object.defineProperty(exports, "getDenomMetadataByQueryString", { enumerable: true, get: function () { return query_rpc_func_2.getDenomMetadataByQueryString; } });
|
|
393
393
|
Object.defineProperty(exports, "getDenomsMetadata", { enumerable: true, get: function () { return query_rpc_func_2.getDenomsMetadata; } });
|
|
@@ -399,7 +399,7 @@ Object.defineProperty(exports, "getProposal", { enumerable: true, get: function
|
|
|
399
399
|
Object.defineProperty(exports, "getProposals", { enumerable: true, get: function () { return query_rpc_func_3.getProposals; } });
|
|
400
400
|
Object.defineProperty(exports, "getVote", { enumerable: true, get: function () { return query_rpc_func_3.getVote; } });
|
|
401
401
|
Object.defineProperty(exports, "getVotes", { enumerable: true, get: function () { return query_rpc_func_3.getVotes; } });
|
|
402
|
-
Object.defineProperty(exports, "
|
|
402
|
+
Object.defineProperty(exports, "getParamsCosmosGovV1beta1", { enumerable: true, get: function () { return query_rpc_func_3.getParams; } });
|
|
403
403
|
Object.defineProperty(exports, "getDeposit", { enumerable: true, get: function () { return query_rpc_func_3.getDeposit; } });
|
|
404
404
|
Object.defineProperty(exports, "getDeposits", { enumerable: true, get: function () { return query_rpc_func_3.getDeposits; } });
|
|
405
405
|
Object.defineProperty(exports, "getTallyResult", { enumerable: true, get: function () { return query_rpc_func_3.getTallyResult; } });
|
|
@@ -417,7 +417,7 @@ Object.defineProperty(exports, "getDelegatorValidators", { enumerable: true, get
|
|
|
417
417
|
Object.defineProperty(exports, "getDelegatorValidator", { enumerable: true, get: function () { return query_rpc_func_4.getDelegatorValidator; } });
|
|
418
418
|
Object.defineProperty(exports, "getHistoricalInfo", { enumerable: true, get: function () { return query_rpc_func_4.getHistoricalInfo; } });
|
|
419
419
|
Object.defineProperty(exports, "getPool", { enumerable: true, get: function () { return query_rpc_func_4.getPool; } });
|
|
420
|
-
Object.defineProperty(exports, "
|
|
420
|
+
Object.defineProperty(exports, "getParamsCosmosStakingV1beta1", { enumerable: true, get: function () { return query_rpc_func_4.getParams; } });
|
|
421
421
|
__exportStar(require("./tx/v1beta1/service.rpc.func"), exports);
|
|
422
422
|
var tx_rpc_func_1 = require("./authz/v1beta1/tx.rpc.func");
|
|
423
423
|
Object.defineProperty(exports, "grant", { enumerable: true, get: function () { return tx_rpc_func_1.grant; } });
|
|
@@ -433,7 +433,7 @@ Object.defineProperty(exports, "setWithdrawAddress", { enumerable: true, get: fu
|
|
|
433
433
|
Object.defineProperty(exports, "withdrawDelegatorReward", { enumerable: true, get: function () { return tx_rpc_func_3.withdrawDelegatorReward; } });
|
|
434
434
|
Object.defineProperty(exports, "withdrawValidatorCommission", { enumerable: true, get: function () { return tx_rpc_func_3.withdrawValidatorCommission; } });
|
|
435
435
|
Object.defineProperty(exports, "fundCommunityPool", { enumerable: true, get: function () { return tx_rpc_func_3.fundCommunityPool; } });
|
|
436
|
-
Object.defineProperty(exports, "
|
|
436
|
+
Object.defineProperty(exports, "updateParamsCosmosDistributionV1beta1", { enumerable: true, get: function () { return tx_rpc_func_3.updateParams; } });
|
|
437
437
|
Object.defineProperty(exports, "communityPoolSpend", { enumerable: true, get: function () { return tx_rpc_func_3.communityPoolSpend; } });
|
|
438
438
|
Object.defineProperty(exports, "depositValidatorRewardsPool", { enumerable: true, get: function () { return tx_rpc_func_3.depositValidatorRewardsPool; } });
|
|
439
439
|
__exportStar(require("./feegrant/v1beta1/tx.rpc.func"), exports);
|
|
@@ -443,13 +443,13 @@ Object.defineProperty(exports, "execLegacyContent", { enumerable: true, get: fun
|
|
|
443
443
|
Object.defineProperty(exports, "vote", { enumerable: true, get: function () { return tx_rpc_func_4.vote; } });
|
|
444
444
|
Object.defineProperty(exports, "voteWeighted", { enumerable: true, get: function () { return tx_rpc_func_4.voteWeighted; } });
|
|
445
445
|
Object.defineProperty(exports, "deposit", { enumerable: true, get: function () { return tx_rpc_func_4.deposit; } });
|
|
446
|
-
Object.defineProperty(exports, "
|
|
446
|
+
Object.defineProperty(exports, "updateParamsCosmosGovV1", { enumerable: true, get: function () { return tx_rpc_func_4.updateParams; } });
|
|
447
447
|
Object.defineProperty(exports, "cancelProposal", { enumerable: true, get: function () { return tx_rpc_func_4.cancelProposal; } });
|
|
448
448
|
var tx_rpc_func_5 = require("./gov/v1beta1/tx.rpc.func");
|
|
449
|
-
Object.defineProperty(exports, "
|
|
450
|
-
Object.defineProperty(exports, "
|
|
451
|
-
Object.defineProperty(exports, "
|
|
452
|
-
Object.defineProperty(exports, "
|
|
449
|
+
Object.defineProperty(exports, "submitProposalCosmosGovV1beta1", { enumerable: true, get: function () { return tx_rpc_func_5.submitProposal; } });
|
|
450
|
+
Object.defineProperty(exports, "voteCosmosGovV1beta1", { enumerable: true, get: function () { return tx_rpc_func_5.vote; } });
|
|
451
|
+
Object.defineProperty(exports, "voteWeightedCosmosGovV1beta1", { enumerable: true, get: function () { return tx_rpc_func_5.voteWeighted; } });
|
|
452
|
+
Object.defineProperty(exports, "depositCosmosGovV1beta1", { enumerable: true, get: function () { return tx_rpc_func_5.deposit; } });
|
|
453
453
|
var tx_rpc_func_6 = require("./group/v1/tx.rpc.func");
|
|
454
454
|
Object.defineProperty(exports, "createGroup", { enumerable: true, get: function () { return tx_rpc_func_6.createGroup; } });
|
|
455
455
|
Object.defineProperty(exports, "updateGroupMembers", { enumerable: true, get: function () { return tx_rpc_func_6.updateGroupMembers; } });
|
|
@@ -460,10 +460,10 @@ Object.defineProperty(exports, "createGroupWithPolicy", { enumerable: true, get:
|
|
|
460
460
|
Object.defineProperty(exports, "updateGroupPolicyAdmin", { enumerable: true, get: function () { return tx_rpc_func_6.updateGroupPolicyAdmin; } });
|
|
461
461
|
Object.defineProperty(exports, "updateGroupPolicyDecisionPolicy", { enumerable: true, get: function () { return tx_rpc_func_6.updateGroupPolicyDecisionPolicy; } });
|
|
462
462
|
Object.defineProperty(exports, "updateGroupPolicyMetadata", { enumerable: true, get: function () { return tx_rpc_func_6.updateGroupPolicyMetadata; } });
|
|
463
|
-
Object.defineProperty(exports, "
|
|
463
|
+
Object.defineProperty(exports, "submitProposalCosmosGroupV1", { enumerable: true, get: function () { return tx_rpc_func_6.submitProposal; } });
|
|
464
464
|
Object.defineProperty(exports, "withdrawProposal", { enumerable: true, get: function () { return tx_rpc_func_6.withdrawProposal; } });
|
|
465
|
-
Object.defineProperty(exports, "
|
|
466
|
-
Object.defineProperty(exports, "
|
|
465
|
+
Object.defineProperty(exports, "voteCosmosGroupV1", { enumerable: true, get: function () { return tx_rpc_func_6.vote; } });
|
|
466
|
+
Object.defineProperty(exports, "execCosmosGroupV1", { enumerable: true, get: function () { return tx_rpc_func_6.exec; } });
|
|
467
467
|
Object.defineProperty(exports, "leaveGroup", { enumerable: true, get: function () { return tx_rpc_func_6.leaveGroup; } });
|
|
468
468
|
var tx_rpc_func_7 = require("./staking/v1beta1/tx.rpc.func");
|
|
469
469
|
Object.defineProperty(exports, "createValidator", { enumerable: true, get: function () { return tx_rpc_func_7.createValidator; } });
|
|
@@ -472,5 +472,5 @@ Object.defineProperty(exports, "delegate", { enumerable: true, get: function ()
|
|
|
472
472
|
Object.defineProperty(exports, "beginRedelegate", { enumerable: true, get: function () { return tx_rpc_func_7.beginRedelegate; } });
|
|
473
473
|
Object.defineProperty(exports, "undelegate", { enumerable: true, get: function () { return tx_rpc_func_7.undelegate; } });
|
|
474
474
|
Object.defineProperty(exports, "cancelUnbondingDelegation", { enumerable: true, get: function () { return tx_rpc_func_7.cancelUnbondingDelegation; } });
|
|
475
|
-
Object.defineProperty(exports, "
|
|
475
|
+
Object.defineProperty(exports, "updateParamsCosmosStakingV1beta1", { enumerable: true, get: function () { return tx_rpc_func_7.updateParams; } });
|
|
476
476
|
__exportStar(require("./vesting/v1beta1/tx.rpc.func"), exports);
|
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
7
7
|
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
8
8
|
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
9
|
+
* @name PubKey
|
|
10
|
+
* @package cosmos.crypto.ed25519
|
|
11
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
9
12
|
*/
|
|
10
13
|
export interface PubKey {
|
|
11
14
|
key: Uint8Array;
|
|
@@ -20,6 +23,9 @@ export interface PubKeyProtoMsg {
|
|
|
20
23
|
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
21
24
|
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
22
25
|
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
26
|
+
* @name PubKeyAmino
|
|
27
|
+
* @package cosmos.crypto.ed25519
|
|
28
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
23
29
|
*/
|
|
24
30
|
export interface PubKeyAmino {
|
|
25
31
|
key: string;
|
|
@@ -31,6 +37,9 @@ export interface PubKeyAminoMsg {
|
|
|
31
37
|
/**
|
|
32
38
|
* PrivKey defines a ed25519 private key.
|
|
33
39
|
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
40
|
+
* @name PrivKey
|
|
41
|
+
* @package cosmos.crypto.ed25519
|
|
42
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
34
43
|
*/
|
|
35
44
|
export interface PrivKey {
|
|
36
45
|
key: Uint8Array;
|
|
@@ -42,6 +51,9 @@ export interface PrivKeyProtoMsg {
|
|
|
42
51
|
/**
|
|
43
52
|
* PrivKey defines a ed25519 private key.
|
|
44
53
|
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
54
|
+
* @name PrivKeyAmino
|
|
55
|
+
* @package cosmos.crypto.ed25519
|
|
56
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
45
57
|
*/
|
|
46
58
|
export interface PrivKeyAmino {
|
|
47
59
|
key: string;
|
|
@@ -50,6 +62,16 @@ export interface PrivKeyAminoMsg {
|
|
|
50
62
|
type: "tendermint/PrivKeyEd25519";
|
|
51
63
|
value: PrivKeyAmino;
|
|
52
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* PubKey is an ed25519 public key for handling Tendermint keys in SDK.
|
|
67
|
+
* It's needed for Any serialization and SDK compatibility.
|
|
68
|
+
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
69
|
+
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
70
|
+
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
71
|
+
* @name PubKey
|
|
72
|
+
* @package cosmos.crypto.ed25519
|
|
73
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
74
|
+
*/
|
|
53
75
|
export declare const PubKey: {
|
|
54
76
|
typeUrl: string;
|
|
55
77
|
aminoType: string;
|
|
@@ -67,6 +89,13 @@ export declare const PubKey: {
|
|
|
67
89
|
toProtoMsg(message: PubKey): PubKeyProtoMsg;
|
|
68
90
|
registerTypeUrl(): void;
|
|
69
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* PrivKey defines a ed25519 private key.
|
|
94
|
+
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
95
|
+
* @name PrivKey
|
|
96
|
+
* @package cosmos.crypto.ed25519
|
|
97
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
98
|
+
*/
|
|
70
99
|
export declare const PrivKey: {
|
|
71
100
|
typeUrl: string;
|
|
72
101
|
aminoType: string;
|