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,7 +1,12 @@
|
|
|
1
1
|
import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Params defines the parameters for the bank module.
|
|
6
|
+
* @name Params
|
|
7
|
+
* @package cosmos.bank.v1beta1
|
|
8
|
+
* @see proto type: cosmos.bank.v1beta1.Params
|
|
9
|
+
*/
|
|
5
10
|
export interface Params {
|
|
6
11
|
/**
|
|
7
12
|
* Deprecated: Use of SendEnabled in params is deprecated.
|
|
@@ -9,8 +14,8 @@ export interface Params {
|
|
|
9
14
|
* Storage, lookup, and manipulation of this information is now in the keeper.
|
|
10
15
|
*
|
|
11
16
|
* As of cosmos-sdk 0.47, this only exists for backwards compatibility of genesis files.
|
|
17
|
+
* @deprecated
|
|
12
18
|
*/
|
|
13
|
-
/** @deprecated */
|
|
14
19
|
sendEnabled: SendEnabled[];
|
|
15
20
|
defaultSendEnabled: boolean;
|
|
16
21
|
}
|
|
@@ -18,7 +23,12 @@ export interface ParamsProtoMsg {
|
|
|
18
23
|
typeUrl: "/cosmos.bank.v1beta1.Params";
|
|
19
24
|
value: Uint8Array;
|
|
20
25
|
}
|
|
21
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* Params defines the parameters for the bank module.
|
|
28
|
+
* @name ParamsAmino
|
|
29
|
+
* @package cosmos.bank.v1beta1
|
|
30
|
+
* @see proto type: cosmos.bank.v1beta1.Params
|
|
31
|
+
*/
|
|
22
32
|
export interface ParamsAmino {
|
|
23
33
|
/**
|
|
24
34
|
* Deprecated: Use of SendEnabled in params is deprecated.
|
|
@@ -26,8 +36,8 @@ export interface ParamsAmino {
|
|
|
26
36
|
* Storage, lookup, and manipulation of this information is now in the keeper.
|
|
27
37
|
*
|
|
28
38
|
* As of cosmos-sdk 0.47, this only exists for backwards compatibility of genesis files.
|
|
39
|
+
* @deprecated
|
|
29
40
|
*/
|
|
30
|
-
/** @deprecated */
|
|
31
41
|
send_enabled: SendEnabledAmino[];
|
|
32
42
|
default_send_enabled: boolean;
|
|
33
43
|
}
|
|
@@ -38,6 +48,9 @@ export interface ParamsAminoMsg {
|
|
|
38
48
|
/**
|
|
39
49
|
* SendEnabled maps coin denom to a send_enabled status (whether a denom is
|
|
40
50
|
* sendable).
|
|
51
|
+
* @name SendEnabled
|
|
52
|
+
* @package cosmos.bank.v1beta1
|
|
53
|
+
* @see proto type: cosmos.bank.v1beta1.SendEnabled
|
|
41
54
|
*/
|
|
42
55
|
export interface SendEnabled {
|
|
43
56
|
denom: string;
|
|
@@ -50,6 +63,9 @@ export interface SendEnabledProtoMsg {
|
|
|
50
63
|
/**
|
|
51
64
|
* SendEnabled maps coin denom to a send_enabled status (whether a denom is
|
|
52
65
|
* sendable).
|
|
66
|
+
* @name SendEnabledAmino
|
|
67
|
+
* @package cosmos.bank.v1beta1
|
|
68
|
+
* @see proto type: cosmos.bank.v1beta1.SendEnabled
|
|
53
69
|
*/
|
|
54
70
|
export interface SendEnabledAmino {
|
|
55
71
|
denom: string;
|
|
@@ -59,7 +75,12 @@ export interface SendEnabledAminoMsg {
|
|
|
59
75
|
type: "cosmos-sdk/SendEnabled";
|
|
60
76
|
value: SendEnabledAmino;
|
|
61
77
|
}
|
|
62
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* Input models transaction input.
|
|
80
|
+
* @name Input
|
|
81
|
+
* @package cosmos.bank.v1beta1
|
|
82
|
+
* @see proto type: cosmos.bank.v1beta1.Input
|
|
83
|
+
*/
|
|
63
84
|
export interface Input {
|
|
64
85
|
address: string;
|
|
65
86
|
coins: Coin[];
|
|
@@ -68,7 +89,12 @@ export interface InputProtoMsg {
|
|
|
68
89
|
typeUrl: "/cosmos.bank.v1beta1.Input";
|
|
69
90
|
value: Uint8Array;
|
|
70
91
|
}
|
|
71
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* Input models transaction input.
|
|
94
|
+
* @name InputAmino
|
|
95
|
+
* @package cosmos.bank.v1beta1
|
|
96
|
+
* @see proto type: cosmos.bank.v1beta1.Input
|
|
97
|
+
*/
|
|
72
98
|
export interface InputAmino {
|
|
73
99
|
address: string;
|
|
74
100
|
coins: CoinAmino[];
|
|
@@ -77,7 +103,12 @@ export interface InputAminoMsg {
|
|
|
77
103
|
type: "cosmos-sdk/Input";
|
|
78
104
|
value: InputAmino;
|
|
79
105
|
}
|
|
80
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* Output models transaction outputs.
|
|
108
|
+
* @name Output
|
|
109
|
+
* @package cosmos.bank.v1beta1
|
|
110
|
+
* @see proto type: cosmos.bank.v1beta1.Output
|
|
111
|
+
*/
|
|
81
112
|
export interface Output {
|
|
82
113
|
address: string;
|
|
83
114
|
coins: Coin[];
|
|
@@ -86,7 +117,12 @@ export interface OutputProtoMsg {
|
|
|
86
117
|
typeUrl: "/cosmos.bank.v1beta1.Output";
|
|
87
118
|
value: Uint8Array;
|
|
88
119
|
}
|
|
89
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* Output models transaction outputs.
|
|
122
|
+
* @name OutputAmino
|
|
123
|
+
* @package cosmos.bank.v1beta1
|
|
124
|
+
* @see proto type: cosmos.bank.v1beta1.Output
|
|
125
|
+
*/
|
|
90
126
|
export interface OutputAmino {
|
|
91
127
|
address: string;
|
|
92
128
|
coins: CoinAmino[];
|
|
@@ -99,8 +135,11 @@ export interface OutputAminoMsg {
|
|
|
99
135
|
* Supply represents a struct that passively keeps track of the total supply
|
|
100
136
|
* amounts in the network.
|
|
101
137
|
* This message is deprecated now that supply is indexed by denom.
|
|
138
|
+
* @name Supply
|
|
139
|
+
* @package cosmos.bank.v1beta1
|
|
140
|
+
* @see proto type: cosmos.bank.v1beta1.Supply
|
|
141
|
+
* @deprecated
|
|
102
142
|
*/
|
|
103
|
-
/** @deprecated */
|
|
104
143
|
export interface Supply {
|
|
105
144
|
total: Coin[];
|
|
106
145
|
}
|
|
@@ -112,8 +151,11 @@ export interface SupplyProtoMsg {
|
|
|
112
151
|
* Supply represents a struct that passively keeps track of the total supply
|
|
113
152
|
* amounts in the network.
|
|
114
153
|
* This message is deprecated now that supply is indexed by denom.
|
|
154
|
+
* @name SupplyAmino
|
|
155
|
+
* @package cosmos.bank.v1beta1
|
|
156
|
+
* @see proto type: cosmos.bank.v1beta1.Supply
|
|
157
|
+
* @deprecated
|
|
115
158
|
*/
|
|
116
|
-
/** @deprecated */
|
|
117
159
|
export interface SupplyAmino {
|
|
118
160
|
total: CoinAmino[];
|
|
119
161
|
}
|
|
@@ -124,9 +166,14 @@ export interface SupplyAminoMsg {
|
|
|
124
166
|
/**
|
|
125
167
|
* DenomUnit represents a struct that describes a given
|
|
126
168
|
* denomination unit of the basic token.
|
|
169
|
+
* @name DenomUnit
|
|
170
|
+
* @package cosmos.bank.v1beta1
|
|
171
|
+
* @see proto type: cosmos.bank.v1beta1.DenomUnit
|
|
127
172
|
*/
|
|
128
173
|
export interface DenomUnit {
|
|
129
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* denom represents the string name of the given denom unit (e.g uatom).
|
|
176
|
+
*/
|
|
130
177
|
denom: string;
|
|
131
178
|
/**
|
|
132
179
|
* exponent represents power of 10 exponent that one must
|
|
@@ -136,7 +183,9 @@ export interface DenomUnit {
|
|
|
136
183
|
* exponent = 6, thus: 1 atom = 10^6 uatom).
|
|
137
184
|
*/
|
|
138
185
|
exponent: number;
|
|
139
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* aliases is a list of string aliases for the given denom
|
|
188
|
+
*/
|
|
140
189
|
aliases: string[];
|
|
141
190
|
}
|
|
142
191
|
export interface DenomUnitProtoMsg {
|
|
@@ -146,9 +195,14 @@ export interface DenomUnitProtoMsg {
|
|
|
146
195
|
/**
|
|
147
196
|
* DenomUnit represents a struct that describes a given
|
|
148
197
|
* denomination unit of the basic token.
|
|
198
|
+
* @name DenomUnitAmino
|
|
199
|
+
* @package cosmos.bank.v1beta1
|
|
200
|
+
* @see proto type: cosmos.bank.v1beta1.DenomUnit
|
|
149
201
|
*/
|
|
150
202
|
export interface DenomUnitAmino {
|
|
151
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* denom represents the string name of the given denom unit (e.g uatom).
|
|
205
|
+
*/
|
|
152
206
|
denom: string;
|
|
153
207
|
/**
|
|
154
208
|
* exponent represents power of 10 exponent that one must
|
|
@@ -158,7 +212,9 @@ export interface DenomUnitAmino {
|
|
|
158
212
|
* exponent = 6, thus: 1 atom = 10^6 uatom).
|
|
159
213
|
*/
|
|
160
214
|
exponent: number;
|
|
161
|
-
/**
|
|
215
|
+
/**
|
|
216
|
+
* aliases is a list of string aliases for the given denom
|
|
217
|
+
*/
|
|
162
218
|
aliases: string[];
|
|
163
219
|
}
|
|
164
220
|
export interface DenomUnitAminoMsg {
|
|
@@ -168,12 +224,19 @@ export interface DenomUnitAminoMsg {
|
|
|
168
224
|
/**
|
|
169
225
|
* Metadata represents a struct that describes
|
|
170
226
|
* a basic token.
|
|
227
|
+
* @name Metadata
|
|
228
|
+
* @package cosmos.bank.v1beta1
|
|
229
|
+
* @see proto type: cosmos.bank.v1beta1.Metadata
|
|
171
230
|
*/
|
|
172
231
|
export interface Metadata {
|
|
173
232
|
description: string;
|
|
174
|
-
/**
|
|
233
|
+
/**
|
|
234
|
+
* denom_units represents the list of DenomUnit's for a given coin
|
|
235
|
+
*/
|
|
175
236
|
denomUnits: DenomUnit[];
|
|
176
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* base represents the base denom (should be the DenomUnit with exponent = 0).
|
|
239
|
+
*/
|
|
177
240
|
base: string;
|
|
178
241
|
/**
|
|
179
242
|
* display indicates the suggested denom that should be
|
|
@@ -214,12 +277,19 @@ export interface MetadataProtoMsg {
|
|
|
214
277
|
/**
|
|
215
278
|
* Metadata represents a struct that describes
|
|
216
279
|
* a basic token.
|
|
280
|
+
* @name MetadataAmino
|
|
281
|
+
* @package cosmos.bank.v1beta1
|
|
282
|
+
* @see proto type: cosmos.bank.v1beta1.Metadata
|
|
217
283
|
*/
|
|
218
284
|
export interface MetadataAmino {
|
|
219
285
|
description: string;
|
|
220
|
-
/**
|
|
286
|
+
/**
|
|
287
|
+
* denom_units represents the list of DenomUnit's for a given coin
|
|
288
|
+
*/
|
|
221
289
|
denom_units: DenomUnitAmino[];
|
|
222
|
-
/**
|
|
290
|
+
/**
|
|
291
|
+
* base represents the base denom (should be the DenomUnit with exponent = 0).
|
|
292
|
+
*/
|
|
223
293
|
base: string;
|
|
224
294
|
/**
|
|
225
295
|
* display indicates the suggested denom that should be
|
|
@@ -257,6 +327,12 @@ export interface MetadataAminoMsg {
|
|
|
257
327
|
type: "cosmos-sdk/Metadata";
|
|
258
328
|
value: MetadataAmino;
|
|
259
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* Params defines the parameters for the bank module.
|
|
332
|
+
* @name Params
|
|
333
|
+
* @package cosmos.bank.v1beta1
|
|
334
|
+
* @see proto type: cosmos.bank.v1beta1.Params
|
|
335
|
+
*/
|
|
260
336
|
export declare const Params: {
|
|
261
337
|
typeUrl: string;
|
|
262
338
|
aminoType: string;
|
|
@@ -274,6 +350,13 @@ export declare const Params: {
|
|
|
274
350
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
275
351
|
registerTypeUrl(): void;
|
|
276
352
|
};
|
|
353
|
+
/**
|
|
354
|
+
* SendEnabled maps coin denom to a send_enabled status (whether a denom is
|
|
355
|
+
* sendable).
|
|
356
|
+
* @name SendEnabled
|
|
357
|
+
* @package cosmos.bank.v1beta1
|
|
358
|
+
* @see proto type: cosmos.bank.v1beta1.SendEnabled
|
|
359
|
+
*/
|
|
277
360
|
export declare const SendEnabled: {
|
|
278
361
|
typeUrl: string;
|
|
279
362
|
aminoType: string;
|
|
@@ -291,6 +374,12 @@ export declare const SendEnabled: {
|
|
|
291
374
|
toProtoMsg(message: SendEnabled): SendEnabledProtoMsg;
|
|
292
375
|
registerTypeUrl(): void;
|
|
293
376
|
};
|
|
377
|
+
/**
|
|
378
|
+
* Input models transaction input.
|
|
379
|
+
* @name Input
|
|
380
|
+
* @package cosmos.bank.v1beta1
|
|
381
|
+
* @see proto type: cosmos.bank.v1beta1.Input
|
|
382
|
+
*/
|
|
294
383
|
export declare const Input: {
|
|
295
384
|
typeUrl: string;
|
|
296
385
|
aminoType: string;
|
|
@@ -308,6 +397,12 @@ export declare const Input: {
|
|
|
308
397
|
toProtoMsg(message: Input): InputProtoMsg;
|
|
309
398
|
registerTypeUrl(): void;
|
|
310
399
|
};
|
|
400
|
+
/**
|
|
401
|
+
* Output models transaction outputs.
|
|
402
|
+
* @name Output
|
|
403
|
+
* @package cosmos.bank.v1beta1
|
|
404
|
+
* @see proto type: cosmos.bank.v1beta1.Output
|
|
405
|
+
*/
|
|
311
406
|
export declare const Output: {
|
|
312
407
|
typeUrl: string;
|
|
313
408
|
aminoType: string;
|
|
@@ -325,6 +420,15 @@ export declare const Output: {
|
|
|
325
420
|
toProtoMsg(message: Output): OutputProtoMsg;
|
|
326
421
|
registerTypeUrl(): void;
|
|
327
422
|
};
|
|
423
|
+
/**
|
|
424
|
+
* Supply represents a struct that passively keeps track of the total supply
|
|
425
|
+
* amounts in the network.
|
|
426
|
+
* This message is deprecated now that supply is indexed by denom.
|
|
427
|
+
* @name Supply
|
|
428
|
+
* @package cosmos.bank.v1beta1
|
|
429
|
+
* @see proto type: cosmos.bank.v1beta1.Supply
|
|
430
|
+
* @deprecated
|
|
431
|
+
*/
|
|
328
432
|
export declare const Supply: {
|
|
329
433
|
typeUrl: string;
|
|
330
434
|
aminoType: string;
|
|
@@ -342,6 +446,13 @@ export declare const Supply: {
|
|
|
342
446
|
toProtoMsg(message: Supply): SupplyProtoMsg;
|
|
343
447
|
registerTypeUrl(): void;
|
|
344
448
|
};
|
|
449
|
+
/**
|
|
450
|
+
* DenomUnit represents a struct that describes a given
|
|
451
|
+
* denomination unit of the basic token.
|
|
452
|
+
* @name DenomUnit
|
|
453
|
+
* @package cosmos.bank.v1beta1
|
|
454
|
+
* @see proto type: cosmos.bank.v1beta1.DenomUnit
|
|
455
|
+
*/
|
|
345
456
|
export declare const DenomUnit: {
|
|
346
457
|
typeUrl: string;
|
|
347
458
|
aminoType: string;
|
|
@@ -359,6 +470,13 @@ export declare const DenomUnit: {
|
|
|
359
470
|
toProtoMsg(message: DenomUnit): DenomUnitProtoMsg;
|
|
360
471
|
registerTypeUrl(): void;
|
|
361
472
|
};
|
|
473
|
+
/**
|
|
474
|
+
* Metadata represents a struct that describes
|
|
475
|
+
* a basic token.
|
|
476
|
+
* @name Metadata
|
|
477
|
+
* @package cosmos.bank.v1beta1
|
|
478
|
+
* @see proto type: cosmos.bank.v1beta1.Metadata
|
|
479
|
+
*/
|
|
362
480
|
export declare const Metadata: {
|
|
363
481
|
typeUrl: string;
|
|
364
482
|
aminoType: string;
|
|
@@ -10,6 +10,12 @@ function createBaseParams() {
|
|
|
10
10
|
defaultSendEnabled: false
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* Params defines the parameters for the bank module.
|
|
15
|
+
* @name Params
|
|
16
|
+
* @package cosmos.bank.v1beta1
|
|
17
|
+
* @see proto type: cosmos.bank.v1beta1.Params
|
|
18
|
+
*/
|
|
13
19
|
exports.Params = {
|
|
14
20
|
typeUrl: "/cosmos.bank.v1beta1.Params",
|
|
15
21
|
aminoType: "cosmos-sdk/x/bank/Params",
|
|
@@ -107,6 +113,13 @@ function createBaseSendEnabled() {
|
|
|
107
113
|
enabled: false
|
|
108
114
|
};
|
|
109
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
* SendEnabled maps coin denom to a send_enabled status (whether a denom is
|
|
118
|
+
* sendable).
|
|
119
|
+
* @name SendEnabled
|
|
120
|
+
* @package cosmos.bank.v1beta1
|
|
121
|
+
* @see proto type: cosmos.bank.v1beta1.SendEnabled
|
|
122
|
+
*/
|
|
110
123
|
exports.SendEnabled = {
|
|
111
124
|
typeUrl: "/cosmos.bank.v1beta1.SendEnabled",
|
|
112
125
|
aminoType: "cosmos-sdk/SendEnabled",
|
|
@@ -196,6 +209,12 @@ function createBaseInput() {
|
|
|
196
209
|
coins: []
|
|
197
210
|
};
|
|
198
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* Input models transaction input.
|
|
214
|
+
* @name Input
|
|
215
|
+
* @package cosmos.bank.v1beta1
|
|
216
|
+
* @see proto type: cosmos.bank.v1beta1.Input
|
|
217
|
+
*/
|
|
199
218
|
exports.Input = {
|
|
200
219
|
typeUrl: "/cosmos.bank.v1beta1.Input",
|
|
201
220
|
aminoType: "cosmos-sdk/Input",
|
|
@@ -293,6 +312,12 @@ function createBaseOutput() {
|
|
|
293
312
|
coins: []
|
|
294
313
|
};
|
|
295
314
|
}
|
|
315
|
+
/**
|
|
316
|
+
* Output models transaction outputs.
|
|
317
|
+
* @name Output
|
|
318
|
+
* @package cosmos.bank.v1beta1
|
|
319
|
+
* @see proto type: cosmos.bank.v1beta1.Output
|
|
320
|
+
*/
|
|
296
321
|
exports.Output = {
|
|
297
322
|
typeUrl: "/cosmos.bank.v1beta1.Output",
|
|
298
323
|
aminoType: "cosmos-sdk/Output",
|
|
@@ -389,6 +414,15 @@ function createBaseSupply() {
|
|
|
389
414
|
total: []
|
|
390
415
|
};
|
|
391
416
|
}
|
|
417
|
+
/**
|
|
418
|
+
* Supply represents a struct that passively keeps track of the total supply
|
|
419
|
+
* amounts in the network.
|
|
420
|
+
* This message is deprecated now that supply is indexed by denom.
|
|
421
|
+
* @name Supply
|
|
422
|
+
* @package cosmos.bank.v1beta1
|
|
423
|
+
* @see proto type: cosmos.bank.v1beta1.Supply
|
|
424
|
+
* @deprecated
|
|
425
|
+
*/
|
|
392
426
|
exports.Supply = {
|
|
393
427
|
typeUrl: "/cosmos.bank.v1beta1.Supply",
|
|
394
428
|
aminoType: "cosmos-sdk/Supply",
|
|
@@ -478,6 +512,13 @@ function createBaseDenomUnit() {
|
|
|
478
512
|
aliases: []
|
|
479
513
|
};
|
|
480
514
|
}
|
|
515
|
+
/**
|
|
516
|
+
* DenomUnit represents a struct that describes a given
|
|
517
|
+
* denomination unit of the basic token.
|
|
518
|
+
* @name DenomUnit
|
|
519
|
+
* @package cosmos.bank.v1beta1
|
|
520
|
+
* @see proto type: cosmos.bank.v1beta1.DenomUnit
|
|
521
|
+
*/
|
|
481
522
|
exports.DenomUnit = {
|
|
482
523
|
typeUrl: "/cosmos.bank.v1beta1.DenomUnit",
|
|
483
524
|
aminoType: "cosmos-sdk/DenomUnit",
|
|
@@ -587,6 +628,13 @@ function createBaseMetadata() {
|
|
|
587
628
|
uriHash: ""
|
|
588
629
|
};
|
|
589
630
|
}
|
|
631
|
+
/**
|
|
632
|
+
* Metadata represents a struct that describes
|
|
633
|
+
* a basic token.
|
|
634
|
+
* @name Metadata
|
|
635
|
+
* @package cosmos.bank.v1beta1
|
|
636
|
+
* @see proto type: cosmos.bank.v1beta1.Metadata
|
|
637
|
+
*/
|
|
590
638
|
exports.Metadata = {
|
|
591
639
|
typeUrl: "/cosmos.bank.v1beta1.Metadata",
|
|
592
640
|
aminoType: "cosmos-sdk/Metadata",
|