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
|
@@ -11,6 +11,11 @@ function createBaseEventAttestationObserved() {
|
|
|
11
11
|
nonce: BigInt(0)
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* @name EventAttestationObserved
|
|
16
|
+
* @package injective.peggy.v1
|
|
17
|
+
* @see proto type: injective.peggy.v1.EventAttestationObserved
|
|
18
|
+
*/
|
|
14
19
|
export const EventAttestationObserved = {
|
|
15
20
|
typeUrl: "/injective.peggy.v1.EventAttestationObserved",
|
|
16
21
|
is(o) {
|
|
@@ -126,6 +131,11 @@ function createBaseEventBridgeWithdrawCanceled() {
|
|
|
126
131
|
bridgeChainId: BigInt(0)
|
|
127
132
|
};
|
|
128
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* @name EventBridgeWithdrawCanceled
|
|
136
|
+
* @package injective.peggy.v1
|
|
137
|
+
* @see proto type: injective.peggy.v1.EventBridgeWithdrawCanceled
|
|
138
|
+
*/
|
|
129
139
|
export const EventBridgeWithdrawCanceled = {
|
|
130
140
|
typeUrl: "/injective.peggy.v1.EventBridgeWithdrawCanceled",
|
|
131
141
|
is(o) {
|
|
@@ -211,6 +221,11 @@ function createBaseEventOutgoingBatch() {
|
|
|
211
221
|
batchTxIds: []
|
|
212
222
|
};
|
|
213
223
|
}
|
|
224
|
+
/**
|
|
225
|
+
* @name EventOutgoingBatch
|
|
226
|
+
* @package injective.peggy.v1
|
|
227
|
+
* @see proto type: injective.peggy.v1.EventOutgoingBatch
|
|
228
|
+
*/
|
|
214
229
|
export const EventOutgoingBatch = {
|
|
215
230
|
typeUrl: "/injective.peggy.v1.EventOutgoingBatch",
|
|
216
231
|
is(o) {
|
|
@@ -341,6 +356,11 @@ function createBaseEventOutgoingBatchCanceled() {
|
|
|
341
356
|
nonce: BigInt(0)
|
|
342
357
|
};
|
|
343
358
|
}
|
|
359
|
+
/**
|
|
360
|
+
* @name EventOutgoingBatchCanceled
|
|
361
|
+
* @package injective.peggy.v1
|
|
362
|
+
* @see proto type: injective.peggy.v1.EventOutgoingBatchCanceled
|
|
363
|
+
*/
|
|
344
364
|
export const EventOutgoingBatchCanceled = {
|
|
345
365
|
typeUrl: "/injective.peggy.v1.EventOutgoingBatchCanceled",
|
|
346
366
|
is(o) {
|
|
@@ -448,6 +468,11 @@ function createBaseEventValsetUpdateRequest() {
|
|
|
448
468
|
rewardToken: ""
|
|
449
469
|
};
|
|
450
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* @name EventValsetUpdateRequest
|
|
473
|
+
* @package injective.peggy.v1
|
|
474
|
+
* @see proto type: injective.peggy.v1.EventValsetUpdateRequest
|
|
475
|
+
*/
|
|
451
476
|
export const EventValsetUpdateRequest = {
|
|
452
477
|
typeUrl: "/injective.peggy.v1.EventValsetUpdateRequest",
|
|
453
478
|
is(o) {
|
|
@@ -572,6 +597,11 @@ function createBaseEventSetOrchestratorAddresses() {
|
|
|
572
597
|
operatorEthAddress: ""
|
|
573
598
|
};
|
|
574
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* @name EventSetOrchestratorAddresses
|
|
602
|
+
* @package injective.peggy.v1
|
|
603
|
+
* @see proto type: injective.peggy.v1.EventSetOrchestratorAddresses
|
|
604
|
+
*/
|
|
575
605
|
export const EventSetOrchestratorAddresses = {
|
|
576
606
|
typeUrl: "/injective.peggy.v1.EventSetOrchestratorAddresses",
|
|
577
607
|
is(o) {
|
|
@@ -665,6 +695,11 @@ function createBaseEventValsetConfirm() {
|
|
|
665
695
|
orchestratorAddress: ""
|
|
666
696
|
};
|
|
667
697
|
}
|
|
698
|
+
/**
|
|
699
|
+
* @name EventValsetConfirm
|
|
700
|
+
* @package injective.peggy.v1
|
|
701
|
+
* @see proto type: injective.peggy.v1.EventValsetConfirm
|
|
702
|
+
*/
|
|
668
703
|
export const EventValsetConfirm = {
|
|
669
704
|
typeUrl: "/injective.peggy.v1.EventValsetConfirm",
|
|
670
705
|
is(o) {
|
|
@@ -750,6 +785,11 @@ function createBaseEventSendToEth() {
|
|
|
750
785
|
bridgeFee: ""
|
|
751
786
|
};
|
|
752
787
|
}
|
|
788
|
+
/**
|
|
789
|
+
* @name EventSendToEth
|
|
790
|
+
* @package injective.peggy.v1
|
|
791
|
+
* @see proto type: injective.peggy.v1.EventSendToEth
|
|
792
|
+
*/
|
|
753
793
|
export const EventSendToEth = {
|
|
754
794
|
typeUrl: "/injective.peggy.v1.EventSendToEth",
|
|
755
795
|
is(o) {
|
|
@@ -865,6 +905,11 @@ function createBaseEventConfirmBatch() {
|
|
|
865
905
|
orchestratorAddress: ""
|
|
866
906
|
};
|
|
867
907
|
}
|
|
908
|
+
/**
|
|
909
|
+
* @name EventConfirmBatch
|
|
910
|
+
* @package injective.peggy.v1
|
|
911
|
+
* @see proto type: injective.peggy.v1.EventConfirmBatch
|
|
912
|
+
*/
|
|
868
913
|
export const EventConfirmBatch = {
|
|
869
914
|
typeUrl: "/injective.peggy.v1.EventConfirmBatch",
|
|
870
915
|
is(o) {
|
|
@@ -948,6 +993,11 @@ function createBaseEventAttestationVote() {
|
|
|
948
993
|
voter: ""
|
|
949
994
|
};
|
|
950
995
|
}
|
|
996
|
+
/**
|
|
997
|
+
* @name EventAttestationVote
|
|
998
|
+
* @package injective.peggy.v1
|
|
999
|
+
* @see proto type: injective.peggy.v1.EventAttestationVote
|
|
1000
|
+
*/
|
|
951
1001
|
export const EventAttestationVote = {
|
|
952
1002
|
typeUrl: "/injective.peggy.v1.EventAttestationVote",
|
|
953
1003
|
is(o) {
|
|
@@ -1048,6 +1098,11 @@ function createBaseEventDepositClaim() {
|
|
|
1048
1098
|
data: ""
|
|
1049
1099
|
};
|
|
1050
1100
|
}
|
|
1101
|
+
/**
|
|
1102
|
+
* @name EventDepositClaim
|
|
1103
|
+
* @package injective.peggy.v1
|
|
1104
|
+
* @see proto type: injective.peggy.v1.EventDepositClaim
|
|
1105
|
+
*/
|
|
1051
1106
|
export const EventDepositClaim = {
|
|
1052
1107
|
typeUrl: "/injective.peggy.v1.EventDepositClaim",
|
|
1053
1108
|
is(o) {
|
|
@@ -1211,6 +1266,11 @@ function createBaseEventWithdrawClaim() {
|
|
|
1211
1266
|
orchestratorAddress: ""
|
|
1212
1267
|
};
|
|
1213
1268
|
}
|
|
1269
|
+
/**
|
|
1270
|
+
* @name EventWithdrawClaim
|
|
1271
|
+
* @package injective.peggy.v1
|
|
1272
|
+
* @see proto type: injective.peggy.v1.EventWithdrawClaim
|
|
1273
|
+
*/
|
|
1214
1274
|
export const EventWithdrawClaim = {
|
|
1215
1275
|
typeUrl: "/injective.peggy.v1.EventWithdrawClaim",
|
|
1216
1276
|
is(o) {
|
|
@@ -1344,6 +1404,11 @@ function createBaseEventERC20DeployedClaim() {
|
|
|
1344
1404
|
orchestratorAddress: ""
|
|
1345
1405
|
};
|
|
1346
1406
|
}
|
|
1407
|
+
/**
|
|
1408
|
+
* @name EventERC20DeployedClaim
|
|
1409
|
+
* @package injective.peggy.v1
|
|
1410
|
+
* @see proto type: injective.peggy.v1.EventERC20DeployedClaim
|
|
1411
|
+
*/
|
|
1347
1412
|
export const EventERC20DeployedClaim = {
|
|
1348
1413
|
typeUrl: "/injective.peggy.v1.EventERC20DeployedClaim",
|
|
1349
1414
|
is(o) {
|
|
@@ -1509,6 +1574,11 @@ function createBaseEventValsetUpdateClaim() {
|
|
|
1509
1574
|
orchestratorAddress: ""
|
|
1510
1575
|
};
|
|
1511
1576
|
}
|
|
1577
|
+
/**
|
|
1578
|
+
* @name EventValsetUpdateClaim
|
|
1579
|
+
* @package injective.peggy.v1
|
|
1580
|
+
* @see proto type: injective.peggy.v1.EventValsetUpdateClaim
|
|
1581
|
+
*/
|
|
1512
1582
|
export const EventValsetUpdateClaim = {
|
|
1513
1583
|
typeUrl: "/injective.peggy.v1.EventValsetUpdateClaim",
|
|
1514
1584
|
is(o) {
|
|
@@ -1664,6 +1734,11 @@ function createBaseEventCancelSendToEth() {
|
|
|
1664
1734
|
outgoingTxId: BigInt(0)
|
|
1665
1735
|
};
|
|
1666
1736
|
}
|
|
1737
|
+
/**
|
|
1738
|
+
* @name EventCancelSendToEth
|
|
1739
|
+
* @package injective.peggy.v1
|
|
1740
|
+
* @see proto type: injective.peggy.v1.EventCancelSendToEth
|
|
1741
|
+
*/
|
|
1667
1742
|
export const EventCancelSendToEth = {
|
|
1668
1743
|
typeUrl: "/injective.peggy.v1.EventCancelSendToEth",
|
|
1669
1744
|
is(o) {
|
|
@@ -1735,6 +1810,11 @@ function createBaseEventSubmitBadSignatureEvidence() {
|
|
|
1735
1810
|
badEthSignatureSubject: ""
|
|
1736
1811
|
};
|
|
1737
1812
|
}
|
|
1813
|
+
/**
|
|
1814
|
+
* @name EventSubmitBadSignatureEvidence
|
|
1815
|
+
* @package injective.peggy.v1
|
|
1816
|
+
* @see proto type: injective.peggy.v1.EventSubmitBadSignatureEvidence
|
|
1817
|
+
*/
|
|
1738
1818
|
export const EventSubmitBadSignatureEvidence = {
|
|
1739
1819
|
typeUrl: "/injective.peggy.v1.EventSubmitBadSignatureEvidence",
|
|
1740
1820
|
is(o) {
|
|
@@ -1820,6 +1900,11 @@ function createBaseEventValidatorSlash() {
|
|
|
1820
1900
|
moniker: ""
|
|
1821
1901
|
};
|
|
1822
1902
|
}
|
|
1903
|
+
/**
|
|
1904
|
+
* @name EventValidatorSlash
|
|
1905
|
+
* @package injective.peggy.v1
|
|
1906
|
+
* @see proto type: injective.peggy.v1.EventValidatorSlash
|
|
1907
|
+
*/
|
|
1823
1908
|
export const EventValidatorSlash = {
|
|
1824
1909
|
typeUrl: "/injective.peggy.v1.EventValidatorSlash",
|
|
1825
1910
|
is(o) {
|
|
@@ -24,6 +24,12 @@ function createBaseGenesisState() {
|
|
|
24
24
|
ethereumBlacklist: []
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* GenesisState struct
|
|
29
|
+
* @name GenesisState
|
|
30
|
+
* @package injective.peggy.v1
|
|
31
|
+
* @see proto type: injective.peggy.v1.GenesisState
|
|
32
|
+
*/
|
|
27
33
|
export const GenesisState = {
|
|
28
34
|
typeUrl: "/injective.peggy.v1.GenesisState",
|
|
29
35
|
is(o) {
|
|
@@ -11,6 +11,24 @@ function createBaseMsgSetOrchestratorAddresses() {
|
|
|
11
11
|
ethAddress: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgSetOrchestratorAddresses
|
|
16
|
+
* this message allows validators to delegate their voting responsibilities
|
|
17
|
+
* to a given key. This key is then used as an optional authentication method
|
|
18
|
+
* for sigining oracle claims
|
|
19
|
+
* VALIDATOR
|
|
20
|
+
* The validator field is a cosmosvaloper1... string (i.e. sdk.ValAddress)
|
|
21
|
+
* that references a validator in the active set
|
|
22
|
+
* ORCHESTRATOR
|
|
23
|
+
* The orchestrator field is a cosmos1... string (i.e. sdk.AccAddress) that
|
|
24
|
+
* references the key that is being delegated to
|
|
25
|
+
* ETH_ADDRESS
|
|
26
|
+
* This is a hex encoded 0x Ethereum public key that will be used by this
|
|
27
|
+
* validator on Ethereum
|
|
28
|
+
* @name MsgSetOrchestratorAddresses
|
|
29
|
+
* @package injective.peggy.v1
|
|
30
|
+
* @see proto type: injective.peggy.v1.MsgSetOrchestratorAddresses
|
|
31
|
+
*/
|
|
14
32
|
export const MsgSetOrchestratorAddresses = {
|
|
15
33
|
typeUrl: "/injective.peggy.v1.MsgSetOrchestratorAddresses",
|
|
16
34
|
aminoType: "peggy/MsgSetOrchestratorAddresses",
|
|
@@ -108,6 +126,11 @@ export const MsgSetOrchestratorAddresses = {
|
|
|
108
126
|
function createBaseMsgSetOrchestratorAddressesResponse() {
|
|
109
127
|
return {};
|
|
110
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* @name MsgSetOrchestratorAddressesResponse
|
|
131
|
+
* @package injective.peggy.v1
|
|
132
|
+
* @see proto type: injective.peggy.v1.MsgSetOrchestratorAddressesResponse
|
|
133
|
+
*/
|
|
111
134
|
export const MsgSetOrchestratorAddressesResponse = {
|
|
112
135
|
typeUrl: "/injective.peggy.v1.MsgSetOrchestratorAddressesResponse",
|
|
113
136
|
is(o) {
|
|
@@ -170,6 +193,26 @@ function createBaseMsgValsetConfirm() {
|
|
|
170
193
|
signature: ""
|
|
171
194
|
};
|
|
172
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* MsgValsetConfirm
|
|
198
|
+
* this is the message sent by the validators when they wish to submit their
|
|
199
|
+
* signatures over the validator set at a given block height. A validator must
|
|
200
|
+
* first call MsgSetEthAddress to set their Ethereum address to be used for
|
|
201
|
+
* signing. Then someone (anyone) must make a ValsetRequest the request is
|
|
202
|
+
* essentially a messaging mechanism to determine which block all validators
|
|
203
|
+
* should submit signatures over. Finally validators sign the validator set,
|
|
204
|
+
* powers, and Ethereum addresses of the entire validator set at the height of a
|
|
205
|
+
* ValsetRequest and submit that signature with this message.
|
|
206
|
+
*
|
|
207
|
+
* If a sufficient number of validators (66% of voting power) (A) have set
|
|
208
|
+
* Ethereum addresses and (B) submit ValsetConfirm messages with their
|
|
209
|
+
* signatures it is then possible for anyone to view these signatures in the
|
|
210
|
+
* chain store and submit them to Ethereum to update the validator set
|
|
211
|
+
* -------------
|
|
212
|
+
* @name MsgValsetConfirm
|
|
213
|
+
* @package injective.peggy.v1
|
|
214
|
+
* @see proto type: injective.peggy.v1.MsgValsetConfirm
|
|
215
|
+
*/
|
|
173
216
|
export const MsgValsetConfirm = {
|
|
174
217
|
typeUrl: "/injective.peggy.v1.MsgValsetConfirm",
|
|
175
218
|
aminoType: "peggy/MsgValsetConfirm",
|
|
@@ -278,6 +321,11 @@ export const MsgValsetConfirm = {
|
|
|
278
321
|
function createBaseMsgValsetConfirmResponse() {
|
|
279
322
|
return {};
|
|
280
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* @name MsgValsetConfirmResponse
|
|
326
|
+
* @package injective.peggy.v1
|
|
327
|
+
* @see proto type: injective.peggy.v1.MsgValsetConfirmResponse
|
|
328
|
+
*/
|
|
281
329
|
export const MsgValsetConfirmResponse = {
|
|
282
330
|
typeUrl: "/injective.peggy.v1.MsgValsetConfirmResponse",
|
|
283
331
|
is(o) {
|
|
@@ -340,6 +388,23 @@ function createBaseMsgSendToEth() {
|
|
|
340
388
|
bridgeFee: Coin.fromPartial({})
|
|
341
389
|
};
|
|
342
390
|
}
|
|
391
|
+
/**
|
|
392
|
+
* MsgSendToEth
|
|
393
|
+
* This is the message that a user calls when they want to bridge an asset
|
|
394
|
+
* it will later be removed when it is included in a batch and successfully
|
|
395
|
+
* submitted tokens are removed from the users balance immediately
|
|
396
|
+
* -------------
|
|
397
|
+
* AMOUNT:
|
|
398
|
+
* the coin to send across the bridge, note the restriction that this is a
|
|
399
|
+
* single coin not a set of coins that is normal in other Cosmos messages
|
|
400
|
+
* FEE:
|
|
401
|
+
* the fee paid for the bridge, distinct from the fee paid to the chain to
|
|
402
|
+
* actually send this message in the first place. So a successful send has
|
|
403
|
+
* two layers of fees for the user
|
|
404
|
+
* @name MsgSendToEth
|
|
405
|
+
* @package injective.peggy.v1
|
|
406
|
+
* @see proto type: injective.peggy.v1.MsgSendToEth
|
|
407
|
+
*/
|
|
343
408
|
export const MsgSendToEth = {
|
|
344
409
|
typeUrl: "/injective.peggy.v1.MsgSendToEth",
|
|
345
410
|
aminoType: "peggy/MsgSendToEth",
|
|
@@ -453,6 +518,11 @@ export const MsgSendToEth = {
|
|
|
453
518
|
function createBaseMsgSendToEthResponse() {
|
|
454
519
|
return {};
|
|
455
520
|
}
|
|
521
|
+
/**
|
|
522
|
+
* @name MsgSendToEthResponse
|
|
523
|
+
* @package injective.peggy.v1
|
|
524
|
+
* @see proto type: injective.peggy.v1.MsgSendToEthResponse
|
|
525
|
+
*/
|
|
456
526
|
export const MsgSendToEthResponse = {
|
|
457
527
|
typeUrl: "/injective.peggy.v1.MsgSendToEthResponse",
|
|
458
528
|
is(o) {
|
|
@@ -513,6 +583,20 @@ function createBaseMsgRequestBatch() {
|
|
|
513
583
|
denom: ""
|
|
514
584
|
};
|
|
515
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* MsgRequestBatch
|
|
588
|
+
* this is a message anyone can send that requests a batch of transactions to
|
|
589
|
+
* send across the bridge be created for whatever block height this message is
|
|
590
|
+
* included in. This acts as a coordination point, the handler for this message
|
|
591
|
+
* looks at the AddToOutgoingPool tx's in the store and generates a batch, also
|
|
592
|
+
* available in the store tied to this message. The validators then grab this
|
|
593
|
+
* batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer
|
|
594
|
+
* can finally submit the batch
|
|
595
|
+
* -------------
|
|
596
|
+
* @name MsgRequestBatch
|
|
597
|
+
* @package injective.peggy.v1
|
|
598
|
+
* @see proto type: injective.peggy.v1.MsgRequestBatch
|
|
599
|
+
*/
|
|
516
600
|
export const MsgRequestBatch = {
|
|
517
601
|
typeUrl: "/injective.peggy.v1.MsgRequestBatch",
|
|
518
602
|
aminoType: "peggy/MsgRequestBatch",
|
|
@@ -599,6 +683,11 @@ export const MsgRequestBatch = {
|
|
|
599
683
|
function createBaseMsgRequestBatchResponse() {
|
|
600
684
|
return {};
|
|
601
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
* @name MsgRequestBatchResponse
|
|
688
|
+
* @package injective.peggy.v1
|
|
689
|
+
* @see proto type: injective.peggy.v1.MsgRequestBatchResponse
|
|
690
|
+
*/
|
|
602
691
|
export const MsgRequestBatchResponse = {
|
|
603
692
|
typeUrl: "/injective.peggy.v1.MsgRequestBatchResponse",
|
|
604
693
|
is(o) {
|
|
@@ -662,6 +751,19 @@ function createBaseMsgConfirmBatch() {
|
|
|
662
751
|
signature: ""
|
|
663
752
|
};
|
|
664
753
|
}
|
|
754
|
+
/**
|
|
755
|
+
* MsgConfirmBatch
|
|
756
|
+
* When validators observe a MsgRequestBatch they form a batch by ordering
|
|
757
|
+
* transactions currently in the txqueue in order of highest to lowest fee,
|
|
758
|
+
* cutting off when the batch either reaches a hardcoded maximum size (to be
|
|
759
|
+
* decided, probably around 100) or when transactions stop being profitable
|
|
760
|
+
* (TODO determine this without nondeterminism) This message includes the batch
|
|
761
|
+
* as well as an Ethereum signature over this batch by the validator
|
|
762
|
+
* -------------
|
|
763
|
+
* @name MsgConfirmBatch
|
|
764
|
+
* @package injective.peggy.v1
|
|
765
|
+
* @see proto type: injective.peggy.v1.MsgConfirmBatch
|
|
766
|
+
*/
|
|
665
767
|
export const MsgConfirmBatch = {
|
|
666
768
|
typeUrl: "/injective.peggy.v1.MsgConfirmBatch",
|
|
667
769
|
aminoType: "peggy/MsgConfirmBatch",
|
|
@@ -781,6 +883,11 @@ export const MsgConfirmBatch = {
|
|
|
781
883
|
function createBaseMsgConfirmBatchResponse() {
|
|
782
884
|
return {};
|
|
783
885
|
}
|
|
886
|
+
/**
|
|
887
|
+
* @name MsgConfirmBatchResponse
|
|
888
|
+
* @package injective.peggy.v1
|
|
889
|
+
* @see proto type: injective.peggy.v1.MsgConfirmBatchResponse
|
|
890
|
+
*/
|
|
784
891
|
export const MsgConfirmBatchResponse = {
|
|
785
892
|
typeUrl: "/injective.peggy.v1.MsgConfirmBatchResponse",
|
|
786
893
|
is(o) {
|
|
@@ -847,6 +954,16 @@ function createBaseMsgDepositClaim() {
|
|
|
847
954
|
data: ""
|
|
848
955
|
};
|
|
849
956
|
}
|
|
957
|
+
/**
|
|
958
|
+
* EthereumBridgeDepositClaim
|
|
959
|
+
* When more than 66% of the active validator set has
|
|
960
|
+
* claimed to have seen the deposit enter the ethereum blockchain coins are
|
|
961
|
+
* issued to the Cosmos address in question
|
|
962
|
+
* -------------
|
|
963
|
+
* @name MsgDepositClaim
|
|
964
|
+
* @package injective.peggy.v1
|
|
965
|
+
* @see proto type: injective.peggy.v1.MsgDepositClaim
|
|
966
|
+
*/
|
|
850
967
|
export const MsgDepositClaim = {
|
|
851
968
|
typeUrl: "/injective.peggy.v1.MsgDepositClaim",
|
|
852
969
|
aminoType: "peggy/MsgDepositClaim",
|
|
@@ -999,6 +1116,11 @@ export const MsgDepositClaim = {
|
|
|
999
1116
|
function createBaseMsgDepositClaimResponse() {
|
|
1000
1117
|
return {};
|
|
1001
1118
|
}
|
|
1119
|
+
/**
|
|
1120
|
+
* @name MsgDepositClaimResponse
|
|
1121
|
+
* @package injective.peggy.v1
|
|
1122
|
+
* @see proto type: injective.peggy.v1.MsgDepositClaimResponse
|
|
1123
|
+
*/
|
|
1002
1124
|
export const MsgDepositClaimResponse = {
|
|
1003
1125
|
typeUrl: "/injective.peggy.v1.MsgDepositClaimResponse",
|
|
1004
1126
|
is(o) {
|
|
@@ -1062,6 +1184,13 @@ function createBaseMsgWithdrawClaim() {
|
|
|
1062
1184
|
orchestrator: ""
|
|
1063
1185
|
};
|
|
1064
1186
|
}
|
|
1187
|
+
/**
|
|
1188
|
+
* WithdrawClaim claims that a batch of withdrawal
|
|
1189
|
+
* operations on the bridge contract was executed.
|
|
1190
|
+
* @name MsgWithdrawClaim
|
|
1191
|
+
* @package injective.peggy.v1
|
|
1192
|
+
* @see proto type: injective.peggy.v1.MsgWithdrawClaim
|
|
1193
|
+
*/
|
|
1065
1194
|
export const MsgWithdrawClaim = {
|
|
1066
1195
|
typeUrl: "/injective.peggy.v1.MsgWithdrawClaim",
|
|
1067
1196
|
aminoType: "peggy/MsgWithdrawClaim",
|
|
@@ -1181,6 +1310,11 @@ export const MsgWithdrawClaim = {
|
|
|
1181
1310
|
function createBaseMsgWithdrawClaimResponse() {
|
|
1182
1311
|
return {};
|
|
1183
1312
|
}
|
|
1313
|
+
/**
|
|
1314
|
+
* @name MsgWithdrawClaimResponse
|
|
1315
|
+
* @package injective.peggy.v1
|
|
1316
|
+
* @see proto type: injective.peggy.v1.MsgWithdrawClaimResponse
|
|
1317
|
+
*/
|
|
1184
1318
|
export const MsgWithdrawClaimResponse = {
|
|
1185
1319
|
typeUrl: "/injective.peggy.v1.MsgWithdrawClaimResponse",
|
|
1186
1320
|
is(o) {
|
|
@@ -1247,6 +1381,14 @@ function createBaseMsgERC20DeployedClaim() {
|
|
|
1247
1381
|
orchestrator: ""
|
|
1248
1382
|
};
|
|
1249
1383
|
}
|
|
1384
|
+
/**
|
|
1385
|
+
* ERC20DeployedClaim allows the Cosmos module
|
|
1386
|
+
* to learn about an ERC20 that someone deployed
|
|
1387
|
+
* to represent a Cosmos asset
|
|
1388
|
+
* @name MsgERC20DeployedClaim
|
|
1389
|
+
* @package injective.peggy.v1
|
|
1390
|
+
* @see proto type: injective.peggy.v1.MsgERC20DeployedClaim
|
|
1391
|
+
*/
|
|
1250
1392
|
export const MsgERC20DeployedClaim = {
|
|
1251
1393
|
typeUrl: "/injective.peggy.v1.MsgERC20DeployedClaim",
|
|
1252
1394
|
aminoType: "peggy/MsgERC20DeployedClaim",
|
|
@@ -1399,6 +1541,11 @@ export const MsgERC20DeployedClaim = {
|
|
|
1399
1541
|
function createBaseMsgERC20DeployedClaimResponse() {
|
|
1400
1542
|
return {};
|
|
1401
1543
|
}
|
|
1544
|
+
/**
|
|
1545
|
+
* @name MsgERC20DeployedClaimResponse
|
|
1546
|
+
* @package injective.peggy.v1
|
|
1547
|
+
* @see proto type: injective.peggy.v1.MsgERC20DeployedClaimResponse
|
|
1548
|
+
*/
|
|
1402
1549
|
export const MsgERC20DeployedClaimResponse = {
|
|
1403
1550
|
typeUrl: "/injective.peggy.v1.MsgERC20DeployedClaimResponse",
|
|
1404
1551
|
is(o) {
|
|
@@ -1459,6 +1606,14 @@ function createBaseMsgCancelSendToEth() {
|
|
|
1459
1606
|
sender: ""
|
|
1460
1607
|
};
|
|
1461
1608
|
}
|
|
1609
|
+
/**
|
|
1610
|
+
* This call allows the sender (and only the sender)
|
|
1611
|
+
* to cancel a given MsgSendToEth and recieve a refund
|
|
1612
|
+
* of the tokens
|
|
1613
|
+
* @name MsgCancelSendToEth
|
|
1614
|
+
* @package injective.peggy.v1
|
|
1615
|
+
* @see proto type: injective.peggy.v1.MsgCancelSendToEth
|
|
1616
|
+
*/
|
|
1462
1617
|
export const MsgCancelSendToEth = {
|
|
1463
1618
|
typeUrl: "/injective.peggy.v1.MsgCancelSendToEth",
|
|
1464
1619
|
aminoType: "peggy/MsgCancelSendToEth",
|
|
@@ -1545,6 +1700,11 @@ export const MsgCancelSendToEth = {
|
|
|
1545
1700
|
function createBaseMsgCancelSendToEthResponse() {
|
|
1546
1701
|
return {};
|
|
1547
1702
|
}
|
|
1703
|
+
/**
|
|
1704
|
+
* @name MsgCancelSendToEthResponse
|
|
1705
|
+
* @package injective.peggy.v1
|
|
1706
|
+
* @see proto type: injective.peggy.v1.MsgCancelSendToEthResponse
|
|
1707
|
+
*/
|
|
1548
1708
|
export const MsgCancelSendToEthResponse = {
|
|
1549
1709
|
typeUrl: "/injective.peggy.v1.MsgCancelSendToEthResponse",
|
|
1550
1710
|
is(o) {
|
|
@@ -1606,6 +1766,14 @@ function createBaseMsgSubmitBadSignatureEvidence() {
|
|
|
1606
1766
|
sender: ""
|
|
1607
1767
|
};
|
|
1608
1768
|
}
|
|
1769
|
+
/**
|
|
1770
|
+
* This call allows anyone to submit evidence that a
|
|
1771
|
+
* validator has signed a valset, batch, or logic call that never
|
|
1772
|
+
* existed. Subject contains the batch, valset, or logic call.
|
|
1773
|
+
* @name MsgSubmitBadSignatureEvidence
|
|
1774
|
+
* @package injective.peggy.v1
|
|
1775
|
+
* @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidence
|
|
1776
|
+
*/
|
|
1609
1777
|
export const MsgSubmitBadSignatureEvidence = {
|
|
1610
1778
|
typeUrl: "/injective.peggy.v1.MsgSubmitBadSignatureEvidence",
|
|
1611
1779
|
aminoType: "peggy/MsgSubmitBadSignatureEvidence",
|
|
@@ -1703,6 +1871,11 @@ export const MsgSubmitBadSignatureEvidence = {
|
|
|
1703
1871
|
function createBaseMsgSubmitBadSignatureEvidenceResponse() {
|
|
1704
1872
|
return {};
|
|
1705
1873
|
}
|
|
1874
|
+
/**
|
|
1875
|
+
* @name MsgSubmitBadSignatureEvidenceResponse
|
|
1876
|
+
* @package injective.peggy.v1
|
|
1877
|
+
* @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse
|
|
1878
|
+
*/
|
|
1706
1879
|
export const MsgSubmitBadSignatureEvidenceResponse = {
|
|
1707
1880
|
typeUrl: "/injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse",
|
|
1708
1881
|
is(o) {
|
|
@@ -1768,6 +1941,13 @@ function createBaseMsgValsetUpdatedClaim() {
|
|
|
1768
1941
|
orchestrator: ""
|
|
1769
1942
|
};
|
|
1770
1943
|
}
|
|
1944
|
+
/**
|
|
1945
|
+
* This informs the Cosmos module that a validator
|
|
1946
|
+
* set has been updated.
|
|
1947
|
+
* @name MsgValsetUpdatedClaim
|
|
1948
|
+
* @package injective.peggy.v1
|
|
1949
|
+
* @see proto type: injective.peggy.v1.MsgValsetUpdatedClaim
|
|
1950
|
+
*/
|
|
1771
1951
|
export const MsgValsetUpdatedClaim = {
|
|
1772
1952
|
typeUrl: "/injective.peggy.v1.MsgValsetUpdatedClaim",
|
|
1773
1953
|
aminoType: "peggy/MsgValsetUpdatedClaim",
|
|
@@ -1917,6 +2097,11 @@ export const MsgValsetUpdatedClaim = {
|
|
|
1917
2097
|
function createBaseMsgValsetUpdatedClaimResponse() {
|
|
1918
2098
|
return {};
|
|
1919
2099
|
}
|
|
2100
|
+
/**
|
|
2101
|
+
* @name MsgValsetUpdatedClaimResponse
|
|
2102
|
+
* @package injective.peggy.v1
|
|
2103
|
+
* @see proto type: injective.peggy.v1.MsgValsetUpdatedClaimResponse
|
|
2104
|
+
*/
|
|
1920
2105
|
export const MsgValsetUpdatedClaimResponse = {
|
|
1921
2106
|
typeUrl: "/injective.peggy.v1.MsgValsetUpdatedClaimResponse",
|
|
1922
2107
|
is(o) {
|
|
@@ -1977,6 +2162,11 @@ function createBaseMsgUpdateParams() {
|
|
|
1977
2162
|
params: Params.fromPartial({})
|
|
1978
2163
|
};
|
|
1979
2164
|
}
|
|
2165
|
+
/**
|
|
2166
|
+
* @name MsgUpdateParams
|
|
2167
|
+
* @package injective.peggy.v1
|
|
2168
|
+
* @see proto type: injective.peggy.v1.MsgUpdateParams
|
|
2169
|
+
*/
|
|
1980
2170
|
export const MsgUpdateParams = {
|
|
1981
2171
|
typeUrl: "/injective.peggy.v1.MsgUpdateParams",
|
|
1982
2172
|
aminoType: "peggy/MsgUpdateParams",
|
|
@@ -2068,6 +2258,11 @@ export const MsgUpdateParams = {
|
|
|
2068
2258
|
function createBaseMsgUpdateParamsResponse() {
|
|
2069
2259
|
return {};
|
|
2070
2260
|
}
|
|
2261
|
+
/**
|
|
2262
|
+
* @name MsgUpdateParamsResponse
|
|
2263
|
+
* @package injective.peggy.v1
|
|
2264
|
+
* @see proto type: injective.peggy.v1.MsgUpdateParamsResponse
|
|
2265
|
+
*/
|
|
2071
2266
|
export const MsgUpdateParamsResponse = {
|
|
2072
2267
|
typeUrl: "/injective.peggy.v1.MsgUpdateParamsResponse",
|
|
2073
2268
|
is(o) {
|
|
@@ -2128,6 +2323,13 @@ function createBaseMsgBlacklistEthereumAddresses() {
|
|
|
2128
2323
|
blacklistAddresses: []
|
|
2129
2324
|
};
|
|
2130
2325
|
}
|
|
2326
|
+
/**
|
|
2327
|
+
* MsgBlacklistEthereumAddresses defines the message used to add Ethereum
|
|
2328
|
+
* addresses to peggy blacklist.
|
|
2329
|
+
* @name MsgBlacklistEthereumAddresses
|
|
2330
|
+
* @package injective.peggy.v1
|
|
2331
|
+
* @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddresses
|
|
2332
|
+
*/
|
|
2131
2333
|
export const MsgBlacklistEthereumAddresses = {
|
|
2132
2334
|
typeUrl: "/injective.peggy.v1.MsgBlacklistEthereumAddresses",
|
|
2133
2335
|
aminoType: "peggy/MsgBlacklistEthereumAddresses",
|
|
@@ -2217,6 +2419,13 @@ export const MsgBlacklistEthereumAddresses = {
|
|
|
2217
2419
|
function createBaseMsgBlacklistEthereumAddressesResponse() {
|
|
2218
2420
|
return {};
|
|
2219
2421
|
}
|
|
2422
|
+
/**
|
|
2423
|
+
* MsgBlacklistEthereumAddressesResponse defines the
|
|
2424
|
+
* MsgBlacklistEthereumAddresses response type.
|
|
2425
|
+
* @name MsgBlacklistEthereumAddressesResponse
|
|
2426
|
+
* @package injective.peggy.v1
|
|
2427
|
+
* @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddressesResponse
|
|
2428
|
+
*/
|
|
2220
2429
|
export const MsgBlacklistEthereumAddressesResponse = {
|
|
2221
2430
|
typeUrl: "/injective.peggy.v1.MsgBlacklistEthereumAddressesResponse",
|
|
2222
2431
|
is(o) {
|
|
@@ -2277,6 +2486,13 @@ function createBaseMsgRevokeEthereumBlacklist() {
|
|
|
2277
2486
|
blacklistAddresses: []
|
|
2278
2487
|
};
|
|
2279
2488
|
}
|
|
2489
|
+
/**
|
|
2490
|
+
* MsgRevokeEthereumBlacklist defines the message used to remove Ethereum
|
|
2491
|
+
* addresses from peggy blacklist.
|
|
2492
|
+
* @name MsgRevokeEthereumBlacklist
|
|
2493
|
+
* @package injective.peggy.v1
|
|
2494
|
+
* @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklist
|
|
2495
|
+
*/
|
|
2280
2496
|
export const MsgRevokeEthereumBlacklist = {
|
|
2281
2497
|
typeUrl: "/injective.peggy.v1.MsgRevokeEthereumBlacklist",
|
|
2282
2498
|
aminoType: "peggy/MsgRevokeEthereumBlacklist",
|
|
@@ -2366,6 +2582,13 @@ export const MsgRevokeEthereumBlacklist = {
|
|
|
2366
2582
|
function createBaseMsgRevokeEthereumBlacklistResponse() {
|
|
2367
2583
|
return {};
|
|
2368
2584
|
}
|
|
2585
|
+
/**
|
|
2586
|
+
* MsgRevokeEthereumBlacklistResponse defines the MsgRevokeEthereumBlacklist
|
|
2587
|
+
* response type.
|
|
2588
|
+
* @name MsgRevokeEthereumBlacklistResponse
|
|
2589
|
+
* @package injective.peggy.v1
|
|
2590
|
+
* @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklistResponse
|
|
2591
|
+
*/
|
|
2369
2592
|
export const MsgRevokeEthereumBlacklistResponse = {
|
|
2370
2593
|
typeUrl: "/injective.peggy.v1.MsgRevokeEthereumBlacklistResponse",
|
|
2371
2594
|
is(o) {
|