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
|
@@ -8,6 +8,16 @@ function createBasePubKey() {
|
|
|
8
8
|
key: new Uint8Array()
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* PubKey is an ed25519 public key for handling Tendermint keys in SDK.
|
|
13
|
+
* It's needed for Any serialization and SDK compatibility.
|
|
14
|
+
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
15
|
+
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
16
|
+
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
17
|
+
* @name PubKey
|
|
18
|
+
* @package cosmos.crypto.ed25519
|
|
19
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
20
|
+
*/
|
|
11
21
|
exports.PubKey = {
|
|
12
22
|
typeUrl: "/cosmos.crypto.ed25519.PubKey",
|
|
13
23
|
aminoType: "tendermint/PubKeyEd25519",
|
|
@@ -85,6 +95,13 @@ function createBasePrivKey() {
|
|
|
85
95
|
key: new Uint8Array()
|
|
86
96
|
};
|
|
87
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* PrivKey defines a ed25519 private key.
|
|
100
|
+
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
101
|
+
* @name PrivKey
|
|
102
|
+
* @package cosmos.crypto.ed25519
|
|
103
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
104
|
+
*/
|
|
88
105
|
exports.PrivKey = {
|
|
89
106
|
typeUrl: "/cosmos.crypto.ed25519.PrivKey",
|
|
90
107
|
aminoType: "tendermint/PrivKeyEd25519",
|
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
4
4
|
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
5
5
|
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
6
6
|
* signed and with which modes.
|
|
7
|
+
* @name MultiSignature
|
|
8
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
9
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
7
10
|
*/
|
|
8
11
|
export interface MultiSignature {
|
|
9
12
|
signatures: Uint8Array[];
|
|
@@ -16,6 +19,9 @@ export interface MultiSignatureProtoMsg {
|
|
|
16
19
|
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
17
20
|
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
18
21
|
* signed and with which modes.
|
|
22
|
+
* @name MultiSignatureAmino
|
|
23
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
24
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
19
25
|
*/
|
|
20
26
|
export interface MultiSignatureAmino {
|
|
21
27
|
signatures: string[];
|
|
@@ -29,6 +35,9 @@ export interface MultiSignatureAminoMsg {
|
|
|
29
35
|
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
30
36
|
* space after proto encoding.
|
|
31
37
|
* This is not thread safe, and is not intended for concurrent usage.
|
|
38
|
+
* @name CompactBitArray
|
|
39
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
40
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
32
41
|
*/
|
|
33
42
|
export interface CompactBitArray {
|
|
34
43
|
extraBitsStored: number;
|
|
@@ -43,6 +52,9 @@ export interface CompactBitArrayProtoMsg {
|
|
|
43
52
|
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
44
53
|
* space after proto encoding.
|
|
45
54
|
* This is not thread safe, and is not intended for concurrent usage.
|
|
55
|
+
* @name CompactBitArrayAmino
|
|
56
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
57
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
46
58
|
*/
|
|
47
59
|
export interface CompactBitArrayAmino {
|
|
48
60
|
extra_bits_stored: number;
|
|
@@ -52,6 +64,14 @@ export interface CompactBitArrayAminoMsg {
|
|
|
52
64
|
type: "cosmos-sdk/CompactBitArray";
|
|
53
65
|
value: CompactBitArrayAmino;
|
|
54
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
69
|
+
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
70
|
+
* signed and with which modes.
|
|
71
|
+
* @name MultiSignature
|
|
72
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
73
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
74
|
+
*/
|
|
55
75
|
export declare const MultiSignature: {
|
|
56
76
|
typeUrl: string;
|
|
57
77
|
aminoType: string;
|
|
@@ -69,6 +89,15 @@ export declare const MultiSignature: {
|
|
|
69
89
|
toProtoMsg(message: MultiSignature): MultiSignatureProtoMsg;
|
|
70
90
|
registerTypeUrl(): void;
|
|
71
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* CompactBitArray is an implementation of a space efficient bit array.
|
|
94
|
+
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
95
|
+
* space after proto encoding.
|
|
96
|
+
* This is not thread safe, and is not intended for concurrent usage.
|
|
97
|
+
* @name CompactBitArray
|
|
98
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
99
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
100
|
+
*/
|
|
72
101
|
export declare const CompactBitArray: {
|
|
73
102
|
typeUrl: string;
|
|
74
103
|
aminoType: string;
|
|
@@ -8,6 +8,14 @@ function createBaseMultiSignature() {
|
|
|
8
8
|
signatures: []
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
13
|
+
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
14
|
+
* signed and with which modes.
|
|
15
|
+
* @name MultiSignature
|
|
16
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
17
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
18
|
+
*/
|
|
11
19
|
exports.MultiSignature = {
|
|
12
20
|
typeUrl: "/cosmos.crypto.multisig.v1beta1.MultiSignature",
|
|
13
21
|
aminoType: "cosmos-sdk/MultiSignature",
|
|
@@ -89,6 +97,15 @@ function createBaseCompactBitArray() {
|
|
|
89
97
|
elems: new Uint8Array()
|
|
90
98
|
};
|
|
91
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* CompactBitArray is an implementation of a space efficient bit array.
|
|
102
|
+
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
103
|
+
* space after proto encoding.
|
|
104
|
+
* This is not thread safe, and is not intended for concurrent usage.
|
|
105
|
+
* @name CompactBitArray
|
|
106
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
107
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
108
|
+
*/
|
|
92
109
|
exports.CompactBitArray = {
|
|
93
110
|
typeUrl: "/cosmos.crypto.multisig.v1beta1.CompactBitArray",
|
|
94
111
|
aminoType: "cosmos-sdk/CompactBitArray",
|
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
7
7
|
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
8
8
|
* This prefix is followed with the x-coordinate.
|
|
9
|
+
* @name PubKey
|
|
10
|
+
* @package cosmos.crypto.secp256k1
|
|
11
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
9
12
|
*/
|
|
10
13
|
export interface PubKey {
|
|
11
14
|
key: Uint8Array;
|
|
@@ -20,6 +23,9 @@ export interface PubKeyProtoMsg {
|
|
|
20
23
|
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
21
24
|
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
22
25
|
* This prefix is followed with the x-coordinate.
|
|
26
|
+
* @name PubKeyAmino
|
|
27
|
+
* @package cosmos.crypto.secp256k1
|
|
28
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
23
29
|
*/
|
|
24
30
|
export interface PubKeyAmino {
|
|
25
31
|
key: string;
|
|
@@ -28,7 +34,12 @@ export interface PubKeyAminoMsg {
|
|
|
28
34
|
type: "tendermint/PubKeySecp256k1";
|
|
29
35
|
value: PubKeyAmino;
|
|
30
36
|
}
|
|
31
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* PrivKey defines a secp256k1 private key.
|
|
39
|
+
* @name PrivKey
|
|
40
|
+
* @package cosmos.crypto.secp256k1
|
|
41
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
42
|
+
*/
|
|
32
43
|
export interface PrivKey {
|
|
33
44
|
key: Uint8Array;
|
|
34
45
|
}
|
|
@@ -36,7 +47,12 @@ export interface PrivKeyProtoMsg {
|
|
|
36
47
|
typeUrl: "/cosmos.crypto.secp256k1.PrivKey";
|
|
37
48
|
value: Uint8Array;
|
|
38
49
|
}
|
|
39
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* PrivKey defines a secp256k1 private key.
|
|
52
|
+
* @name PrivKeyAmino
|
|
53
|
+
* @package cosmos.crypto.secp256k1
|
|
54
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
55
|
+
*/
|
|
40
56
|
export interface PrivKeyAmino {
|
|
41
57
|
key: string;
|
|
42
58
|
}
|
|
@@ -44,6 +60,16 @@ export interface PrivKeyAminoMsg {
|
|
|
44
60
|
type: "tendermint/PrivKeySecp256k1";
|
|
45
61
|
value: PrivKeyAmino;
|
|
46
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* PubKey defines a secp256k1 public key
|
|
65
|
+
* Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
|
|
66
|
+
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
67
|
+
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
68
|
+
* This prefix is followed with the x-coordinate.
|
|
69
|
+
* @name PubKey
|
|
70
|
+
* @package cosmos.crypto.secp256k1
|
|
71
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
72
|
+
*/
|
|
47
73
|
export declare const PubKey: {
|
|
48
74
|
typeUrl: string;
|
|
49
75
|
aminoType: string;
|
|
@@ -61,6 +87,12 @@ export declare const PubKey: {
|
|
|
61
87
|
toProtoMsg(message: PubKey): PubKeyProtoMsg;
|
|
62
88
|
registerTypeUrl(): void;
|
|
63
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* PrivKey defines a secp256k1 private key.
|
|
92
|
+
* @name PrivKey
|
|
93
|
+
* @package cosmos.crypto.secp256k1
|
|
94
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
95
|
+
*/
|
|
64
96
|
export declare const PrivKey: {
|
|
65
97
|
typeUrl: string;
|
|
66
98
|
aminoType: string;
|
|
@@ -8,6 +8,16 @@ function createBasePubKey() {
|
|
|
8
8
|
key: new Uint8Array()
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* PubKey defines a secp256k1 public key
|
|
13
|
+
* Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
|
|
14
|
+
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
15
|
+
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
16
|
+
* This prefix is followed with the x-coordinate.
|
|
17
|
+
* @name PubKey
|
|
18
|
+
* @package cosmos.crypto.secp256k1
|
|
19
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
20
|
+
*/
|
|
11
21
|
exports.PubKey = {
|
|
12
22
|
typeUrl: "/cosmos.crypto.secp256k1.PubKey",
|
|
13
23
|
aminoType: "tendermint/PubKeySecp256k1",
|
|
@@ -85,6 +95,12 @@ function createBasePrivKey() {
|
|
|
85
95
|
key: new Uint8Array()
|
|
86
96
|
};
|
|
87
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* PrivKey defines a secp256k1 private key.
|
|
100
|
+
* @name PrivKey
|
|
101
|
+
* @package cosmos.crypto.secp256k1
|
|
102
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
103
|
+
*/
|
|
88
104
|
exports.PrivKey = {
|
|
89
105
|
typeUrl: "/cosmos.crypto.secp256k1.PrivKey",
|
|
90
106
|
aminoType: "tendermint/PrivKeySecp256k1",
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
5
|
+
* @name PubKey
|
|
6
|
+
* @package cosmos.crypto.secp256r1
|
|
7
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
8
|
+
*/
|
|
4
9
|
export interface PubKey {
|
|
5
10
|
/**
|
|
6
11
|
* Point on secp256r1 curve in a compressed representation as specified in section
|
|
@@ -12,7 +17,12 @@ export interface PubKeyProtoMsg {
|
|
|
12
17
|
typeUrl: "/cosmos.crypto.secp256r1.PubKey";
|
|
13
18
|
value: Uint8Array;
|
|
14
19
|
}
|
|
15
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
22
|
+
* @name PubKeyAmino
|
|
23
|
+
* @package cosmos.crypto.secp256r1
|
|
24
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
25
|
+
*/
|
|
16
26
|
export interface PubKeyAmino {
|
|
17
27
|
/**
|
|
18
28
|
* Point on secp256r1 curve in a compressed representation as specified in section
|
|
@@ -24,24 +34,44 @@ export interface PubKeyAminoMsg {
|
|
|
24
34
|
type: "cosmos-sdk/PubKey";
|
|
25
35
|
value: PubKeyAmino;
|
|
26
36
|
}
|
|
27
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
39
|
+
* @name PrivKey
|
|
40
|
+
* @package cosmos.crypto.secp256r1
|
|
41
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
42
|
+
*/
|
|
28
43
|
export interface PrivKey {
|
|
29
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* secret number serialized using big-endian encoding
|
|
46
|
+
*/
|
|
30
47
|
secret: Uint8Array;
|
|
31
48
|
}
|
|
32
49
|
export interface PrivKeyProtoMsg {
|
|
33
50
|
typeUrl: "/cosmos.crypto.secp256r1.PrivKey";
|
|
34
51
|
value: Uint8Array;
|
|
35
52
|
}
|
|
36
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
55
|
+
* @name PrivKeyAmino
|
|
56
|
+
* @package cosmos.crypto.secp256r1
|
|
57
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
58
|
+
*/
|
|
37
59
|
export interface PrivKeyAmino {
|
|
38
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* secret number serialized using big-endian encoding
|
|
62
|
+
*/
|
|
39
63
|
secret: string;
|
|
40
64
|
}
|
|
41
65
|
export interface PrivKeyAminoMsg {
|
|
42
66
|
type: "cosmos-sdk/PrivKey";
|
|
43
67
|
value: PrivKeyAmino;
|
|
44
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
71
|
+
* @name PubKey
|
|
72
|
+
* @package cosmos.crypto.secp256r1
|
|
73
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
74
|
+
*/
|
|
45
75
|
export declare const PubKey: {
|
|
46
76
|
typeUrl: string;
|
|
47
77
|
aminoType: string;
|
|
@@ -59,6 +89,12 @@ export declare const PubKey: {
|
|
|
59
89
|
toProtoMsg(message: PubKey): PubKeyProtoMsg;
|
|
60
90
|
registerTypeUrl(): void;
|
|
61
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
94
|
+
* @name PrivKey
|
|
95
|
+
* @package cosmos.crypto.secp256r1
|
|
96
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
97
|
+
*/
|
|
62
98
|
export declare const PrivKey: {
|
|
63
99
|
typeUrl: string;
|
|
64
100
|
aminoType: string;
|
|
@@ -8,6 +8,12 @@ function createBasePubKey() {
|
|
|
8
8
|
key: new Uint8Array()
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
13
|
+
* @name PubKey
|
|
14
|
+
* @package cosmos.crypto.secp256r1
|
|
15
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
16
|
+
*/
|
|
11
17
|
exports.PubKey = {
|
|
12
18
|
typeUrl: "/cosmos.crypto.secp256r1.PubKey",
|
|
13
19
|
aminoType: "cosmos-sdk/PubKey",
|
|
@@ -85,6 +91,12 @@ function createBasePrivKey() {
|
|
|
85
91
|
secret: new Uint8Array()
|
|
86
92
|
};
|
|
87
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
96
|
+
* @name PrivKey
|
|
97
|
+
* @package cosmos.crypto.secp256r1
|
|
98
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
99
|
+
*/
|
|
88
100
|
exports.PrivKey = {
|
|
89
101
|
typeUrl: "/cosmos.crypto.secp256r1.PrivKey",
|
|
90
102
|
aminoType: "cosmos-sdk/PrivKey",
|