injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryInsuranceParamsRequest, QueryInsuranceParamsResponse, QueryInsuranceFundRequest, QueryInsuranceFundResponse, QueryInsuranceFundsRequest, QueryInsuranceFundsResponse, QueryEstimatedRedemptionsRequest, QueryEstimatedRedemptionsResponse, QueryPendingRedemptionsRequest, QueryPendingRedemptionsResponse, QueryModuleStateRequest, QueryModuleStateResponse } from "./query";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves insurance params
|
|
5
|
+
* @name getInsuranceParams
|
|
6
|
+
* @package injective.insurance.v1beta1
|
|
7
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceParams
|
|
8
|
+
*/
|
|
4
9
|
export const getInsuranceParams = buildQuery({
|
|
5
10
|
encode: QueryInsuranceParamsRequest.encode,
|
|
6
11
|
decode: QueryInsuranceParamsResponse.decode,
|
|
@@ -8,7 +13,12 @@ export const getInsuranceParams = buildQuery({
|
|
|
8
13
|
method: "InsuranceParams",
|
|
9
14
|
deps: [QueryInsuranceParamsRequest, QueryInsuranceParamsResponse]
|
|
10
15
|
});
|
|
11
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Retrieves individual insurance fund information from market id
|
|
18
|
+
* @name getInsuranceFund
|
|
19
|
+
* @package injective.insurance.v1beta1
|
|
20
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceFund
|
|
21
|
+
*/
|
|
12
22
|
export const getInsuranceFund = buildQuery({
|
|
13
23
|
encode: QueryInsuranceFundRequest.encode,
|
|
14
24
|
decode: QueryInsuranceFundResponse.decode,
|
|
@@ -16,7 +26,12 @@ export const getInsuranceFund = buildQuery({
|
|
|
16
26
|
method: "InsuranceFund",
|
|
17
27
|
deps: [QueryInsuranceFundRequest, QueryInsuranceFundResponse]
|
|
18
28
|
});
|
|
19
|
-
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves all insurance funds
|
|
31
|
+
* @name getInsuranceFunds
|
|
32
|
+
* @package injective.insurance.v1beta1
|
|
33
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceFunds
|
|
34
|
+
*/
|
|
20
35
|
export const getInsuranceFunds = buildQuery({
|
|
21
36
|
encode: QueryInsuranceFundsRequest.encode,
|
|
22
37
|
decode: QueryInsuranceFundsResponse.decode,
|
|
@@ -24,8 +39,13 @@ export const getInsuranceFunds = buildQuery({
|
|
|
24
39
|
method: "InsuranceFunds",
|
|
25
40
|
deps: [QueryInsuranceFundsRequest, QueryInsuranceFundsResponse]
|
|
26
41
|
});
|
|
27
|
-
|
|
28
|
-
|
|
42
|
+
/**
|
|
43
|
+
* Retrives the value of insurance fund share token at current price (not
|
|
44
|
+
* pending redemption)
|
|
45
|
+
* @name getEstimatedRedemptions
|
|
46
|
+
* @package injective.insurance.v1beta1
|
|
47
|
+
* @see proto service: injective.insurance.v1beta1.EstimatedRedemptions
|
|
48
|
+
*/
|
|
29
49
|
export const getEstimatedRedemptions = buildQuery({
|
|
30
50
|
encode: QueryEstimatedRedemptionsRequest.encode,
|
|
31
51
|
decode: QueryEstimatedRedemptionsResponse.decode,
|
|
@@ -33,7 +53,12 @@ export const getEstimatedRedemptions = buildQuery({
|
|
|
33
53
|
method: "EstimatedRedemptions",
|
|
34
54
|
deps: [QueryEstimatedRedemptionsRequest, QueryEstimatedRedemptionsResponse]
|
|
35
55
|
});
|
|
36
|
-
|
|
56
|
+
/**
|
|
57
|
+
* Retrieves pending redemptions' share token at current price
|
|
58
|
+
* @name getPendingRedemptions
|
|
59
|
+
* @package injective.insurance.v1beta1
|
|
60
|
+
* @see proto service: injective.insurance.v1beta1.PendingRedemptions
|
|
61
|
+
*/
|
|
37
62
|
export const getPendingRedemptions = buildQuery({
|
|
38
63
|
encode: QueryPendingRedemptionsRequest.encode,
|
|
39
64
|
decode: QueryPendingRedemptionsResponse.decode,
|
|
@@ -41,7 +66,12 @@ export const getPendingRedemptions = buildQuery({
|
|
|
41
66
|
method: "PendingRedemptions",
|
|
42
67
|
deps: [QueryPendingRedemptionsRequest, QueryPendingRedemptionsResponse]
|
|
43
68
|
});
|
|
44
|
-
|
|
69
|
+
/**
|
|
70
|
+
* Retrieves the entire insurance module's state
|
|
71
|
+
* @name getInsuranceModuleState
|
|
72
|
+
* @package injective.insurance.v1beta1
|
|
73
|
+
* @see proto service: injective.insurance.v1beta1.InsuranceModuleState
|
|
74
|
+
*/
|
|
45
75
|
export const getInsuranceModuleState = buildQuery({
|
|
46
76
|
encode: QueryModuleStateRequest.encode,
|
|
47
77
|
decode: QueryModuleStateResponse.decode,
|
|
@@ -15,6 +15,13 @@ function createBaseMsgCreateInsuranceFund() {
|
|
|
15
15
|
initialDeposit: Coin.fromPartial({})
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* MsgCreateInsuranceFund a message to create an insurance fund for a derivative
|
|
20
|
+
* market.
|
|
21
|
+
* @name MsgCreateInsuranceFund
|
|
22
|
+
* @package injective.insurance.v1beta1
|
|
23
|
+
* @see proto type: injective.insurance.v1beta1.MsgCreateInsuranceFund
|
|
24
|
+
*/
|
|
18
25
|
export const MsgCreateInsuranceFund = {
|
|
19
26
|
typeUrl: "/injective.insurance.v1beta1.MsgCreateInsuranceFund",
|
|
20
27
|
aminoType: "insurance/MsgCreateInsuranceFund",
|
|
@@ -172,6 +179,11 @@ export const MsgCreateInsuranceFund = {
|
|
|
172
179
|
function createBaseMsgCreateInsuranceFundResponse() {
|
|
173
180
|
return {};
|
|
174
181
|
}
|
|
182
|
+
/**
|
|
183
|
+
* @name MsgCreateInsuranceFundResponse
|
|
184
|
+
* @package injective.insurance.v1beta1
|
|
185
|
+
* @see proto type: injective.insurance.v1beta1.MsgCreateInsuranceFundResponse
|
|
186
|
+
*/
|
|
175
187
|
export const MsgCreateInsuranceFundResponse = {
|
|
176
188
|
typeUrl: "/injective.insurance.v1beta1.MsgCreateInsuranceFundResponse",
|
|
177
189
|
is(o) {
|
|
@@ -233,6 +245,13 @@ function createBaseMsgUnderwrite() {
|
|
|
233
245
|
deposit: Coin.fromPartial({})
|
|
234
246
|
};
|
|
235
247
|
}
|
|
248
|
+
/**
|
|
249
|
+
* MsgUnderwrite defines a message for depositing coins to underwrite an
|
|
250
|
+
* insurance fund
|
|
251
|
+
* @name MsgUnderwrite
|
|
252
|
+
* @package injective.insurance.v1beta1
|
|
253
|
+
* @see proto type: injective.insurance.v1beta1.MsgUnderwrite
|
|
254
|
+
*/
|
|
236
255
|
export const MsgUnderwrite = {
|
|
237
256
|
typeUrl: "/injective.insurance.v1beta1.MsgUnderwrite",
|
|
238
257
|
aminoType: "insurance/MsgUnderwrite",
|
|
@@ -335,6 +354,11 @@ export const MsgUnderwrite = {
|
|
|
335
354
|
function createBaseMsgUnderwriteResponse() {
|
|
336
355
|
return {};
|
|
337
356
|
}
|
|
357
|
+
/**
|
|
358
|
+
* @name MsgUnderwriteResponse
|
|
359
|
+
* @package injective.insurance.v1beta1
|
|
360
|
+
* @see proto type: injective.insurance.v1beta1.MsgUnderwriteResponse
|
|
361
|
+
*/
|
|
338
362
|
export const MsgUnderwriteResponse = {
|
|
339
363
|
typeUrl: "/injective.insurance.v1beta1.MsgUnderwriteResponse",
|
|
340
364
|
is(o) {
|
|
@@ -396,6 +420,13 @@ function createBaseMsgRequestRedemption() {
|
|
|
396
420
|
amount: Coin.fromPartial({})
|
|
397
421
|
};
|
|
398
422
|
}
|
|
423
|
+
/**
|
|
424
|
+
* MsgRequestRedemption defines a message for requesting a redemption of the
|
|
425
|
+
* sender's insurance fund tokens
|
|
426
|
+
* @name MsgRequestRedemption
|
|
427
|
+
* @package injective.insurance.v1beta1
|
|
428
|
+
* @see proto type: injective.insurance.v1beta1.MsgRequestRedemption
|
|
429
|
+
*/
|
|
399
430
|
export const MsgRequestRedemption = {
|
|
400
431
|
typeUrl: "/injective.insurance.v1beta1.MsgRequestRedemption",
|
|
401
432
|
aminoType: "insurance/MsgRequestRedemption",
|
|
@@ -498,6 +529,11 @@ export const MsgRequestRedemption = {
|
|
|
498
529
|
function createBaseMsgRequestRedemptionResponse() {
|
|
499
530
|
return {};
|
|
500
531
|
}
|
|
532
|
+
/**
|
|
533
|
+
* @name MsgRequestRedemptionResponse
|
|
534
|
+
* @package injective.insurance.v1beta1
|
|
535
|
+
* @see proto type: injective.insurance.v1beta1.MsgRequestRedemptionResponse
|
|
536
|
+
*/
|
|
501
537
|
export const MsgRequestRedemptionResponse = {
|
|
502
538
|
typeUrl: "/injective.insurance.v1beta1.MsgRequestRedemptionResponse",
|
|
503
539
|
is(o) {
|
|
@@ -558,6 +594,11 @@ function createBaseMsgUpdateParams() {
|
|
|
558
594
|
params: Params.fromPartial({})
|
|
559
595
|
};
|
|
560
596
|
}
|
|
597
|
+
/**
|
|
598
|
+
* @name MsgUpdateParams
|
|
599
|
+
* @package injective.insurance.v1beta1
|
|
600
|
+
* @see proto type: injective.insurance.v1beta1.MsgUpdateParams
|
|
601
|
+
*/
|
|
561
602
|
export const MsgUpdateParams = {
|
|
562
603
|
typeUrl: "/injective.insurance.v1beta1.MsgUpdateParams",
|
|
563
604
|
aminoType: "insurance/MsgUpdateParams",
|
|
@@ -649,6 +690,11 @@ export const MsgUpdateParams = {
|
|
|
649
690
|
function createBaseMsgUpdateParamsResponse() {
|
|
650
691
|
return {};
|
|
651
692
|
}
|
|
693
|
+
/**
|
|
694
|
+
* @name MsgUpdateParamsResponse
|
|
695
|
+
* @package injective.insurance.v1beta1
|
|
696
|
+
* @see proto type: injective.insurance.v1beta1.MsgUpdateParamsResponse
|
|
697
|
+
*/
|
|
652
698
|
export const MsgUpdateParamsResponse = {
|
|
653
699
|
typeUrl: "/injective.insurance.v1beta1.MsgUpdateParamsResponse",
|
|
654
700
|
is(o) {
|
|
@@ -1,19 +1,39 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgCreateInsuranceFund, MsgUnderwrite, MsgRequestRedemption, MsgUpdateParams } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* CreateInsuranceFund defines a method for creating an insurance fund
|
|
5
|
+
* @name createInsuranceFund
|
|
6
|
+
* @package injective.insurance.v1beta1
|
|
7
|
+
* @see proto service: injective.insurance.v1beta1.CreateInsuranceFund
|
|
8
|
+
*/
|
|
4
9
|
export const createInsuranceFund = buildTx({
|
|
5
10
|
msg: MsgCreateInsuranceFund
|
|
6
11
|
});
|
|
7
|
-
|
|
8
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Underwrite defines a method for depositing tokens to underwrite an
|
|
14
|
+
* insurance fund
|
|
15
|
+
* @name underwrite
|
|
16
|
+
* @package injective.insurance.v1beta1
|
|
17
|
+
* @see proto service: injective.insurance.v1beta1.Underwrite
|
|
18
|
+
*/
|
|
9
19
|
export const underwrite = buildTx({
|
|
10
20
|
msg: MsgUnderwrite
|
|
11
21
|
});
|
|
12
|
-
|
|
13
|
-
|
|
22
|
+
/**
|
|
23
|
+
* RequestRedemption defines a method for requesting a redemption of the
|
|
24
|
+
* sender's insurance fund tokens
|
|
25
|
+
* @name requestRedemption
|
|
26
|
+
* @package injective.insurance.v1beta1
|
|
27
|
+
* @see proto service: injective.insurance.v1beta1.RequestRedemption
|
|
28
|
+
*/
|
|
14
29
|
export const requestRedemption = buildTx({
|
|
15
30
|
msg: MsgRequestRedemption
|
|
16
31
|
});
|
|
32
|
+
/**
|
|
33
|
+
* @name updateParams
|
|
34
|
+
* @package injective.insurance.v1beta1
|
|
35
|
+
* @see proto service: injective.insurance.v1beta1.UpdateParams
|
|
36
|
+
*/
|
|
17
37
|
export const updateParams = buildTx({
|
|
18
38
|
msg: MsgUpdateParams
|
|
19
39
|
});
|
|
@@ -15,6 +15,12 @@ function createBaseGenesisState() {
|
|
|
15
15
|
pendingPayeeships: []
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* GenesisState defines the OCR module's genesis state.
|
|
20
|
+
* @name GenesisState
|
|
21
|
+
* @package injective.ocr.v1beta1
|
|
22
|
+
* @see proto type: injective.ocr.v1beta1.GenesisState
|
|
23
|
+
*/
|
|
18
24
|
export const GenesisState = {
|
|
19
25
|
typeUrl: "/injective.ocr.v1beta1.GenesisState",
|
|
20
26
|
is(o) {
|
|
@@ -210,6 +216,11 @@ function createBaseFeedTransmission() {
|
|
|
210
216
|
transmission: undefined
|
|
211
217
|
};
|
|
212
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* @name FeedTransmission
|
|
221
|
+
* @package injective.ocr.v1beta1
|
|
222
|
+
* @see proto type: injective.ocr.v1beta1.FeedTransmission
|
|
223
|
+
*/
|
|
213
224
|
export const FeedTransmission = {
|
|
214
225
|
typeUrl: "/injective.ocr.v1beta1.FeedTransmission",
|
|
215
226
|
is(o) {
|
|
@@ -297,6 +308,11 @@ function createBaseFeedEpochAndRound() {
|
|
|
297
308
|
epochAndRound: undefined
|
|
298
309
|
};
|
|
299
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* @name FeedEpochAndRound
|
|
313
|
+
* @package injective.ocr.v1beta1
|
|
314
|
+
* @see proto type: injective.ocr.v1beta1.FeedEpochAndRound
|
|
315
|
+
*/
|
|
300
316
|
export const FeedEpochAndRound = {
|
|
301
317
|
typeUrl: "/injective.ocr.v1beta1.FeedEpochAndRound",
|
|
302
318
|
is(o) {
|
|
@@ -384,6 +400,11 @@ function createBaseFeedLatestAggregatorRoundIDs() {
|
|
|
384
400
|
aggregatorRoundId: BigInt(0)
|
|
385
401
|
};
|
|
386
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* @name FeedLatestAggregatorRoundIDs
|
|
405
|
+
* @package injective.ocr.v1beta1
|
|
406
|
+
* @see proto type: injective.ocr.v1beta1.FeedLatestAggregatorRoundIDs
|
|
407
|
+
*/
|
|
387
408
|
export const FeedLatestAggregatorRoundIDs = {
|
|
388
409
|
typeUrl: "/injective.ocr.v1beta1.FeedLatestAggregatorRoundIDs",
|
|
389
410
|
is(o) {
|
|
@@ -466,6 +487,11 @@ function createBaseRewardPool() {
|
|
|
466
487
|
amount: Coin.fromPartial({})
|
|
467
488
|
};
|
|
468
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* @name RewardPool
|
|
492
|
+
* @package injective.ocr.v1beta1
|
|
493
|
+
* @see proto type: injective.ocr.v1beta1.RewardPool
|
|
494
|
+
*/
|
|
469
495
|
export const RewardPool = {
|
|
470
496
|
typeUrl: "/injective.ocr.v1beta1.RewardPool",
|
|
471
497
|
is(o) {
|
|
@@ -553,6 +579,11 @@ function createBaseFeedCounts() {
|
|
|
553
579
|
counts: []
|
|
554
580
|
};
|
|
555
581
|
}
|
|
582
|
+
/**
|
|
583
|
+
* @name FeedCounts
|
|
584
|
+
* @package injective.ocr.v1beta1
|
|
585
|
+
* @see proto type: injective.ocr.v1beta1.FeedCounts
|
|
586
|
+
*/
|
|
556
587
|
export const FeedCounts = {
|
|
557
588
|
typeUrl: "/injective.ocr.v1beta1.FeedCounts",
|
|
558
589
|
is(o) {
|
|
@@ -643,6 +674,11 @@ function createBaseCount() {
|
|
|
643
674
|
count: BigInt(0)
|
|
644
675
|
};
|
|
645
676
|
}
|
|
677
|
+
/**
|
|
678
|
+
* @name Count
|
|
679
|
+
* @package injective.ocr.v1beta1
|
|
680
|
+
* @see proto type: injective.ocr.v1beta1.Count
|
|
681
|
+
*/
|
|
646
682
|
export const Count = {
|
|
647
683
|
typeUrl: "/injective.ocr.v1beta1.Count",
|
|
648
684
|
is(o) {
|
|
@@ -726,6 +762,11 @@ function createBasePendingPayeeship() {
|
|
|
726
762
|
proposedPayee: ""
|
|
727
763
|
};
|
|
728
764
|
}
|
|
765
|
+
/**
|
|
766
|
+
* @name PendingPayeeship
|
|
767
|
+
* @package injective.ocr.v1beta1
|
|
768
|
+
* @see proto type: injective.ocr.v1beta1.PendingPayeeship
|
|
769
|
+
*/
|
|
729
770
|
export const PendingPayeeship = {
|
|
730
771
|
typeUrl: "/injective.ocr.v1beta1.PendingPayeeship",
|
|
731
772
|
is(o) {
|
|
@@ -11,6 +11,11 @@ function createBaseParams() {
|
|
|
11
11
|
moduleAdmin: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* @name Params
|
|
16
|
+
* @package injective.ocr.v1beta1
|
|
17
|
+
* @see proto type: injective.ocr.v1beta1.Params
|
|
18
|
+
*/
|
|
14
19
|
export const Params = {
|
|
15
20
|
typeUrl: "/injective.ocr.v1beta1.Params",
|
|
16
21
|
aminoType: "ocr/Params",
|
|
@@ -116,6 +121,11 @@ function createBaseFeedConfig() {
|
|
|
116
121
|
moduleParams: undefined
|
|
117
122
|
};
|
|
118
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* @name FeedConfig
|
|
126
|
+
* @package injective.ocr.v1beta1
|
|
127
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfig
|
|
128
|
+
*/
|
|
119
129
|
export const FeedConfig = {
|
|
120
130
|
typeUrl: "/injective.ocr.v1beta1.FeedConfig",
|
|
121
131
|
is(o) {
|
|
@@ -267,6 +277,11 @@ function createBaseFeedConfigInfo() {
|
|
|
267
277
|
latestConfigBlockNumber: BigInt(0)
|
|
268
278
|
};
|
|
269
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
* @name FeedConfigInfo
|
|
282
|
+
* @package injective.ocr.v1beta1
|
|
283
|
+
* @see proto type: injective.ocr.v1beta1.FeedConfigInfo
|
|
284
|
+
*/
|
|
270
285
|
export const FeedConfigInfo = {
|
|
271
286
|
typeUrl: "/injective.ocr.v1beta1.FeedConfigInfo",
|
|
272
287
|
is(o) {
|
|
@@ -390,6 +405,11 @@ function createBaseModuleParams() {
|
|
|
390
405
|
billingAdmin: ""
|
|
391
406
|
};
|
|
392
407
|
}
|
|
408
|
+
/**
|
|
409
|
+
* @name ModuleParams
|
|
410
|
+
* @package injective.ocr.v1beta1
|
|
411
|
+
* @see proto type: injective.ocr.v1beta1.ModuleParams
|
|
412
|
+
*/
|
|
393
413
|
export const ModuleParams = {
|
|
394
414
|
typeUrl: "/injective.ocr.v1beta1.ModuleParams",
|
|
395
415
|
is(o) {
|
|
@@ -565,6 +585,11 @@ function createBaseContractConfig() {
|
|
|
565
585
|
offchainConfig: new Uint8Array()
|
|
566
586
|
};
|
|
567
587
|
}
|
|
588
|
+
/**
|
|
589
|
+
* @name ContractConfig
|
|
590
|
+
* @package injective.ocr.v1beta1
|
|
591
|
+
* @see proto type: injective.ocr.v1beta1.ContractConfig
|
|
592
|
+
*/
|
|
568
593
|
export const ContractConfig = {
|
|
569
594
|
typeUrl: "/injective.ocr.v1beta1.ContractConfig",
|
|
570
595
|
is(o) {
|
|
@@ -709,6 +734,11 @@ function createBaseSetConfigProposal() {
|
|
|
709
734
|
config: undefined
|
|
710
735
|
};
|
|
711
736
|
}
|
|
737
|
+
/**
|
|
738
|
+
* @name SetConfigProposal
|
|
739
|
+
* @package injective.ocr.v1beta1
|
|
740
|
+
* @see proto type: injective.ocr.v1beta1.SetConfigProposal
|
|
741
|
+
*/
|
|
712
742
|
export const SetConfigProposal = {
|
|
713
743
|
typeUrl: "/injective.ocr.v1beta1.SetConfigProposal",
|
|
714
744
|
aminoType: "ocr/SetConfigProposal",
|
|
@@ -825,6 +855,11 @@ function createBaseFeedProperties() {
|
|
|
825
855
|
description: ""
|
|
826
856
|
};
|
|
827
857
|
}
|
|
858
|
+
/**
|
|
859
|
+
* @name FeedProperties
|
|
860
|
+
* @package injective.ocr.v1beta1
|
|
861
|
+
* @see proto type: injective.ocr.v1beta1.FeedProperties
|
|
862
|
+
*/
|
|
828
863
|
export const FeedProperties = {
|
|
829
864
|
typeUrl: "/injective.ocr.v1beta1.FeedProperties",
|
|
830
865
|
is(o) {
|
|
@@ -1010,6 +1045,11 @@ function createBaseSetBatchConfigProposal() {
|
|
|
1010
1045
|
feedProperties: []
|
|
1011
1046
|
};
|
|
1012
1047
|
}
|
|
1048
|
+
/**
|
|
1049
|
+
* @name SetBatchConfigProposal
|
|
1050
|
+
* @package injective.ocr.v1beta1
|
|
1051
|
+
* @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
|
|
1052
|
+
*/
|
|
1013
1053
|
export const SetBatchConfigProposal = {
|
|
1014
1054
|
typeUrl: "/injective.ocr.v1beta1.SetBatchConfigProposal",
|
|
1015
1055
|
aminoType: "ocr/SetBatchConfigProposal",
|
|
@@ -1158,6 +1198,11 @@ function createBaseOracleObservationsCounts() {
|
|
|
1158
1198
|
counts: []
|
|
1159
1199
|
};
|
|
1160
1200
|
}
|
|
1201
|
+
/**
|
|
1202
|
+
* @name OracleObservationsCounts
|
|
1203
|
+
* @package injective.ocr.v1beta1
|
|
1204
|
+
* @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
|
|
1205
|
+
*/
|
|
1161
1206
|
export const OracleObservationsCounts = {
|
|
1162
1207
|
typeUrl: "/injective.ocr.v1beta1.OracleObservationsCounts",
|
|
1163
1208
|
is(o) {
|
|
@@ -1241,6 +1286,12 @@ function createBaseGasReimbursements() {
|
|
|
1241
1286
|
reimbursements: []
|
|
1242
1287
|
};
|
|
1243
1288
|
}
|
|
1289
|
+
/**
|
|
1290
|
+
* LINK-INJ-denominated reimbursements for gas used by transmitters.
|
|
1291
|
+
* @name GasReimbursements
|
|
1292
|
+
* @package injective.ocr.v1beta1
|
|
1293
|
+
* @see proto type: injective.ocr.v1beta1.GasReimbursements
|
|
1294
|
+
*/
|
|
1244
1295
|
export const GasReimbursements = {
|
|
1245
1296
|
typeUrl: "/injective.ocr.v1beta1.GasReimbursements",
|
|
1246
1297
|
is(o) {
|
|
@@ -1320,6 +1371,11 @@ function createBasePayee() {
|
|
|
1320
1371
|
paymentAddr: ""
|
|
1321
1372
|
};
|
|
1322
1373
|
}
|
|
1374
|
+
/**
|
|
1375
|
+
* @name Payee
|
|
1376
|
+
* @package injective.ocr.v1beta1
|
|
1377
|
+
* @see proto type: injective.ocr.v1beta1.Payee
|
|
1378
|
+
*/
|
|
1323
1379
|
export const Payee = {
|
|
1324
1380
|
typeUrl: "/injective.ocr.v1beta1.Payee",
|
|
1325
1381
|
is(o) {
|
|
@@ -1403,6 +1459,13 @@ function createBaseTransmission() {
|
|
|
1403
1459
|
transmissionTimestamp: BigInt(0)
|
|
1404
1460
|
};
|
|
1405
1461
|
}
|
|
1462
|
+
/**
|
|
1463
|
+
* Transmission records the median answer from the transmit transaction at
|
|
1464
|
+
* time timestamp
|
|
1465
|
+
* @name Transmission
|
|
1466
|
+
* @package injective.ocr.v1beta1
|
|
1467
|
+
* @see proto type: injective.ocr.v1beta1.Transmission
|
|
1468
|
+
*/
|
|
1406
1469
|
export const Transmission = {
|
|
1407
1470
|
typeUrl: "/injective.ocr.v1beta1.Transmission",
|
|
1408
1471
|
is(o) {
|
|
@@ -1496,6 +1559,11 @@ function createBaseEpochAndRound() {
|
|
|
1496
1559
|
round: BigInt(0)
|
|
1497
1560
|
};
|
|
1498
1561
|
}
|
|
1562
|
+
/**
|
|
1563
|
+
* @name EpochAndRound
|
|
1564
|
+
* @package injective.ocr.v1beta1
|
|
1565
|
+
* @see proto type: injective.ocr.v1beta1.EpochAndRound
|
|
1566
|
+
*/
|
|
1499
1567
|
export const EpochAndRound = {
|
|
1500
1568
|
typeUrl: "/injective.ocr.v1beta1.EpochAndRound",
|
|
1501
1569
|
is(o) {
|
|
@@ -1579,6 +1647,11 @@ function createBaseReport() {
|
|
|
1579
1647
|
observations: []
|
|
1580
1648
|
};
|
|
1581
1649
|
}
|
|
1650
|
+
/**
|
|
1651
|
+
* @name Report
|
|
1652
|
+
* @package injective.ocr.v1beta1
|
|
1653
|
+
* @see proto type: injective.ocr.v1beta1.Report
|
|
1654
|
+
*/
|
|
1582
1655
|
export const Report = {
|
|
1583
1656
|
typeUrl: "/injective.ocr.v1beta1.Report",
|
|
1584
1657
|
is(o) {
|
|
@@ -1678,6 +1751,11 @@ function createBaseReportToSign() {
|
|
|
1678
1751
|
report: new Uint8Array()
|
|
1679
1752
|
};
|
|
1680
1753
|
}
|
|
1754
|
+
/**
|
|
1755
|
+
* @name ReportToSign
|
|
1756
|
+
* @package injective.ocr.v1beta1
|
|
1757
|
+
* @see proto type: injective.ocr.v1beta1.ReportToSign
|
|
1758
|
+
*/
|
|
1681
1759
|
export const ReportToSign = {
|
|
1682
1760
|
typeUrl: "/injective.ocr.v1beta1.ReportToSign",
|
|
1683
1761
|
is(o) {
|
|
@@ -1794,6 +1872,11 @@ function createBaseEventOraclePaid() {
|
|
|
1794
1872
|
amount: Coin.fromPartial({})
|
|
1795
1873
|
};
|
|
1796
1874
|
}
|
|
1875
|
+
/**
|
|
1876
|
+
* @name EventOraclePaid
|
|
1877
|
+
* @package injective.ocr.v1beta1
|
|
1878
|
+
* @see proto type: injective.ocr.v1beta1.EventOraclePaid
|
|
1879
|
+
*/
|
|
1797
1880
|
export const EventOraclePaid = {
|
|
1798
1881
|
typeUrl: "/injective.ocr.v1beta1.EventOraclePaid",
|
|
1799
1882
|
is(o) {
|
|
@@ -1893,6 +1976,11 @@ function createBaseEventAnswerUpdated() {
|
|
|
1893
1976
|
updatedAt: new Date()
|
|
1894
1977
|
};
|
|
1895
1978
|
}
|
|
1979
|
+
/**
|
|
1980
|
+
* @name EventAnswerUpdated
|
|
1981
|
+
* @package injective.ocr.v1beta1
|
|
1982
|
+
* @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
|
|
1983
|
+
*/
|
|
1896
1984
|
export const EventAnswerUpdated = {
|
|
1897
1985
|
typeUrl: "/injective.ocr.v1beta1.EventAnswerUpdated",
|
|
1898
1986
|
is(o) {
|
|
@@ -1987,6 +2075,11 @@ function createBaseEventNewRound() {
|
|
|
1987
2075
|
startedAt: new Date()
|
|
1988
2076
|
};
|
|
1989
2077
|
}
|
|
2078
|
+
/**
|
|
2079
|
+
* @name EventNewRound
|
|
2080
|
+
* @package injective.ocr.v1beta1
|
|
2081
|
+
* @see proto type: injective.ocr.v1beta1.EventNewRound
|
|
2082
|
+
*/
|
|
1990
2083
|
export const EventNewRound = {
|
|
1991
2084
|
typeUrl: "/injective.ocr.v1beta1.EventNewRound",
|
|
1992
2085
|
is(o) {
|
|
@@ -2080,6 +2173,11 @@ function createBaseEventTransmitted() {
|
|
|
2080
2173
|
epoch: BigInt(0)
|
|
2081
2174
|
};
|
|
2082
2175
|
}
|
|
2176
|
+
/**
|
|
2177
|
+
* @name EventTransmitted
|
|
2178
|
+
* @package injective.ocr.v1beta1
|
|
2179
|
+
* @see proto type: injective.ocr.v1beta1.EventTransmitted
|
|
2180
|
+
*/
|
|
2083
2181
|
export const EventTransmitted = {
|
|
2084
2182
|
typeUrl: "/injective.ocr.v1beta1.EventTransmitted",
|
|
2085
2183
|
is(o) {
|
|
@@ -2169,6 +2267,11 @@ function createBaseEventNewTransmission() {
|
|
|
2169
2267
|
epochAndRound: undefined
|
|
2170
2268
|
};
|
|
2171
2269
|
}
|
|
2270
|
+
/**
|
|
2271
|
+
* @name EventNewTransmission
|
|
2272
|
+
* @package injective.ocr.v1beta1
|
|
2273
|
+
* @see proto type: injective.ocr.v1beta1.EventNewTransmission
|
|
2274
|
+
*/
|
|
2172
2275
|
export const EventNewTransmission = {
|
|
2173
2276
|
typeUrl: "/injective.ocr.v1beta1.EventNewTransmission",
|
|
2174
2277
|
is(o) {
|
|
@@ -2338,6 +2441,11 @@ function createBaseEventConfigSet() {
|
|
|
2338
2441
|
configInfo: undefined
|
|
2339
2442
|
};
|
|
2340
2443
|
}
|
|
2444
|
+
/**
|
|
2445
|
+
* @name EventConfigSet
|
|
2446
|
+
* @package injective.ocr.v1beta1
|
|
2447
|
+
* @see proto type: injective.ocr.v1beta1.EventConfigSet
|
|
2448
|
+
*/
|
|
2341
2449
|
export const EventConfigSet = {
|
|
2342
2450
|
typeUrl: "/injective.ocr.v1beta1.EventConfigSet",
|
|
2343
2451
|
is(o) {
|