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
|
@@ -16,6 +16,13 @@ function createBaseMsgConnectionOpenInit() {
|
|
|
16
16
|
signer: ""
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* MsgConnectionOpenInit defines the msg sent by an account on Chain A to
|
|
21
|
+
* initialize a connection with Chain B.
|
|
22
|
+
* @name MsgConnectionOpenInit
|
|
23
|
+
* @package ibc.core.connection.v1
|
|
24
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInit
|
|
25
|
+
*/
|
|
19
26
|
exports.MsgConnectionOpenInit = {
|
|
20
27
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenInit",
|
|
21
28
|
aminoType: "cosmos-sdk/MsgConnectionOpenInit",
|
|
@@ -141,6 +148,13 @@ exports.MsgConnectionOpenInit = {
|
|
|
141
148
|
function createBaseMsgConnectionOpenInitResponse() {
|
|
142
149
|
return {};
|
|
143
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response
|
|
153
|
+
* type.
|
|
154
|
+
* @name MsgConnectionOpenInitResponse
|
|
155
|
+
* @package ibc.core.connection.v1
|
|
156
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInitResponse
|
|
157
|
+
*/
|
|
144
158
|
exports.MsgConnectionOpenInitResponse = {
|
|
145
159
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenInitResponse",
|
|
146
160
|
aminoType: "cosmos-sdk/MsgConnectionOpenInitResponse",
|
|
@@ -219,6 +233,13 @@ function createBaseMsgConnectionOpenTry() {
|
|
|
219
233
|
hostConsensusStateProof: new Uint8Array()
|
|
220
234
|
};
|
|
221
235
|
}
|
|
236
|
+
/**
|
|
237
|
+
* MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a
|
|
238
|
+
* connection on Chain B.
|
|
239
|
+
* @name MsgConnectionOpenTry
|
|
240
|
+
* @package ibc.core.connection.v1
|
|
241
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTry
|
|
242
|
+
*/
|
|
222
243
|
exports.MsgConnectionOpenTry = {
|
|
223
244
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenTry",
|
|
224
245
|
aminoType: "cosmos-sdk/MsgConnectionOpenTry",
|
|
@@ -436,6 +457,12 @@ exports.MsgConnectionOpenTry = {
|
|
|
436
457
|
function createBaseMsgConnectionOpenTryResponse() {
|
|
437
458
|
return {};
|
|
438
459
|
}
|
|
460
|
+
/**
|
|
461
|
+
* MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
|
|
462
|
+
* @name MsgConnectionOpenTryResponse
|
|
463
|
+
* @package ibc.core.connection.v1
|
|
464
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTryResponse
|
|
465
|
+
*/
|
|
439
466
|
exports.MsgConnectionOpenTryResponse = {
|
|
440
467
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenTryResponse",
|
|
441
468
|
aminoType: "cosmos-sdk/MsgConnectionOpenTryResponse",
|
|
@@ -512,6 +539,13 @@ function createBaseMsgConnectionOpenAck() {
|
|
|
512
539
|
hostConsensusStateProof: new Uint8Array()
|
|
513
540
|
};
|
|
514
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to
|
|
544
|
+
* acknowledge the change of connection state to TRYOPEN on Chain B.
|
|
545
|
+
* @name MsgConnectionOpenAck
|
|
546
|
+
* @package ibc.core.connection.v1
|
|
547
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAck
|
|
548
|
+
*/
|
|
515
549
|
exports.MsgConnectionOpenAck = {
|
|
516
550
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenAck",
|
|
517
551
|
aminoType: "cosmos-sdk/MsgConnectionOpenAck",
|
|
@@ -702,6 +736,12 @@ exports.MsgConnectionOpenAck = {
|
|
|
702
736
|
function createBaseMsgConnectionOpenAckResponse() {
|
|
703
737
|
return {};
|
|
704
738
|
}
|
|
739
|
+
/**
|
|
740
|
+
* MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type.
|
|
741
|
+
* @name MsgConnectionOpenAckResponse
|
|
742
|
+
* @package ibc.core.connection.v1
|
|
743
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAckResponse
|
|
744
|
+
*/
|
|
705
745
|
exports.MsgConnectionOpenAckResponse = {
|
|
706
746
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenAckResponse",
|
|
707
747
|
aminoType: "cosmos-sdk/MsgConnectionOpenAckResponse",
|
|
@@ -771,6 +811,13 @@ function createBaseMsgConnectionOpenConfirm() {
|
|
|
771
811
|
signer: ""
|
|
772
812
|
};
|
|
773
813
|
}
|
|
814
|
+
/**
|
|
815
|
+
* MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
816
|
+
* acknowledge the change of connection state to OPEN on Chain A.
|
|
817
|
+
* @name MsgConnectionOpenConfirm
|
|
818
|
+
* @package ibc.core.connection.v1
|
|
819
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirm
|
|
820
|
+
*/
|
|
774
821
|
exports.MsgConnectionOpenConfirm = {
|
|
775
822
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenConfirm",
|
|
776
823
|
aminoType: "cosmos-sdk/MsgConnectionOpenConfirm",
|
|
@@ -884,6 +931,13 @@ exports.MsgConnectionOpenConfirm = {
|
|
|
884
931
|
function createBaseMsgConnectionOpenConfirmResponse() {
|
|
885
932
|
return {};
|
|
886
933
|
}
|
|
934
|
+
/**
|
|
935
|
+
* MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm
|
|
936
|
+
* response type.
|
|
937
|
+
* @name MsgConnectionOpenConfirmResponse
|
|
938
|
+
* @package ibc.core.connection.v1
|
|
939
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirmResponse
|
|
940
|
+
*/
|
|
887
941
|
exports.MsgConnectionOpenConfirmResponse = {
|
|
888
942
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenConfirmResponse",
|
|
889
943
|
aminoType: "cosmos-sdk/MsgConnectionOpenConfirmResponse",
|
|
@@ -951,6 +1005,12 @@ function createBaseMsgUpdateParams() {
|
|
|
951
1005
|
params: client_1.Params.fromPartial({})
|
|
952
1006
|
};
|
|
953
1007
|
}
|
|
1008
|
+
/**
|
|
1009
|
+
* MsgUpdateParams defines the sdk.Msg type to update the connection parameters.
|
|
1010
|
+
* @name MsgUpdateParams
|
|
1011
|
+
* @package ibc.core.connection.v1
|
|
1012
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParams
|
|
1013
|
+
*/
|
|
954
1014
|
exports.MsgUpdateParams = {
|
|
955
1015
|
typeUrl: "/ibc.core.connection.v1.MsgUpdateParams",
|
|
956
1016
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -1042,6 +1102,12 @@ exports.MsgUpdateParams = {
|
|
|
1042
1102
|
function createBaseMsgUpdateParamsResponse() {
|
|
1043
1103
|
return {};
|
|
1044
1104
|
}
|
|
1105
|
+
/**
|
|
1106
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
1107
|
+
* @name MsgUpdateParamsResponse
|
|
1108
|
+
* @package ibc.core.connection.v1
|
|
1109
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParamsResponse
|
|
1110
|
+
*/
|
|
1045
1111
|
exports.MsgUpdateParamsResponse = {
|
|
1046
1112
|
typeUrl: "/ibc.core.connection.v1.MsgUpdateParamsResponse",
|
|
1047
1113
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
import { MsgConnectionOpenInit, MsgConnectionOpenTry, MsgConnectionOpenAck, MsgConnectionOpenConfirm, MsgUpdateParams } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* ConnectionOpenInit defines a rpc handler method for MsgConnectionOpenInit.
|
|
4
|
+
* @name connectionOpenInit
|
|
5
|
+
* @package ibc.core.connection.v1
|
|
6
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenInit
|
|
7
|
+
*/
|
|
2
8
|
export declare const connectionOpenInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgConnectionOpenInit | MsgConnectionOpenInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* ConnectionOpenTry defines a rpc handler method for MsgConnectionOpenTry.
|
|
11
|
+
* @name connectionOpenTry
|
|
12
|
+
* @package ibc.core.connection.v1
|
|
13
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenTry
|
|
14
|
+
*/
|
|
3
15
|
export declare const connectionOpenTry: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgConnectionOpenTry | MsgConnectionOpenTry[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* ConnectionOpenAck defines a rpc handler method for MsgConnectionOpenAck.
|
|
18
|
+
* @name connectionOpenAck
|
|
19
|
+
* @package ibc.core.connection.v1
|
|
20
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenAck
|
|
21
|
+
*/
|
|
4
22
|
export declare const connectionOpenAck: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgConnectionOpenAck | MsgConnectionOpenAck[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* ConnectionOpenConfirm defines a rpc handler method for
|
|
25
|
+
* MsgConnectionOpenConfirm.
|
|
26
|
+
* @name connectionOpenConfirm
|
|
27
|
+
* @package ibc.core.connection.v1
|
|
28
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenConfirm
|
|
29
|
+
*/
|
|
5
30
|
export declare const connectionOpenConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgConnectionOpenConfirm | MsgConnectionOpenConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* UpdateConnectionParams defines a rpc handler method for
|
|
33
|
+
* MsgUpdateParams.
|
|
34
|
+
* @name updateConnectionParams
|
|
35
|
+
* @package ibc.core.connection.v1
|
|
36
|
+
* @see proto service: ibc.core.connection.v1.UpdateConnectionParams
|
|
37
|
+
*/
|
|
6
38
|
export declare const updateConnectionParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,25 +3,50 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.updateConnectionParams = exports.connectionOpenConfirm = exports.connectionOpenAck = exports.connectionOpenTry = exports.connectionOpenInit = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* ConnectionOpenInit defines a rpc handler method for MsgConnectionOpenInit.
|
|
8
|
+
* @name connectionOpenInit
|
|
9
|
+
* @package ibc.core.connection.v1
|
|
10
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenInit
|
|
11
|
+
*/
|
|
7
12
|
exports.connectionOpenInit = (0, helper_func_types_1.buildTx)({
|
|
8
13
|
msg: tx_1.MsgConnectionOpenInit
|
|
9
14
|
});
|
|
10
|
-
|
|
15
|
+
/**
|
|
16
|
+
* ConnectionOpenTry defines a rpc handler method for MsgConnectionOpenTry.
|
|
17
|
+
* @name connectionOpenTry
|
|
18
|
+
* @package ibc.core.connection.v1
|
|
19
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenTry
|
|
20
|
+
*/
|
|
11
21
|
exports.connectionOpenTry = (0, helper_func_types_1.buildTx)({
|
|
12
22
|
msg: tx_1.MsgConnectionOpenTry
|
|
13
23
|
});
|
|
14
|
-
|
|
24
|
+
/**
|
|
25
|
+
* ConnectionOpenAck defines a rpc handler method for MsgConnectionOpenAck.
|
|
26
|
+
* @name connectionOpenAck
|
|
27
|
+
* @package ibc.core.connection.v1
|
|
28
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenAck
|
|
29
|
+
*/
|
|
15
30
|
exports.connectionOpenAck = (0, helper_func_types_1.buildTx)({
|
|
16
31
|
msg: tx_1.MsgConnectionOpenAck
|
|
17
32
|
});
|
|
18
|
-
|
|
19
|
-
|
|
33
|
+
/**
|
|
34
|
+
* ConnectionOpenConfirm defines a rpc handler method for
|
|
35
|
+
* MsgConnectionOpenConfirm.
|
|
36
|
+
* @name connectionOpenConfirm
|
|
37
|
+
* @package ibc.core.connection.v1
|
|
38
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenConfirm
|
|
39
|
+
*/
|
|
20
40
|
exports.connectionOpenConfirm = (0, helper_func_types_1.buildTx)({
|
|
21
41
|
msg: tx_1.MsgConnectionOpenConfirm
|
|
22
42
|
});
|
|
23
|
-
|
|
24
|
-
|
|
43
|
+
/**
|
|
44
|
+
* UpdateConnectionParams defines a rpc handler method for
|
|
45
|
+
* MsgUpdateParams.
|
|
46
|
+
* @name updateConnectionParams
|
|
47
|
+
* @package ibc.core.connection.v1
|
|
48
|
+
* @see proto service: ibc.core.connection.v1.UpdateConnectionParams
|
|
49
|
+
*/
|
|
25
50
|
exports.updateConnectionParams = (0, helper_func_types_1.buildTx)({
|
|
26
51
|
msg: tx_1.MsgUpdateParams
|
|
27
52
|
});
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
3
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
4
4
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
5
5
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
6
6
|
*/
|
|
@@ -1,26 +1,49 @@
|
|
|
1
1
|
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* @name Params
|
|
6
|
+
* @package injective.auction.v1beta1
|
|
7
|
+
* @see proto type: injective.auction.v1beta1.Params
|
|
8
|
+
*/
|
|
4
9
|
export interface Params {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* auction_period_duration defines the auction period duration
|
|
12
|
+
*/
|
|
6
13
|
auctionPeriod: bigint;
|
|
7
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* min_next_bid_increment_rate defines the minimum increment rate for new bids
|
|
16
|
+
*/
|
|
8
17
|
minNextBidIncrementRate: string;
|
|
9
18
|
}
|
|
10
19
|
export interface ParamsProtoMsg {
|
|
11
20
|
typeUrl: "/injective.auction.v1beta1.Params";
|
|
12
21
|
value: Uint8Array;
|
|
13
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* @name ParamsAmino
|
|
25
|
+
* @package injective.auction.v1beta1
|
|
26
|
+
* @see proto type: injective.auction.v1beta1.Params
|
|
27
|
+
*/
|
|
14
28
|
export interface ParamsAmino {
|
|
15
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* auction_period_duration defines the auction period duration
|
|
31
|
+
*/
|
|
16
32
|
auction_period: string;
|
|
17
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* min_next_bid_increment_rate defines the minimum increment rate for new bids
|
|
35
|
+
*/
|
|
18
36
|
min_next_bid_increment_rate: string;
|
|
19
37
|
}
|
|
20
38
|
export interface ParamsAminoMsg {
|
|
21
39
|
type: "auction/Params";
|
|
22
40
|
value: ParamsAmino;
|
|
23
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* @name Bid
|
|
44
|
+
* @package injective.auction.v1beta1
|
|
45
|
+
* @see proto type: injective.auction.v1beta1.Bid
|
|
46
|
+
*/
|
|
24
47
|
export interface Bid {
|
|
25
48
|
bidder: string;
|
|
26
49
|
amount: string;
|
|
@@ -29,6 +52,11 @@ export interface BidProtoMsg {
|
|
|
29
52
|
typeUrl: "/injective.auction.v1beta1.Bid";
|
|
30
53
|
value: Uint8Array;
|
|
31
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* @name BidAmino
|
|
57
|
+
* @package injective.auction.v1beta1
|
|
58
|
+
* @see proto type: injective.auction.v1beta1.Bid
|
|
59
|
+
*/
|
|
32
60
|
export interface BidAmino {
|
|
33
61
|
bidder: string;
|
|
34
62
|
amount: string;
|
|
@@ -37,82 +65,157 @@ export interface BidAminoMsg {
|
|
|
37
65
|
type: "/injective.auction.v1beta1.Bid";
|
|
38
66
|
value: BidAmino;
|
|
39
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* @name LastAuctionResult
|
|
70
|
+
* @package injective.auction.v1beta1
|
|
71
|
+
* @see proto type: injective.auction.v1beta1.LastAuctionResult
|
|
72
|
+
*/
|
|
40
73
|
export interface LastAuctionResult {
|
|
41
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* winner describes the address of the winner
|
|
76
|
+
*/
|
|
42
77
|
winner: string;
|
|
43
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* amount describes the amount the winner get from the auction
|
|
80
|
+
*/
|
|
44
81
|
amount: string;
|
|
45
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* round defines the round number of auction
|
|
84
|
+
*/
|
|
46
85
|
round: bigint;
|
|
47
86
|
}
|
|
48
87
|
export interface LastAuctionResultProtoMsg {
|
|
49
88
|
typeUrl: "/injective.auction.v1beta1.LastAuctionResult";
|
|
50
89
|
value: Uint8Array;
|
|
51
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* @name LastAuctionResultAmino
|
|
93
|
+
* @package injective.auction.v1beta1
|
|
94
|
+
* @see proto type: injective.auction.v1beta1.LastAuctionResult
|
|
95
|
+
*/
|
|
52
96
|
export interface LastAuctionResultAmino {
|
|
53
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* winner describes the address of the winner
|
|
99
|
+
*/
|
|
54
100
|
winner: string;
|
|
55
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* amount describes the amount the winner get from the auction
|
|
103
|
+
*/
|
|
56
104
|
amount: string;
|
|
57
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* round defines the round number of auction
|
|
107
|
+
*/
|
|
58
108
|
round: string;
|
|
59
109
|
}
|
|
60
110
|
export interface LastAuctionResultAminoMsg {
|
|
61
111
|
type: "/injective.auction.v1beta1.LastAuctionResult";
|
|
62
112
|
value: LastAuctionResultAmino;
|
|
63
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* @name EventBid
|
|
116
|
+
* @package injective.auction.v1beta1
|
|
117
|
+
* @see proto type: injective.auction.v1beta1.EventBid
|
|
118
|
+
*/
|
|
64
119
|
export interface EventBid {
|
|
65
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* bidder describes the address of bidder
|
|
122
|
+
*/
|
|
66
123
|
bidder: string;
|
|
67
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* amount describes the amount the bidder put on the auction
|
|
126
|
+
*/
|
|
68
127
|
amount: string;
|
|
69
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* round defines the round number of auction
|
|
130
|
+
*/
|
|
70
131
|
round: bigint;
|
|
71
132
|
}
|
|
72
133
|
export interface EventBidProtoMsg {
|
|
73
134
|
typeUrl: "/injective.auction.v1beta1.EventBid";
|
|
74
135
|
value: Uint8Array;
|
|
75
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* @name EventBidAmino
|
|
139
|
+
* @package injective.auction.v1beta1
|
|
140
|
+
* @see proto type: injective.auction.v1beta1.EventBid
|
|
141
|
+
*/
|
|
76
142
|
export interface EventBidAmino {
|
|
77
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* bidder describes the address of bidder
|
|
145
|
+
*/
|
|
78
146
|
bidder: string;
|
|
79
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* amount describes the amount the bidder put on the auction
|
|
149
|
+
*/
|
|
80
150
|
amount: string;
|
|
81
|
-
/**
|
|
151
|
+
/**
|
|
152
|
+
* round defines the round number of auction
|
|
153
|
+
*/
|
|
82
154
|
round: string;
|
|
83
155
|
}
|
|
84
156
|
export interface EventBidAminoMsg {
|
|
85
157
|
type: "/injective.auction.v1beta1.EventBid";
|
|
86
158
|
value: EventBidAmino;
|
|
87
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* @name EventAuctionResult
|
|
162
|
+
* @package injective.auction.v1beta1
|
|
163
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionResult
|
|
164
|
+
*/
|
|
88
165
|
export interface EventAuctionResult {
|
|
89
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* winner describes the address of the winner
|
|
168
|
+
*/
|
|
90
169
|
winner: string;
|
|
91
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* amount describes the amount the winner get from the auction
|
|
172
|
+
*/
|
|
92
173
|
amount: string;
|
|
93
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* round defines the round number of auction
|
|
176
|
+
*/
|
|
94
177
|
round: bigint;
|
|
95
178
|
}
|
|
96
179
|
export interface EventAuctionResultProtoMsg {
|
|
97
180
|
typeUrl: "/injective.auction.v1beta1.EventAuctionResult";
|
|
98
181
|
value: Uint8Array;
|
|
99
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* @name EventAuctionResultAmino
|
|
185
|
+
* @package injective.auction.v1beta1
|
|
186
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionResult
|
|
187
|
+
*/
|
|
100
188
|
export interface EventAuctionResultAmino {
|
|
101
|
-
/**
|
|
189
|
+
/**
|
|
190
|
+
* winner describes the address of the winner
|
|
191
|
+
*/
|
|
102
192
|
winner: string;
|
|
103
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* amount describes the amount the winner get from the auction
|
|
195
|
+
*/
|
|
104
196
|
amount: string;
|
|
105
|
-
/**
|
|
197
|
+
/**
|
|
198
|
+
* round defines the round number of auction
|
|
199
|
+
*/
|
|
106
200
|
round: string;
|
|
107
201
|
}
|
|
108
202
|
export interface EventAuctionResultAminoMsg {
|
|
109
203
|
type: "/injective.auction.v1beta1.EventAuctionResult";
|
|
110
204
|
value: EventAuctionResultAmino;
|
|
111
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* @name EventAuctionStart
|
|
208
|
+
* @package injective.auction.v1beta1
|
|
209
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionStart
|
|
210
|
+
*/
|
|
112
211
|
export interface EventAuctionStart {
|
|
113
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* round defines the round number of auction
|
|
214
|
+
*/
|
|
114
215
|
round: bigint;
|
|
115
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* ending_timestamp describes auction end time
|
|
218
|
+
*/
|
|
116
219
|
endingTimestamp: bigint;
|
|
117
220
|
/**
|
|
118
221
|
* new_basket describes auction module balance at the time of new auction
|
|
@@ -124,10 +227,19 @@ export interface EventAuctionStartProtoMsg {
|
|
|
124
227
|
typeUrl: "/injective.auction.v1beta1.EventAuctionStart";
|
|
125
228
|
value: Uint8Array;
|
|
126
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* @name EventAuctionStartAmino
|
|
232
|
+
* @package injective.auction.v1beta1
|
|
233
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionStart
|
|
234
|
+
*/
|
|
127
235
|
export interface EventAuctionStartAmino {
|
|
128
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* round defines the round number of auction
|
|
238
|
+
*/
|
|
129
239
|
round: string;
|
|
130
|
-
/**
|
|
240
|
+
/**
|
|
241
|
+
* ending_timestamp describes auction end time
|
|
242
|
+
*/
|
|
131
243
|
ending_timestamp: string;
|
|
132
244
|
/**
|
|
133
245
|
* new_basket describes auction module balance at the time of new auction
|
|
@@ -139,6 +251,11 @@ export interface EventAuctionStartAminoMsg {
|
|
|
139
251
|
type: "/injective.auction.v1beta1.EventAuctionStart";
|
|
140
252
|
value: EventAuctionStartAmino;
|
|
141
253
|
}
|
|
254
|
+
/**
|
|
255
|
+
* @name Params
|
|
256
|
+
* @package injective.auction.v1beta1
|
|
257
|
+
* @see proto type: injective.auction.v1beta1.Params
|
|
258
|
+
*/
|
|
142
259
|
export declare const Params: {
|
|
143
260
|
typeUrl: string;
|
|
144
261
|
aminoType: string;
|
|
@@ -156,6 +273,11 @@ export declare const Params: {
|
|
|
156
273
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
157
274
|
registerTypeUrl(): void;
|
|
158
275
|
};
|
|
276
|
+
/**
|
|
277
|
+
* @name Bid
|
|
278
|
+
* @package injective.auction.v1beta1
|
|
279
|
+
* @see proto type: injective.auction.v1beta1.Bid
|
|
280
|
+
*/
|
|
159
281
|
export declare const Bid: {
|
|
160
282
|
typeUrl: string;
|
|
161
283
|
is(o: any): o is Bid;
|
|
@@ -171,6 +293,11 @@ export declare const Bid: {
|
|
|
171
293
|
toProtoMsg(message: Bid): BidProtoMsg;
|
|
172
294
|
registerTypeUrl(): void;
|
|
173
295
|
};
|
|
296
|
+
/**
|
|
297
|
+
* @name LastAuctionResult
|
|
298
|
+
* @package injective.auction.v1beta1
|
|
299
|
+
* @see proto type: injective.auction.v1beta1.LastAuctionResult
|
|
300
|
+
*/
|
|
174
301
|
export declare const LastAuctionResult: {
|
|
175
302
|
typeUrl: string;
|
|
176
303
|
is(o: any): o is LastAuctionResult;
|
|
@@ -186,6 +313,11 @@ export declare const LastAuctionResult: {
|
|
|
186
313
|
toProtoMsg(message: LastAuctionResult): LastAuctionResultProtoMsg;
|
|
187
314
|
registerTypeUrl(): void;
|
|
188
315
|
};
|
|
316
|
+
/**
|
|
317
|
+
* @name EventBid
|
|
318
|
+
* @package injective.auction.v1beta1
|
|
319
|
+
* @see proto type: injective.auction.v1beta1.EventBid
|
|
320
|
+
*/
|
|
189
321
|
export declare const EventBid: {
|
|
190
322
|
typeUrl: string;
|
|
191
323
|
is(o: any): o is EventBid;
|
|
@@ -201,6 +333,11 @@ export declare const EventBid: {
|
|
|
201
333
|
toProtoMsg(message: EventBid): EventBidProtoMsg;
|
|
202
334
|
registerTypeUrl(): void;
|
|
203
335
|
};
|
|
336
|
+
/**
|
|
337
|
+
* @name EventAuctionResult
|
|
338
|
+
* @package injective.auction.v1beta1
|
|
339
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionResult
|
|
340
|
+
*/
|
|
204
341
|
export declare const EventAuctionResult: {
|
|
205
342
|
typeUrl: string;
|
|
206
343
|
is(o: any): o is EventAuctionResult;
|
|
@@ -216,6 +353,11 @@ export declare const EventAuctionResult: {
|
|
|
216
353
|
toProtoMsg(message: EventAuctionResult): EventAuctionResultProtoMsg;
|
|
217
354
|
registerTypeUrl(): void;
|
|
218
355
|
};
|
|
356
|
+
/**
|
|
357
|
+
* @name EventAuctionStart
|
|
358
|
+
* @package injective.auction.v1beta1
|
|
359
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionStart
|
|
360
|
+
*/
|
|
219
361
|
export declare const EventAuctionStart: {
|
|
220
362
|
typeUrl: string;
|
|
221
363
|
is(o: any): o is EventAuctionStart;
|
|
@@ -11,6 +11,11 @@ function createBaseParams() {
|
|
|
11
11
|
minNextBidIncrementRate: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* @name Params
|
|
16
|
+
* @package injective.auction.v1beta1
|
|
17
|
+
* @see proto type: injective.auction.v1beta1.Params
|
|
18
|
+
*/
|
|
14
19
|
exports.Params = {
|
|
15
20
|
typeUrl: "/injective.auction.v1beta1.Params",
|
|
16
21
|
aminoType: "auction/Params",
|
|
@@ -100,6 +105,11 @@ function createBaseBid() {
|
|
|
100
105
|
amount: ""
|
|
101
106
|
};
|
|
102
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* @name Bid
|
|
110
|
+
* @package injective.auction.v1beta1
|
|
111
|
+
* @see proto type: injective.auction.v1beta1.Bid
|
|
112
|
+
*/
|
|
103
113
|
exports.Bid = {
|
|
104
114
|
typeUrl: "/injective.auction.v1beta1.Bid",
|
|
105
115
|
is(o) {
|
|
@@ -183,6 +193,11 @@ function createBaseLastAuctionResult() {
|
|
|
183
193
|
round: BigInt(0)
|
|
184
194
|
};
|
|
185
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* @name LastAuctionResult
|
|
198
|
+
* @package injective.auction.v1beta1
|
|
199
|
+
* @see proto type: injective.auction.v1beta1.LastAuctionResult
|
|
200
|
+
*/
|
|
186
201
|
exports.LastAuctionResult = {
|
|
187
202
|
typeUrl: "/injective.auction.v1beta1.LastAuctionResult",
|
|
188
203
|
is(o) {
|
|
@@ -277,6 +292,11 @@ function createBaseEventBid() {
|
|
|
277
292
|
round: BigInt(0)
|
|
278
293
|
};
|
|
279
294
|
}
|
|
295
|
+
/**
|
|
296
|
+
* @name EventBid
|
|
297
|
+
* @package injective.auction.v1beta1
|
|
298
|
+
* @see proto type: injective.auction.v1beta1.EventBid
|
|
299
|
+
*/
|
|
280
300
|
exports.EventBid = {
|
|
281
301
|
typeUrl: "/injective.auction.v1beta1.EventBid",
|
|
282
302
|
is(o) {
|
|
@@ -371,6 +391,11 @@ function createBaseEventAuctionResult() {
|
|
|
371
391
|
round: BigInt(0)
|
|
372
392
|
};
|
|
373
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* @name EventAuctionResult
|
|
396
|
+
* @package injective.auction.v1beta1
|
|
397
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionResult
|
|
398
|
+
*/
|
|
374
399
|
exports.EventAuctionResult = {
|
|
375
400
|
typeUrl: "/injective.auction.v1beta1.EventAuctionResult",
|
|
376
401
|
is(o) {
|
|
@@ -465,6 +490,11 @@ function createBaseEventAuctionStart() {
|
|
|
465
490
|
newBasket: []
|
|
466
491
|
};
|
|
467
492
|
}
|
|
493
|
+
/**
|
|
494
|
+
* @name EventAuctionStart
|
|
495
|
+
* @package injective.auction.v1beta1
|
|
496
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionStart
|
|
497
|
+
*/
|
|
468
498
|
exports.EventAuctionStart = {
|
|
469
499
|
typeUrl: "/injective.auction.v1beta1.EventAuctionStart",
|
|
470
500
|
is(o) {
|