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
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { SimulateRequest, SimulateResponse, GetTxRequest, GetTxResponse, BroadcastTxRequest, BroadcastTxResponse, GetTxsEventRequest, GetTxsEventResponse, GetBlockWithTxsRequest, GetBlockWithTxsResponse, TxDecodeRequest, TxDecodeResponse, TxEncodeRequest, TxEncodeResponse, TxEncodeAminoRequest, TxEncodeAminoResponse, TxDecodeAminoRequest, TxDecodeAminoResponse } from "./service";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Simulate simulates executing a transaction for estimating gas usage.
|
|
5
|
+
* @name getSimulate
|
|
6
|
+
* @package cosmos.tx.v1beta1
|
|
7
|
+
* @see proto service: cosmos.tx.v1beta1.Simulate
|
|
8
|
+
*/
|
|
4
9
|
export const getSimulate = buildQuery({
|
|
5
10
|
encode: SimulateRequest.encode,
|
|
6
11
|
decode: SimulateResponse.decode,
|
|
@@ -8,7 +13,12 @@ export const getSimulate = buildQuery({
|
|
|
8
13
|
method: "Simulate",
|
|
9
14
|
deps: [SimulateRequest, SimulateResponse]
|
|
10
15
|
});
|
|
11
|
-
|
|
16
|
+
/**
|
|
17
|
+
* GetTx fetches a tx by hash.
|
|
18
|
+
* @name getTx
|
|
19
|
+
* @package cosmos.tx.v1beta1
|
|
20
|
+
* @see proto service: cosmos.tx.v1beta1.GetTx
|
|
21
|
+
*/
|
|
12
22
|
export const getTx = buildQuery({
|
|
13
23
|
encode: GetTxRequest.encode,
|
|
14
24
|
decode: GetTxResponse.decode,
|
|
@@ -16,7 +26,12 @@ export const getTx = buildQuery({
|
|
|
16
26
|
method: "GetTx",
|
|
17
27
|
deps: [GetTxRequest, GetTxResponse]
|
|
18
28
|
});
|
|
19
|
-
|
|
29
|
+
/**
|
|
30
|
+
* BroadcastTx broadcast transaction.
|
|
31
|
+
* @name getBroadcastTx
|
|
32
|
+
* @package cosmos.tx.v1beta1
|
|
33
|
+
* @see proto service: cosmos.tx.v1beta1.BroadcastTx
|
|
34
|
+
*/
|
|
20
35
|
export const getBroadcastTx = buildQuery({
|
|
21
36
|
encode: BroadcastTxRequest.encode,
|
|
22
37
|
decode: BroadcastTxResponse.decode,
|
|
@@ -24,7 +39,12 @@ export const getBroadcastTx = buildQuery({
|
|
|
24
39
|
method: "BroadcastTx",
|
|
25
40
|
deps: [BroadcastTxRequest, BroadcastTxResponse]
|
|
26
41
|
});
|
|
27
|
-
|
|
42
|
+
/**
|
|
43
|
+
* GetTxsEvent fetches txs by event.
|
|
44
|
+
* @name getTxsEvent
|
|
45
|
+
* @package cosmos.tx.v1beta1
|
|
46
|
+
* @see proto service: cosmos.tx.v1beta1.GetTxsEvent
|
|
47
|
+
*/
|
|
28
48
|
export const getTxsEvent = buildQuery({
|
|
29
49
|
encode: GetTxsEventRequest.encode,
|
|
30
50
|
decode: GetTxsEventResponse.decode,
|
|
@@ -32,9 +52,14 @@ export const getTxsEvent = buildQuery({
|
|
|
32
52
|
method: "GetTxsEvent",
|
|
33
53
|
deps: [GetTxsEventRequest, GetTxsEventResponse]
|
|
34
54
|
});
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
55
|
+
/**
|
|
56
|
+
* GetBlockWithTxs fetches a block with decoded txs.
|
|
57
|
+
*
|
|
58
|
+
* Since: cosmos-sdk 0.45.2
|
|
59
|
+
* @name getBlockWithTxs
|
|
60
|
+
* @package cosmos.tx.v1beta1
|
|
61
|
+
* @see proto service: cosmos.tx.v1beta1.GetBlockWithTxs
|
|
62
|
+
*/
|
|
38
63
|
export const getBlockWithTxs = buildQuery({
|
|
39
64
|
encode: GetBlockWithTxsRequest.encode,
|
|
40
65
|
decode: GetBlockWithTxsResponse.decode,
|
|
@@ -42,9 +67,14 @@ export const getBlockWithTxs = buildQuery({
|
|
|
42
67
|
method: "GetBlockWithTxs",
|
|
43
68
|
deps: [GetBlockWithTxsRequest, GetBlockWithTxsResponse]
|
|
44
69
|
});
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
70
|
+
/**
|
|
71
|
+
* TxDecode decodes the transaction.
|
|
72
|
+
*
|
|
73
|
+
* Since: cosmos-sdk 0.47
|
|
74
|
+
* @name getTxDecode
|
|
75
|
+
* @package cosmos.tx.v1beta1
|
|
76
|
+
* @see proto service: cosmos.tx.v1beta1.TxDecode
|
|
77
|
+
*/
|
|
48
78
|
export const getTxDecode = buildQuery({
|
|
49
79
|
encode: TxDecodeRequest.encode,
|
|
50
80
|
decode: TxDecodeResponse.decode,
|
|
@@ -52,9 +82,14 @@ export const getTxDecode = buildQuery({
|
|
|
52
82
|
method: "TxDecode",
|
|
53
83
|
deps: [TxDecodeRequest, TxDecodeResponse]
|
|
54
84
|
});
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
85
|
+
/**
|
|
86
|
+
* TxEncode encodes the transaction.
|
|
87
|
+
*
|
|
88
|
+
* Since: cosmos-sdk 0.47
|
|
89
|
+
* @name getTxEncode
|
|
90
|
+
* @package cosmos.tx.v1beta1
|
|
91
|
+
* @see proto service: cosmos.tx.v1beta1.TxEncode
|
|
92
|
+
*/
|
|
58
93
|
export const getTxEncode = buildQuery({
|
|
59
94
|
encode: TxEncodeRequest.encode,
|
|
60
95
|
decode: TxEncodeResponse.decode,
|
|
@@ -62,9 +97,14 @@ export const getTxEncode = buildQuery({
|
|
|
62
97
|
method: "TxEncode",
|
|
63
98
|
deps: [TxEncodeRequest, TxEncodeResponse]
|
|
64
99
|
});
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
100
|
+
/**
|
|
101
|
+
* TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.
|
|
102
|
+
*
|
|
103
|
+
* Since: cosmos-sdk 0.47
|
|
104
|
+
* @name getTxEncodeAmino
|
|
105
|
+
* @package cosmos.tx.v1beta1
|
|
106
|
+
* @see proto service: cosmos.tx.v1beta1.TxEncodeAmino
|
|
107
|
+
*/
|
|
68
108
|
export const getTxEncodeAmino = buildQuery({
|
|
69
109
|
encode: TxEncodeAminoRequest.encode,
|
|
70
110
|
decode: TxEncodeAminoResponse.decode,
|
|
@@ -72,9 +112,14 @@ export const getTxEncodeAmino = buildQuery({
|
|
|
72
112
|
method: "TxEncodeAmino",
|
|
73
113
|
deps: [TxEncodeAminoRequest, TxEncodeAminoResponse]
|
|
74
114
|
});
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
115
|
+
/**
|
|
116
|
+
* TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.
|
|
117
|
+
*
|
|
118
|
+
* Since: cosmos-sdk 0.47
|
|
119
|
+
* @name getTxDecodeAmino
|
|
120
|
+
* @package cosmos.tx.v1beta1
|
|
121
|
+
* @see proto service: cosmos.tx.v1beta1.TxDecodeAmino
|
|
122
|
+
*/
|
|
78
123
|
export const getTxDecodeAmino = buildQuery({
|
|
79
124
|
encode: TxDecodeAminoRequest.encode,
|
|
80
125
|
decode: TxDecodeAminoResponse.decode,
|
|
@@ -11,6 +11,12 @@ function createBaseTx() {
|
|
|
11
11
|
signatures: []
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* Tx is the standard type used for broadcasting transactions.
|
|
16
|
+
* @name Tx
|
|
17
|
+
* @package cosmos.tx.v1beta1
|
|
18
|
+
* @see proto type: cosmos.tx.v1beta1.Tx
|
|
19
|
+
*/
|
|
14
20
|
export const Tx = {
|
|
15
21
|
typeUrl: "/cosmos.tx.v1beta1.Tx",
|
|
16
22
|
aminoType: "cosmos-sdk/Tx",
|
|
@@ -121,6 +127,16 @@ function createBaseTxRaw() {
|
|
|
121
127
|
signatures: []
|
|
122
128
|
};
|
|
123
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* TxRaw is a variant of Tx that pins the signer's exact binary representation
|
|
132
|
+
* of body and auth_info. This is used for signing, broadcasting and
|
|
133
|
+
* verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and
|
|
134
|
+
* the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used
|
|
135
|
+
* as the transaction ID.
|
|
136
|
+
* @name TxRaw
|
|
137
|
+
* @package cosmos.tx.v1beta1
|
|
138
|
+
* @see proto type: cosmos.tx.v1beta1.TxRaw
|
|
139
|
+
*/
|
|
124
140
|
export const TxRaw = {
|
|
125
141
|
typeUrl: "/cosmos.tx.v1beta1.TxRaw",
|
|
126
142
|
aminoType: "cosmos-sdk/TxRaw",
|
|
@@ -226,6 +242,12 @@ function createBaseSignDoc() {
|
|
|
226
242
|
accountNumber: BigInt(0)
|
|
227
243
|
};
|
|
228
244
|
}
|
|
245
|
+
/**
|
|
246
|
+
* SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT.
|
|
247
|
+
* @name SignDoc
|
|
248
|
+
* @package cosmos.tx.v1beta1
|
|
249
|
+
* @see proto type: cosmos.tx.v1beta1.SignDoc
|
|
250
|
+
*/
|
|
229
251
|
export const SignDoc = {
|
|
230
252
|
typeUrl: "/cosmos.tx.v1beta1.SignDoc",
|
|
231
253
|
aminoType: "cosmos-sdk/SignDoc",
|
|
@@ -341,6 +363,15 @@ function createBaseSignDocDirectAux() {
|
|
|
341
363
|
tip: undefined
|
|
342
364
|
};
|
|
343
365
|
}
|
|
366
|
+
/**
|
|
367
|
+
* SignDocDirectAux is the type used for generating sign bytes for
|
|
368
|
+
* SIGN_MODE_DIRECT_AUX.
|
|
369
|
+
*
|
|
370
|
+
* Since: cosmos-sdk 0.46
|
|
371
|
+
* @name SignDocDirectAux
|
|
372
|
+
* @package cosmos.tx.v1beta1
|
|
373
|
+
* @see proto type: cosmos.tx.v1beta1.SignDocDirectAux
|
|
374
|
+
*/
|
|
344
375
|
export const SignDocDirectAux = {
|
|
345
376
|
typeUrl: "/cosmos.tx.v1beta1.SignDocDirectAux",
|
|
346
377
|
aminoType: "cosmos-sdk/SignDocDirectAux",
|
|
@@ -482,6 +513,12 @@ function createBaseTxBody() {
|
|
|
482
513
|
nonCriticalExtensionOptions: []
|
|
483
514
|
};
|
|
484
515
|
}
|
|
516
|
+
/**
|
|
517
|
+
* TxBody is the body of a transaction that all signers sign over.
|
|
518
|
+
* @name TxBody
|
|
519
|
+
* @package cosmos.tx.v1beta1
|
|
520
|
+
* @see proto type: cosmos.tx.v1beta1.TxBody
|
|
521
|
+
*/
|
|
485
522
|
export const TxBody = {
|
|
486
523
|
typeUrl: "/cosmos.tx.v1beta1.TxBody",
|
|
487
524
|
aminoType: "cosmos-sdk/TxBody",
|
|
@@ -614,6 +651,13 @@ function createBaseAuthInfo() {
|
|
|
614
651
|
tip: undefined
|
|
615
652
|
};
|
|
616
653
|
}
|
|
654
|
+
/**
|
|
655
|
+
* AuthInfo describes the fee and signer modes that are used to sign a
|
|
656
|
+
* transaction.
|
|
657
|
+
* @name AuthInfo
|
|
658
|
+
* @package cosmos.tx.v1beta1
|
|
659
|
+
* @see proto type: cosmos.tx.v1beta1.AuthInfo
|
|
660
|
+
*/
|
|
617
661
|
export const AuthInfo = {
|
|
618
662
|
typeUrl: "/cosmos.tx.v1beta1.AuthInfo",
|
|
619
663
|
aminoType: "cosmos-sdk/AuthInfo",
|
|
@@ -725,6 +769,13 @@ function createBaseSignerInfo() {
|
|
|
725
769
|
sequence: BigInt(0)
|
|
726
770
|
};
|
|
727
771
|
}
|
|
772
|
+
/**
|
|
773
|
+
* SignerInfo describes the public key and signing mode of a single top-level
|
|
774
|
+
* signer.
|
|
775
|
+
* @name SignerInfo
|
|
776
|
+
* @package cosmos.tx.v1beta1
|
|
777
|
+
* @see proto type: cosmos.tx.v1beta1.SignerInfo
|
|
778
|
+
*/
|
|
728
779
|
export const SignerInfo = {
|
|
729
780
|
typeUrl: "/cosmos.tx.v1beta1.SignerInfo",
|
|
730
781
|
aminoType: "cosmos-sdk/SignerInfo",
|
|
@@ -830,6 +881,12 @@ function createBaseModeInfo() {
|
|
|
830
881
|
multi: undefined
|
|
831
882
|
};
|
|
832
883
|
}
|
|
884
|
+
/**
|
|
885
|
+
* ModeInfo describes the signing mode of a single or nested multisig signer.
|
|
886
|
+
* @name ModeInfo
|
|
887
|
+
* @package cosmos.tx.v1beta1
|
|
888
|
+
* @see proto type: cosmos.tx.v1beta1.ModeInfo
|
|
889
|
+
*/
|
|
833
890
|
export const ModeInfo = {
|
|
834
891
|
typeUrl: "/cosmos.tx.v1beta1.ModeInfo",
|
|
835
892
|
aminoType: "cosmos-sdk/ModeInfo",
|
|
@@ -924,6 +981,14 @@ function createBaseModeInfo_Single() {
|
|
|
924
981
|
mode: 0
|
|
925
982
|
};
|
|
926
983
|
}
|
|
984
|
+
/**
|
|
985
|
+
* Single is the mode info for a single signer. It is structured as a message
|
|
986
|
+
* to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the
|
|
987
|
+
* future
|
|
988
|
+
* @name ModeInfo_Single
|
|
989
|
+
* @package cosmos.tx.v1beta1
|
|
990
|
+
* @see proto type: cosmos.tx.v1beta1.Single
|
|
991
|
+
*/
|
|
927
992
|
export const ModeInfo_Single = {
|
|
928
993
|
typeUrl: "/cosmos.tx.v1beta1.Single",
|
|
929
994
|
aminoType: "cosmos-sdk/Single",
|
|
@@ -1002,6 +1067,12 @@ function createBaseModeInfo_Multi() {
|
|
|
1002
1067
|
modeInfos: []
|
|
1003
1068
|
};
|
|
1004
1069
|
}
|
|
1070
|
+
/**
|
|
1071
|
+
* Multi is the mode info for a multisig public key
|
|
1072
|
+
* @name ModeInfo_Multi
|
|
1073
|
+
* @package cosmos.tx.v1beta1
|
|
1074
|
+
* @see proto type: cosmos.tx.v1beta1.Multi
|
|
1075
|
+
*/
|
|
1005
1076
|
export const ModeInfo_Multi = {
|
|
1006
1077
|
typeUrl: "/cosmos.tx.v1beta1.Multi",
|
|
1007
1078
|
aminoType: "cosmos-sdk/Multi",
|
|
@@ -1102,6 +1173,14 @@ function createBaseFee() {
|
|
|
1102
1173
|
granter: ""
|
|
1103
1174
|
};
|
|
1104
1175
|
}
|
|
1176
|
+
/**
|
|
1177
|
+
* Fee includes the amount of coins paid in fees and the maximum
|
|
1178
|
+
* gas to be used by the transaction. The ratio yields an effective "gasprice",
|
|
1179
|
+
* which must be above some miminum to be accepted into the mempool.
|
|
1180
|
+
* @name Fee
|
|
1181
|
+
* @package cosmos.tx.v1beta1
|
|
1182
|
+
* @see proto type: cosmos.tx.v1beta1.Fee
|
|
1183
|
+
*/
|
|
1105
1184
|
export const Fee = {
|
|
1106
1185
|
typeUrl: "/cosmos.tx.v1beta1.Fee",
|
|
1107
1186
|
aminoType: "cosmos-sdk/Fee",
|
|
@@ -1221,6 +1300,15 @@ function createBaseTip() {
|
|
|
1221
1300
|
tipper: ""
|
|
1222
1301
|
};
|
|
1223
1302
|
}
|
|
1303
|
+
/**
|
|
1304
|
+
* Tip is the tip used for meta-transactions.
|
|
1305
|
+
*
|
|
1306
|
+
* Since: cosmos-sdk 0.46
|
|
1307
|
+
* @name Tip
|
|
1308
|
+
* @package cosmos.tx.v1beta1
|
|
1309
|
+
* @see proto type: cosmos.tx.v1beta1.Tip
|
|
1310
|
+
* @deprecated
|
|
1311
|
+
*/
|
|
1224
1312
|
export const Tip = {
|
|
1225
1313
|
typeUrl: "/cosmos.tx.v1beta1.Tip",
|
|
1226
1314
|
aminoType: "cosmos-sdk/Tip",
|
|
@@ -1320,6 +1408,17 @@ function createBaseAuxSignerData() {
|
|
|
1320
1408
|
sig: new Uint8Array()
|
|
1321
1409
|
};
|
|
1322
1410
|
}
|
|
1411
|
+
/**
|
|
1412
|
+
* AuxSignerData is the intermediary format that an auxiliary signer (e.g. a
|
|
1413
|
+
* tipper) builds and sends to the fee payer (who will build and broadcast the
|
|
1414
|
+
* actual tx). AuxSignerData is not a valid tx in itself, and will be rejected
|
|
1415
|
+
* by the node if sent directly as-is.
|
|
1416
|
+
*
|
|
1417
|
+
* Since: cosmos-sdk 0.46
|
|
1418
|
+
* @name AuxSignerData
|
|
1419
|
+
* @package cosmos.tx.v1beta1
|
|
1420
|
+
* @see proto type: cosmos.tx.v1beta1.AuxSignerData
|
|
1421
|
+
*/
|
|
1323
1422
|
export const AuxSignerData = {
|
|
1324
1423
|
typeUrl: "/cosmos.tx.v1beta1.AuxSignerData",
|
|
1325
1424
|
aminoType: "cosmos-sdk/AuxSignerData",
|
|
@@ -12,6 +12,12 @@ function createBasePlan() {
|
|
|
12
12
|
upgradedClientState: undefined
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Plan specifies information about a planned upgrade and when it should occur.
|
|
17
|
+
* @name Plan
|
|
18
|
+
* @package cosmos.upgrade.v1beta1
|
|
19
|
+
* @see proto type: cosmos.upgrade.v1beta1.Plan
|
|
20
|
+
*/
|
|
15
21
|
export const Plan = {
|
|
16
22
|
typeUrl: "/cosmos.upgrade.v1beta1.Plan",
|
|
17
23
|
aminoType: "cosmos-sdk/Plan",
|
|
@@ -135,6 +141,16 @@ function createBaseSoftwareUpgradeProposal() {
|
|
|
135
141
|
plan: Plan.fromPartial({})
|
|
136
142
|
};
|
|
137
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* SoftwareUpgradeProposal is a gov Content type for initiating a software
|
|
146
|
+
* upgrade.
|
|
147
|
+
* Deprecated: This legacy proposal is deprecated in favor of Msg-based gov
|
|
148
|
+
* proposals, see MsgSoftwareUpgrade.
|
|
149
|
+
* @name SoftwareUpgradeProposal
|
|
150
|
+
* @package cosmos.upgrade.v1beta1
|
|
151
|
+
* @see proto type: cosmos.upgrade.v1beta1.SoftwareUpgradeProposal
|
|
152
|
+
* @deprecated
|
|
153
|
+
*/
|
|
138
154
|
export const SoftwareUpgradeProposal = {
|
|
139
155
|
typeUrl: "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal",
|
|
140
156
|
aminoType: "cosmos-sdk/SoftwareUpgradeProposal",
|
|
@@ -242,6 +258,16 @@ function createBaseCancelSoftwareUpgradeProposal() {
|
|
|
242
258
|
description: ""
|
|
243
259
|
};
|
|
244
260
|
}
|
|
261
|
+
/**
|
|
262
|
+
* CancelSoftwareUpgradeProposal is a gov Content type for cancelling a software
|
|
263
|
+
* upgrade.
|
|
264
|
+
* Deprecated: This legacy proposal is deprecated in favor of Msg-based gov
|
|
265
|
+
* proposals, see MsgCancelUpgrade.
|
|
266
|
+
* @name CancelSoftwareUpgradeProposal
|
|
267
|
+
* @package cosmos.upgrade.v1beta1
|
|
268
|
+
* @see proto type: cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal
|
|
269
|
+
* @deprecated
|
|
270
|
+
*/
|
|
245
271
|
export const CancelSoftwareUpgradeProposal = {
|
|
246
272
|
typeUrl: "/cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal",
|
|
247
273
|
aminoType: "cosmos-sdk/CancelSoftwareUpgradeProposal",
|
|
@@ -337,6 +363,14 @@ function createBaseModuleVersion() {
|
|
|
337
363
|
version: BigInt(0)
|
|
338
364
|
};
|
|
339
365
|
}
|
|
366
|
+
/**
|
|
367
|
+
* ModuleVersion specifies a module and its consensus version.
|
|
368
|
+
*
|
|
369
|
+
* Since: cosmos-sdk 0.43
|
|
370
|
+
* @name ModuleVersion
|
|
371
|
+
* @package cosmos.upgrade.v1beta1
|
|
372
|
+
* @see proto type: cosmos.upgrade.v1beta1.ModuleVersion
|
|
373
|
+
*/
|
|
340
374
|
export const ModuleVersion = {
|
|
341
375
|
typeUrl: "/cosmos.upgrade.v1beta1.ModuleVersion",
|
|
342
376
|
aminoType: "cosmos-sdk/ModuleVersion",
|
|
@@ -11,6 +11,13 @@ function createBaseMsgCreateVestingAccount() {
|
|
|
11
11
|
delayed: false
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
16
|
+
* account.
|
|
17
|
+
* @name MsgCreateVestingAccount
|
|
18
|
+
* @package cosmos.vesting.v1beta1
|
|
19
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
20
|
+
*/
|
|
14
21
|
export const MsgCreateVestingAccount = {
|
|
15
22
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
|
|
16
23
|
aminoType: "cosmos-sdk/MsgCreateVestingAccount",
|
|
@@ -138,6 +145,12 @@ export const MsgCreateVestingAccount = {
|
|
|
138
145
|
function createBaseMsgCreateVestingAccountResponse() {
|
|
139
146
|
return {};
|
|
140
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
150
|
+
* @name MsgCreateVestingAccountResponse
|
|
151
|
+
* @package cosmos.vesting.v1beta1
|
|
152
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
153
|
+
*/
|
|
141
154
|
export const MsgCreateVestingAccountResponse = {
|
|
142
155
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
|
|
143
156
|
aminoType: "cosmos-sdk/MsgCreateVestingAccountResponse",
|
|
@@ -206,6 +219,15 @@ function createBaseMsgCreatePermanentLockedAccount() {
|
|
|
206
219
|
amount: []
|
|
207
220
|
};
|
|
208
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
224
|
+
* locked account.
|
|
225
|
+
*
|
|
226
|
+
* Since: cosmos-sdk 0.46
|
|
227
|
+
* @name MsgCreatePermanentLockedAccount
|
|
228
|
+
* @package cosmos.vesting.v1beta1
|
|
229
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
230
|
+
*/
|
|
209
231
|
export const MsgCreatePermanentLockedAccount = {
|
|
210
232
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
|
|
211
233
|
aminoType: "cosmos-sdk/MsgCreatePermLockedAccount",
|
|
@@ -311,6 +333,14 @@ export const MsgCreatePermanentLockedAccount = {
|
|
|
311
333
|
function createBaseMsgCreatePermanentLockedAccountResponse() {
|
|
312
334
|
return {};
|
|
313
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
338
|
+
*
|
|
339
|
+
* Since: cosmos-sdk 0.46
|
|
340
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
341
|
+
* @package cosmos.vesting.v1beta1
|
|
342
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
343
|
+
*/
|
|
314
344
|
export const MsgCreatePermanentLockedAccountResponse = {
|
|
315
345
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
|
|
316
346
|
aminoType: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse",
|
|
@@ -380,6 +410,15 @@ function createBaseMsgCreatePeriodicVestingAccount() {
|
|
|
380
410
|
vestingPeriods: []
|
|
381
411
|
};
|
|
382
412
|
}
|
|
413
|
+
/**
|
|
414
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
415
|
+
* account.
|
|
416
|
+
*
|
|
417
|
+
* Since: cosmos-sdk 0.46
|
|
418
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
419
|
+
* @package cosmos.vesting.v1beta1
|
|
420
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
421
|
+
*/
|
|
383
422
|
export const MsgCreatePeriodicVestingAccount = {
|
|
384
423
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
|
|
385
424
|
aminoType: "cosmos-sdk/MsgCreatePeriodVestAccount",
|
|
@@ -496,6 +535,15 @@ export const MsgCreatePeriodicVestingAccount = {
|
|
|
496
535
|
function createBaseMsgCreatePeriodicVestingAccountResponse() {
|
|
497
536
|
return {};
|
|
498
537
|
}
|
|
538
|
+
/**
|
|
539
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
540
|
+
* response type.
|
|
541
|
+
*
|
|
542
|
+
* Since: cosmos-sdk 0.46
|
|
543
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
544
|
+
* @package cosmos.vesting.v1beta1
|
|
545
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
546
|
+
*/
|
|
499
547
|
export const MsgCreatePeriodicVestingAccountResponse = {
|
|
500
548
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
|
|
501
549
|
aminoType: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse",
|
|
@@ -1,21 +1,36 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
/**
|
|
4
|
+
* CreateVestingAccount defines a method that enables creating a vesting
|
|
5
|
+
* account.
|
|
6
|
+
* @name createVestingAccount
|
|
7
|
+
* @package cosmos.vesting.v1beta1
|
|
8
|
+
* @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
|
|
9
|
+
*/
|
|
5
10
|
export const createVestingAccount = buildTx({
|
|
6
11
|
msg: MsgCreateVestingAccount
|
|
7
12
|
});
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
13
|
+
/**
|
|
14
|
+
* CreatePermanentLockedAccount defines a method that enables creating a permanent
|
|
15
|
+
* locked account.
|
|
16
|
+
*
|
|
17
|
+
* Since: cosmos-sdk 0.46
|
|
18
|
+
* @name createPermanentLockedAccount
|
|
19
|
+
* @package cosmos.vesting.v1beta1
|
|
20
|
+
* @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
|
|
21
|
+
*/
|
|
12
22
|
export const createPermanentLockedAccount = buildTx({
|
|
13
23
|
msg: MsgCreatePermanentLockedAccount
|
|
14
24
|
});
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
25
|
+
/**
|
|
26
|
+
* CreatePeriodicVestingAccount defines a method that enables creating a
|
|
27
|
+
* periodic vesting account.
|
|
28
|
+
*
|
|
29
|
+
* Since: cosmos-sdk 0.46
|
|
30
|
+
* @name createPeriodicVestingAccount
|
|
31
|
+
* @package cosmos.vesting.v1beta1
|
|
32
|
+
* @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
|
|
33
|
+
*/
|
|
19
34
|
export const createPeriodicVestingAccount = buildTx({
|
|
20
35
|
msg: MsgCreatePeriodicVestingAccount
|
|
21
36
|
});
|
|
@@ -11,6 +11,13 @@ function createBaseBaseVestingAccount() {
|
|
|
11
11
|
endTime: BigInt(0)
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
16
|
+
* the necessary fields needed for any vesting account implementation.
|
|
17
|
+
* @name BaseVestingAccount
|
|
18
|
+
* @package cosmos.vesting.v1beta1
|
|
19
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
20
|
+
*/
|
|
14
21
|
export const BaseVestingAccount = {
|
|
15
22
|
typeUrl: "/cosmos.vesting.v1beta1.BaseVestingAccount",
|
|
16
23
|
aminoType: "cosmos-sdk/BaseVestingAccount",
|
|
@@ -148,6 +155,13 @@ function createBaseContinuousVestingAccount() {
|
|
|
148
155
|
startTime: BigInt(0)
|
|
149
156
|
};
|
|
150
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
160
|
+
* continuously vests by unlocking coins linearly with respect to time.
|
|
161
|
+
* @name ContinuousVestingAccount
|
|
162
|
+
* @package cosmos.vesting.v1beta1
|
|
163
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
164
|
+
*/
|
|
151
165
|
export const ContinuousVestingAccount = {
|
|
152
166
|
typeUrl: "/cosmos.vesting.v1beta1.ContinuousVestingAccount",
|
|
153
167
|
aminoType: "cosmos-sdk/ContinuousVestingAccount",
|
|
@@ -241,6 +255,14 @@ function createBaseDelayedVestingAccount() {
|
|
|
241
255
|
baseVestingAccount: undefined
|
|
242
256
|
};
|
|
243
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
260
|
+
* coins after a specific time, but non prior. In other words, it keeps them
|
|
261
|
+
* locked until a specified time.
|
|
262
|
+
* @name DelayedVestingAccount
|
|
263
|
+
* @package cosmos.vesting.v1beta1
|
|
264
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
265
|
+
*/
|
|
244
266
|
export const DelayedVestingAccount = {
|
|
245
267
|
typeUrl: "/cosmos.vesting.v1beta1.DelayedVestingAccount",
|
|
246
268
|
aminoType: "cosmos-sdk/DelayedVestingAccount",
|
|
@@ -324,6 +346,12 @@ function createBasePeriod() {
|
|
|
324
346
|
amount: []
|
|
325
347
|
};
|
|
326
348
|
}
|
|
349
|
+
/**
|
|
350
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
351
|
+
* @name Period
|
|
352
|
+
* @package cosmos.vesting.v1beta1
|
|
353
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
354
|
+
*/
|
|
327
355
|
export const Period = {
|
|
328
356
|
typeUrl: "/cosmos.vesting.v1beta1.Period",
|
|
329
357
|
aminoType: "cosmos-sdk/Period",
|
|
@@ -422,6 +450,13 @@ function createBasePeriodicVestingAccount() {
|
|
|
422
450
|
vestingPeriods: []
|
|
423
451
|
};
|
|
424
452
|
}
|
|
453
|
+
/**
|
|
454
|
+
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
455
|
+
* periodically vests by unlocking coins during each specified period.
|
|
456
|
+
* @name PeriodicVestingAccount
|
|
457
|
+
* @package cosmos.vesting.v1beta1
|
|
458
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
459
|
+
*/
|
|
425
460
|
export const PeriodicVestingAccount = {
|
|
426
461
|
typeUrl: "/cosmos.vesting.v1beta1.PeriodicVestingAccount",
|
|
427
462
|
aminoType: "cosmos-sdk/PeriodicVestingAccount",
|
|
@@ -530,6 +565,16 @@ function createBasePermanentLockedAccount() {
|
|
|
530
565
|
baseVestingAccount: undefined
|
|
531
566
|
};
|
|
532
567
|
}
|
|
568
|
+
/**
|
|
569
|
+
* PermanentLockedAccount implements the VestingAccount interface. It does
|
|
570
|
+
* not ever release coins, locking them indefinitely. Coins in this account can
|
|
571
|
+
* still be used for delegating and for governance votes even while locked.
|
|
572
|
+
*
|
|
573
|
+
* Since: cosmos-sdk 0.43
|
|
574
|
+
* @name PermanentLockedAccount
|
|
575
|
+
* @package cosmos.vesting.v1beta1
|
|
576
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
577
|
+
*/
|
|
533
578
|
export const PermanentLockedAccount = {
|
|
534
579
|
typeUrl: "/cosmos.vesting.v1beta1.PermanentLockedAccount",
|
|
535
580
|
aminoType: "cosmos-sdk/PermanentLockedAccount",
|
|
@@ -43,6 +43,13 @@ function createBaseInterfaceDescriptor() {
|
|
|
43
43
|
description: ""
|
|
44
44
|
};
|
|
45
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* InterfaceDescriptor describes an interface type to be used with
|
|
48
|
+
* accepts_interface and implements_interface and declared by declare_interface.
|
|
49
|
+
* @name InterfaceDescriptor
|
|
50
|
+
* @package cosmos_proto
|
|
51
|
+
* @see proto type: cosmos_proto.InterfaceDescriptor
|
|
52
|
+
*/
|
|
46
53
|
export const InterfaceDescriptor = {
|
|
47
54
|
typeUrl: "/cosmos_proto.InterfaceDescriptor",
|
|
48
55
|
is(o) {
|
|
@@ -126,6 +133,18 @@ function createBaseScalarDescriptor() {
|
|
|
126
133
|
fieldType: []
|
|
127
134
|
};
|
|
128
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* ScalarDescriptor describes an scalar type to be used with
|
|
138
|
+
* the scalar field option and declared by declare_scalar.
|
|
139
|
+
* Scalars extend simple protobuf built-in types with additional
|
|
140
|
+
* syntax and semantics, for instance to represent big integers.
|
|
141
|
+
* Scalars should ideally define an encoding such that there is only one
|
|
142
|
+
* valid syntactical representation for a given semantic meaning,
|
|
143
|
+
* i.e. the encoding should be deterministic.
|
|
144
|
+
* @name ScalarDescriptor
|
|
145
|
+
* @package cosmos_proto
|
|
146
|
+
* @see proto type: cosmos_proto.ScalarDescriptor
|
|
147
|
+
*/
|
|
129
148
|
export const ScalarDescriptor = {
|
|
130
149
|
typeUrl: "/cosmos_proto.ScalarDescriptor",
|
|
131
150
|
is(o) {
|
package/esm/cosmwasm/bundle.js
CHANGED
|
@@ -3,5 +3,5 @@ export { QueryContractInfoRequest, QueryContractInfoResponse, QueryContractHisto
|
|
|
3
3
|
export { MsgStoreCode, MsgStoreCodeResponse, MsgInstantiateContract, MsgInstantiateContractResponse, MsgInstantiateContract2, MsgInstantiateContract2Response, MsgExecuteContract, MsgExecuteContractResponse, MsgMigrateContract, MsgMigrateContractResponse, MsgUpdateAdmin, MsgUpdateAdminResponse, MsgClearAdmin, MsgClearAdminResponse, MsgUpdateInstantiateConfig, MsgUpdateInstantiateConfigResponse, MsgUpdateParams as CosmwasmWasmV1MsgUpdateParams, MsgUpdateParamsResponse as CosmwasmWasmV1MsgUpdateParamsResponse, MsgSudoContract, MsgSudoContractResponse, MsgPinCodes, MsgPinCodesResponse, MsgUnpinCodes, MsgUnpinCodesResponse, MsgStoreAndInstantiateContract, MsgStoreAndInstantiateContractResponse, MsgAddCodeUploadParamsAddresses, MsgAddCodeUploadParamsAddressesResponse, MsgRemoveCodeUploadParamsAddresses, MsgRemoveCodeUploadParamsAddressesResponse, MsgStoreAndMigrateContract, MsgStoreAndMigrateContractResponse, MsgUpdateContractLabel, MsgUpdateContractLabelResponse } from "./wasm/v1/tx";
|
|
4
4
|
export { AccessType, AccessTypeAmino, ContractCodeHistoryOperationType, ContractCodeHistoryOperationTypeAmino, AccessTypeParam, AccessConfig, Params as CosmwasmWasmV1Params, CodeInfo, ContractInfo, ContractCodeHistoryEntry, AbsoluteTxPosition, Model } from "./wasm/v1/types";
|
|
5
5
|
export { registry as CosmwasmWasmV1Registry, MessageComposer as CosmwasmWasmV1MessageComposer } from "./wasm/v1/tx.registry";
|
|
6
|
-
export { getContractInfo, getContractHistory, getContractsByCode, getAllContractState, getRawContractState, getSmartContractState, getCode, getCodes, getCodeInfo, getPinnedCodes, getParams as
|
|
7
|
-
export { storeCode, instantiateContract, instantiateContract2, executeContract, migrateContract, updateAdmin, clearAdmin, updateInstantiateConfig, updateParams as
|
|
6
|
+
export { getContractInfo, getContractHistory, getContractsByCode, getAllContractState, getRawContractState, getSmartContractState, getCode, getCodes, getCodeInfo, getPinnedCodes, getParams as getParamsCosmwasmWasmV1, getContractsByCreator, getWasmLimitsConfig, getBuildAddress } from "./wasm/v1/query.rpc.func";
|
|
7
|
+
export { storeCode, instantiateContract, instantiateContract2, executeContract, migrateContract, updateAdmin, clearAdmin, updateInstantiateConfig, updateParams as updateParamsCosmwasmWasmV1, sudoContract, pinCodes, unpinCodes, storeAndInstantiateContract, removeCodeUploadParamsAddresses, addCodeUploadParamsAddresses, storeAndMigrateContract, updateContractLabel } from "./wasm/v1/tx.rpc.func";
|