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
|
@@ -90,6 +90,9 @@ import { DeepPartial } from "../../helpers";
|
|
|
90
90
|
* the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
|
91
91
|
* http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
|
92
92
|
* ) to obtain a formatter capable of generating timestamps in this format.
|
|
93
|
+
* @name Timestamp
|
|
94
|
+
* @package google.protobuf
|
|
95
|
+
* @see proto type: google.protobuf.Timestamp
|
|
93
96
|
*/
|
|
94
97
|
export interface Timestamp {
|
|
95
98
|
/**
|
|
@@ -200,12 +203,109 @@ export interface TimestampProtoMsg {
|
|
|
200
203
|
* the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
|
201
204
|
* http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
|
202
205
|
* ) to obtain a formatter capable of generating timestamps in this format.
|
|
206
|
+
* @name TimestampAmino
|
|
207
|
+
* @package google.protobuf
|
|
208
|
+
* @see proto type: google.protobuf.Timestamp
|
|
203
209
|
*/
|
|
204
210
|
export type TimestampAmino = string;
|
|
205
211
|
export interface TimestampAminoMsg {
|
|
206
212
|
type: "/google.protobuf.Timestamp";
|
|
207
213
|
value: TimestampAmino;
|
|
208
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* A Timestamp represents a point in time independent of any time zone or local
|
|
217
|
+
* calendar, encoded as a count of seconds and fractions of seconds at
|
|
218
|
+
* nanosecond resolution. The count is relative to an epoch at UTC midnight on
|
|
219
|
+
* January 1, 1970, in the proleptic Gregorian calendar which extends the
|
|
220
|
+
* Gregorian calendar backwards to year one.
|
|
221
|
+
*
|
|
222
|
+
* All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
|
|
223
|
+
* second table is needed for interpretation, using a [24-hour linear
|
|
224
|
+
* smear](https://developers.google.com/time/smear).
|
|
225
|
+
*
|
|
226
|
+
* The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
|
|
227
|
+
* restricting to that range, we ensure that we can convert to and from [RFC
|
|
228
|
+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
|
|
229
|
+
*
|
|
230
|
+
* # Examples
|
|
231
|
+
*
|
|
232
|
+
* Example 1: Compute Timestamp from POSIX `time()`.
|
|
233
|
+
*
|
|
234
|
+
* Timestamp timestamp;
|
|
235
|
+
* timestamp.set_seconds(time(NULL));
|
|
236
|
+
* timestamp.set_nanos(0);
|
|
237
|
+
*
|
|
238
|
+
* Example 2: Compute Timestamp from POSIX `gettimeofday()`.
|
|
239
|
+
*
|
|
240
|
+
* struct timeval tv;
|
|
241
|
+
* gettimeofday(&tv, NULL);
|
|
242
|
+
*
|
|
243
|
+
* Timestamp timestamp;
|
|
244
|
+
* timestamp.set_seconds(tv.tv_sec);
|
|
245
|
+
* timestamp.set_nanos(tv.tv_usec * 1000);
|
|
246
|
+
*
|
|
247
|
+
* Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
|
|
248
|
+
*
|
|
249
|
+
* FILETIME ft;
|
|
250
|
+
* GetSystemTimeAsFileTime(&ft);
|
|
251
|
+
* UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
|
|
252
|
+
*
|
|
253
|
+
* // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
|
|
254
|
+
* // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
|
|
255
|
+
* Timestamp timestamp;
|
|
256
|
+
* timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
|
|
257
|
+
* timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
|
|
258
|
+
*
|
|
259
|
+
* Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
|
|
260
|
+
*
|
|
261
|
+
* long millis = System.currentTimeMillis();
|
|
262
|
+
*
|
|
263
|
+
* Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
|
264
|
+
* .setNanos((int) ((millis % 1000) * 1000000)).build();
|
|
265
|
+
*
|
|
266
|
+
* Example 5: Compute Timestamp from Java `Instant.now()`.
|
|
267
|
+
*
|
|
268
|
+
* Instant now = Instant.now();
|
|
269
|
+
*
|
|
270
|
+
* Timestamp timestamp =
|
|
271
|
+
* Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
|
272
|
+
* .setNanos(now.getNano()).build();
|
|
273
|
+
*
|
|
274
|
+
* Example 6: Compute Timestamp from current time in Python.
|
|
275
|
+
*
|
|
276
|
+
* timestamp = Timestamp()
|
|
277
|
+
* timestamp.GetCurrentTime()
|
|
278
|
+
*
|
|
279
|
+
* # JSON Mapping
|
|
280
|
+
*
|
|
281
|
+
* In JSON format, the Timestamp type is encoded as a string in the
|
|
282
|
+
* [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
|
|
283
|
+
* format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
|
|
284
|
+
* where {year} is always expressed using four digits while {month}, {day},
|
|
285
|
+
* {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
|
|
286
|
+
* seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
|
|
287
|
+
* are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
|
|
288
|
+
* is required. A proto3 JSON serializer should always use UTC (as indicated by
|
|
289
|
+
* "Z") when printing the Timestamp type and a proto3 JSON parser should be
|
|
290
|
+
* able to accept both UTC and other timezones (as indicated by an offset).
|
|
291
|
+
*
|
|
292
|
+
* For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
|
|
293
|
+
* 01:30 UTC on January 15, 2017.
|
|
294
|
+
*
|
|
295
|
+
* In JavaScript, one can convert a Date object to this format using the
|
|
296
|
+
* standard
|
|
297
|
+
* [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
|
|
298
|
+
* method. In Python, a standard `datetime.datetime` object can be converted
|
|
299
|
+
* to this format using
|
|
300
|
+
* [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
|
301
|
+
* the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
|
302
|
+
* the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
|
303
|
+
* http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
|
304
|
+
* ) to obtain a formatter capable of generating timestamps in this format.
|
|
305
|
+
* @name Timestamp
|
|
306
|
+
* @package google.protobuf
|
|
307
|
+
* @see proto type: google.protobuf.Timestamp
|
|
308
|
+
*/
|
|
209
309
|
export declare const Timestamp: {
|
|
210
310
|
typeUrl: string;
|
|
211
311
|
is(o: any): o is Timestamp;
|
|
@@ -9,6 +9,100 @@ function createBaseTimestamp() {
|
|
|
9
9
|
nanos: 0
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* A Timestamp represents a point in time independent of any time zone or local
|
|
14
|
+
* calendar, encoded as a count of seconds and fractions of seconds at
|
|
15
|
+
* nanosecond resolution. The count is relative to an epoch at UTC midnight on
|
|
16
|
+
* January 1, 1970, in the proleptic Gregorian calendar which extends the
|
|
17
|
+
* Gregorian calendar backwards to year one.
|
|
18
|
+
*
|
|
19
|
+
* All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
|
|
20
|
+
* second table is needed for interpretation, using a [24-hour linear
|
|
21
|
+
* smear](https://developers.google.com/time/smear).
|
|
22
|
+
*
|
|
23
|
+
* The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
|
|
24
|
+
* restricting to that range, we ensure that we can convert to and from [RFC
|
|
25
|
+
* 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
|
|
26
|
+
*
|
|
27
|
+
* # Examples
|
|
28
|
+
*
|
|
29
|
+
* Example 1: Compute Timestamp from POSIX `time()`.
|
|
30
|
+
*
|
|
31
|
+
* Timestamp timestamp;
|
|
32
|
+
* timestamp.set_seconds(time(NULL));
|
|
33
|
+
* timestamp.set_nanos(0);
|
|
34
|
+
*
|
|
35
|
+
* Example 2: Compute Timestamp from POSIX `gettimeofday()`.
|
|
36
|
+
*
|
|
37
|
+
* struct timeval tv;
|
|
38
|
+
* gettimeofday(&tv, NULL);
|
|
39
|
+
*
|
|
40
|
+
* Timestamp timestamp;
|
|
41
|
+
* timestamp.set_seconds(tv.tv_sec);
|
|
42
|
+
* timestamp.set_nanos(tv.tv_usec * 1000);
|
|
43
|
+
*
|
|
44
|
+
* Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
|
|
45
|
+
*
|
|
46
|
+
* FILETIME ft;
|
|
47
|
+
* GetSystemTimeAsFileTime(&ft);
|
|
48
|
+
* UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
|
|
49
|
+
*
|
|
50
|
+
* // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
|
|
51
|
+
* // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
|
|
52
|
+
* Timestamp timestamp;
|
|
53
|
+
* timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
|
|
54
|
+
* timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
|
|
55
|
+
*
|
|
56
|
+
* Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
|
|
57
|
+
*
|
|
58
|
+
* long millis = System.currentTimeMillis();
|
|
59
|
+
*
|
|
60
|
+
* Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
|
61
|
+
* .setNanos((int) ((millis % 1000) * 1000000)).build();
|
|
62
|
+
*
|
|
63
|
+
* Example 5: Compute Timestamp from Java `Instant.now()`.
|
|
64
|
+
*
|
|
65
|
+
* Instant now = Instant.now();
|
|
66
|
+
*
|
|
67
|
+
* Timestamp timestamp =
|
|
68
|
+
* Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
|
69
|
+
* .setNanos(now.getNano()).build();
|
|
70
|
+
*
|
|
71
|
+
* Example 6: Compute Timestamp from current time in Python.
|
|
72
|
+
*
|
|
73
|
+
* timestamp = Timestamp()
|
|
74
|
+
* timestamp.GetCurrentTime()
|
|
75
|
+
*
|
|
76
|
+
* # JSON Mapping
|
|
77
|
+
*
|
|
78
|
+
* In JSON format, the Timestamp type is encoded as a string in the
|
|
79
|
+
* [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
|
|
80
|
+
* format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
|
|
81
|
+
* where {year} is always expressed using four digits while {month}, {day},
|
|
82
|
+
* {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
|
|
83
|
+
* seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
|
|
84
|
+
* are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
|
|
85
|
+
* is required. A proto3 JSON serializer should always use UTC (as indicated by
|
|
86
|
+
* "Z") when printing the Timestamp type and a proto3 JSON parser should be
|
|
87
|
+
* able to accept both UTC and other timezones (as indicated by an offset).
|
|
88
|
+
*
|
|
89
|
+
* For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
|
|
90
|
+
* 01:30 UTC on January 15, 2017.
|
|
91
|
+
*
|
|
92
|
+
* In JavaScript, one can convert a Date object to this format using the
|
|
93
|
+
* standard
|
|
94
|
+
* [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
|
|
95
|
+
* method. In Python, a standard `datetime.datetime` object can be converted
|
|
96
|
+
* to this format using
|
|
97
|
+
* [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
|
98
|
+
* the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
|
99
|
+
* the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
|
100
|
+
* http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
|
101
|
+
* ) to obtain a formatter capable of generating timestamps in this format.
|
|
102
|
+
* @name Timestamp
|
|
103
|
+
* @package google.protobuf
|
|
104
|
+
* @see proto type: google.protobuf.Timestamp
|
|
105
|
+
*/
|
|
12
106
|
exports.Timestamp = {
|
|
13
107
|
typeUrl: "/google.protobuf.Timestamp",
|
|
14
108
|
is(o) {
|
package/helper-func-types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/helper-func-types.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
3
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
4
4
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
5
5
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
6
6
|
*/
|
package/helpers.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/helpers.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
3
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
4
4
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
5
5
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
6
6
|
*/
|
|
@@ -5,6 +5,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
5
5
|
* NOTE: To prevent a single token from being transferred, set the
|
|
6
6
|
* TransfersEnabled parameter to true and then set the bank module's SendEnabled
|
|
7
7
|
* parameter for the denomination to false.
|
|
8
|
+
* @name Params
|
|
9
|
+
* @package ibc.applications.transfer.v1
|
|
10
|
+
* @see proto type: ibc.applications.transfer.v1.Params
|
|
8
11
|
*/
|
|
9
12
|
export interface Params {
|
|
10
13
|
/**
|
|
@@ -27,6 +30,9 @@ export interface ParamsProtoMsg {
|
|
|
27
30
|
* NOTE: To prevent a single token from being transferred, set the
|
|
28
31
|
* TransfersEnabled parameter to true and then set the bank module's SendEnabled
|
|
29
32
|
* parameter for the denomination to false.
|
|
33
|
+
* @name ParamsAmino
|
|
34
|
+
* @package ibc.applications.transfer.v1
|
|
35
|
+
* @see proto type: ibc.applications.transfer.v1.Params
|
|
30
36
|
*/
|
|
31
37
|
export interface ParamsAmino {
|
|
32
38
|
/**
|
|
@@ -48,11 +54,18 @@ export interface ParamsAminoMsg {
|
|
|
48
54
|
* Forwarding defines a list of port ID, channel ID pairs determining the path
|
|
49
55
|
* through which a packet must be forwarded, and an unwind boolean indicating if
|
|
50
56
|
* the coin should be unwinded to its native chain before forwarding.
|
|
57
|
+
* @name Forwarding
|
|
58
|
+
* @package ibc.applications.transfer.v1
|
|
59
|
+
* @see proto type: ibc.applications.transfer.v1.Forwarding
|
|
51
60
|
*/
|
|
52
61
|
export interface Forwarding {
|
|
53
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* optional unwinding for the token transfered
|
|
64
|
+
*/
|
|
54
65
|
unwind: boolean;
|
|
55
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* optional intermediate path through which packet will be forwarded
|
|
68
|
+
*/
|
|
56
69
|
hops: Hop[];
|
|
57
70
|
}
|
|
58
71
|
export interface ForwardingProtoMsg {
|
|
@@ -63,11 +76,18 @@ export interface ForwardingProtoMsg {
|
|
|
63
76
|
* Forwarding defines a list of port ID, channel ID pairs determining the path
|
|
64
77
|
* through which a packet must be forwarded, and an unwind boolean indicating if
|
|
65
78
|
* the coin should be unwinded to its native chain before forwarding.
|
|
79
|
+
* @name ForwardingAmino
|
|
80
|
+
* @package ibc.applications.transfer.v1
|
|
81
|
+
* @see proto type: ibc.applications.transfer.v1.Forwarding
|
|
66
82
|
*/
|
|
67
83
|
export interface ForwardingAmino {
|
|
68
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* optional unwinding for the token transfered
|
|
86
|
+
*/
|
|
69
87
|
unwind: boolean;
|
|
70
|
-
/**
|
|
88
|
+
/**
|
|
89
|
+
* optional intermediate path through which packet will be forwarded
|
|
90
|
+
*/
|
|
71
91
|
hops: HopAmino[];
|
|
72
92
|
}
|
|
73
93
|
export interface ForwardingAminoMsg {
|
|
@@ -77,6 +97,9 @@ export interface ForwardingAminoMsg {
|
|
|
77
97
|
/**
|
|
78
98
|
* Hop defines a port ID, channel ID pair specifying where tokens must be forwarded
|
|
79
99
|
* next in a multihop transfer.
|
|
100
|
+
* @name Hop
|
|
101
|
+
* @package ibc.applications.transfer.v1
|
|
102
|
+
* @see proto type: ibc.applications.transfer.v1.Hop
|
|
80
103
|
*/
|
|
81
104
|
export interface Hop {
|
|
82
105
|
portId: string;
|
|
@@ -89,6 +112,9 @@ export interface HopProtoMsg {
|
|
|
89
112
|
/**
|
|
90
113
|
* Hop defines a port ID, channel ID pair specifying where tokens must be forwarded
|
|
91
114
|
* next in a multihop transfer.
|
|
115
|
+
* @name HopAmino
|
|
116
|
+
* @package ibc.applications.transfer.v1
|
|
117
|
+
* @see proto type: ibc.applications.transfer.v1.Hop
|
|
92
118
|
*/
|
|
93
119
|
export interface HopAmino {
|
|
94
120
|
port_id: string;
|
|
@@ -98,6 +124,15 @@ export interface HopAminoMsg {
|
|
|
98
124
|
type: "cosmos-sdk/Hop";
|
|
99
125
|
value: HopAmino;
|
|
100
126
|
}
|
|
127
|
+
/**
|
|
128
|
+
* Params defines the set of IBC transfer parameters.
|
|
129
|
+
* NOTE: To prevent a single token from being transferred, set the
|
|
130
|
+
* TransfersEnabled parameter to true and then set the bank module's SendEnabled
|
|
131
|
+
* parameter for the denomination to false.
|
|
132
|
+
* @name Params
|
|
133
|
+
* @package ibc.applications.transfer.v1
|
|
134
|
+
* @see proto type: ibc.applications.transfer.v1.Params
|
|
135
|
+
*/
|
|
101
136
|
export declare const Params: {
|
|
102
137
|
typeUrl: string;
|
|
103
138
|
aminoType: string;
|
|
@@ -115,6 +150,14 @@ export declare const Params: {
|
|
|
115
150
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
116
151
|
registerTypeUrl(): void;
|
|
117
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* Forwarding defines a list of port ID, channel ID pairs determining the path
|
|
155
|
+
* through which a packet must be forwarded, and an unwind boolean indicating if
|
|
156
|
+
* the coin should be unwinded to its native chain before forwarding.
|
|
157
|
+
* @name Forwarding
|
|
158
|
+
* @package ibc.applications.transfer.v1
|
|
159
|
+
* @see proto type: ibc.applications.transfer.v1.Forwarding
|
|
160
|
+
*/
|
|
118
161
|
export declare const Forwarding: {
|
|
119
162
|
typeUrl: string;
|
|
120
163
|
aminoType: string;
|
|
@@ -132,6 +175,13 @@ export declare const Forwarding: {
|
|
|
132
175
|
toProtoMsg(message: Forwarding): ForwardingProtoMsg;
|
|
133
176
|
registerTypeUrl(): void;
|
|
134
177
|
};
|
|
178
|
+
/**
|
|
179
|
+
* Hop defines a port ID, channel ID pair specifying where tokens must be forwarded
|
|
180
|
+
* next in a multihop transfer.
|
|
181
|
+
* @name Hop
|
|
182
|
+
* @package ibc.applications.transfer.v1
|
|
183
|
+
* @see proto type: ibc.applications.transfer.v1.Hop
|
|
184
|
+
*/
|
|
135
185
|
export declare const Hop: {
|
|
136
186
|
typeUrl: string;
|
|
137
187
|
aminoType: string;
|
|
@@ -9,6 +9,15 @@ function createBaseParams() {
|
|
|
9
9
|
receiveEnabled: false
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Params defines the set of IBC transfer parameters.
|
|
14
|
+
* NOTE: To prevent a single token from being transferred, set the
|
|
15
|
+
* TransfersEnabled parameter to true and then set the bank module's SendEnabled
|
|
16
|
+
* parameter for the denomination to false.
|
|
17
|
+
* @name Params
|
|
18
|
+
* @package ibc.applications.transfer.v1
|
|
19
|
+
* @see proto type: ibc.applications.transfer.v1.Params
|
|
20
|
+
*/
|
|
12
21
|
exports.Params = {
|
|
13
22
|
typeUrl: "/ibc.applications.transfer.v1.Params",
|
|
14
23
|
aminoType: "cosmos-sdk/Params",
|
|
@@ -98,6 +107,14 @@ function createBaseForwarding() {
|
|
|
98
107
|
hops: []
|
|
99
108
|
};
|
|
100
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* Forwarding defines a list of port ID, channel ID pairs determining the path
|
|
112
|
+
* through which a packet must be forwarded, and an unwind boolean indicating if
|
|
113
|
+
* the coin should be unwinded to its native chain before forwarding.
|
|
114
|
+
* @name Forwarding
|
|
115
|
+
* @package ibc.applications.transfer.v1
|
|
116
|
+
* @see proto type: ibc.applications.transfer.v1.Forwarding
|
|
117
|
+
*/
|
|
101
118
|
exports.Forwarding = {
|
|
102
119
|
typeUrl: "/ibc.applications.transfer.v1.Forwarding",
|
|
103
120
|
aminoType: "cosmos-sdk/Forwarding",
|
|
@@ -195,6 +212,13 @@ function createBaseHop() {
|
|
|
195
212
|
channelId: ""
|
|
196
213
|
};
|
|
197
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* Hop defines a port ID, channel ID pair specifying where tokens must be forwarded
|
|
217
|
+
* next in a multihop transfer.
|
|
218
|
+
* @name Hop
|
|
219
|
+
* @package ibc.applications.transfer.v1
|
|
220
|
+
* @see proto type: ibc.applications.transfer.v1.Hop
|
|
221
|
+
*/
|
|
198
222
|
exports.Hop = {
|
|
199
223
|
typeUrl: "/ibc.applications.transfer.v1.Hop",
|
|
200
224
|
aminoType: "cosmos-sdk/Hop",
|
|
@@ -7,18 +7,31 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
7
7
|
* MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
|
|
8
8
|
* ICS20 enabled chains. See ICS Spec here:
|
|
9
9
|
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
10
|
+
* @name MsgTransfer
|
|
11
|
+
* @package ibc.applications.transfer.v1
|
|
12
|
+
* @see proto type: ibc.applications.transfer.v1.MsgTransfer
|
|
10
13
|
*/
|
|
11
14
|
export interface MsgTransfer {
|
|
12
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* the port on which the packet will be sent
|
|
17
|
+
*/
|
|
13
18
|
sourcePort: string;
|
|
14
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* the channel by which the packet will be sent
|
|
21
|
+
*/
|
|
15
22
|
sourceChannel: string;
|
|
16
|
-
/**
|
|
17
|
-
|
|
23
|
+
/**
|
|
24
|
+
* the token to be transferred. this field has been replaced by the tokens field.
|
|
25
|
+
* @deprecated
|
|
26
|
+
*/
|
|
18
27
|
token: Coin;
|
|
19
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* the sender address
|
|
30
|
+
*/
|
|
20
31
|
sender: string;
|
|
21
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* the recipient address on the destination chain
|
|
34
|
+
*/
|
|
22
35
|
receiver: string;
|
|
23
36
|
/**
|
|
24
37
|
* Timeout height relative to the current block height.
|
|
@@ -30,11 +43,17 @@ export interface MsgTransfer {
|
|
|
30
43
|
* The timeout is disabled when set to 0.
|
|
31
44
|
*/
|
|
32
45
|
timeoutTimestamp: bigint;
|
|
33
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* optional memo
|
|
48
|
+
*/
|
|
34
49
|
memo: string;
|
|
35
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* tokens to be transferred
|
|
52
|
+
*/
|
|
36
53
|
tokens: Coin[];
|
|
37
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* optional forwarding information
|
|
56
|
+
*/
|
|
38
57
|
forwarding?: Forwarding;
|
|
39
58
|
}
|
|
40
59
|
export interface MsgTransferProtoMsg {
|
|
@@ -45,18 +64,31 @@ export interface MsgTransferProtoMsg {
|
|
|
45
64
|
* MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
|
|
46
65
|
* ICS20 enabled chains. See ICS Spec here:
|
|
47
66
|
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
67
|
+
* @name MsgTransferAmino
|
|
68
|
+
* @package ibc.applications.transfer.v1
|
|
69
|
+
* @see proto type: ibc.applications.transfer.v1.MsgTransfer
|
|
48
70
|
*/
|
|
49
71
|
export interface MsgTransferAmino {
|
|
50
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* the port on which the packet will be sent
|
|
74
|
+
*/
|
|
51
75
|
source_port: string;
|
|
52
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* the channel by which the packet will be sent
|
|
78
|
+
*/
|
|
53
79
|
source_channel: string;
|
|
54
|
-
/**
|
|
55
|
-
|
|
80
|
+
/**
|
|
81
|
+
* the token to be transferred. this field has been replaced by the tokens field.
|
|
82
|
+
* @deprecated
|
|
83
|
+
*/
|
|
56
84
|
token: CoinAmino;
|
|
57
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* the sender address
|
|
87
|
+
*/
|
|
58
88
|
sender: string;
|
|
59
|
-
/**
|
|
89
|
+
/**
|
|
90
|
+
* the recipient address on the destination chain
|
|
91
|
+
*/
|
|
60
92
|
receiver: string;
|
|
61
93
|
/**
|
|
62
94
|
* Timeout height relative to the current block height.
|
|
@@ -68,38 +100,65 @@ export interface MsgTransferAmino {
|
|
|
68
100
|
* The timeout is disabled when set to 0.
|
|
69
101
|
*/
|
|
70
102
|
timeout_timestamp: string;
|
|
71
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* optional memo
|
|
105
|
+
*/
|
|
72
106
|
memo: string;
|
|
73
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* tokens to be transferred
|
|
109
|
+
*/
|
|
74
110
|
tokens: CoinAmino[];
|
|
75
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* optional forwarding information
|
|
113
|
+
*/
|
|
76
114
|
forwarding?: ForwardingAmino;
|
|
77
115
|
}
|
|
78
116
|
export interface MsgTransferAminoMsg {
|
|
79
117
|
type: "cosmos-sdk/MsgTransfer";
|
|
80
118
|
value: MsgTransferAmino;
|
|
81
119
|
}
|
|
82
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* MsgTransferResponse defines the Msg/Transfer response type.
|
|
122
|
+
* @name MsgTransferResponse
|
|
123
|
+
* @package ibc.applications.transfer.v1
|
|
124
|
+
* @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
|
|
125
|
+
*/
|
|
83
126
|
export interface MsgTransferResponse {
|
|
84
|
-
/**
|
|
127
|
+
/**
|
|
128
|
+
* sequence number of the transfer packet sent
|
|
129
|
+
*/
|
|
85
130
|
sequence: bigint;
|
|
86
131
|
}
|
|
87
132
|
export interface MsgTransferResponseProtoMsg {
|
|
88
133
|
typeUrl: "/ibc.applications.transfer.v1.MsgTransferResponse";
|
|
89
134
|
value: Uint8Array;
|
|
90
135
|
}
|
|
91
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* MsgTransferResponse defines the Msg/Transfer response type.
|
|
138
|
+
* @name MsgTransferResponseAmino
|
|
139
|
+
* @package ibc.applications.transfer.v1
|
|
140
|
+
* @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
|
|
141
|
+
*/
|
|
92
142
|
export interface MsgTransferResponseAmino {
|
|
93
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* sequence number of the transfer packet sent
|
|
145
|
+
*/
|
|
94
146
|
sequence: string;
|
|
95
147
|
}
|
|
96
148
|
export interface MsgTransferResponseAminoMsg {
|
|
97
149
|
type: "cosmos-sdk/MsgTransferResponse";
|
|
98
150
|
value: MsgTransferResponseAmino;
|
|
99
151
|
}
|
|
100
|
-
/**
|
|
152
|
+
/**
|
|
153
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
154
|
+
* @name MsgUpdateParams
|
|
155
|
+
* @package ibc.applications.transfer.v1
|
|
156
|
+
* @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
|
|
157
|
+
*/
|
|
101
158
|
export interface MsgUpdateParams {
|
|
102
|
-
/**
|
|
159
|
+
/**
|
|
160
|
+
* signer address
|
|
161
|
+
*/
|
|
103
162
|
signer: string;
|
|
104
163
|
/**
|
|
105
164
|
* params defines the transfer parameters to update.
|
|
@@ -112,9 +171,16 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
112
171
|
typeUrl: "/ibc.applications.transfer.v1.MsgUpdateParams";
|
|
113
172
|
value: Uint8Array;
|
|
114
173
|
}
|
|
115
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
176
|
+
* @name MsgUpdateParamsAmino
|
|
177
|
+
* @package ibc.applications.transfer.v1
|
|
178
|
+
* @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
|
|
179
|
+
*/
|
|
116
180
|
export interface MsgUpdateParamsAmino {
|
|
117
|
-
/**
|
|
181
|
+
/**
|
|
182
|
+
* signer address
|
|
183
|
+
*/
|
|
118
184
|
signer: string;
|
|
119
185
|
/**
|
|
120
186
|
* params defines the transfer parameters to update.
|
|
@@ -130,6 +196,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
130
196
|
/**
|
|
131
197
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
132
198
|
* MsgUpdateParams message.
|
|
199
|
+
* @name MsgUpdateParamsResponse
|
|
200
|
+
* @package ibc.applications.transfer.v1
|
|
201
|
+
* @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
|
|
133
202
|
*/
|
|
134
203
|
export interface MsgUpdateParamsResponse {
|
|
135
204
|
}
|
|
@@ -140,6 +209,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
140
209
|
/**
|
|
141
210
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
142
211
|
* MsgUpdateParams message.
|
|
212
|
+
* @name MsgUpdateParamsResponseAmino
|
|
213
|
+
* @package ibc.applications.transfer.v1
|
|
214
|
+
* @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
|
|
143
215
|
*/
|
|
144
216
|
export interface MsgUpdateParamsResponseAmino {
|
|
145
217
|
}
|
|
@@ -147,6 +219,14 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
147
219
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
148
220
|
value: MsgUpdateParamsResponseAmino;
|
|
149
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
|
|
224
|
+
* ICS20 enabled chains. See ICS Spec here:
|
|
225
|
+
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
226
|
+
* @name MsgTransfer
|
|
227
|
+
* @package ibc.applications.transfer.v1
|
|
228
|
+
* @see proto type: ibc.applications.transfer.v1.MsgTransfer
|
|
229
|
+
*/
|
|
150
230
|
export declare const MsgTransfer: {
|
|
151
231
|
typeUrl: string;
|
|
152
232
|
aminoType: string;
|
|
@@ -164,6 +244,12 @@ export declare const MsgTransfer: {
|
|
|
164
244
|
toProtoMsg(message: MsgTransfer): MsgTransferProtoMsg;
|
|
165
245
|
registerTypeUrl(): void;
|
|
166
246
|
};
|
|
247
|
+
/**
|
|
248
|
+
* MsgTransferResponse defines the Msg/Transfer response type.
|
|
249
|
+
* @name MsgTransferResponse
|
|
250
|
+
* @package ibc.applications.transfer.v1
|
|
251
|
+
* @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
|
|
252
|
+
*/
|
|
167
253
|
export declare const MsgTransferResponse: {
|
|
168
254
|
typeUrl: string;
|
|
169
255
|
aminoType: string;
|
|
@@ -181,6 +267,12 @@ export declare const MsgTransferResponse: {
|
|
|
181
267
|
toProtoMsg(message: MsgTransferResponse): MsgTransferResponseProtoMsg;
|
|
182
268
|
registerTypeUrl(): void;
|
|
183
269
|
};
|
|
270
|
+
/**
|
|
271
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
272
|
+
* @name MsgUpdateParams
|
|
273
|
+
* @package ibc.applications.transfer.v1
|
|
274
|
+
* @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
|
|
275
|
+
*/
|
|
184
276
|
export declare const MsgUpdateParams: {
|
|
185
277
|
typeUrl: string;
|
|
186
278
|
aminoType: string;
|
|
@@ -198,6 +290,13 @@ export declare const MsgUpdateParams: {
|
|
|
198
290
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
199
291
|
registerTypeUrl(): void;
|
|
200
292
|
};
|
|
293
|
+
/**
|
|
294
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
295
|
+
* MsgUpdateParams message.
|
|
296
|
+
* @name MsgUpdateParamsResponse
|
|
297
|
+
* @package ibc.applications.transfer.v1
|
|
298
|
+
* @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
|
|
299
|
+
*/
|
|
201
300
|
export declare const MsgUpdateParamsResponse: {
|
|
202
301
|
typeUrl: string;
|
|
203
302
|
aminoType: string;
|