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
|
@@ -14,6 +14,24 @@ function createBaseMsgSetOrchestratorAddresses() {
|
|
|
14
14
|
ethAddress: ""
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgSetOrchestratorAddresses
|
|
19
|
+
* this message allows validators to delegate their voting responsibilities
|
|
20
|
+
* to a given key. This key is then used as an optional authentication method
|
|
21
|
+
* for sigining oracle claims
|
|
22
|
+
* VALIDATOR
|
|
23
|
+
* The validator field is a cosmosvaloper1... string (i.e. sdk.ValAddress)
|
|
24
|
+
* that references a validator in the active set
|
|
25
|
+
* ORCHESTRATOR
|
|
26
|
+
* The orchestrator field is a cosmos1... string (i.e. sdk.AccAddress) that
|
|
27
|
+
* references the key that is being delegated to
|
|
28
|
+
* ETH_ADDRESS
|
|
29
|
+
* This is a hex encoded 0x Ethereum public key that will be used by this
|
|
30
|
+
* validator on Ethereum
|
|
31
|
+
* @name MsgSetOrchestratorAddresses
|
|
32
|
+
* @package injective.peggy.v1
|
|
33
|
+
* @see proto type: injective.peggy.v1.MsgSetOrchestratorAddresses
|
|
34
|
+
*/
|
|
17
35
|
exports.MsgSetOrchestratorAddresses = {
|
|
18
36
|
typeUrl: "/injective.peggy.v1.MsgSetOrchestratorAddresses",
|
|
19
37
|
aminoType: "peggy/MsgSetOrchestratorAddresses",
|
|
@@ -111,6 +129,11 @@ exports.MsgSetOrchestratorAddresses = {
|
|
|
111
129
|
function createBaseMsgSetOrchestratorAddressesResponse() {
|
|
112
130
|
return {};
|
|
113
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* @name MsgSetOrchestratorAddressesResponse
|
|
134
|
+
* @package injective.peggy.v1
|
|
135
|
+
* @see proto type: injective.peggy.v1.MsgSetOrchestratorAddressesResponse
|
|
136
|
+
*/
|
|
114
137
|
exports.MsgSetOrchestratorAddressesResponse = {
|
|
115
138
|
typeUrl: "/injective.peggy.v1.MsgSetOrchestratorAddressesResponse",
|
|
116
139
|
is(o) {
|
|
@@ -173,6 +196,26 @@ function createBaseMsgValsetConfirm() {
|
|
|
173
196
|
signature: ""
|
|
174
197
|
};
|
|
175
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* MsgValsetConfirm
|
|
201
|
+
* this is the message sent by the validators when they wish to submit their
|
|
202
|
+
* signatures over the validator set at a given block height. A validator must
|
|
203
|
+
* first call MsgSetEthAddress to set their Ethereum address to be used for
|
|
204
|
+
* signing. Then someone (anyone) must make a ValsetRequest the request is
|
|
205
|
+
* essentially a messaging mechanism to determine which block all validators
|
|
206
|
+
* should submit signatures over. Finally validators sign the validator set,
|
|
207
|
+
* powers, and Ethereum addresses of the entire validator set at the height of a
|
|
208
|
+
* ValsetRequest and submit that signature with this message.
|
|
209
|
+
*
|
|
210
|
+
* If a sufficient number of validators (66% of voting power) (A) have set
|
|
211
|
+
* Ethereum addresses and (B) submit ValsetConfirm messages with their
|
|
212
|
+
* signatures it is then possible for anyone to view these signatures in the
|
|
213
|
+
* chain store and submit them to Ethereum to update the validator set
|
|
214
|
+
* -------------
|
|
215
|
+
* @name MsgValsetConfirm
|
|
216
|
+
* @package injective.peggy.v1
|
|
217
|
+
* @see proto type: injective.peggy.v1.MsgValsetConfirm
|
|
218
|
+
*/
|
|
176
219
|
exports.MsgValsetConfirm = {
|
|
177
220
|
typeUrl: "/injective.peggy.v1.MsgValsetConfirm",
|
|
178
221
|
aminoType: "peggy/MsgValsetConfirm",
|
|
@@ -281,6 +324,11 @@ exports.MsgValsetConfirm = {
|
|
|
281
324
|
function createBaseMsgValsetConfirmResponse() {
|
|
282
325
|
return {};
|
|
283
326
|
}
|
|
327
|
+
/**
|
|
328
|
+
* @name MsgValsetConfirmResponse
|
|
329
|
+
* @package injective.peggy.v1
|
|
330
|
+
* @see proto type: injective.peggy.v1.MsgValsetConfirmResponse
|
|
331
|
+
*/
|
|
284
332
|
exports.MsgValsetConfirmResponse = {
|
|
285
333
|
typeUrl: "/injective.peggy.v1.MsgValsetConfirmResponse",
|
|
286
334
|
is(o) {
|
|
@@ -343,6 +391,23 @@ function createBaseMsgSendToEth() {
|
|
|
343
391
|
bridgeFee: coin_1.Coin.fromPartial({})
|
|
344
392
|
};
|
|
345
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* MsgSendToEth
|
|
396
|
+
* This is the message that a user calls when they want to bridge an asset
|
|
397
|
+
* it will later be removed when it is included in a batch and successfully
|
|
398
|
+
* submitted tokens are removed from the users balance immediately
|
|
399
|
+
* -------------
|
|
400
|
+
* AMOUNT:
|
|
401
|
+
* the coin to send across the bridge, note the restriction that this is a
|
|
402
|
+
* single coin not a set of coins that is normal in other Cosmos messages
|
|
403
|
+
* FEE:
|
|
404
|
+
* the fee paid for the bridge, distinct from the fee paid to the chain to
|
|
405
|
+
* actually send this message in the first place. So a successful send has
|
|
406
|
+
* two layers of fees for the user
|
|
407
|
+
* @name MsgSendToEth
|
|
408
|
+
* @package injective.peggy.v1
|
|
409
|
+
* @see proto type: injective.peggy.v1.MsgSendToEth
|
|
410
|
+
*/
|
|
346
411
|
exports.MsgSendToEth = {
|
|
347
412
|
typeUrl: "/injective.peggy.v1.MsgSendToEth",
|
|
348
413
|
aminoType: "peggy/MsgSendToEth",
|
|
@@ -456,6 +521,11 @@ exports.MsgSendToEth = {
|
|
|
456
521
|
function createBaseMsgSendToEthResponse() {
|
|
457
522
|
return {};
|
|
458
523
|
}
|
|
524
|
+
/**
|
|
525
|
+
* @name MsgSendToEthResponse
|
|
526
|
+
* @package injective.peggy.v1
|
|
527
|
+
* @see proto type: injective.peggy.v1.MsgSendToEthResponse
|
|
528
|
+
*/
|
|
459
529
|
exports.MsgSendToEthResponse = {
|
|
460
530
|
typeUrl: "/injective.peggy.v1.MsgSendToEthResponse",
|
|
461
531
|
is(o) {
|
|
@@ -516,6 +586,20 @@ function createBaseMsgRequestBatch() {
|
|
|
516
586
|
denom: ""
|
|
517
587
|
};
|
|
518
588
|
}
|
|
589
|
+
/**
|
|
590
|
+
* MsgRequestBatch
|
|
591
|
+
* this is a message anyone can send that requests a batch of transactions to
|
|
592
|
+
* send across the bridge be created for whatever block height this message is
|
|
593
|
+
* included in. This acts as a coordination point, the handler for this message
|
|
594
|
+
* looks at the AddToOutgoingPool tx's in the store and generates a batch, also
|
|
595
|
+
* available in the store tied to this message. The validators then grab this
|
|
596
|
+
* batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer
|
|
597
|
+
* can finally submit the batch
|
|
598
|
+
* -------------
|
|
599
|
+
* @name MsgRequestBatch
|
|
600
|
+
* @package injective.peggy.v1
|
|
601
|
+
* @see proto type: injective.peggy.v1.MsgRequestBatch
|
|
602
|
+
*/
|
|
519
603
|
exports.MsgRequestBatch = {
|
|
520
604
|
typeUrl: "/injective.peggy.v1.MsgRequestBatch",
|
|
521
605
|
aminoType: "peggy/MsgRequestBatch",
|
|
@@ -602,6 +686,11 @@ exports.MsgRequestBatch = {
|
|
|
602
686
|
function createBaseMsgRequestBatchResponse() {
|
|
603
687
|
return {};
|
|
604
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* @name MsgRequestBatchResponse
|
|
691
|
+
* @package injective.peggy.v1
|
|
692
|
+
* @see proto type: injective.peggy.v1.MsgRequestBatchResponse
|
|
693
|
+
*/
|
|
605
694
|
exports.MsgRequestBatchResponse = {
|
|
606
695
|
typeUrl: "/injective.peggy.v1.MsgRequestBatchResponse",
|
|
607
696
|
is(o) {
|
|
@@ -665,6 +754,19 @@ function createBaseMsgConfirmBatch() {
|
|
|
665
754
|
signature: ""
|
|
666
755
|
};
|
|
667
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* MsgConfirmBatch
|
|
759
|
+
* When validators observe a MsgRequestBatch they form a batch by ordering
|
|
760
|
+
* transactions currently in the txqueue in order of highest to lowest fee,
|
|
761
|
+
* cutting off when the batch either reaches a hardcoded maximum size (to be
|
|
762
|
+
* decided, probably around 100) or when transactions stop being profitable
|
|
763
|
+
* (TODO determine this without nondeterminism) This message includes the batch
|
|
764
|
+
* as well as an Ethereum signature over this batch by the validator
|
|
765
|
+
* -------------
|
|
766
|
+
* @name MsgConfirmBatch
|
|
767
|
+
* @package injective.peggy.v1
|
|
768
|
+
* @see proto type: injective.peggy.v1.MsgConfirmBatch
|
|
769
|
+
*/
|
|
668
770
|
exports.MsgConfirmBatch = {
|
|
669
771
|
typeUrl: "/injective.peggy.v1.MsgConfirmBatch",
|
|
670
772
|
aminoType: "peggy/MsgConfirmBatch",
|
|
@@ -784,6 +886,11 @@ exports.MsgConfirmBatch = {
|
|
|
784
886
|
function createBaseMsgConfirmBatchResponse() {
|
|
785
887
|
return {};
|
|
786
888
|
}
|
|
889
|
+
/**
|
|
890
|
+
* @name MsgConfirmBatchResponse
|
|
891
|
+
* @package injective.peggy.v1
|
|
892
|
+
* @see proto type: injective.peggy.v1.MsgConfirmBatchResponse
|
|
893
|
+
*/
|
|
787
894
|
exports.MsgConfirmBatchResponse = {
|
|
788
895
|
typeUrl: "/injective.peggy.v1.MsgConfirmBatchResponse",
|
|
789
896
|
is(o) {
|
|
@@ -850,6 +957,16 @@ function createBaseMsgDepositClaim() {
|
|
|
850
957
|
data: ""
|
|
851
958
|
};
|
|
852
959
|
}
|
|
960
|
+
/**
|
|
961
|
+
* EthereumBridgeDepositClaim
|
|
962
|
+
* When more than 66% of the active validator set has
|
|
963
|
+
* claimed to have seen the deposit enter the ethereum blockchain coins are
|
|
964
|
+
* issued to the Cosmos address in question
|
|
965
|
+
* -------------
|
|
966
|
+
* @name MsgDepositClaim
|
|
967
|
+
* @package injective.peggy.v1
|
|
968
|
+
* @see proto type: injective.peggy.v1.MsgDepositClaim
|
|
969
|
+
*/
|
|
853
970
|
exports.MsgDepositClaim = {
|
|
854
971
|
typeUrl: "/injective.peggy.v1.MsgDepositClaim",
|
|
855
972
|
aminoType: "peggy/MsgDepositClaim",
|
|
@@ -1002,6 +1119,11 @@ exports.MsgDepositClaim = {
|
|
|
1002
1119
|
function createBaseMsgDepositClaimResponse() {
|
|
1003
1120
|
return {};
|
|
1004
1121
|
}
|
|
1122
|
+
/**
|
|
1123
|
+
* @name MsgDepositClaimResponse
|
|
1124
|
+
* @package injective.peggy.v1
|
|
1125
|
+
* @see proto type: injective.peggy.v1.MsgDepositClaimResponse
|
|
1126
|
+
*/
|
|
1005
1127
|
exports.MsgDepositClaimResponse = {
|
|
1006
1128
|
typeUrl: "/injective.peggy.v1.MsgDepositClaimResponse",
|
|
1007
1129
|
is(o) {
|
|
@@ -1065,6 +1187,13 @@ function createBaseMsgWithdrawClaim() {
|
|
|
1065
1187
|
orchestrator: ""
|
|
1066
1188
|
};
|
|
1067
1189
|
}
|
|
1190
|
+
/**
|
|
1191
|
+
* WithdrawClaim claims that a batch of withdrawal
|
|
1192
|
+
* operations on the bridge contract was executed.
|
|
1193
|
+
* @name MsgWithdrawClaim
|
|
1194
|
+
* @package injective.peggy.v1
|
|
1195
|
+
* @see proto type: injective.peggy.v1.MsgWithdrawClaim
|
|
1196
|
+
*/
|
|
1068
1197
|
exports.MsgWithdrawClaim = {
|
|
1069
1198
|
typeUrl: "/injective.peggy.v1.MsgWithdrawClaim",
|
|
1070
1199
|
aminoType: "peggy/MsgWithdrawClaim",
|
|
@@ -1184,6 +1313,11 @@ exports.MsgWithdrawClaim = {
|
|
|
1184
1313
|
function createBaseMsgWithdrawClaimResponse() {
|
|
1185
1314
|
return {};
|
|
1186
1315
|
}
|
|
1316
|
+
/**
|
|
1317
|
+
* @name MsgWithdrawClaimResponse
|
|
1318
|
+
* @package injective.peggy.v1
|
|
1319
|
+
* @see proto type: injective.peggy.v1.MsgWithdrawClaimResponse
|
|
1320
|
+
*/
|
|
1187
1321
|
exports.MsgWithdrawClaimResponse = {
|
|
1188
1322
|
typeUrl: "/injective.peggy.v1.MsgWithdrawClaimResponse",
|
|
1189
1323
|
is(o) {
|
|
@@ -1250,6 +1384,14 @@ function createBaseMsgERC20DeployedClaim() {
|
|
|
1250
1384
|
orchestrator: ""
|
|
1251
1385
|
};
|
|
1252
1386
|
}
|
|
1387
|
+
/**
|
|
1388
|
+
* ERC20DeployedClaim allows the Cosmos module
|
|
1389
|
+
* to learn about an ERC20 that someone deployed
|
|
1390
|
+
* to represent a Cosmos asset
|
|
1391
|
+
* @name MsgERC20DeployedClaim
|
|
1392
|
+
* @package injective.peggy.v1
|
|
1393
|
+
* @see proto type: injective.peggy.v1.MsgERC20DeployedClaim
|
|
1394
|
+
*/
|
|
1253
1395
|
exports.MsgERC20DeployedClaim = {
|
|
1254
1396
|
typeUrl: "/injective.peggy.v1.MsgERC20DeployedClaim",
|
|
1255
1397
|
aminoType: "peggy/MsgERC20DeployedClaim",
|
|
@@ -1402,6 +1544,11 @@ exports.MsgERC20DeployedClaim = {
|
|
|
1402
1544
|
function createBaseMsgERC20DeployedClaimResponse() {
|
|
1403
1545
|
return {};
|
|
1404
1546
|
}
|
|
1547
|
+
/**
|
|
1548
|
+
* @name MsgERC20DeployedClaimResponse
|
|
1549
|
+
* @package injective.peggy.v1
|
|
1550
|
+
* @see proto type: injective.peggy.v1.MsgERC20DeployedClaimResponse
|
|
1551
|
+
*/
|
|
1405
1552
|
exports.MsgERC20DeployedClaimResponse = {
|
|
1406
1553
|
typeUrl: "/injective.peggy.v1.MsgERC20DeployedClaimResponse",
|
|
1407
1554
|
is(o) {
|
|
@@ -1462,6 +1609,14 @@ function createBaseMsgCancelSendToEth() {
|
|
|
1462
1609
|
sender: ""
|
|
1463
1610
|
};
|
|
1464
1611
|
}
|
|
1612
|
+
/**
|
|
1613
|
+
* This call allows the sender (and only the sender)
|
|
1614
|
+
* to cancel a given MsgSendToEth and recieve a refund
|
|
1615
|
+
* of the tokens
|
|
1616
|
+
* @name MsgCancelSendToEth
|
|
1617
|
+
* @package injective.peggy.v1
|
|
1618
|
+
* @see proto type: injective.peggy.v1.MsgCancelSendToEth
|
|
1619
|
+
*/
|
|
1465
1620
|
exports.MsgCancelSendToEth = {
|
|
1466
1621
|
typeUrl: "/injective.peggy.v1.MsgCancelSendToEth",
|
|
1467
1622
|
aminoType: "peggy/MsgCancelSendToEth",
|
|
@@ -1548,6 +1703,11 @@ exports.MsgCancelSendToEth = {
|
|
|
1548
1703
|
function createBaseMsgCancelSendToEthResponse() {
|
|
1549
1704
|
return {};
|
|
1550
1705
|
}
|
|
1706
|
+
/**
|
|
1707
|
+
* @name MsgCancelSendToEthResponse
|
|
1708
|
+
* @package injective.peggy.v1
|
|
1709
|
+
* @see proto type: injective.peggy.v1.MsgCancelSendToEthResponse
|
|
1710
|
+
*/
|
|
1551
1711
|
exports.MsgCancelSendToEthResponse = {
|
|
1552
1712
|
typeUrl: "/injective.peggy.v1.MsgCancelSendToEthResponse",
|
|
1553
1713
|
is(o) {
|
|
@@ -1609,6 +1769,14 @@ function createBaseMsgSubmitBadSignatureEvidence() {
|
|
|
1609
1769
|
sender: ""
|
|
1610
1770
|
};
|
|
1611
1771
|
}
|
|
1772
|
+
/**
|
|
1773
|
+
* This call allows anyone to submit evidence that a
|
|
1774
|
+
* validator has signed a valset, batch, or logic call that never
|
|
1775
|
+
* existed. Subject contains the batch, valset, or logic call.
|
|
1776
|
+
* @name MsgSubmitBadSignatureEvidence
|
|
1777
|
+
* @package injective.peggy.v1
|
|
1778
|
+
* @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidence
|
|
1779
|
+
*/
|
|
1612
1780
|
exports.MsgSubmitBadSignatureEvidence = {
|
|
1613
1781
|
typeUrl: "/injective.peggy.v1.MsgSubmitBadSignatureEvidence",
|
|
1614
1782
|
aminoType: "peggy/MsgSubmitBadSignatureEvidence",
|
|
@@ -1706,6 +1874,11 @@ exports.MsgSubmitBadSignatureEvidence = {
|
|
|
1706
1874
|
function createBaseMsgSubmitBadSignatureEvidenceResponse() {
|
|
1707
1875
|
return {};
|
|
1708
1876
|
}
|
|
1877
|
+
/**
|
|
1878
|
+
* @name MsgSubmitBadSignatureEvidenceResponse
|
|
1879
|
+
* @package injective.peggy.v1
|
|
1880
|
+
* @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse
|
|
1881
|
+
*/
|
|
1709
1882
|
exports.MsgSubmitBadSignatureEvidenceResponse = {
|
|
1710
1883
|
typeUrl: "/injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse",
|
|
1711
1884
|
is(o) {
|
|
@@ -1771,6 +1944,13 @@ function createBaseMsgValsetUpdatedClaim() {
|
|
|
1771
1944
|
orchestrator: ""
|
|
1772
1945
|
};
|
|
1773
1946
|
}
|
|
1947
|
+
/**
|
|
1948
|
+
* This informs the Cosmos module that a validator
|
|
1949
|
+
* set has been updated.
|
|
1950
|
+
* @name MsgValsetUpdatedClaim
|
|
1951
|
+
* @package injective.peggy.v1
|
|
1952
|
+
* @see proto type: injective.peggy.v1.MsgValsetUpdatedClaim
|
|
1953
|
+
*/
|
|
1774
1954
|
exports.MsgValsetUpdatedClaim = {
|
|
1775
1955
|
typeUrl: "/injective.peggy.v1.MsgValsetUpdatedClaim",
|
|
1776
1956
|
aminoType: "peggy/MsgValsetUpdatedClaim",
|
|
@@ -1920,6 +2100,11 @@ exports.MsgValsetUpdatedClaim = {
|
|
|
1920
2100
|
function createBaseMsgValsetUpdatedClaimResponse() {
|
|
1921
2101
|
return {};
|
|
1922
2102
|
}
|
|
2103
|
+
/**
|
|
2104
|
+
* @name MsgValsetUpdatedClaimResponse
|
|
2105
|
+
* @package injective.peggy.v1
|
|
2106
|
+
* @see proto type: injective.peggy.v1.MsgValsetUpdatedClaimResponse
|
|
2107
|
+
*/
|
|
1923
2108
|
exports.MsgValsetUpdatedClaimResponse = {
|
|
1924
2109
|
typeUrl: "/injective.peggy.v1.MsgValsetUpdatedClaimResponse",
|
|
1925
2110
|
is(o) {
|
|
@@ -1980,6 +2165,11 @@ function createBaseMsgUpdateParams() {
|
|
|
1980
2165
|
params: params_1.Params.fromPartial({})
|
|
1981
2166
|
};
|
|
1982
2167
|
}
|
|
2168
|
+
/**
|
|
2169
|
+
* @name MsgUpdateParams
|
|
2170
|
+
* @package injective.peggy.v1
|
|
2171
|
+
* @see proto type: injective.peggy.v1.MsgUpdateParams
|
|
2172
|
+
*/
|
|
1983
2173
|
exports.MsgUpdateParams = {
|
|
1984
2174
|
typeUrl: "/injective.peggy.v1.MsgUpdateParams",
|
|
1985
2175
|
aminoType: "peggy/MsgUpdateParams",
|
|
@@ -2071,6 +2261,11 @@ exports.MsgUpdateParams = {
|
|
|
2071
2261
|
function createBaseMsgUpdateParamsResponse() {
|
|
2072
2262
|
return {};
|
|
2073
2263
|
}
|
|
2264
|
+
/**
|
|
2265
|
+
* @name MsgUpdateParamsResponse
|
|
2266
|
+
* @package injective.peggy.v1
|
|
2267
|
+
* @see proto type: injective.peggy.v1.MsgUpdateParamsResponse
|
|
2268
|
+
*/
|
|
2074
2269
|
exports.MsgUpdateParamsResponse = {
|
|
2075
2270
|
typeUrl: "/injective.peggy.v1.MsgUpdateParamsResponse",
|
|
2076
2271
|
is(o) {
|
|
@@ -2131,6 +2326,13 @@ function createBaseMsgBlacklistEthereumAddresses() {
|
|
|
2131
2326
|
blacklistAddresses: []
|
|
2132
2327
|
};
|
|
2133
2328
|
}
|
|
2329
|
+
/**
|
|
2330
|
+
* MsgBlacklistEthereumAddresses defines the message used to add Ethereum
|
|
2331
|
+
* addresses to peggy blacklist.
|
|
2332
|
+
* @name MsgBlacklistEthereumAddresses
|
|
2333
|
+
* @package injective.peggy.v1
|
|
2334
|
+
* @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddresses
|
|
2335
|
+
*/
|
|
2134
2336
|
exports.MsgBlacklistEthereumAddresses = {
|
|
2135
2337
|
typeUrl: "/injective.peggy.v1.MsgBlacklistEthereumAddresses",
|
|
2136
2338
|
aminoType: "peggy/MsgBlacklistEthereumAddresses",
|
|
@@ -2220,6 +2422,13 @@ exports.MsgBlacklistEthereumAddresses = {
|
|
|
2220
2422
|
function createBaseMsgBlacklistEthereumAddressesResponse() {
|
|
2221
2423
|
return {};
|
|
2222
2424
|
}
|
|
2425
|
+
/**
|
|
2426
|
+
* MsgBlacklistEthereumAddressesResponse defines the
|
|
2427
|
+
* MsgBlacklistEthereumAddresses response type.
|
|
2428
|
+
* @name MsgBlacklistEthereumAddressesResponse
|
|
2429
|
+
* @package injective.peggy.v1
|
|
2430
|
+
* @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddressesResponse
|
|
2431
|
+
*/
|
|
2223
2432
|
exports.MsgBlacklistEthereumAddressesResponse = {
|
|
2224
2433
|
typeUrl: "/injective.peggy.v1.MsgBlacklistEthereumAddressesResponse",
|
|
2225
2434
|
is(o) {
|
|
@@ -2280,6 +2489,13 @@ function createBaseMsgRevokeEthereumBlacklist() {
|
|
|
2280
2489
|
blacklistAddresses: []
|
|
2281
2490
|
};
|
|
2282
2491
|
}
|
|
2492
|
+
/**
|
|
2493
|
+
* MsgRevokeEthereumBlacklist defines the message used to remove Ethereum
|
|
2494
|
+
* addresses from peggy blacklist.
|
|
2495
|
+
* @name MsgRevokeEthereumBlacklist
|
|
2496
|
+
* @package injective.peggy.v1
|
|
2497
|
+
* @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklist
|
|
2498
|
+
*/
|
|
2283
2499
|
exports.MsgRevokeEthereumBlacklist = {
|
|
2284
2500
|
typeUrl: "/injective.peggy.v1.MsgRevokeEthereumBlacklist",
|
|
2285
2501
|
aminoType: "peggy/MsgRevokeEthereumBlacklist",
|
|
@@ -2369,6 +2585,13 @@ exports.MsgRevokeEthereumBlacklist = {
|
|
|
2369
2585
|
function createBaseMsgRevokeEthereumBlacklistResponse() {
|
|
2370
2586
|
return {};
|
|
2371
2587
|
}
|
|
2588
|
+
/**
|
|
2589
|
+
* MsgRevokeEthereumBlacklistResponse defines the MsgRevokeEthereumBlacklist
|
|
2590
|
+
* response type.
|
|
2591
|
+
* @name MsgRevokeEthereumBlacklistResponse
|
|
2592
|
+
* @package injective.peggy.v1
|
|
2593
|
+
* @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklistResponse
|
|
2594
|
+
*/
|
|
2372
2595
|
exports.MsgRevokeEthereumBlacklistResponse = {
|
|
2373
2596
|
typeUrl: "/injective.peggy.v1.MsgRevokeEthereumBlacklistResponse",
|
|
2374
2597
|
is(o) {
|
|
@@ -1,15 +1,88 @@
|
|
|
1
1
|
import { MsgValsetConfirm, MsgSendToEth, MsgRequestBatch, MsgConfirmBatch, MsgDepositClaim, MsgWithdrawClaim, MsgValsetUpdatedClaim, MsgERC20DeployedClaim, MsgSetOrchestratorAddresses, MsgCancelSendToEth, MsgSubmitBadSignatureEvidence, MsgUpdateParams, MsgBlacklistEthereumAddresses, MsgRevokeEthereumBlacklist } from "./msgs";
|
|
2
|
+
/**
|
|
3
|
+
* @name valsetConfirm
|
|
4
|
+
* @package injective.peggy.v1
|
|
5
|
+
* @see proto service: injective.peggy.v1.ValsetConfirm
|
|
6
|
+
*/
|
|
2
7
|
export declare const valsetConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgValsetConfirm | MsgValsetConfirm[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
8
|
+
/**
|
|
9
|
+
* @name sendToEth
|
|
10
|
+
* @package injective.peggy.v1
|
|
11
|
+
* @see proto service: injective.peggy.v1.SendToEth
|
|
12
|
+
*/
|
|
3
13
|
export declare const sendToEth: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSendToEth | MsgSendToEth[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* @name requestBatch
|
|
16
|
+
* @package injective.peggy.v1
|
|
17
|
+
* @see proto service: injective.peggy.v1.RequestBatch
|
|
18
|
+
*/
|
|
4
19
|
export declare const requestBatch: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRequestBatch | MsgRequestBatch[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
20
|
+
/**
|
|
21
|
+
* @name confirmBatch
|
|
22
|
+
* @package injective.peggy.v1
|
|
23
|
+
* @see proto service: injective.peggy.v1.ConfirmBatch
|
|
24
|
+
*/
|
|
5
25
|
export declare const confirmBatch: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgConfirmBatch | MsgConfirmBatch[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* @name depositClaim
|
|
28
|
+
* @package injective.peggy.v1
|
|
29
|
+
* @see proto service: injective.peggy.v1.DepositClaim
|
|
30
|
+
*/
|
|
6
31
|
export declare const depositClaim: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDepositClaim | MsgDepositClaim[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* @name withdrawClaim
|
|
34
|
+
* @package injective.peggy.v1
|
|
35
|
+
* @see proto service: injective.peggy.v1.WithdrawClaim
|
|
36
|
+
*/
|
|
7
37
|
export declare const withdrawClaim: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawClaim | MsgWithdrawClaim[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* @name valsetUpdateClaim
|
|
40
|
+
* @package injective.peggy.v1
|
|
41
|
+
* @see proto service: injective.peggy.v1.ValsetUpdateClaim
|
|
42
|
+
*/
|
|
8
43
|
export declare const valsetUpdateClaim: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgValsetUpdatedClaim | MsgValsetUpdatedClaim[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* @name eRC20DeployedClaim
|
|
46
|
+
* @package injective.peggy.v1
|
|
47
|
+
* @see proto service: injective.peggy.v1.ERC20DeployedClaim
|
|
48
|
+
*/
|
|
9
49
|
export declare const eRC20DeployedClaim: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgERC20DeployedClaim | MsgERC20DeployedClaim[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
50
|
+
/**
|
|
51
|
+
* @name setOrchestratorAddresses
|
|
52
|
+
* @package injective.peggy.v1
|
|
53
|
+
* @see proto service: injective.peggy.v1.SetOrchestratorAddresses
|
|
54
|
+
*/
|
|
10
55
|
export declare const setOrchestratorAddresses: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSetOrchestratorAddresses | MsgSetOrchestratorAddresses[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
56
|
+
/**
|
|
57
|
+
* @name cancelSendToEth
|
|
58
|
+
* @package injective.peggy.v1
|
|
59
|
+
* @see proto service: injective.peggy.v1.CancelSendToEth
|
|
60
|
+
*/
|
|
11
61
|
export declare const cancelSendToEth: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCancelSendToEth | MsgCancelSendToEth[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
62
|
+
/**
|
|
63
|
+
* @name submitBadSignatureEvidence
|
|
64
|
+
* @package injective.peggy.v1
|
|
65
|
+
* @see proto service: injective.peggy.v1.SubmitBadSignatureEvidence
|
|
66
|
+
*/
|
|
12
67
|
export declare const submitBadSignatureEvidence: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSubmitBadSignatureEvidence | MsgSubmitBadSignatureEvidence[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
68
|
+
/**
|
|
69
|
+
* @name updateParams
|
|
70
|
+
* @package injective.peggy.v1
|
|
71
|
+
* @see proto service: injective.peggy.v1.UpdateParams
|
|
72
|
+
*/
|
|
13
73
|
export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
74
|
+
/**
|
|
75
|
+
* BlacklistEthereumAddresses adds Ethereum addresses to the peggy blacklist.
|
|
76
|
+
* @name blacklistEthereumAddresses
|
|
77
|
+
* @package injective.peggy.v1
|
|
78
|
+
* @see proto service: injective.peggy.v1.BlacklistEthereumAddresses
|
|
79
|
+
*/
|
|
14
80
|
export declare const blacklistEthereumAddresses: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBlacklistEthereumAddresses | MsgBlacklistEthereumAddresses[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
81
|
+
/**
|
|
82
|
+
* RevokeEthereumBlacklist removes Ethereum addresses from the peggy
|
|
83
|
+
* blacklist.
|
|
84
|
+
* @name revokeEthereumBlacklist
|
|
85
|
+
* @package injective.peggy.v1
|
|
86
|
+
* @see proto service: injective.peggy.v1.RevokeEthereumBlacklist
|
|
87
|
+
*/
|
|
15
88
|
export declare const revokeEthereumBlacklist: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRevokeEthereumBlacklist | MsgRevokeEthereumBlacklist[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,48 +3,118 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.revokeEthereumBlacklist = exports.blacklistEthereumAddresses = exports.updateParams = exports.submitBadSignatureEvidence = exports.cancelSendToEth = exports.setOrchestratorAddresses = exports.eRC20DeployedClaim = exports.valsetUpdateClaim = exports.withdrawClaim = exports.depositClaim = exports.confirmBatch = exports.requestBatch = exports.sendToEth = exports.valsetConfirm = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const msgs_1 = require("./msgs");
|
|
6
|
+
/**
|
|
7
|
+
* @name valsetConfirm
|
|
8
|
+
* @package injective.peggy.v1
|
|
9
|
+
* @see proto service: injective.peggy.v1.ValsetConfirm
|
|
10
|
+
*/
|
|
6
11
|
exports.valsetConfirm = (0, helper_func_types_1.buildTx)({
|
|
7
12
|
msg: msgs_1.MsgValsetConfirm
|
|
8
13
|
});
|
|
14
|
+
/**
|
|
15
|
+
* @name sendToEth
|
|
16
|
+
* @package injective.peggy.v1
|
|
17
|
+
* @see proto service: injective.peggy.v1.SendToEth
|
|
18
|
+
*/
|
|
9
19
|
exports.sendToEth = (0, helper_func_types_1.buildTx)({
|
|
10
20
|
msg: msgs_1.MsgSendToEth
|
|
11
21
|
});
|
|
22
|
+
/**
|
|
23
|
+
* @name requestBatch
|
|
24
|
+
* @package injective.peggy.v1
|
|
25
|
+
* @see proto service: injective.peggy.v1.RequestBatch
|
|
26
|
+
*/
|
|
12
27
|
exports.requestBatch = (0, helper_func_types_1.buildTx)({
|
|
13
28
|
msg: msgs_1.MsgRequestBatch
|
|
14
29
|
});
|
|
30
|
+
/**
|
|
31
|
+
* @name confirmBatch
|
|
32
|
+
* @package injective.peggy.v1
|
|
33
|
+
* @see proto service: injective.peggy.v1.ConfirmBatch
|
|
34
|
+
*/
|
|
15
35
|
exports.confirmBatch = (0, helper_func_types_1.buildTx)({
|
|
16
36
|
msg: msgs_1.MsgConfirmBatch
|
|
17
37
|
});
|
|
38
|
+
/**
|
|
39
|
+
* @name depositClaim
|
|
40
|
+
* @package injective.peggy.v1
|
|
41
|
+
* @see proto service: injective.peggy.v1.DepositClaim
|
|
42
|
+
*/
|
|
18
43
|
exports.depositClaim = (0, helper_func_types_1.buildTx)({
|
|
19
44
|
msg: msgs_1.MsgDepositClaim
|
|
20
45
|
});
|
|
46
|
+
/**
|
|
47
|
+
* @name withdrawClaim
|
|
48
|
+
* @package injective.peggy.v1
|
|
49
|
+
* @see proto service: injective.peggy.v1.WithdrawClaim
|
|
50
|
+
*/
|
|
21
51
|
exports.withdrawClaim = (0, helper_func_types_1.buildTx)({
|
|
22
52
|
msg: msgs_1.MsgWithdrawClaim
|
|
23
53
|
});
|
|
54
|
+
/**
|
|
55
|
+
* @name valsetUpdateClaim
|
|
56
|
+
* @package injective.peggy.v1
|
|
57
|
+
* @see proto service: injective.peggy.v1.ValsetUpdateClaim
|
|
58
|
+
*/
|
|
24
59
|
exports.valsetUpdateClaim = (0, helper_func_types_1.buildTx)({
|
|
25
60
|
msg: msgs_1.MsgValsetUpdatedClaim
|
|
26
61
|
});
|
|
62
|
+
/**
|
|
63
|
+
* @name eRC20DeployedClaim
|
|
64
|
+
* @package injective.peggy.v1
|
|
65
|
+
* @see proto service: injective.peggy.v1.ERC20DeployedClaim
|
|
66
|
+
*/
|
|
27
67
|
exports.eRC20DeployedClaim = (0, helper_func_types_1.buildTx)({
|
|
28
68
|
msg: msgs_1.MsgERC20DeployedClaim
|
|
29
69
|
});
|
|
70
|
+
/**
|
|
71
|
+
* @name setOrchestratorAddresses
|
|
72
|
+
* @package injective.peggy.v1
|
|
73
|
+
* @see proto service: injective.peggy.v1.SetOrchestratorAddresses
|
|
74
|
+
*/
|
|
30
75
|
exports.setOrchestratorAddresses = (0, helper_func_types_1.buildTx)({
|
|
31
76
|
msg: msgs_1.MsgSetOrchestratorAddresses
|
|
32
77
|
});
|
|
78
|
+
/**
|
|
79
|
+
* @name cancelSendToEth
|
|
80
|
+
* @package injective.peggy.v1
|
|
81
|
+
* @see proto service: injective.peggy.v1.CancelSendToEth
|
|
82
|
+
*/
|
|
33
83
|
exports.cancelSendToEth = (0, helper_func_types_1.buildTx)({
|
|
34
84
|
msg: msgs_1.MsgCancelSendToEth
|
|
35
85
|
});
|
|
86
|
+
/**
|
|
87
|
+
* @name submitBadSignatureEvidence
|
|
88
|
+
* @package injective.peggy.v1
|
|
89
|
+
* @see proto service: injective.peggy.v1.SubmitBadSignatureEvidence
|
|
90
|
+
*/
|
|
36
91
|
exports.submitBadSignatureEvidence = (0, helper_func_types_1.buildTx)({
|
|
37
92
|
msg: msgs_1.MsgSubmitBadSignatureEvidence
|
|
38
93
|
});
|
|
94
|
+
/**
|
|
95
|
+
* @name updateParams
|
|
96
|
+
* @package injective.peggy.v1
|
|
97
|
+
* @see proto service: injective.peggy.v1.UpdateParams
|
|
98
|
+
*/
|
|
39
99
|
exports.updateParams = (0, helper_func_types_1.buildTx)({
|
|
40
100
|
msg: msgs_1.MsgUpdateParams
|
|
41
101
|
});
|
|
42
|
-
|
|
102
|
+
/**
|
|
103
|
+
* BlacklistEthereumAddresses adds Ethereum addresses to the peggy blacklist.
|
|
104
|
+
* @name blacklistEthereumAddresses
|
|
105
|
+
* @package injective.peggy.v1
|
|
106
|
+
* @see proto service: injective.peggy.v1.BlacklistEthereumAddresses
|
|
107
|
+
*/
|
|
43
108
|
exports.blacklistEthereumAddresses = (0, helper_func_types_1.buildTx)({
|
|
44
109
|
msg: msgs_1.MsgBlacklistEthereumAddresses
|
|
45
110
|
});
|
|
46
|
-
|
|
47
|
-
|
|
111
|
+
/**
|
|
112
|
+
* RevokeEthereumBlacklist removes Ethereum addresses from the peggy
|
|
113
|
+
* blacklist.
|
|
114
|
+
* @name revokeEthereumBlacklist
|
|
115
|
+
* @package injective.peggy.v1
|
|
116
|
+
* @see proto service: injective.peggy.v1.RevokeEthereumBlacklist
|
|
117
|
+
*/
|
|
48
118
|
exports.revokeEthereumBlacklist = (0, helper_func_types_1.buildTx)({
|
|
49
119
|
msg: msgs_1.MsgRevokeEthereumBlacklist
|
|
50
120
|
});
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* @name Params
|
|
6
|
+
* @package injective.peggy.v1
|
|
7
|
+
* @see proto type: injective.peggy.v1.Params
|
|
8
|
+
*/
|
|
4
9
|
export interface Params {
|
|
5
10
|
peggyId: string;
|
|
6
11
|
contractSourceHash: string;
|
|
@@ -29,6 +34,11 @@ export interface ParamsProtoMsg {
|
|
|
29
34
|
typeUrl: "/injective.peggy.v1.Params";
|
|
30
35
|
value: Uint8Array;
|
|
31
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* @name ParamsAmino
|
|
39
|
+
* @package injective.peggy.v1
|
|
40
|
+
* @see proto type: injective.peggy.v1.Params
|
|
41
|
+
*/
|
|
32
42
|
export interface ParamsAmino {
|
|
33
43
|
peggy_id: string;
|
|
34
44
|
contract_source_hash: string;
|
|
@@ -57,6 +67,11 @@ export interface ParamsAminoMsg {
|
|
|
57
67
|
type: "peggy/Params";
|
|
58
68
|
value: ParamsAmino;
|
|
59
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* @name Params
|
|
72
|
+
* @package injective.peggy.v1
|
|
73
|
+
* @see proto type: injective.peggy.v1.Params
|
|
74
|
+
*/
|
|
60
75
|
export declare const Params: {
|
|
61
76
|
typeUrl: string;
|
|
62
77
|
aminoType: string;
|
|
@@ -31,6 +31,11 @@ function createBaseParams() {
|
|
|
31
31
|
admins: []
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* @name Params
|
|
36
|
+
* @package injective.peggy.v1
|
|
37
|
+
* @see proto type: injective.peggy.v1.Params
|
|
38
|
+
*/
|
|
34
39
|
exports.Params = {
|
|
35
40
|
typeUrl: "/injective.peggy.v1.Params",
|
|
36
41
|
aminoType: "peggy/Params",
|