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
|
@@ -4,9 +4,14 @@ import { DeepPartial } from "../../../helpers";
|
|
|
4
4
|
/**
|
|
5
5
|
* GenericAuthorization gives the grantee unrestricted permissions to execute
|
|
6
6
|
* the provided method on behalf of the granter's account.
|
|
7
|
+
* @name GenericAuthorization
|
|
8
|
+
* @package cosmos.authz.v1beta1
|
|
9
|
+
* @see proto type: cosmos.authz.v1beta1.GenericAuthorization
|
|
7
10
|
*/
|
|
8
11
|
export interface GenericAuthorization {
|
|
9
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Msg, identified by it's type URL, to grant unrestricted permissions to execute
|
|
14
|
+
*/
|
|
10
15
|
msg: string;
|
|
11
16
|
}
|
|
12
17
|
export interface GenericAuthorizationProtoMsg {
|
|
@@ -16,9 +21,14 @@ export interface GenericAuthorizationProtoMsg {
|
|
|
16
21
|
/**
|
|
17
22
|
* GenericAuthorization gives the grantee unrestricted permissions to execute
|
|
18
23
|
* the provided method on behalf of the granter's account.
|
|
24
|
+
* @name GenericAuthorizationAmino
|
|
25
|
+
* @package cosmos.authz.v1beta1
|
|
26
|
+
* @see proto type: cosmos.authz.v1beta1.GenericAuthorization
|
|
19
27
|
*/
|
|
20
28
|
export interface GenericAuthorizationAmino {
|
|
21
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* Msg, identified by it's type URL, to grant unrestricted permissions to execute
|
|
31
|
+
*/
|
|
22
32
|
msg: string;
|
|
23
33
|
}
|
|
24
34
|
export interface GenericAuthorizationAminoMsg {
|
|
@@ -28,6 +38,9 @@ export interface GenericAuthorizationAminoMsg {
|
|
|
28
38
|
/**
|
|
29
39
|
* Grant gives permissions to execute
|
|
30
40
|
* the provide method with expiration time.
|
|
41
|
+
* @name Grant
|
|
42
|
+
* @package cosmos.authz.v1beta1
|
|
43
|
+
* @see proto type: cosmos.authz.v1beta1.Grant
|
|
31
44
|
*/
|
|
32
45
|
export interface Grant {
|
|
33
46
|
authorization?: GenericAuthorization | Any | undefined;
|
|
@@ -48,6 +61,9 @@ export type GrantEncoded = Omit<Grant, "authorization"> & {
|
|
|
48
61
|
/**
|
|
49
62
|
* Grant gives permissions to execute
|
|
50
63
|
* the provide method with expiration time.
|
|
64
|
+
* @name GrantAmino
|
|
65
|
+
* @package cosmos.authz.v1beta1
|
|
66
|
+
* @see proto type: cosmos.authz.v1beta1.Grant
|
|
51
67
|
*/
|
|
52
68
|
export interface GrantAmino {
|
|
53
69
|
authorization?: AnyAmino;
|
|
@@ -65,6 +81,9 @@ export interface GrantAminoMsg {
|
|
|
65
81
|
/**
|
|
66
82
|
* GrantAuthorization extends a grant with both the addresses of the grantee and granter.
|
|
67
83
|
* It is used in genesis.proto and query.proto
|
|
84
|
+
* @name GrantAuthorization
|
|
85
|
+
* @package cosmos.authz.v1beta1
|
|
86
|
+
* @see proto type: cosmos.authz.v1beta1.GrantAuthorization
|
|
68
87
|
*/
|
|
69
88
|
export interface GrantAuthorization {
|
|
70
89
|
granter: string;
|
|
@@ -82,6 +101,9 @@ export type GrantAuthorizationEncoded = Omit<GrantAuthorization, "authorization"
|
|
|
82
101
|
/**
|
|
83
102
|
* GrantAuthorization extends a grant with both the addresses of the grantee and granter.
|
|
84
103
|
* It is used in genesis.proto and query.proto
|
|
104
|
+
* @name GrantAuthorizationAmino
|
|
105
|
+
* @package cosmos.authz.v1beta1
|
|
106
|
+
* @see proto type: cosmos.authz.v1beta1.GrantAuthorization
|
|
85
107
|
*/
|
|
86
108
|
export interface GrantAuthorizationAmino {
|
|
87
109
|
granter: string;
|
|
@@ -93,24 +115,45 @@ export interface GrantAuthorizationAminoMsg {
|
|
|
93
115
|
type: "cosmos-sdk/GrantAuthorization";
|
|
94
116
|
value: GrantAuthorizationAmino;
|
|
95
117
|
}
|
|
96
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* GrantQueueItem contains the list of TypeURL of a sdk.Msg.
|
|
120
|
+
* @name GrantQueueItem
|
|
121
|
+
* @package cosmos.authz.v1beta1
|
|
122
|
+
* @see proto type: cosmos.authz.v1beta1.GrantQueueItem
|
|
123
|
+
*/
|
|
97
124
|
export interface GrantQueueItem {
|
|
98
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* msg_type_urls contains the list of TypeURL of a sdk.Msg.
|
|
127
|
+
*/
|
|
99
128
|
msgTypeUrls: string[];
|
|
100
129
|
}
|
|
101
130
|
export interface GrantQueueItemProtoMsg {
|
|
102
131
|
typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem";
|
|
103
132
|
value: Uint8Array;
|
|
104
133
|
}
|
|
105
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* GrantQueueItem contains the list of TypeURL of a sdk.Msg.
|
|
136
|
+
* @name GrantQueueItemAmino
|
|
137
|
+
* @package cosmos.authz.v1beta1
|
|
138
|
+
* @see proto type: cosmos.authz.v1beta1.GrantQueueItem
|
|
139
|
+
*/
|
|
106
140
|
export interface GrantQueueItemAmino {
|
|
107
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* msg_type_urls contains the list of TypeURL of a sdk.Msg.
|
|
143
|
+
*/
|
|
108
144
|
msg_type_urls: string[];
|
|
109
145
|
}
|
|
110
146
|
export interface GrantQueueItemAminoMsg {
|
|
111
147
|
type: "cosmos-sdk/GrantQueueItem";
|
|
112
148
|
value: GrantQueueItemAmino;
|
|
113
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* GenericAuthorization gives the grantee unrestricted permissions to execute
|
|
152
|
+
* the provided method on behalf of the granter's account.
|
|
153
|
+
* @name GenericAuthorization
|
|
154
|
+
* @package cosmos.authz.v1beta1
|
|
155
|
+
* @see proto type: cosmos.authz.v1beta1.GenericAuthorization
|
|
156
|
+
*/
|
|
114
157
|
export declare const GenericAuthorization: {
|
|
115
158
|
typeUrl: string;
|
|
116
159
|
aminoType: string;
|
|
@@ -128,6 +171,13 @@ export declare const GenericAuthorization: {
|
|
|
128
171
|
toProtoMsg(message: GenericAuthorization): GenericAuthorizationProtoMsg;
|
|
129
172
|
registerTypeUrl(): void;
|
|
130
173
|
};
|
|
174
|
+
/**
|
|
175
|
+
* Grant gives permissions to execute
|
|
176
|
+
* the provide method with expiration time.
|
|
177
|
+
* @name Grant
|
|
178
|
+
* @package cosmos.authz.v1beta1
|
|
179
|
+
* @see proto type: cosmos.authz.v1beta1.Grant
|
|
180
|
+
*/
|
|
131
181
|
export declare const Grant: {
|
|
132
182
|
typeUrl: string;
|
|
133
183
|
aminoType: string;
|
|
@@ -145,6 +195,13 @@ export declare const Grant: {
|
|
|
145
195
|
toProtoMsg(message: Grant): GrantProtoMsg;
|
|
146
196
|
registerTypeUrl(): void;
|
|
147
197
|
};
|
|
198
|
+
/**
|
|
199
|
+
* GrantAuthorization extends a grant with both the addresses of the grantee and granter.
|
|
200
|
+
* It is used in genesis.proto and query.proto
|
|
201
|
+
* @name GrantAuthorization
|
|
202
|
+
* @package cosmos.authz.v1beta1
|
|
203
|
+
* @see proto type: cosmos.authz.v1beta1.GrantAuthorization
|
|
204
|
+
*/
|
|
148
205
|
export declare const GrantAuthorization: {
|
|
149
206
|
typeUrl: string;
|
|
150
207
|
aminoType: string;
|
|
@@ -162,6 +219,12 @@ export declare const GrantAuthorization: {
|
|
|
162
219
|
toProtoMsg(message: GrantAuthorization): GrantAuthorizationProtoMsg;
|
|
163
220
|
registerTypeUrl(): void;
|
|
164
221
|
};
|
|
222
|
+
/**
|
|
223
|
+
* GrantQueueItem contains the list of TypeURL of a sdk.Msg.
|
|
224
|
+
* @name GrantQueueItem
|
|
225
|
+
* @package cosmos.authz.v1beta1
|
|
226
|
+
* @see proto type: cosmos.authz.v1beta1.GrantQueueItem
|
|
227
|
+
*/
|
|
165
228
|
export declare const GrantQueueItem: {
|
|
166
229
|
typeUrl: string;
|
|
167
230
|
aminoType: string;
|
|
@@ -11,6 +11,13 @@ function createBaseGenericAuthorization() {
|
|
|
11
11
|
msg: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* GenericAuthorization gives the grantee unrestricted permissions to execute
|
|
16
|
+
* the provided method on behalf of the granter's account.
|
|
17
|
+
* @name GenericAuthorization
|
|
18
|
+
* @package cosmos.authz.v1beta1
|
|
19
|
+
* @see proto type: cosmos.authz.v1beta1.GenericAuthorization
|
|
20
|
+
*/
|
|
14
21
|
exports.GenericAuthorization = {
|
|
15
22
|
typeUrl: "/cosmos.authz.v1beta1.GenericAuthorization",
|
|
16
23
|
aminoType: "cosmos-sdk/GenericAuthorization",
|
|
@@ -95,6 +102,13 @@ function createBaseGrant() {
|
|
|
95
102
|
expiration: undefined
|
|
96
103
|
};
|
|
97
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* Grant gives permissions to execute
|
|
107
|
+
* the provide method with expiration time.
|
|
108
|
+
* @name Grant
|
|
109
|
+
* @package cosmos.authz.v1beta1
|
|
110
|
+
* @see proto type: cosmos.authz.v1beta1.Grant
|
|
111
|
+
*/
|
|
98
112
|
exports.Grant = {
|
|
99
113
|
typeUrl: "/cosmos.authz.v1beta1.Grant",
|
|
100
114
|
aminoType: "cosmos-sdk/Grant",
|
|
@@ -191,6 +205,13 @@ function createBaseGrantAuthorization() {
|
|
|
191
205
|
expiration: undefined
|
|
192
206
|
};
|
|
193
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* GrantAuthorization extends a grant with both the addresses of the grantee and granter.
|
|
210
|
+
* It is used in genesis.proto and query.proto
|
|
211
|
+
* @name GrantAuthorization
|
|
212
|
+
* @package cosmos.authz.v1beta1
|
|
213
|
+
* @see proto type: cosmos.authz.v1beta1.GrantAuthorization
|
|
214
|
+
*/
|
|
194
215
|
exports.GrantAuthorization = {
|
|
195
216
|
typeUrl: "/cosmos.authz.v1beta1.GrantAuthorization",
|
|
196
217
|
aminoType: "cosmos-sdk/GrantAuthorization",
|
|
@@ -306,6 +327,12 @@ function createBaseGrantQueueItem() {
|
|
|
306
327
|
msgTypeUrls: []
|
|
307
328
|
};
|
|
308
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* GrantQueueItem contains the list of TypeURL of a sdk.Msg.
|
|
332
|
+
* @name GrantQueueItem
|
|
333
|
+
* @package cosmos.authz.v1beta1
|
|
334
|
+
* @see proto type: cosmos.authz.v1beta1.GrantQueueItem
|
|
335
|
+
*/
|
|
309
336
|
exports.GrantQueueItem = {
|
|
310
337
|
typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem",
|
|
311
338
|
aminoType: "cosmos-sdk/GrantQueueItem",
|
|
@@ -5,6 +5,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* MsgGrant is a request type for Grant method. It declares authorization to the grantee
|
|
7
7
|
* on behalf of the granter with the provided expiration time.
|
|
8
|
+
* @name MsgGrant
|
|
9
|
+
* @package cosmos.authz.v1beta1
|
|
10
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrant
|
|
8
11
|
*/
|
|
9
12
|
export interface MsgGrant {
|
|
10
13
|
granter: string;
|
|
@@ -18,6 +21,9 @@ export interface MsgGrantProtoMsg {
|
|
|
18
21
|
/**
|
|
19
22
|
* MsgGrant is a request type for Grant method. It declares authorization to the grantee
|
|
20
23
|
* on behalf of the granter with the provided expiration time.
|
|
24
|
+
* @name MsgGrantAmino
|
|
25
|
+
* @package cosmos.authz.v1beta1
|
|
26
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrant
|
|
21
27
|
*/
|
|
22
28
|
export interface MsgGrantAmino {
|
|
23
29
|
granter: string;
|
|
@@ -28,14 +34,24 @@ export interface MsgGrantAminoMsg {
|
|
|
28
34
|
type: "cosmos-sdk/MsgGrant";
|
|
29
35
|
value: MsgGrantAmino;
|
|
30
36
|
}
|
|
31
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* MsgGrantResponse defines the Msg/MsgGrant response type.
|
|
39
|
+
* @name MsgGrantResponse
|
|
40
|
+
* @package cosmos.authz.v1beta1
|
|
41
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
|
|
42
|
+
*/
|
|
32
43
|
export interface MsgGrantResponse {
|
|
33
44
|
}
|
|
34
45
|
export interface MsgGrantResponseProtoMsg {
|
|
35
46
|
typeUrl: "/cosmos.authz.v1beta1.MsgGrantResponse";
|
|
36
47
|
value: Uint8Array;
|
|
37
48
|
}
|
|
38
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* MsgGrantResponse defines the Msg/MsgGrant response type.
|
|
51
|
+
* @name MsgGrantResponseAmino
|
|
52
|
+
* @package cosmos.authz.v1beta1
|
|
53
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
|
|
54
|
+
*/
|
|
39
55
|
export interface MsgGrantResponseAmino {
|
|
40
56
|
}
|
|
41
57
|
export interface MsgGrantResponseAminoMsg {
|
|
@@ -46,6 +62,9 @@ export interface MsgGrantResponseAminoMsg {
|
|
|
46
62
|
* MsgExec attempts to execute the provided messages using
|
|
47
63
|
* authorizations granted to the grantee. Each message should have only
|
|
48
64
|
* one signer corresponding to the granter of the authorization.
|
|
65
|
+
* @name MsgExec
|
|
66
|
+
* @package cosmos.authz.v1beta1
|
|
67
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExec
|
|
49
68
|
*/
|
|
50
69
|
export interface MsgExec {
|
|
51
70
|
grantee: string;
|
|
@@ -72,6 +91,9 @@ export type MsgExecEncoded = Omit<MsgExec, "msgs"> & {
|
|
|
72
91
|
* MsgExec attempts to execute the provided messages using
|
|
73
92
|
* authorizations granted to the grantee. Each message should have only
|
|
74
93
|
* one signer corresponding to the granter of the authorization.
|
|
94
|
+
* @name MsgExecAmino
|
|
95
|
+
* @package cosmos.authz.v1beta1
|
|
96
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExec
|
|
75
97
|
*/
|
|
76
98
|
export interface MsgExecAmino {
|
|
77
99
|
grantee: string;
|
|
@@ -86,7 +108,12 @@ export interface MsgExecAminoMsg {
|
|
|
86
108
|
type: "cosmos-sdk/MsgExec";
|
|
87
109
|
value: MsgExecAmino;
|
|
88
110
|
}
|
|
89
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* MsgExecResponse defines the Msg/MsgExecResponse response type.
|
|
113
|
+
* @name MsgExecResponse
|
|
114
|
+
* @package cosmos.authz.v1beta1
|
|
115
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExecResponse
|
|
116
|
+
*/
|
|
90
117
|
export interface MsgExecResponse {
|
|
91
118
|
results: Uint8Array[];
|
|
92
119
|
}
|
|
@@ -94,7 +121,12 @@ export interface MsgExecResponseProtoMsg {
|
|
|
94
121
|
typeUrl: "/cosmos.authz.v1beta1.MsgExecResponse";
|
|
95
122
|
value: Uint8Array;
|
|
96
123
|
}
|
|
97
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* MsgExecResponse defines the Msg/MsgExecResponse response type.
|
|
126
|
+
* @name MsgExecResponseAmino
|
|
127
|
+
* @package cosmos.authz.v1beta1
|
|
128
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExecResponse
|
|
129
|
+
*/
|
|
98
130
|
export interface MsgExecResponseAmino {
|
|
99
131
|
results: string[];
|
|
100
132
|
}
|
|
@@ -105,6 +137,9 @@ export interface MsgExecResponseAminoMsg {
|
|
|
105
137
|
/**
|
|
106
138
|
* MsgRevoke revokes any authorization with the provided sdk.Msg type on the
|
|
107
139
|
* granter's account with that has been granted to the grantee.
|
|
140
|
+
* @name MsgRevoke
|
|
141
|
+
* @package cosmos.authz.v1beta1
|
|
142
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevoke
|
|
108
143
|
*/
|
|
109
144
|
export interface MsgRevoke {
|
|
110
145
|
granter: string;
|
|
@@ -118,6 +153,9 @@ export interface MsgRevokeProtoMsg {
|
|
|
118
153
|
/**
|
|
119
154
|
* MsgRevoke revokes any authorization with the provided sdk.Msg type on the
|
|
120
155
|
* granter's account with that has been granted to the grantee.
|
|
156
|
+
* @name MsgRevokeAmino
|
|
157
|
+
* @package cosmos.authz.v1beta1
|
|
158
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevoke
|
|
121
159
|
*/
|
|
122
160
|
export interface MsgRevokeAmino {
|
|
123
161
|
granter: string;
|
|
@@ -128,20 +166,37 @@ export interface MsgRevokeAminoMsg {
|
|
|
128
166
|
type: "cosmos-sdk/MsgRevoke";
|
|
129
167
|
value: MsgRevokeAmino;
|
|
130
168
|
}
|
|
131
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
|
|
171
|
+
* @name MsgRevokeResponse
|
|
172
|
+
* @package cosmos.authz.v1beta1
|
|
173
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
|
|
174
|
+
*/
|
|
132
175
|
export interface MsgRevokeResponse {
|
|
133
176
|
}
|
|
134
177
|
export interface MsgRevokeResponseProtoMsg {
|
|
135
178
|
typeUrl: "/cosmos.authz.v1beta1.MsgRevokeResponse";
|
|
136
179
|
value: Uint8Array;
|
|
137
180
|
}
|
|
138
|
-
/**
|
|
181
|
+
/**
|
|
182
|
+
* MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
|
|
183
|
+
* @name MsgRevokeResponseAmino
|
|
184
|
+
* @package cosmos.authz.v1beta1
|
|
185
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
|
|
186
|
+
*/
|
|
139
187
|
export interface MsgRevokeResponseAmino {
|
|
140
188
|
}
|
|
141
189
|
export interface MsgRevokeResponseAminoMsg {
|
|
142
190
|
type: "cosmos-sdk/MsgRevokeResponse";
|
|
143
191
|
value: MsgRevokeResponseAmino;
|
|
144
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* MsgGrant is a request type for Grant method. It declares authorization to the grantee
|
|
195
|
+
* on behalf of the granter with the provided expiration time.
|
|
196
|
+
* @name MsgGrant
|
|
197
|
+
* @package cosmos.authz.v1beta1
|
|
198
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrant
|
|
199
|
+
*/
|
|
145
200
|
export declare const MsgGrant: {
|
|
146
201
|
typeUrl: string;
|
|
147
202
|
aminoType: string;
|
|
@@ -159,6 +214,12 @@ export declare const MsgGrant: {
|
|
|
159
214
|
toProtoMsg(message: MsgGrant): MsgGrantProtoMsg;
|
|
160
215
|
registerTypeUrl(): void;
|
|
161
216
|
};
|
|
217
|
+
/**
|
|
218
|
+
* MsgGrantResponse defines the Msg/MsgGrant response type.
|
|
219
|
+
* @name MsgGrantResponse
|
|
220
|
+
* @package cosmos.authz.v1beta1
|
|
221
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
|
|
222
|
+
*/
|
|
162
223
|
export declare const MsgGrantResponse: {
|
|
163
224
|
typeUrl: string;
|
|
164
225
|
aminoType: string;
|
|
@@ -176,6 +237,14 @@ export declare const MsgGrantResponse: {
|
|
|
176
237
|
toProtoMsg(message: MsgGrantResponse): MsgGrantResponseProtoMsg;
|
|
177
238
|
registerTypeUrl(): void;
|
|
178
239
|
};
|
|
240
|
+
/**
|
|
241
|
+
* MsgExec attempts to execute the provided messages using
|
|
242
|
+
* authorizations granted to the grantee. Each message should have only
|
|
243
|
+
* one signer corresponding to the granter of the authorization.
|
|
244
|
+
* @name MsgExec
|
|
245
|
+
* @package cosmos.authz.v1beta1
|
|
246
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExec
|
|
247
|
+
*/
|
|
179
248
|
export declare const MsgExec: {
|
|
180
249
|
typeUrl: string;
|
|
181
250
|
aminoType: string;
|
|
@@ -193,6 +262,12 @@ export declare const MsgExec: {
|
|
|
193
262
|
toProtoMsg(message: MsgExec): MsgExecProtoMsg;
|
|
194
263
|
registerTypeUrl(): void;
|
|
195
264
|
};
|
|
265
|
+
/**
|
|
266
|
+
* MsgExecResponse defines the Msg/MsgExecResponse response type.
|
|
267
|
+
* @name MsgExecResponse
|
|
268
|
+
* @package cosmos.authz.v1beta1
|
|
269
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExecResponse
|
|
270
|
+
*/
|
|
196
271
|
export declare const MsgExecResponse: {
|
|
197
272
|
typeUrl: string;
|
|
198
273
|
aminoType: string;
|
|
@@ -210,6 +285,13 @@ export declare const MsgExecResponse: {
|
|
|
210
285
|
toProtoMsg(message: MsgExecResponse): MsgExecResponseProtoMsg;
|
|
211
286
|
registerTypeUrl(): void;
|
|
212
287
|
};
|
|
288
|
+
/**
|
|
289
|
+
* MsgRevoke revokes any authorization with the provided sdk.Msg type on the
|
|
290
|
+
* granter's account with that has been granted to the grantee.
|
|
291
|
+
* @name MsgRevoke
|
|
292
|
+
* @package cosmos.authz.v1beta1
|
|
293
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevoke
|
|
294
|
+
*/
|
|
213
295
|
export declare const MsgRevoke: {
|
|
214
296
|
typeUrl: string;
|
|
215
297
|
aminoType: string;
|
|
@@ -227,6 +309,12 @@ export declare const MsgRevoke: {
|
|
|
227
309
|
toProtoMsg(message: MsgRevoke): MsgRevokeProtoMsg;
|
|
228
310
|
registerTypeUrl(): void;
|
|
229
311
|
};
|
|
312
|
+
/**
|
|
313
|
+
* MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
|
|
314
|
+
* @name MsgRevokeResponse
|
|
315
|
+
* @package cosmos.authz.v1beta1
|
|
316
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
|
|
317
|
+
*/
|
|
230
318
|
export declare const MsgRevokeResponse: {
|
|
231
319
|
typeUrl: string;
|
|
232
320
|
aminoType: string;
|
|
@@ -13,6 +13,13 @@ function createBaseMsgGrant() {
|
|
|
13
13
|
grant: authz_1.Grant.fromPartial({})
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* MsgGrant is a request type for Grant method. It declares authorization to the grantee
|
|
18
|
+
* on behalf of the granter with the provided expiration time.
|
|
19
|
+
* @name MsgGrant
|
|
20
|
+
* @package cosmos.authz.v1beta1
|
|
21
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrant
|
|
22
|
+
*/
|
|
16
23
|
exports.MsgGrant = {
|
|
17
24
|
typeUrl: "/cosmos.authz.v1beta1.MsgGrant",
|
|
18
25
|
aminoType: "cosmos-sdk/MsgGrant",
|
|
@@ -115,6 +122,12 @@ exports.MsgGrant = {
|
|
|
115
122
|
function createBaseMsgGrantResponse() {
|
|
116
123
|
return {};
|
|
117
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* MsgGrantResponse defines the Msg/MsgGrant response type.
|
|
127
|
+
* @name MsgGrantResponse
|
|
128
|
+
* @package cosmos.authz.v1beta1
|
|
129
|
+
* @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
|
|
130
|
+
*/
|
|
118
131
|
exports.MsgGrantResponse = {
|
|
119
132
|
typeUrl: "/cosmos.authz.v1beta1.MsgGrantResponse",
|
|
120
133
|
aminoType: "cosmos-sdk/MsgGrantResponse",
|
|
@@ -182,6 +195,14 @@ function createBaseMsgExec() {
|
|
|
182
195
|
msgs: []
|
|
183
196
|
};
|
|
184
197
|
}
|
|
198
|
+
/**
|
|
199
|
+
* MsgExec attempts to execute the provided messages using
|
|
200
|
+
* authorizations granted to the grantee. Each message should have only
|
|
201
|
+
* one signer corresponding to the granter of the authorization.
|
|
202
|
+
* @name MsgExec
|
|
203
|
+
* @package cosmos.authz.v1beta1
|
|
204
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExec
|
|
205
|
+
*/
|
|
185
206
|
exports.MsgExec = {
|
|
186
207
|
typeUrl: "/cosmos.authz.v1beta1.MsgExec",
|
|
187
208
|
aminoType: "cosmos-sdk/MsgExec",
|
|
@@ -273,6 +294,12 @@ function createBaseMsgExecResponse() {
|
|
|
273
294
|
results: []
|
|
274
295
|
};
|
|
275
296
|
}
|
|
297
|
+
/**
|
|
298
|
+
* MsgExecResponse defines the Msg/MsgExecResponse response type.
|
|
299
|
+
* @name MsgExecResponse
|
|
300
|
+
* @package cosmos.authz.v1beta1
|
|
301
|
+
* @see proto type: cosmos.authz.v1beta1.MsgExecResponse
|
|
302
|
+
*/
|
|
276
303
|
exports.MsgExecResponse = {
|
|
277
304
|
typeUrl: "/cosmos.authz.v1beta1.MsgExecResponse",
|
|
278
305
|
aminoType: "cosmos-sdk/MsgExecResponse",
|
|
@@ -355,6 +382,13 @@ function createBaseMsgRevoke() {
|
|
|
355
382
|
msgTypeUrl: ""
|
|
356
383
|
};
|
|
357
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* MsgRevoke revokes any authorization with the provided sdk.Msg type on the
|
|
387
|
+
* granter's account with that has been granted to the grantee.
|
|
388
|
+
* @name MsgRevoke
|
|
389
|
+
* @package cosmos.authz.v1beta1
|
|
390
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevoke
|
|
391
|
+
*/
|
|
358
392
|
exports.MsgRevoke = {
|
|
359
393
|
typeUrl: "/cosmos.authz.v1beta1.MsgRevoke",
|
|
360
394
|
aminoType: "cosmos-sdk/MsgRevoke",
|
|
@@ -452,6 +486,12 @@ exports.MsgRevoke = {
|
|
|
452
486
|
function createBaseMsgRevokeResponse() {
|
|
453
487
|
return {};
|
|
454
488
|
}
|
|
489
|
+
/**
|
|
490
|
+
* MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
|
|
491
|
+
* @name MsgRevokeResponse
|
|
492
|
+
* @package cosmos.authz.v1beta1
|
|
493
|
+
* @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
|
|
494
|
+
*/
|
|
455
495
|
exports.MsgRevokeResponse = {
|
|
456
496
|
typeUrl: "/cosmos.authz.v1beta1.MsgRevokeResponse",
|
|
457
497
|
aminoType: "cosmos-sdk/MsgRevokeResponse",
|
|
@@ -1,4 +1,28 @@
|
|
|
1
1
|
import { MsgGrant, MsgExec, MsgRevoke } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* Grant grants the provided authorization to the grantee on the granter's
|
|
4
|
+
* account with the provided expiration time. If there is already a grant
|
|
5
|
+
* for the given (granter, grantee, Authorization) triple, then the grant
|
|
6
|
+
* will be overwritten.
|
|
7
|
+
* @name grant
|
|
8
|
+
* @package cosmos.authz.v1beta1
|
|
9
|
+
* @see proto service: cosmos.authz.v1beta1.Grant
|
|
10
|
+
*/
|
|
2
11
|
export declare const grant: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgGrant | MsgGrant[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
12
|
+
/**
|
|
13
|
+
* Exec attempts to execute the provided messages using
|
|
14
|
+
* authorizations granted to the grantee. Each message should have only
|
|
15
|
+
* one signer corresponding to the granter of the authorization.
|
|
16
|
+
* @name exec
|
|
17
|
+
* @package cosmos.authz.v1beta1
|
|
18
|
+
* @see proto service: cosmos.authz.v1beta1.Exec
|
|
19
|
+
*/
|
|
3
20
|
export declare const exec: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExec | MsgExec[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Revoke revokes any authorization corresponding to the provided method name on the
|
|
23
|
+
* granter's account that has been granted to the grantee.
|
|
24
|
+
* @name revoke
|
|
25
|
+
* @package cosmos.authz.v1beta1
|
|
26
|
+
* @see proto service: cosmos.authz.v1beta1.Revoke
|
|
27
|
+
*/
|
|
4
28
|
export declare const revoke: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRevoke | MsgRevoke[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,21 +3,36 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.revoke = exports.exec = exports.grant = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Grant grants the provided authorization to the grantee on the granter's
|
|
8
|
+
* account with the provided expiration time. If there is already a grant
|
|
9
|
+
* for the given (granter, grantee, Authorization) triple, then the grant
|
|
10
|
+
* will be overwritten.
|
|
11
|
+
* @name grant
|
|
12
|
+
* @package cosmos.authz.v1beta1
|
|
13
|
+
* @see proto service: cosmos.authz.v1beta1.Grant
|
|
14
|
+
*/
|
|
10
15
|
exports.grant = (0, helper_func_types_1.buildTx)({
|
|
11
16
|
msg: tx_1.MsgGrant
|
|
12
17
|
});
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
18
|
+
/**
|
|
19
|
+
* Exec attempts to execute the provided messages using
|
|
20
|
+
* authorizations granted to the grantee. Each message should have only
|
|
21
|
+
* one signer corresponding to the granter of the authorization.
|
|
22
|
+
* @name exec
|
|
23
|
+
* @package cosmos.authz.v1beta1
|
|
24
|
+
* @see proto service: cosmos.authz.v1beta1.Exec
|
|
25
|
+
*/
|
|
16
26
|
exports.exec = (0, helper_func_types_1.buildTx)({
|
|
17
27
|
msg: tx_1.MsgExec
|
|
18
28
|
});
|
|
19
|
-
|
|
20
|
-
|
|
29
|
+
/**
|
|
30
|
+
* Revoke revokes any authorization corresponding to the provided method name on the
|
|
31
|
+
* granter's account that has been granted to the grantee.
|
|
32
|
+
* @name revoke
|
|
33
|
+
* @package cosmos.authz.v1beta1
|
|
34
|
+
* @see proto service: cosmos.authz.v1beta1.Revoke
|
|
35
|
+
*/
|
|
21
36
|
exports.revoke = (0, helper_func_types_1.buildTx)({
|
|
22
37
|
msg: tx_1.MsgRevoke
|
|
23
38
|
});
|