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
|
@@ -129,6 +129,13 @@ function createBaseGetTxsEventRequest() {
|
|
|
129
129
|
query: ""
|
|
130
130
|
};
|
|
131
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
134
|
+
* RPC method.
|
|
135
|
+
* @name GetTxsEventRequest
|
|
136
|
+
* @package cosmos.tx.v1beta1
|
|
137
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
138
|
+
*/
|
|
132
139
|
exports.GetTxsEventRequest = {
|
|
133
140
|
typeUrl: "/cosmos.tx.v1beta1.GetTxsEventRequest",
|
|
134
141
|
aminoType: "cosmos-sdk/GetTxsEventRequest",
|
|
@@ -272,6 +279,13 @@ function createBaseGetTxsEventResponse() {
|
|
|
272
279
|
total: BigInt(0)
|
|
273
280
|
};
|
|
274
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
284
|
+
* RPC method.
|
|
285
|
+
* @name GetTxsEventResponse
|
|
286
|
+
* @package cosmos.tx.v1beta1
|
|
287
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
288
|
+
*/
|
|
275
289
|
exports.GetTxsEventResponse = {
|
|
276
290
|
typeUrl: "/cosmos.tx.v1beta1.GetTxsEventResponse",
|
|
277
291
|
aminoType: "cosmos-sdk/GetTxsEventResponse",
|
|
@@ -396,6 +410,13 @@ function createBaseBroadcastTxRequest() {
|
|
|
396
410
|
mode: 0
|
|
397
411
|
};
|
|
398
412
|
}
|
|
413
|
+
/**
|
|
414
|
+
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
415
|
+
* RPC method.
|
|
416
|
+
* @name BroadcastTxRequest
|
|
417
|
+
* @package cosmos.tx.v1beta1
|
|
418
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
419
|
+
*/
|
|
399
420
|
exports.BroadcastTxRequest = {
|
|
400
421
|
typeUrl: "/cosmos.tx.v1beta1.BroadcastTxRequest",
|
|
401
422
|
aminoType: "cosmos-sdk/BroadcastTxRequest",
|
|
@@ -484,6 +505,13 @@ function createBaseBroadcastTxResponse() {
|
|
|
484
505
|
txResponse: undefined
|
|
485
506
|
};
|
|
486
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* BroadcastTxResponse is the response type for the
|
|
510
|
+
* Service.BroadcastTx method.
|
|
511
|
+
* @name BroadcastTxResponse
|
|
512
|
+
* @package cosmos.tx.v1beta1
|
|
513
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
514
|
+
*/
|
|
487
515
|
exports.BroadcastTxResponse = {
|
|
488
516
|
typeUrl: "/cosmos.tx.v1beta1.BroadcastTxResponse",
|
|
489
517
|
aminoType: "cosmos-sdk/BroadcastTxResponse",
|
|
@@ -567,6 +595,13 @@ function createBaseSimulateRequest() {
|
|
|
567
595
|
txBytes: new Uint8Array()
|
|
568
596
|
};
|
|
569
597
|
}
|
|
598
|
+
/**
|
|
599
|
+
* SimulateRequest is the request type for the Service.Simulate
|
|
600
|
+
* RPC method.
|
|
601
|
+
* @name SimulateRequest
|
|
602
|
+
* @package cosmos.tx.v1beta1
|
|
603
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
604
|
+
*/
|
|
570
605
|
exports.SimulateRequest = {
|
|
571
606
|
typeUrl: "/cosmos.tx.v1beta1.SimulateRequest",
|
|
572
607
|
aminoType: "cosmos-sdk/SimulateRequest",
|
|
@@ -661,6 +696,13 @@ function createBaseSimulateResponse() {
|
|
|
661
696
|
result: undefined
|
|
662
697
|
};
|
|
663
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* SimulateResponse is the response type for the
|
|
701
|
+
* Service.SimulateRPC method.
|
|
702
|
+
* @name SimulateResponse
|
|
703
|
+
* @package cosmos.tx.v1beta1
|
|
704
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
705
|
+
*/
|
|
664
706
|
exports.SimulateResponse = {
|
|
665
707
|
typeUrl: "/cosmos.tx.v1beta1.SimulateResponse",
|
|
666
708
|
aminoType: "cosmos-sdk/SimulateResponse",
|
|
@@ -755,6 +797,13 @@ function createBaseGetTxRequest() {
|
|
|
755
797
|
hash: ""
|
|
756
798
|
};
|
|
757
799
|
}
|
|
800
|
+
/**
|
|
801
|
+
* GetTxRequest is the request type for the Service.GetTx
|
|
802
|
+
* RPC method.
|
|
803
|
+
* @name GetTxRequest
|
|
804
|
+
* @package cosmos.tx.v1beta1
|
|
805
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
806
|
+
*/
|
|
758
807
|
exports.GetTxRequest = {
|
|
759
808
|
typeUrl: "/cosmos.tx.v1beta1.GetTxRequest",
|
|
760
809
|
aminoType: "cosmos-sdk/GetTxRequest",
|
|
@@ -833,6 +882,12 @@ function createBaseGetTxResponse() {
|
|
|
833
882
|
txResponse: undefined
|
|
834
883
|
};
|
|
835
884
|
}
|
|
885
|
+
/**
|
|
886
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
887
|
+
* @name GetTxResponse
|
|
888
|
+
* @package cosmos.tx.v1beta1
|
|
889
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
890
|
+
*/
|
|
836
891
|
exports.GetTxResponse = {
|
|
837
892
|
typeUrl: "/cosmos.tx.v1beta1.GetTxResponse",
|
|
838
893
|
aminoType: "cosmos-sdk/GetTxResponse",
|
|
@@ -928,6 +983,15 @@ function createBaseGetBlockWithTxsRequest() {
|
|
|
928
983
|
pagination: undefined
|
|
929
984
|
};
|
|
930
985
|
}
|
|
986
|
+
/**
|
|
987
|
+
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
988
|
+
* RPC method.
|
|
989
|
+
*
|
|
990
|
+
* Since: cosmos-sdk 0.45.2
|
|
991
|
+
* @name GetBlockWithTxsRequest
|
|
992
|
+
* @package cosmos.tx.v1beta1
|
|
993
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
994
|
+
*/
|
|
931
995
|
exports.GetBlockWithTxsRequest = {
|
|
932
996
|
typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsRequest",
|
|
933
997
|
aminoType: "cosmos-sdk/GetBlockWithTxsRequest",
|
|
@@ -1024,6 +1088,15 @@ function createBaseGetBlockWithTxsResponse() {
|
|
|
1024
1088
|
pagination: undefined
|
|
1025
1089
|
};
|
|
1026
1090
|
}
|
|
1091
|
+
/**
|
|
1092
|
+
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
1093
|
+
* method.
|
|
1094
|
+
*
|
|
1095
|
+
* Since: cosmos-sdk 0.45.2
|
|
1096
|
+
* @name GetBlockWithTxsResponse
|
|
1097
|
+
* @package cosmos.tx.v1beta1
|
|
1098
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
1099
|
+
*/
|
|
1027
1100
|
exports.GetBlockWithTxsResponse = {
|
|
1028
1101
|
typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsResponse",
|
|
1029
1102
|
aminoType: "cosmos-sdk/GetBlockWithTxsResponse",
|
|
@@ -1145,6 +1218,15 @@ function createBaseTxDecodeRequest() {
|
|
|
1145
1218
|
txBytes: new Uint8Array()
|
|
1146
1219
|
};
|
|
1147
1220
|
}
|
|
1221
|
+
/**
|
|
1222
|
+
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
1223
|
+
* RPC method.
|
|
1224
|
+
*
|
|
1225
|
+
* Since: cosmos-sdk 0.47
|
|
1226
|
+
* @name TxDecodeRequest
|
|
1227
|
+
* @package cosmos.tx.v1beta1
|
|
1228
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
1229
|
+
*/
|
|
1148
1230
|
exports.TxDecodeRequest = {
|
|
1149
1231
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeRequest",
|
|
1150
1232
|
aminoType: "cosmos-sdk/TxDecodeRequest",
|
|
@@ -1222,6 +1304,15 @@ function createBaseTxDecodeResponse() {
|
|
|
1222
1304
|
tx: undefined
|
|
1223
1305
|
};
|
|
1224
1306
|
}
|
|
1307
|
+
/**
|
|
1308
|
+
* TxDecodeResponse is the response type for the
|
|
1309
|
+
* Service.TxDecode method.
|
|
1310
|
+
*
|
|
1311
|
+
* Since: cosmos-sdk 0.47
|
|
1312
|
+
* @name TxDecodeResponse
|
|
1313
|
+
* @package cosmos.tx.v1beta1
|
|
1314
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
1315
|
+
*/
|
|
1225
1316
|
exports.TxDecodeResponse = {
|
|
1226
1317
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeResponse",
|
|
1227
1318
|
aminoType: "cosmos-sdk/TxDecodeResponse",
|
|
@@ -1304,6 +1395,15 @@ function createBaseTxEncodeRequest() {
|
|
|
1304
1395
|
tx: undefined
|
|
1305
1396
|
};
|
|
1306
1397
|
}
|
|
1398
|
+
/**
|
|
1399
|
+
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
1400
|
+
* RPC method.
|
|
1401
|
+
*
|
|
1402
|
+
* Since: cosmos-sdk 0.47
|
|
1403
|
+
* @name TxEncodeRequest
|
|
1404
|
+
* @package cosmos.tx.v1beta1
|
|
1405
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
1406
|
+
*/
|
|
1307
1407
|
exports.TxEncodeRequest = {
|
|
1308
1408
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeRequest",
|
|
1309
1409
|
aminoType: "cosmos-sdk/TxEncodeRequest",
|
|
@@ -1386,6 +1486,15 @@ function createBaseTxEncodeResponse() {
|
|
|
1386
1486
|
txBytes: new Uint8Array()
|
|
1387
1487
|
};
|
|
1388
1488
|
}
|
|
1489
|
+
/**
|
|
1490
|
+
* TxEncodeResponse is the response type for the
|
|
1491
|
+
* Service.TxEncode method.
|
|
1492
|
+
*
|
|
1493
|
+
* Since: cosmos-sdk 0.47
|
|
1494
|
+
* @name TxEncodeResponse
|
|
1495
|
+
* @package cosmos.tx.v1beta1
|
|
1496
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
1497
|
+
*/
|
|
1389
1498
|
exports.TxEncodeResponse = {
|
|
1390
1499
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeResponse",
|
|
1391
1500
|
aminoType: "cosmos-sdk/TxEncodeResponse",
|
|
@@ -1463,6 +1572,15 @@ function createBaseTxEncodeAminoRequest() {
|
|
|
1463
1572
|
aminoJson: ""
|
|
1464
1573
|
};
|
|
1465
1574
|
}
|
|
1575
|
+
/**
|
|
1576
|
+
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
1577
|
+
* RPC method.
|
|
1578
|
+
*
|
|
1579
|
+
* Since: cosmos-sdk 0.47
|
|
1580
|
+
* @name TxEncodeAminoRequest
|
|
1581
|
+
* @package cosmos.tx.v1beta1
|
|
1582
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
1583
|
+
*/
|
|
1466
1584
|
exports.TxEncodeAminoRequest = {
|
|
1467
1585
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoRequest",
|
|
1468
1586
|
aminoType: "cosmos-sdk/TxEncodeAminoRequest",
|
|
@@ -1540,6 +1658,15 @@ function createBaseTxEncodeAminoResponse() {
|
|
|
1540
1658
|
aminoBinary: new Uint8Array()
|
|
1541
1659
|
};
|
|
1542
1660
|
}
|
|
1661
|
+
/**
|
|
1662
|
+
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
1663
|
+
* RPC method.
|
|
1664
|
+
*
|
|
1665
|
+
* Since: cosmos-sdk 0.47
|
|
1666
|
+
* @name TxEncodeAminoResponse
|
|
1667
|
+
* @package cosmos.tx.v1beta1
|
|
1668
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
1669
|
+
*/
|
|
1543
1670
|
exports.TxEncodeAminoResponse = {
|
|
1544
1671
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoResponse",
|
|
1545
1672
|
aminoType: "cosmos-sdk/TxEncodeAminoResponse",
|
|
@@ -1617,6 +1744,15 @@ function createBaseTxDecodeAminoRequest() {
|
|
|
1617
1744
|
aminoBinary: new Uint8Array()
|
|
1618
1745
|
};
|
|
1619
1746
|
}
|
|
1747
|
+
/**
|
|
1748
|
+
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
1749
|
+
* RPC method.
|
|
1750
|
+
*
|
|
1751
|
+
* Since: cosmos-sdk 0.47
|
|
1752
|
+
* @name TxDecodeAminoRequest
|
|
1753
|
+
* @package cosmos.tx.v1beta1
|
|
1754
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
1755
|
+
*/
|
|
1620
1756
|
exports.TxDecodeAminoRequest = {
|
|
1621
1757
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoRequest",
|
|
1622
1758
|
aminoType: "cosmos-sdk/TxDecodeAminoRequest",
|
|
@@ -1694,6 +1830,15 @@ function createBaseTxDecodeAminoResponse() {
|
|
|
1694
1830
|
aminoJson: ""
|
|
1695
1831
|
};
|
|
1696
1832
|
}
|
|
1833
|
+
/**
|
|
1834
|
+
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
1835
|
+
* RPC method.
|
|
1836
|
+
*
|
|
1837
|
+
* Since: cosmos-sdk 0.47
|
|
1838
|
+
* @name TxDecodeAminoResponse
|
|
1839
|
+
* @package cosmos.tx.v1beta1
|
|
1840
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
1841
|
+
*/
|
|
1697
1842
|
exports.TxDecodeAminoResponse = {
|
|
1698
1843
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoResponse",
|
|
1699
1844
|
aminoType: "cosmos-sdk/TxDecodeAminoResponse",
|
|
@@ -1,10 +1,74 @@
|
|
|
1
1
|
import { SimulateRequest, SimulateResponse, GetTxRequest, GetTxResponse, BroadcastTxRequest, BroadcastTxResponse, GetTxsEventRequest, GetTxsEventResponse, GetBlockWithTxsRequest, GetBlockWithTxsResponse, TxDecodeRequest, TxDecodeResponse, TxEncodeRequest, TxEncodeResponse, TxEncodeAminoRequest, TxEncodeAminoResponse, TxDecodeAminoRequest, TxDecodeAminoResponse } from "./service";
|
|
2
|
+
/**
|
|
3
|
+
* Simulate simulates executing a transaction for estimating gas usage.
|
|
4
|
+
* @name getSimulate
|
|
5
|
+
* @package cosmos.tx.v1beta1
|
|
6
|
+
* @see proto service: cosmos.tx.v1beta1.Simulate
|
|
7
|
+
*/
|
|
2
8
|
export declare const getSimulate: (client: import("../../../helper-func-types").EndpointOrRpc, request: SimulateRequest) => Promise<SimulateResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* GetTx fetches a tx by hash.
|
|
11
|
+
* @name getTx
|
|
12
|
+
* @package cosmos.tx.v1beta1
|
|
13
|
+
* @see proto service: cosmos.tx.v1beta1.GetTx
|
|
14
|
+
*/
|
|
3
15
|
export declare const getTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxRequest) => Promise<GetTxResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* BroadcastTx broadcast transaction.
|
|
18
|
+
* @name getBroadcastTx
|
|
19
|
+
* @package cosmos.tx.v1beta1
|
|
20
|
+
* @see proto service: cosmos.tx.v1beta1.BroadcastTx
|
|
21
|
+
*/
|
|
4
22
|
export declare const getBroadcastTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: BroadcastTxRequest) => Promise<BroadcastTxResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* GetTxsEvent fetches txs by event.
|
|
25
|
+
* @name getTxsEvent
|
|
26
|
+
* @package cosmos.tx.v1beta1
|
|
27
|
+
* @see proto service: cosmos.tx.v1beta1.GetTxsEvent
|
|
28
|
+
*/
|
|
5
29
|
export declare const getTxsEvent: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxsEventRequest) => Promise<GetTxsEventResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* GetBlockWithTxs fetches a block with decoded txs.
|
|
32
|
+
*
|
|
33
|
+
* Since: cosmos-sdk 0.45.2
|
|
34
|
+
* @name getBlockWithTxs
|
|
35
|
+
* @package cosmos.tx.v1beta1
|
|
36
|
+
* @see proto service: cosmos.tx.v1beta1.GetBlockWithTxs
|
|
37
|
+
*/
|
|
6
38
|
export declare const getBlockWithTxs: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetBlockWithTxsRequest) => Promise<GetBlockWithTxsResponse>;
|
|
39
|
+
/**
|
|
40
|
+
* TxDecode decodes the transaction.
|
|
41
|
+
*
|
|
42
|
+
* Since: cosmos-sdk 0.47
|
|
43
|
+
* @name getTxDecode
|
|
44
|
+
* @package cosmos.tx.v1beta1
|
|
45
|
+
* @see proto service: cosmos.tx.v1beta1.TxDecode
|
|
46
|
+
*/
|
|
7
47
|
export declare const getTxDecode: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxDecodeRequest) => Promise<TxDecodeResponse>;
|
|
48
|
+
/**
|
|
49
|
+
* TxEncode encodes the transaction.
|
|
50
|
+
*
|
|
51
|
+
* Since: cosmos-sdk 0.47
|
|
52
|
+
* @name getTxEncode
|
|
53
|
+
* @package cosmos.tx.v1beta1
|
|
54
|
+
* @see proto service: cosmos.tx.v1beta1.TxEncode
|
|
55
|
+
*/
|
|
8
56
|
export declare const getTxEncode: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxEncodeRequest) => Promise<TxEncodeResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.
|
|
59
|
+
*
|
|
60
|
+
* Since: cosmos-sdk 0.47
|
|
61
|
+
* @name getTxEncodeAmino
|
|
62
|
+
* @package cosmos.tx.v1beta1
|
|
63
|
+
* @see proto service: cosmos.tx.v1beta1.TxEncodeAmino
|
|
64
|
+
*/
|
|
9
65
|
export declare const getTxEncodeAmino: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxEncodeAminoRequest) => Promise<TxEncodeAminoResponse>;
|
|
66
|
+
/**
|
|
67
|
+
* TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.
|
|
68
|
+
*
|
|
69
|
+
* Since: cosmos-sdk 0.47
|
|
70
|
+
* @name getTxDecodeAmino
|
|
71
|
+
* @package cosmos.tx.v1beta1
|
|
72
|
+
* @see proto service: cosmos.tx.v1beta1.TxDecodeAmino
|
|
73
|
+
*/
|
|
10
74
|
export declare const getTxDecodeAmino: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxDecodeAminoRequest) => Promise<TxDecodeAminoResponse>;
|
|
@@ -3,7 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getTxDecodeAmino = exports.getTxEncodeAmino = exports.getTxEncode = exports.getTxDecode = exports.getBlockWithTxs = exports.getTxsEvent = exports.getBroadcastTx = exports.getTx = exports.getSimulate = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const service_1 = require("./service");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Simulate simulates executing a transaction for estimating gas usage.
|
|
8
|
+
* @name getSimulate
|
|
9
|
+
* @package cosmos.tx.v1beta1
|
|
10
|
+
* @see proto service: cosmos.tx.v1beta1.Simulate
|
|
11
|
+
*/
|
|
7
12
|
exports.getSimulate = (0, helper_func_types_1.buildQuery)({
|
|
8
13
|
encode: service_1.SimulateRequest.encode,
|
|
9
14
|
decode: service_1.SimulateResponse.decode,
|
|
@@ -11,7 +16,12 @@ exports.getSimulate = (0, helper_func_types_1.buildQuery)({
|
|
|
11
16
|
method: "Simulate",
|
|
12
17
|
deps: [service_1.SimulateRequest, service_1.SimulateResponse]
|
|
13
18
|
});
|
|
14
|
-
|
|
19
|
+
/**
|
|
20
|
+
* GetTx fetches a tx by hash.
|
|
21
|
+
* @name getTx
|
|
22
|
+
* @package cosmos.tx.v1beta1
|
|
23
|
+
* @see proto service: cosmos.tx.v1beta1.GetTx
|
|
24
|
+
*/
|
|
15
25
|
exports.getTx = (0, helper_func_types_1.buildQuery)({
|
|
16
26
|
encode: service_1.GetTxRequest.encode,
|
|
17
27
|
decode: service_1.GetTxResponse.decode,
|
|
@@ -19,7 +29,12 @@ exports.getTx = (0, helper_func_types_1.buildQuery)({
|
|
|
19
29
|
method: "GetTx",
|
|
20
30
|
deps: [service_1.GetTxRequest, service_1.GetTxResponse]
|
|
21
31
|
});
|
|
22
|
-
|
|
32
|
+
/**
|
|
33
|
+
* BroadcastTx broadcast transaction.
|
|
34
|
+
* @name getBroadcastTx
|
|
35
|
+
* @package cosmos.tx.v1beta1
|
|
36
|
+
* @see proto service: cosmos.tx.v1beta1.BroadcastTx
|
|
37
|
+
*/
|
|
23
38
|
exports.getBroadcastTx = (0, helper_func_types_1.buildQuery)({
|
|
24
39
|
encode: service_1.BroadcastTxRequest.encode,
|
|
25
40
|
decode: service_1.BroadcastTxResponse.decode,
|
|
@@ -27,7 +42,12 @@ exports.getBroadcastTx = (0, helper_func_types_1.buildQuery)({
|
|
|
27
42
|
method: "BroadcastTx",
|
|
28
43
|
deps: [service_1.BroadcastTxRequest, service_1.BroadcastTxResponse]
|
|
29
44
|
});
|
|
30
|
-
|
|
45
|
+
/**
|
|
46
|
+
* GetTxsEvent fetches txs by event.
|
|
47
|
+
* @name getTxsEvent
|
|
48
|
+
* @package cosmos.tx.v1beta1
|
|
49
|
+
* @see proto service: cosmos.tx.v1beta1.GetTxsEvent
|
|
50
|
+
*/
|
|
31
51
|
exports.getTxsEvent = (0, helper_func_types_1.buildQuery)({
|
|
32
52
|
encode: service_1.GetTxsEventRequest.encode,
|
|
33
53
|
decode: service_1.GetTxsEventResponse.decode,
|
|
@@ -35,9 +55,14 @@ exports.getTxsEvent = (0, helper_func_types_1.buildQuery)({
|
|
|
35
55
|
method: "GetTxsEvent",
|
|
36
56
|
deps: [service_1.GetTxsEventRequest, service_1.GetTxsEventResponse]
|
|
37
57
|
});
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
58
|
+
/**
|
|
59
|
+
* GetBlockWithTxs fetches a block with decoded txs.
|
|
60
|
+
*
|
|
61
|
+
* Since: cosmos-sdk 0.45.2
|
|
62
|
+
* @name getBlockWithTxs
|
|
63
|
+
* @package cosmos.tx.v1beta1
|
|
64
|
+
* @see proto service: cosmos.tx.v1beta1.GetBlockWithTxs
|
|
65
|
+
*/
|
|
41
66
|
exports.getBlockWithTxs = (0, helper_func_types_1.buildQuery)({
|
|
42
67
|
encode: service_1.GetBlockWithTxsRequest.encode,
|
|
43
68
|
decode: service_1.GetBlockWithTxsResponse.decode,
|
|
@@ -45,9 +70,14 @@ exports.getBlockWithTxs = (0, helper_func_types_1.buildQuery)({
|
|
|
45
70
|
method: "GetBlockWithTxs",
|
|
46
71
|
deps: [service_1.GetBlockWithTxsRequest, service_1.GetBlockWithTxsResponse]
|
|
47
72
|
});
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
73
|
+
/**
|
|
74
|
+
* TxDecode decodes the transaction.
|
|
75
|
+
*
|
|
76
|
+
* Since: cosmos-sdk 0.47
|
|
77
|
+
* @name getTxDecode
|
|
78
|
+
* @package cosmos.tx.v1beta1
|
|
79
|
+
* @see proto service: cosmos.tx.v1beta1.TxDecode
|
|
80
|
+
*/
|
|
51
81
|
exports.getTxDecode = (0, helper_func_types_1.buildQuery)({
|
|
52
82
|
encode: service_1.TxDecodeRequest.encode,
|
|
53
83
|
decode: service_1.TxDecodeResponse.decode,
|
|
@@ -55,9 +85,14 @@ exports.getTxDecode = (0, helper_func_types_1.buildQuery)({
|
|
|
55
85
|
method: "TxDecode",
|
|
56
86
|
deps: [service_1.TxDecodeRequest, service_1.TxDecodeResponse]
|
|
57
87
|
});
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
88
|
+
/**
|
|
89
|
+
* TxEncode encodes the transaction.
|
|
90
|
+
*
|
|
91
|
+
* Since: cosmos-sdk 0.47
|
|
92
|
+
* @name getTxEncode
|
|
93
|
+
* @package cosmos.tx.v1beta1
|
|
94
|
+
* @see proto service: cosmos.tx.v1beta1.TxEncode
|
|
95
|
+
*/
|
|
61
96
|
exports.getTxEncode = (0, helper_func_types_1.buildQuery)({
|
|
62
97
|
encode: service_1.TxEncodeRequest.encode,
|
|
63
98
|
decode: service_1.TxEncodeResponse.decode,
|
|
@@ -65,9 +100,14 @@ exports.getTxEncode = (0, helper_func_types_1.buildQuery)({
|
|
|
65
100
|
method: "TxEncode",
|
|
66
101
|
deps: [service_1.TxEncodeRequest, service_1.TxEncodeResponse]
|
|
67
102
|
});
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
103
|
+
/**
|
|
104
|
+
* TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.
|
|
105
|
+
*
|
|
106
|
+
* Since: cosmos-sdk 0.47
|
|
107
|
+
* @name getTxEncodeAmino
|
|
108
|
+
* @package cosmos.tx.v1beta1
|
|
109
|
+
* @see proto service: cosmos.tx.v1beta1.TxEncodeAmino
|
|
110
|
+
*/
|
|
71
111
|
exports.getTxEncodeAmino = (0, helper_func_types_1.buildQuery)({
|
|
72
112
|
encode: service_1.TxEncodeAminoRequest.encode,
|
|
73
113
|
decode: service_1.TxEncodeAminoResponse.decode,
|
|
@@ -75,9 +115,14 @@ exports.getTxEncodeAmino = (0, helper_func_types_1.buildQuery)({
|
|
|
75
115
|
method: "TxEncodeAmino",
|
|
76
116
|
deps: [service_1.TxEncodeAminoRequest, service_1.TxEncodeAminoResponse]
|
|
77
117
|
});
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
118
|
+
/**
|
|
119
|
+
* TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.
|
|
120
|
+
*
|
|
121
|
+
* Since: cosmos-sdk 0.47
|
|
122
|
+
* @name getTxDecodeAmino
|
|
123
|
+
* @package cosmos.tx.v1beta1
|
|
124
|
+
* @see proto service: cosmos.tx.v1beta1.TxDecodeAmino
|
|
125
|
+
*/
|
|
81
126
|
exports.getTxDecodeAmino = (0, helper_func_types_1.buildQuery)({
|
|
82
127
|
encode: service_1.TxDecodeAminoRequest.encode,
|
|
83
128
|
decode: service_1.TxDecodeAminoResponse.decode,
|