@hinkal/common 0.0.115 → 0.0.117
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/@virtual_vite-plugin-virtual/constants.mjs +7 -0
- package/API/API.mjs +58 -0
- package/API/HinkalPointsCalls.mjs +44 -0
- package/API/callBeefyGraphAPI.mjs +43 -0
- package/API/callCurveAPI.mjs +156 -0
- package/API/callMonitor.mjs +36 -0
- package/API/callOdosAPI.mjs +50 -0
- package/API/callOneInchAPI.mjs +43 -0
- package/API/callRelayer.mjs +38 -0
- package/API/checkRisk.mjs +36 -0
- package/API/dataServerCalls.mjs +38 -0
- package/API/fetchCommitmentsCache.mjs +37 -0
- package/API/fetchNullifiers.mjs +36 -0
- package/API/getAxelarGasEstimate.mjs +43 -0
- package/API/getCoingeckoPrice.mjs +27 -0
- package/API/getConnextReceiveFee.mjs +36 -0
- package/API/getGasEstimates.mjs +44 -0
- package/API/getRelayerURL.mjs +37 -0
- package/API/getServerURL.mjs +72 -0
- package/API/getTokenPrice.mjs +47 -0
- package/API/kycCalls.mjs +32 -0
- package/API/passwordCalls.mjs +42 -0
- package/API/referralProgramCalls.mjs +64 -0
- package/API/relayCalls.mjs +36 -0
- package/API/restoreSnapshots.mjs +38 -0
- package/API/rewardsPointsCalls.mjs +46 -0
- package/API/userVerifyTransactions.mjs +51 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/artifacts/contracts/deposit-service/DepositReceiver.sol/DepositReceiver.json.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/artifacts/contracts/deposit-service/ReceiverImplementation.sol/ReceiverImplementation.json.mjs +191 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/assets/index.mjs +62 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/assets/types/index.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/chains/index.mjs +104 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/chains/supported-chains-list.mjs +119 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/chains/types/index.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/constants/EvmChain.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/constants/GasToken.mjs +64 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/constants/index.mjs +74 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/index.mjs +33 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarAssetTransfer.mjs +337 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarGateway.mjs +186 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarQueryAPI.mjs +418 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarQueryClient/index.mjs +52 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarQueryClient/types/index.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/const/index.mjs +16 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/index.mjs +93 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/types/AxelarnetTxTypes.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/types/EvmTxTypes.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/BigNumberUtils.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/GatewayTx.mjs +23 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarDepositRecoveryAPI.mjs +71 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarGMPRecoveryAPI.mjs +698 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarRecoveryApi.mjs +349 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarTransferAPI.mjs +80 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/AxelarRpcClient.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/EVMClient/index.mjs +59 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/helpers/cosmos.mjs +61 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/helpers/retryRpc.mjs +50 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/chain/index.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/chain/mainnet.mjs +123 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/chain/testnet.mjs +132 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/cosmosGasReceiverOptions.mjs +11 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/error.mjs +100 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/s3.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/axelarHelper.mjs +172 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/contractCallHelper.mjs +65 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/contractEventHelper.mjs +96 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/getCommandId.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/index.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/mappers.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/providerHelper.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/index.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/interface/index.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/abi/IAxelarExecutable.mjs +98 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/abi/erc20Abi.json.mjs +225 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/fee/getL1Fee.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/index.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/types/index.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/RestService.mjs +83 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/SocketService.mjs +82 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/index.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/types/index.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/index.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/retry.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/sleep.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/validateChain.mjs +84 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/validateDestinationAddress.mjs +68 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/wallet.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/bech32/dist/index.mjs +137 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/index.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/md5.mjs +59 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/nil.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/parse.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/regex.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/rng.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/sha1.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/stringify.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v1.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v3.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v35.mjs +33 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v4.mjs +16 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v5.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/validate.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/version.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/query.mjs +140 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/service.mjs +73 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/tx.mjs +982 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/types.mjs +314 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/query.mjs +1778 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/service.mjs +137 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/tx.mjs +1352 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/types.mjs +1554 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/exported/v1beta1/types.mjs +546 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/query.mjs +1166 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/service.mjs +101 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/tx.mjs +547 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/types.mjs +313 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/snapshot/exported/v1beta1/types.mjs +214 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/exported/v1beta1/types.mjs +305 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/tofnd/v1beta1/tofnd.mjs +758 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/v1beta1/service.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/v1beta1/tx.mjs +948 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/v1beta1/types.mjs +442 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/utils/v1beta1/bitmap.mjs +113 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/utils/v1beta1/threshold.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/vote/exported/v1beta1/types.mjs +282 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/cosmos/base/query/v1beta1/pagination.mjs +149 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/cosmos/base/v1beta1/coin.mjs +183 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/google/protobuf/any.mjs +92 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/google/protobuf/duration.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/google/protobuf/timestamp.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/long/umd/index.mjs +323 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/minimal.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/index-minimal.mjs +17 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/reader.mjs +185 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/reader_buffer.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/roots.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/rpc/service.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/rpc.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/util/longbits.mjs +75 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/util/minimal.mjs +141 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/writer.mjs +133 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/writer_buffer.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/compress.mjs +79 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/generated/codecimpl.mjs +1473 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/ics23.mjs +65 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/index.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/ops.mjs +99 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/proofs.mjs +152 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/specs.mjs +80 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/_assert.mjs +46 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/_md.mjs +72 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/_u64.mjs +85 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/crypto.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/ripemd160.mjs +75 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/sha256.mjs +125 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/sha512.mjs +150 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/utils.mjs +138 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/addresses.mjs +45 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/coins.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/encoding.mjs +142 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/index.mjs +114 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/multisig.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/paths.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/pubkeys.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/secp256k1hdwallet.mjs +218 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/secp256k1wallet.mjs +54 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/signature.mjs +34 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/signdoc.mjs +46 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/stdtx.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/wallet.mjs +50 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/bip39.mjs +2152 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/hmac.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/index.mjs +98 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/keccak.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/libsodium.mjs +94 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/pbkdf2.mjs +81 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/random.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/ripemd.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/secp256k1.mjs +116 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/secp256k1signature.mjs +122 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/sha.mjs +45 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/slip10.mjs +150 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/utils.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/_assert.mjs +46 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/_md.mjs +72 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/_u64.mjs +85 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/crypto.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/hmac.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/pbkdf2.mjs +55 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/ripemd160.mjs +75 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/sha256.mjs +125 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/sha3.mjs +124 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/sha512.mjs +150 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/utils.mjs +138 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/ascii.mjs +24 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/base64.mjs +41 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/bech32.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/hex.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/index.mjs +54 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/rfc3339.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/utf8.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/math/build/decimal.mjs +175 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/math/build/index.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/math/build/integers.mjs +183 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/coins.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/decode.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/directsecp256k1hdwallet.mjs +214 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/directsecp256k1wallet.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/index.mjs +88 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/paths.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/pubkey.mjs +86 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/registry.mjs +136 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/signer.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/signing.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/wallet.mjs +50 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/index.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/queueingstreamingsocket.mjs +70 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/reconnectingsocket.mjs +52 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/socketwrapper.mjs +94 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/streamingsocket.mjs +38 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/accounts.mjs +59 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/aminotypes.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/events.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/fee.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/index.mjs +226 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/logs.mjs +76 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/auth/queries.mjs +23 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/authz/aminomessages.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/authz/messages.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/authz/queries.mjs +33 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/bank/aminomessages.mjs +55 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/bank/messages.mjs +17 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/bank/queries.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/crisis/aminomessages.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/distribution/aminomessages.mjs +69 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/distribution/messages.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/distribution/queries.mjs +51 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/evidence/aminomessages.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/feegrant/aminomessages.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/feegrant/messages.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/feegrant/queries.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/gov/aminomessages.mjs +142 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/gov/messages.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/gov/queries.mjs +46 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/ibc/aminomessages.mjs +59 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/ibc/messages.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/ibc/queries.mjs +311 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/index.mjs +248 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/mint/queries.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/slashing/aminomessages.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/slashing/queries.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/staking/aminomessages.mjs +159 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/staking/messages.mjs +36 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/staking/queries.mjs +72 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/tx/queries.mjs +58 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/vesting/aminomessages.mjs +38 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/vesting/messages.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/multisignature.mjs +66 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/queryclient/index.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/queryclient/queryclient.mjs +127 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/queryclient/utils.mjs +45 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/signingstargateclient.mjs +240 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/stargateclient.mjs +251 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/concat.mjs +58 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/defaultvalueproducer.mjs +43 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/dropduplicates.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/index.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/promise.mjs +48 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/reducer.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/valueandupdates.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/addresses.mjs +38 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/dates.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/index.mjs +100 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/inthelpers.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/jsonrpc.mjs +23 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/http.mjs +36 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/httpbatchclient.mjs +63 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/httpclient.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/index.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/rpcclient.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/websocketclient.mjs +125 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/adaptor/index.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/adaptor/requests.mjs +146 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/adaptor/responses.mjs +432 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/encodings.mjs +118 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/hasher.mjs +63 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/index.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/requests.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/responses.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/tendermint34client.mjs +283 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/adaptor/index.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/adaptor/requests.mjs +146 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/adaptor/responses.mjs +432 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/encodings.mjs +118 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/hasher.mjs +63 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/index.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/requests.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/responses.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/tendermint37client.mjs +283 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermintclient.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/types.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/compatibility.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/id.mjs +11 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/index.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/jsonrpcclient.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/parse.mjs +100 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/types.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/index.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/adapters/xhr.mjs +67 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/axios.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/cancel/Cancel.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/cancel/CancelToken.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/cancel/isCancel.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/Axios.mjs +79 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/InterceptorManager.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/buildFullPath.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/createError.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/dispatchRequest.mjs +44 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/enhanceError.mjs +23 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/mergeConfig.mjs +49 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/settle.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/transformData.mjs +11 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/defaults.mjs +73 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/bind.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/buildURL.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/combineURLs.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/cookies.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/isAbsoluteURL.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/isAxiosError.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/isURLSameOrigin.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/normalizeHeaderName.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/parseHeaders.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/spread.mjs +11 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/validator.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/utils.mjs +113 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/package.json.mjs +105 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/arrays.mjs +24 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/assert.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/index.mjs +38 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/sleep.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/typechecks.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/abi-coder.mjs +79 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/abstract-coder.mjs +111 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/address.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/anonymous.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/array.mjs +131 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/boolean.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/bytes.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/fixed-bytes.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/null.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/number.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/string.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/tuple.mjs +36 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/fragments.mjs +423 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/index.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/interface.mjs +382 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-provider/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-provider/lib.esm/index.mjs +67 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-signer/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-signer/lib.esm/index.mjs +223 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/address/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/address/lib.esm/index.mjs +84 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/base64/lib.esm/base64.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/base64/lib.esm/index.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/basex/lib.esm/index.mjs +55 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bignumber/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bignumber/lib.esm/bignumber.mjs +175 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bignumber/lib.esm/fixednumber.mjs +196 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bytes/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bytes/lib.esm/index.mjs +191 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/addresses.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/bignumbers.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/hashes.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/index.mjs +17 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/strings.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/contracts/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/contracts/lib.esm/index.mjs +535 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/ens-normalize/decoder.mjs +177 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/ens-normalize/include.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/ens-normalize/lib.mjs +74 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/id.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/index.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/message.mjs +16 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/namehash.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/typed-data.mjs +298 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hdnode/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hdnode/lib.esm/index.mjs +204 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/crowdsale.mjs +36 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/index.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/inspect.mjs +39 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/keystore.mjs +207 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/utils.mjs +48 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/keccak256/lib.esm/index.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/logger/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/logger/lib.esm/index.mjs +192 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/networks/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/networks/lib.esm/index.mjs +185 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/pbkdf2/lib.esm/pbkdf2.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/properties/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/properties/lib.esm/index.mjs +122 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.mjs +67 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/ankr-provider.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/base-provider.mjs +1240 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.mjs +58 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.mjs +309 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/fallback-provider.mjs +341 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/formatter.mjs +302 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/index.mjs +86 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/infura-provider.mjs +83 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/ipc-provider.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.mjs +480 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.mjs +36 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/pocket-provider.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.mjs +80 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/web3-provider.mjs +84 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/websocket-provider.mjs +204 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/ws.mjs +17 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/index.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/random.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/shuffle.mjs +11 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/rlp/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/rlp/lib.esm/index.mjs +78 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/index.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/sha2.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/types.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/signing-key/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/signing-key/lib.esm/elliptic.mjs +1133 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/signing-key/lib.esm/index.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/solidity/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/solidity/lib.esm/index.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/bytes32.mjs +24 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/idna.mjs +137 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/index.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/utf8.mjs +151 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/transactions/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/transactions/lib.esm/index.mjs +246 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/units/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/units/lib.esm/index.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wallet/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wallet/lib.esm/index.mjs +149 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/web/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/web/lib.esm/geturl.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/web/lib.esm/index.mjs +254 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/lang-en.mjs +23 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/wordlist.mjs +37 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/wordlists.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@iden3/binfileutils/node_modules/ffjavascript/build/browser.esm.mjs +389 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@iden3/binfileutils/src/binfileutils.mjs +82 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/aspromise/index.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/base64/index.mjs +61 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/eventemitter/index.mjs +33 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/float/index.mjs +110 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/inquire/index.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/pool/index.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/utf8/index.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@socket.io/component-emitter/index.mjs +54 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/aes-js/index.mjs +318 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/assert.mjs +413 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/internal/assert/assertion_error.mjs +341 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/internal/errors.mjs +176 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/internal/util/comparisons.mjs +389 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/async-mutex/index.mjs +153 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/available-typed-arrays/index.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/adapters/adapters.mjs +51 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/adapters/xhr.mjs +109 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/axios.mjs +46 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/cancel/CancelToken.mjs +73 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/cancel/CanceledError.mjs +11 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/cancel/isCancel.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/Axios.mjs +131 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/AxiosError.mjs +54 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/AxiosHeaders.mjs +165 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/InterceptorManager.mjs +58 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/buildFullPath.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/dispatchRequest.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/mergeConfig.mjs +72 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/settle.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/transformData.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/defaults/index.mjs +88 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/defaults/transitional.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/env/data.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/AxiosURLSearchParams.mjs +33 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/HttpStatusCode.mjs +72 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/bind.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/buildURL.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/combineURLs.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/cookies.mjs +32 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/formDataToJSON.mjs +32 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/isAbsoluteURL.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/isAxiosError.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/isURLSameOrigin.mjs +37 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/null.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/parseHeaders.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/parseProtocol.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/speedometer.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/spread.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/toFormData.mjs +84 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/toURLEncodedForm.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/validator.mjs +51 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/classes/Blob.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/classes/FormData.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/classes/URLSearchParams.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/index.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/common/utils.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/index.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/utils.mjs +224 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/browser.mjs +310 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/ascii.mjs +24 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/base64.mjs +38 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/hex.mjs +39 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/utf16le.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/utf8.mjs +75 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/base64-js/index.mjs +51 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bech32/index.mjs +135 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/datastream.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/eventify.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/events.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/jsonstream.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/stream.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/walk.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/api/blake.mjs +2 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake.mjs +218 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake224.mjs +3 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake256.mjs +3 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake384.mjs +3 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake512.mjs +3 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake2b/index.mjs +387 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake2b-wasm/blake2b.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake2b-wasm/index.mjs +55 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bn.js/lib/bn.mjs +1162 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/brorand/index.mjs +44 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/buffer/index.mjs +981 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/call-bind/callBound.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/call-bind/index.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/check-types/src/check-types.mjs +447 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circom_runtime/js/utils.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circom_runtime/js/witness_calculator.mjs +236 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/node_modules/ffjavascript/build/browser.esm.mjs +10170 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/babyjub.mjs +74 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_constants.mjs +209 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_constants_opt.mjs +24809 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_gencontract.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_wasm.mjs +316 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/clone-deep/index.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/clone-deep/node_modules/is-plain-object/index.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/auth/v1beta1/auth.mjs +249 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/auth/v1beta1/query.mjs +872 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/authz/v1beta1/authz.mjs +219 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/authz/v1beta1/query.mjs +339 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/authz/v1beta1/tx.mjs +305 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/bank/v1beta1/bank.mjs +394 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/bank/v1beta1/query.mjs +1081 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/bank/v1beta1/tx.mjs +383 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/base/abci/v1beta1/abci.mjs +599 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/base/query/v1beta1/pagination.mjs +138 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/base/v1beta1/coin.mjs +203 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/ed25519/keys.mjs +113 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/multisig/keys.mjs +83 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/multisig/v1beta1/multisig.mjs +120 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/secp256k1/keys.mjs +113 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/distribution/v1beta1/distribution.mjs +611 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/distribution/v1beta1/query.mjs +922 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/distribution/v1beta1/tx.mjs +548 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/feegrant/v1beta1/feegrant.mjs +249 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/feegrant/v1beta1/query.mjs +322 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/feegrant/v1beta1/tx.mjs +204 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/gov/v1beta1/gov.mjs +612 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/gov/v1beta1/query.mjs +779 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/gov/v1beta1/tx.mjs +401 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/ics23/v1/proofs.mjs +848 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/mint/v1beta1/mint.mjs +143 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/mint/v1beta1/query.mjs +264 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/slashing/v1beta1/query.mjs +293 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/slashing/v1beta1/slashing.mjs +162 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/staking/v1beta1/query.mjs +1308 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/staking/v1beta1/staking.mjs +1233 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/staking/v1beta1/tx.mjs +688 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/tx/signing/v1beta1/signing.mjs +316 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/tx/v1beta1/service.mjs +963 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/tx/v1beta1/tx.mjs +726 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/upgrade/v1beta1/upgrade.mjs +235 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/vesting/v1beta1/tx.mjs +320 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/vesting/v1beta1/vesting.mjs +328 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/google/protobuf/any.mjs +78 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/google/protobuf/duration.mjs +78 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/google/protobuf/timestamp.mjs +78 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/helpers.mjs +117 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/applications/transfer/v1/query.mjs +466 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/applications/transfer/v1/transfer.mjs +123 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/applications/transfer/v1/tx.mjs +160 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/channel/v1/channel.mjs +521 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/channel/v1/query.mjs +1422 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/channel/v1/tx.mjs +1086 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/client/v1/client.mjs +370 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/client/v1/query.mjs +840 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/client/v1/tx.mjs +394 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/commitment/v1/commitment.mjs +199 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/connection/v1/connection.mjs +433 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/connection/v1/query.mjs +611 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/connection/v1/tx.mjs +491 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/lightclients/tendermint/v1/tendermint.mjs +340 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/abci/types.mjs +2787 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/crypto/keys.mjs +78 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/crypto/proof.mjs +276 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/block.mjs +92 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/evidence.mjs +247 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/params.mjs +310 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/types.mjs +861 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/validator.mjs +185 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/version/types.mjs +123 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cross-fetch/dist/browser-ponyfill.mjs +277 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/debug/node_modules/ms/index.mjs +86 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/debug/src/browser.mjs +139 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/debug/src/common.mjs +86 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/define-data-property/index.mjs +33 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/define-properties/index.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ejs/lib/ejs.mjs +310 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ejs/lib/utils.mjs +86 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ejs/package.json.mjs +62 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/base.mjs +201 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/edwards.mjs +145 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/index.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/mont.mjs +78 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/short.mjs +392 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curves.mjs +158 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/ec/index.mjs +107 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/ec/key.mjs +55 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/ec/signature.mjs +81 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/eddsa/index.mjs +60 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/eddsa/key.mjs +50 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/eddsa/signature.mjs +32 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.mjs +786 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/utils.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/node_modules/bn.js/lib/bn.mjs +1186 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/package.json.mjs +73 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/has-cors.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/parseqs.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/parseuri.mjs +43 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/yeast.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/globalThis.browser.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/index.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/socket.mjs +338 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transport.mjs +124 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/index.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/polling.mjs +284 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/websocket-constructor.browser.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/websocket.mjs +102 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/webtransport.mjs +65 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/xmlhttprequest.browser.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/util.mjs +29 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/commons.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.mjs +25 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/decodePacket.browser.mjs +43 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/encodePacket.browser.mjs +31 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/index.mjs +115 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-define-property/index.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/eval.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/index.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/range.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/ref.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/syntax.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/type.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/uri.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib/utils.mjs +285 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/_version.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/ethers.mjs +34 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/index.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/utils.mjs +132 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/events/events.mjs +229 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/bigmemfile.mjs +111 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/fastfile.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/memfile.mjs +89 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/osfile.mjs +229 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/main.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/bigbuffer.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/bls12381.mjs +29 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/bn128.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/chacha.mjs +50 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/curves.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_applykey.mjs +58 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_batchconvert.mjs +37 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_fft.mjs +307 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_multiexp.mjs +122 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_pairing.mjs +70 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/f1field.mjs +230 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/fft.mjs +65 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/fsqrt.mjs +103 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/futils.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/random.mjs +29 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/scalar.mjs +216 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/threadman.mjs +124 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/threadman_thread.mjs +87 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/utils.mjs +154 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_curve.mjs +234 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_field1.mjs +171 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_field2.mjs +104 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_field3.mjs +104 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/for-each/index.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/function-bind/implementation.mjs +42 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/function-bind/index.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/get-intrinsic/index.mjs +240 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/implementation.browser.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/index.mjs +16 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/polyfill.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/shim.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/gopd/index.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-property-descriptors/index.mjs +17 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-proto/index.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-symbols/index.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-symbols/shams.mjs +27 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-tostringtag/shams.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/common.mjs +39 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/hmac.mjs +29 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/ripemd.mjs +376 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/1.mjs +47 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/224.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/256.mjs +111 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/384.mjs +38 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/512.mjs +309 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/common.mjs +44 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/utils.mjs +160 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hasown/index.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hmac-drbg/lib/hmac-drbg.mjs +49 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hoopy/index.mjs +48 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ieee754/index.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/inherits/inherits_browser.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-arguments/index.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-callable/index.mjs +70 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-generator-function/index.mjs +28 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/implementation.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/index.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/polyfill.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/shim.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-typed-array/index.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/isobject/index.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/isomorphic-ws/browser.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/js-sha3/src/sha3.mjs +271 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/jsonpath/jsonpath.mjs +3171 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/kind-of/index.mjs +113 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium/dist/modules/libsodium.mjs +2748 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium-sumo/dist/modules-sumo/libsodium-sumo.mjs +4588 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium-wrappers/dist/modules/libsodium-wrappers.mjs +2585 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium-wrappers-sumo/dist/modules-sumo/libsodium-wrappers.mjs +2581 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/long/src/long.mjs +673 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/minimalistic-assert/index.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/minimalistic-crypto-utils/lib/utils.mjs +39 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/nanoassert/index.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/implementation.mjs +8 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/index.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/polyfill.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/shim.mjs +20 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-keys/implementation.mjs +93 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-keys/index.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-keys/isArguments.mjs +7 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object.assign/implementation.mjs +29 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object.assign/polyfill.mjs +26 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/possible-typed-array-names/index.mjs +16 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/minimal.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/index-minimal.mjs +17 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/reader.mjs +179 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/reader_buffer.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/roots.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/rpc/service.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/rpc.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/util/longbits.mjs +75 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/util/minimal.mjs +118 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/writer.mjs +133 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/writer_buffer.mjs +35 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/errors-browser.mjs +72 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_duplex.mjs +73 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_passthrough.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_readable.mjs +366 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_transform.mjs +68 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_writable.mjs +246 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/async_iterator.mjs +133 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/buffer_list.mjs +177 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/destroy.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/end-of-stream.mjs +48 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/from-browser.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/pipeline.mjs +69 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/state.mjs +23 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/stream-browser.mjs +5 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/readable-browser.mjs +15 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/safe-buffer/index.mjs +39 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/scrypt-js/scrypt.mjs +298 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/set-function-length/index.mjs +32 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/shallow-clone/index.mjs +66 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/curves.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/fflonk.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/groth16_exportsoliditycalldata.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/groth16_fullprove.mjs +13 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/groth16_prove.mjs +96 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/misc.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/r1cs_info.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/wtns_calculate.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/wtns_utils.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/zkey_constants.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/zkey_utils.mjs +56 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/contrib/backo2.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/index.mjs +46 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/manager.mjs +273 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/on.mjs +12 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/socket.mjs +627 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/url.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-parser/build/cjs/binary.mjs +52 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-parser/build/cjs/index.mjs +207 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-parser/build/cjs/is-binary.mjs +30 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/standard-error/index.mjs +14 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/standard-http-error/codes.json.mjs +66 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/standard-http-error/index.mjs +53 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/string-similarity-js/dist/string-similarity.mjs +18 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/string_decoder/lib/string_decoder.mjs +172 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/tryer/src/tryer.mjs +81 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ua-parser-js/src/ua-parser.mjs +1168 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util/support/isBufferBrowser.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util/support/types.mjs +189 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util/util.mjs +399 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util-deprecate/browser.mjs +29 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/native.mjs +6 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/rng.mjs +10 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/stringify.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/v4.mjs +19 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/codebuilder.mjs +319 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/functionbuilder.mjs +73 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/modulebuilder.mjs +217 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/utils.mjs +100 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/index.mjs +9 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/bigint.mjs +106 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/bls12381/build_bls12381.mjs +917 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/bn128/build_bn128.mjs +836 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_applykey.mjs +40 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_batchconvertion.mjs +59 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_batchinverse.mjs +111 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_batchop.mjs +75 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_curve_jacobian_a0.mjs +925 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f1.mjs +43 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f1m.mjs +680 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f2m.mjs +314 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f3m.mjs +273 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_fft.mjs +1031 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_int.mjs +730 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_multiexp.mjs +395 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_pol.mjs +97 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_qap.mjs +274 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_timesscalar.mjs +52 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_timesscalarnaf.mjs +187 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/utils.mjs +21 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/web-worker/browser.mjs +4 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/which-typed-array/index.mjs +71 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/xstream/index.mjs +765 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/xstream/node_modules/symbol-observable/lib/ponyfill.mjs +22 -0
- package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/xstream/node_modules/symbol-observable/ponyfill.mjs +6 -0
- package/_virtual/AxelarAssetTransfer.mjs +4 -0
- package/_virtual/AxelarDepositRecoveryAPI.mjs +4 -0
- package/_virtual/AxelarGMPRecoveryAPI.mjs +4 -0
- package/_virtual/AxelarGateway.mjs +4 -0
- package/_virtual/AxelarQueryAPI.mjs +4 -0
- package/_virtual/AxelarRecoveryApi.mjs +4 -0
- package/_virtual/AxelarRpcClient.mjs +4 -0
- package/_virtual/AxelarTransferAPI.mjs +4 -0
- package/_virtual/AxelarnetTxTypes.mjs +4 -0
- package/_virtual/BigNumberUtils.mjs +4 -0
- package/_virtual/EvmChain.mjs +4 -0
- package/_virtual/EvmTxTypes.mjs +4 -0
- package/_virtual/GasToken.mjs +4 -0
- package/_virtual/GatewayTx.mjs +4 -0
- package/_virtual/IAxelarExecutable.mjs +4 -0
- package/_virtual/RestService.mjs +4 -0
- package/_virtual/SocketService.mjs +4 -0
- package/_virtual/___vite-browser-external.mjs +6 -0
- package/_virtual/__vite-browser-external.mjs +4 -0
- package/_virtual/_assert.mjs +4 -0
- package/_virtual/_assert2.mjs +4 -0
- package/_virtual/_commonjs-dynamic-modules.mjs +6 -0
- package/_virtual/_commonjsHelpers.mjs +30 -0
- package/_virtual/_md.mjs +4 -0
- package/_virtual/_md2.mjs +4 -0
- package/_virtual/_u64.mjs +4 -0
- package/_virtual/_u642.mjs +4 -0
- package/_virtual/abci.mjs +4 -0
- package/_virtual/accounts.mjs +4 -0
- package/_virtual/addresses.mjs +4 -0
- package/_virtual/addresses2.mjs +4 -0
- package/_virtual/aminomessages.mjs +4 -0
- package/_virtual/aminomessages10.mjs +4 -0
- package/_virtual/aminomessages11.mjs +4 -0
- package/_virtual/aminomessages2.mjs +4 -0
- package/_virtual/aminomessages3.mjs +4 -0
- package/_virtual/aminomessages4.mjs +4 -0
- package/_virtual/aminomessages5.mjs +4 -0
- package/_virtual/aminomessages6.mjs +4 -0
- package/_virtual/aminomessages7.mjs +4 -0
- package/_virtual/aminomessages8.mjs +4 -0
- package/_virtual/aminomessages9.mjs +4 -0
- package/_virtual/aminotypes.mjs +4 -0
- package/_virtual/any.mjs +4 -0
- package/_virtual/any2.mjs +4 -0
- package/_virtual/arrays.mjs +4 -0
- package/_virtual/ascii.mjs +4 -0
- package/_virtual/assert.mjs +2 -0
- package/_virtual/assert2.mjs +4 -0
- package/_virtual/assert3.mjs +4 -0
- package/_virtual/auth.mjs +4 -0
- package/_virtual/authz.mjs +4 -0
- package/_virtual/axelarHelper.mjs +4 -0
- package/_virtual/axios.mjs +4 -0
- package/_virtual/backo2.mjs +4 -0
- package/_virtual/bank.mjs +4 -0
- package/_virtual/base64-arraybuffer.mjs +4 -0
- package/_virtual/base64.mjs +4 -0
- package/_virtual/bech32.mjs +4 -0
- package/_virtual/bigint.mjs +4 -0
- package/_virtual/binary.mjs +4 -0
- package/_virtual/bip39.mjs +4 -0
- package/_virtual/bitmap.mjs +4 -0
- package/_virtual/block.mjs +4 -0
- package/_virtual/bn.mjs +4 -0
- package/_virtual/bn2.mjs +4 -0
- package/_virtual/browser-ponyfill.mjs +4 -0
- package/_virtual/browser.mjs +4 -0
- package/_virtual/browser2.mjs +4 -0
- package/_virtual/channel.mjs +4 -0
- package/_virtual/check-types.mjs +4 -0
- package/_virtual/client.mjs +4 -0
- package/_virtual/coin.mjs +4 -0
- package/_virtual/coin2.mjs +4 -0
- package/_virtual/coins.mjs +4 -0
- package/_virtual/coins2.mjs +4 -0
- package/_virtual/commitment.mjs +4 -0
- package/_virtual/common.mjs +4 -0
- package/_virtual/common2.mjs +4 -0
- package/_virtual/commons.mjs +4 -0
- package/_virtual/compatibility.mjs +4 -0
- package/_virtual/compress.mjs +4 -0
- package/_virtual/concat.mjs +4 -0
- package/_virtual/connection.mjs +4 -0
- package/_virtual/contractCallHelper.mjs +4 -0
- package/_virtual/contractEventHelper.mjs +4 -0
- package/_virtual/cosmos.mjs +4 -0
- package/_virtual/cosmosGasReceiverOptions.mjs +4 -0
- package/_virtual/crypto.mjs +4 -0
- package/_virtual/crypto2.mjs +4 -0
- package/_virtual/curves.mjs +4 -0
- package/_virtual/dates.mjs +4 -0
- package/_virtual/decimal.mjs +4 -0
- package/_virtual/decode.mjs +4 -0
- package/_virtual/decodePacket.browser.mjs +4 -0
- package/_virtual/defaultvalueproducer.mjs +4 -0
- package/_virtual/directsecp256k1hdwallet.mjs +4 -0
- package/_virtual/directsecp256k1wallet.mjs +4 -0
- package/_virtual/distribution.mjs +4 -0
- package/_virtual/dropduplicates.mjs +4 -0
- package/_virtual/duration.mjs +4 -0
- package/_virtual/duration2.mjs +4 -0
- package/_virtual/ejs.mjs +4 -0
- package/_virtual/elliptic.mjs +4 -0
- package/_virtual/encodePacket.browser.mjs +4 -0
- package/_virtual/encoding.mjs +4 -0
- package/_virtual/encodings.mjs +4 -0
- package/_virtual/encodings2.mjs +4 -0
- package/_virtual/error.mjs +4 -0
- package/_virtual/errors-browser.mjs +4 -0
- package/_virtual/errors.mjs +4 -0
- package/_virtual/events.mjs +4 -0
- package/_virtual/events2.mjs +4 -0
- package/_virtual/events3.mjs +4 -0
- package/_virtual/evidence.mjs +4 -0
- package/_virtual/fee.mjs +4 -0
- package/_virtual/feegrant.mjs +4 -0
- package/_virtual/getCommandId.mjs +4 -0
- package/_virtual/getL1Fee.mjs +4 -0
- package/_virtual/globalThis.browser.mjs +4 -0
- package/_virtual/gov.mjs +4 -0
- package/_virtual/has-cors.mjs +4 -0
- package/_virtual/hash.mjs +4 -0
- package/_virtual/hasher.mjs +4 -0
- package/_virtual/hasher2.mjs +4 -0
- package/_virtual/helpers.mjs +4 -0
- package/_virtual/hex.mjs +4 -0
- package/_virtual/hmac.mjs +4 -0
- package/_virtual/hmac2.mjs +4 -0
- package/_virtual/http.mjs +4 -0
- package/_virtual/httpbatchclient.mjs +4 -0
- package/_virtual/httpclient.mjs +4 -0
- package/_virtual/ics23.mjs +4 -0
- package/_virtual/id.mjs +4 -0
- package/_virtual/implementation.browser.mjs +4 -0
- package/_virtual/index-minimal.mjs +4 -0
- package/_virtual/index-minimal2.mjs +4 -0
- package/_virtual/index.mjs +4 -0
- package/_virtual/index10.mjs +4 -0
- package/_virtual/index11.mjs +4 -0
- package/_virtual/index12.mjs +4 -0
- package/_virtual/index13.mjs +6 -0
- package/_virtual/index14.mjs +6 -0
- package/_virtual/index15.mjs +4 -0
- package/_virtual/index16.mjs +4 -0
- package/_virtual/index17.mjs +4 -0
- package/_virtual/index18.mjs +4 -0
- package/_virtual/index19.mjs +4 -0
- package/_virtual/index2.mjs +4 -0
- package/_virtual/index20.mjs +4 -0
- package/_virtual/index21.mjs +6 -0
- package/_virtual/index22.mjs +6 -0
- package/_virtual/index23.mjs +6 -0
- package/_virtual/index24.mjs +6 -0
- package/_virtual/index25.mjs +6 -0
- package/_virtual/index26.mjs +6 -0
- package/_virtual/index27.mjs +6 -0
- package/_virtual/index28.mjs +6 -0
- package/_virtual/index29.mjs +6 -0
- package/_virtual/index3.mjs +4 -0
- package/_virtual/index30.mjs +6 -0
- package/_virtual/index31.mjs +6 -0
- package/_virtual/index32.mjs +6 -0
- package/_virtual/index33.mjs +6 -0
- package/_virtual/index34.mjs +6 -0
- package/_virtual/index35.mjs +6 -0
- package/_virtual/index36.mjs +6 -0
- package/_virtual/index37.mjs +6 -0
- package/_virtual/index38.mjs +6 -0
- package/_virtual/index39.mjs +6 -0
- package/_virtual/index4.mjs +4 -0
- package/_virtual/index40.mjs +6 -0
- package/_virtual/index41.mjs +6 -0
- package/_virtual/index42.mjs +4 -0
- package/_virtual/index43.mjs +4 -0
- package/_virtual/index44.mjs +4 -0
- package/_virtual/index45.mjs +4 -0
- package/_virtual/index46.mjs +4 -0
- package/_virtual/index47.mjs +4 -0
- package/_virtual/index48.mjs +4 -0
- package/_virtual/index49.mjs +4 -0
- package/_virtual/index5.mjs +4 -0
- package/_virtual/index50.mjs +4 -0
- package/_virtual/index51.mjs +4 -0
- package/_virtual/index52.mjs +4 -0
- package/_virtual/index53.mjs +4 -0
- package/_virtual/index54.mjs +4 -0
- package/_virtual/index55.mjs +4 -0
- package/_virtual/index56.mjs +4 -0
- package/_virtual/index57.mjs +4 -0
- package/_virtual/index58.mjs +4 -0
- package/_virtual/index59.mjs +4 -0
- package/_virtual/index6.mjs +4 -0
- package/_virtual/index60.mjs +4 -0
- package/_virtual/index61.mjs +4 -0
- package/_virtual/index62.mjs +4 -0
- package/_virtual/index63.mjs +4 -0
- package/_virtual/index64.mjs +4 -0
- package/_virtual/index65.mjs +4 -0
- package/_virtual/index66.mjs +4 -0
- package/_virtual/index67.mjs +4 -0
- package/_virtual/index68.mjs +4 -0
- package/_virtual/index69.mjs +4 -0
- package/_virtual/index7.mjs +4 -0
- package/_virtual/index70.mjs +4 -0
- package/_virtual/index71.mjs +6 -0
- package/_virtual/index72.mjs +4 -0
- package/_virtual/index73.mjs +4 -0
- package/_virtual/index74.mjs +4 -0
- package/_virtual/index75.mjs +4 -0
- package/_virtual/index76.mjs +4 -0
- package/_virtual/index77.mjs +4 -0
- package/_virtual/index78.mjs +4 -0
- package/_virtual/index79.mjs +4 -0
- package/_virtual/index8.mjs +4 -0
- package/_virtual/index80.mjs +4 -0
- package/_virtual/index81.mjs +4 -0
- package/_virtual/index82.mjs +4 -0
- package/_virtual/index83.mjs +4 -0
- package/_virtual/index84.mjs +4 -0
- package/_virtual/index9.mjs +4 -0
- package/_virtual/inherits_browser.mjs +4 -0
- package/_virtual/integers.mjs +4 -0
- package/_virtual/inthelpers.mjs +4 -0
- package/_virtual/is-binary.mjs +4 -0
- package/_virtual/jsonpath.mjs +4 -0
- package/_virtual/jsonrpc.mjs +4 -0
- package/_virtual/jsonrpcclient.mjs +4 -0
- package/_virtual/keccak.mjs +4 -0
- package/_virtual/keys.mjs +4 -0
- package/_virtual/keys2.mjs +4 -0
- package/_virtual/keys3.mjs +4 -0
- package/_virtual/keys4.mjs +4 -0
- package/_virtual/libsodium-sumo.mjs +4 -0
- package/_virtual/libsodium-wrappers.mjs +4 -0
- package/_virtual/libsodium-wrappers2.mjs +4 -0
- package/_virtual/libsodium.mjs +4 -0
- package/_virtual/libsodium2.mjs +4 -0
- package/_virtual/logs.mjs +4 -0
- package/_virtual/mainnet.mjs +4 -0
- package/_virtual/manager.mjs +4 -0
- package/_virtual/mappers.mjs +4 -0
- package/_virtual/messages.mjs +4 -0
- package/_virtual/messages2.mjs +4 -0
- package/_virtual/messages3.mjs +4 -0
- package/_virtual/messages4.mjs +4 -0
- package/_virtual/messages5.mjs +4 -0
- package/_virtual/messages6.mjs +4 -0
- package/_virtual/messages7.mjs +4 -0
- package/_virtual/messages8.mjs +4 -0
- package/_virtual/minimal.mjs +4 -0
- package/_virtual/minimal2.mjs +4 -0
- package/_virtual/mint.mjs +4 -0
- package/_virtual/multisig.mjs +4 -0
- package/_virtual/multisig2.mjs +4 -0
- package/_virtual/multisignature.mjs +4 -0
- package/_virtual/on.mjs +4 -0
- package/_virtual/ops.mjs +4 -0
- package/_virtual/pagination.mjs +4 -0
- package/_virtual/pagination2.mjs +4 -0
- package/_virtual/params.mjs +4 -0
- package/_virtual/parse.mjs +4 -0
- package/_virtual/parseqs.mjs +4 -0
- package/_virtual/parseuri.mjs +4 -0
- package/_virtual/paths.mjs +4 -0
- package/_virtual/paths2.mjs +4 -0
- package/_virtual/pbkdf2.mjs +4 -0
- package/_virtual/pbkdf22.mjs +4 -0
- package/_virtual/polling.mjs +4 -0
- package/_virtual/ponyfill.mjs +4 -0
- package/_virtual/promise.mjs +4 -0
- package/_virtual/proof.mjs +4 -0
- package/_virtual/proofs.mjs +4 -0
- package/_virtual/proofs2.mjs +4 -0
- package/_virtual/providerHelper.mjs +4 -0
- package/_virtual/pubkey.mjs +4 -0
- package/_virtual/pubkeys.mjs +4 -0
- package/_virtual/queries.mjs +4 -0
- package/_virtual/queries10.mjs +4 -0
- package/_virtual/queries11.mjs +4 -0
- package/_virtual/queries2.mjs +4 -0
- package/_virtual/queries3.mjs +4 -0
- package/_virtual/queries4.mjs +4 -0
- package/_virtual/queries5.mjs +4 -0
- package/_virtual/queries6.mjs +4 -0
- package/_virtual/queries7.mjs +4 -0
- package/_virtual/queries8.mjs +4 -0
- package/_virtual/queries9.mjs +4 -0
- package/_virtual/query.mjs +4 -0
- package/_virtual/query10.mjs +4 -0
- package/_virtual/query11.mjs +4 -0
- package/_virtual/query12.mjs +4 -0
- package/_virtual/query13.mjs +4 -0
- package/_virtual/query14.mjs +4 -0
- package/_virtual/query15.mjs +4 -0
- package/_virtual/query16.mjs +4 -0
- package/_virtual/query2.mjs +4 -0
- package/_virtual/query3.mjs +4 -0
- package/_virtual/query4.mjs +4 -0
- package/_virtual/query5.mjs +4 -0
- package/_virtual/query6.mjs +4 -0
- package/_virtual/query7.mjs +4 -0
- package/_virtual/query8.mjs +4 -0
- package/_virtual/query9.mjs +4 -0
- package/_virtual/queryclient.mjs +4 -0
- package/_virtual/queueingstreamingsocket.mjs +4 -0
- package/_virtual/random.mjs +4 -0
- package/_virtual/readable-browser.mjs +4 -0
- package/_virtual/reconnectingsocket.mjs +4 -0
- package/_virtual/reducer.mjs +4 -0
- package/_virtual/registry.mjs +4 -0
- package/_virtual/requests.mjs +4 -0
- package/_virtual/requests2.mjs +4 -0
- package/_virtual/requests3.mjs +4 -0
- package/_virtual/requests4.mjs +4 -0
- package/_virtual/responses.mjs +4 -0
- package/_virtual/responses2.mjs +4 -0
- package/_virtual/responses3.mjs +4 -0
- package/_virtual/responses4.mjs +4 -0
- package/_virtual/retry.mjs +4 -0
- package/_virtual/retryRpc.mjs +4 -0
- package/_virtual/rfc3339.mjs +4 -0
- package/_virtual/ripemd.mjs +4 -0
- package/_virtual/ripemd160.mjs +4 -0
- package/_virtual/ripemd1602.mjs +4 -0
- package/_virtual/ripemd2.mjs +4 -0
- package/_virtual/rpc.mjs +4 -0
- package/_virtual/rpc2.mjs +4 -0
- package/_virtual/rpcclient.mjs +4 -0
- package/_virtual/s3.mjs +4 -0
- package/_virtual/scrypt.mjs +4 -0
- package/_virtual/secp256k1.mjs +4 -0
- package/_virtual/secp256k1hdwallet.mjs +4 -0
- package/_virtual/secp256k1signature.mjs +4 -0
- package/_virtual/secp256k1wallet.mjs +4 -0
- package/_virtual/service.mjs +4 -0
- package/_virtual/service2.mjs +4 -0
- package/_virtual/service3.mjs +4 -0
- package/_virtual/service4.mjs +4 -0
- package/_virtual/service5.mjs +4 -0
- package/_virtual/sha.mjs +4 -0
- package/_virtual/sha2.mjs +4 -0
- package/_virtual/sha256.mjs +4 -0
- package/_virtual/sha2562.mjs +4 -0
- package/_virtual/sha3.mjs +4 -0
- package/_virtual/sha32.mjs +4 -0
- package/_virtual/sha512.mjs +4 -0
- package/_virtual/sha5122.mjs +4 -0
- package/_virtual/signature.mjs +4 -0
- package/_virtual/signdoc.mjs +4 -0
- package/_virtual/signer.mjs +4 -0
- package/_virtual/signing.mjs +4 -0
- package/_virtual/signing2.mjs +4 -0
- package/_virtual/signingstargateclient.mjs +4 -0
- package/_virtual/slashing.mjs +4 -0
- package/_virtual/sleep.mjs +4 -0
- package/_virtual/sleep2.mjs +4 -0
- package/_virtual/slip10.mjs +4 -0
- package/_virtual/socket.mjs +4 -0
- package/_virtual/socket2.mjs +4 -0
- package/_virtual/socketwrapper.mjs +4 -0
- package/_virtual/specs.mjs +4 -0
- package/_virtual/staking.mjs +4 -0
- package/_virtual/stargateclient.mjs +4 -0
- package/_virtual/stdtx.mjs +4 -0
- package/_virtual/streamingsocket.mjs +4 -0
- package/_virtual/string-similarity.mjs +4 -0
- package/_virtual/string_decoder.mjs +4 -0
- package/_virtual/supported-chains-list.mjs +4 -0
- package/_virtual/tendermint.mjs +4 -0
- package/_virtual/tendermint34client.mjs +4 -0
- package/_virtual/tendermint37client.mjs +4 -0
- package/_virtual/tendermintclient.mjs +4 -0
- package/_virtual/testnet.mjs +4 -0
- package/_virtual/threshold.mjs +4 -0
- package/_virtual/timestamp.mjs +4 -0
- package/_virtual/timestamp2.mjs +4 -0
- package/_virtual/tofnd.mjs +4 -0
- package/_virtual/transfer.mjs +4 -0
- package/_virtual/transport.mjs +4 -0
- package/_virtual/tryer.mjs +4 -0
- package/_virtual/tx.mjs +4 -0
- package/_virtual/tx10.mjs +4 -0
- package/_virtual/tx11.mjs +4 -0
- package/_virtual/tx12.mjs +4 -0
- package/_virtual/tx13.mjs +4 -0
- package/_virtual/tx14.mjs +4 -0
- package/_virtual/tx15.mjs +4 -0
- package/_virtual/tx16.mjs +4 -0
- package/_virtual/tx2.mjs +4 -0
- package/_virtual/tx3.mjs +4 -0
- package/_virtual/tx4.mjs +4 -0
- package/_virtual/tx5.mjs +4 -0
- package/_virtual/tx6.mjs +4 -0
- package/_virtual/tx7.mjs +4 -0
- package/_virtual/tx8.mjs +4 -0
- package/_virtual/tx9.mjs +4 -0
- package/_virtual/typechecks.mjs +4 -0
- package/_virtual/types.mjs +4 -0
- package/_virtual/types10.mjs +4 -0
- package/_virtual/types11.mjs +4 -0
- package/_virtual/types12.mjs +4 -0
- package/_virtual/types13.mjs +4 -0
- package/_virtual/types14.mjs +4 -0
- package/_virtual/types2.mjs +4 -0
- package/_virtual/types3.mjs +4 -0
- package/_virtual/types4.mjs +4 -0
- package/_virtual/types5.mjs +4 -0
- package/_virtual/types6.mjs +4 -0
- package/_virtual/types7.mjs +4 -0
- package/_virtual/types8.mjs +4 -0
- package/_virtual/types9.mjs +4 -0
- package/_virtual/ua-parser.mjs +4 -0
- package/_virtual/upgrade.mjs +4 -0
- package/_virtual/url.mjs +4 -0
- package/_virtual/utf8.mjs +4 -0
- package/_virtual/util.mjs +4 -0
- package/_virtual/util2.mjs +4 -0
- package/_virtual/utils.mjs +4 -0
- package/_virtual/utils10.mjs +4 -0
- package/_virtual/utils2.mjs +4 -0
- package/_virtual/utils3.mjs +4 -0
- package/_virtual/utils4.mjs +4 -0
- package/_virtual/utils5.mjs +4 -0
- package/_virtual/utils6.mjs +4 -0
- package/_virtual/utils7.mjs +4 -0
- package/_virtual/utils8.mjs +4 -0
- package/_virtual/utils9.mjs +4 -0
- package/_virtual/validateChain.mjs +4 -0
- package/_virtual/validateDestinationAddress.mjs +4 -0
- package/_virtual/validator.mjs +4 -0
- package/_virtual/valueandupdates.mjs +4 -0
- package/_virtual/vesting.mjs +4 -0
- package/_virtual/wallet.mjs +4 -0
- package/_virtual/wallet2.mjs +4 -0
- package/_virtual/wallet3.mjs +4 -0
- package/_virtual/websocket-constructor.browser.mjs +4 -0
- package/_virtual/websocket.mjs +4 -0
- package/_virtual/websocketclient.mjs +4 -0
- package/_virtual/webtransport.mjs +4 -0
- package/_virtual/xmlhttprequest.browser.mjs +4 -0
- package/_virtual/yeast.mjs +4 -0
- package/constants/axelar.constants.mjs +56 -0
- package/constants/beefy.registry.mjs +24 -0
- package/constants/chains.constants.mjs +204 -0
- package/constants/coingecko.constants.mjs +53 -0
- package/constants/contracts.constants.mjs +276 -0
- package/constants/crvCvx.registry.mjs +636 -0
- package/constants/crvDynamic.registry.mjs +24 -0
- package/constants/fees.constants.mjs +62 -0
- package/constants/kyc.constants.mjs +118 -0
- package/constants/pendle.registry.mjs +253 -0
- package/constants/reorg-depths.constants.mjs +15 -0
- package/constants/rewards.constants.mjs +27 -0
- package/constants/token-data/ERC20Registry.mjs +85 -0
- package/constants/token-data/index.mjs +6 -0
- package/constants/vite.constants.mjs +29 -0
- package/crypto/babyJub.mjs +24 -0
- package/crypto/poseidon.mjs +35 -0
- package/crypto/preProcessing.mjs +9 -0
- package/data-structures/Hinkal/Hinkal.mjs +305 -0
- package/data-structures/Hinkal/hinkalActionBeefy.mjs +108 -0
- package/data-structures/Hinkal/hinkalActionConvex.mjs +90 -0
- package/data-structures/Hinkal/hinkalActionCurve.mjs +119 -0
- package/data-structures/Hinkal/hinkalActionLidoEth.mjs +98 -0
- package/data-structures/Hinkal/hinkalActionPendle.mjs +147 -0
- package/data-structures/Hinkal/hinkalActionPendleLP.mjs +103 -0
- package/data-structures/Hinkal/hinkalActionStake.mjs +144 -0
- package/data-structures/Hinkal/hinkalActionVolatile.mjs +118 -0
- package/data-structures/Hinkal/hinkalDeposit.mjs +101 -0
- package/data-structures/Hinkal/hinkalGetZkMeProvider.mjs +52 -0
- package/data-structures/Hinkal/hinkalPrivateWallet.mjs +72 -0
- package/data-structures/Hinkal/hinkalSwap.mjs +104 -0
- package/data-structures/Hinkal/hinkalWithdraw.mjs +97 -0
- package/data-structures/Hinkal/resetMerkleTrees.mjs +54 -0
- package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.mjs +88 -0
- package/data-structures/crypto-keys/decodeUTXO.mjs +40 -0
- package/data-structures/crypto-keys/encryptDecryptUtxo.mjs +41 -0
- package/data-structures/crypto-keys/keyUtils.mjs +10 -0
- package/data-structures/crypto-keys/keys.mjs +92 -0
- package/data-structures/event-service/AbstractAccessTokenSnapshotService.mjs +136 -0
- package/data-structures/event-service/AbstractCommitmentsSnapshotService.mjs +137 -0
- package/data-structures/event-service/AbstractEventService.mjs +123 -0
- package/data-structures/event-service/AbstractNullifierSnapshotService.mjs +59 -0
- package/data-structures/event-service/AbstractSnapshotService.mjs +35 -0
- package/data-structures/merkle-tree/MerkleTree.mjs +182 -0
- package/data-structures/snapshot/ClientAccessTokenSnapshotService.mjs +53 -0
- package/data-structures/snapshot/ClientCommitmentsSnapshotService.mjs +52 -0
- package/data-structures/snapshot/ClientNullifierSnapshotService.mjs +49 -0
- package/data-structures/token-price-fetcher/TokenChecker.mjs +29 -0
- package/data-structures/token-price-fetcher/TokenPriceFetcher.mjs +226 -0
- package/data-structures/transactions-manager/TransactionsManager.mjs +199 -0
- package/data-structures/transactions-manager/history/getBeefyData.mjs +74 -0
- package/data-structures/transactions-manager/history/getConvexData.mjs +63 -0
- package/data-structures/transactions-manager/history/getCurveData.mjs +103 -0
- package/data-structures/transactions-manager/history/getDepositData.mjs +41 -0
- package/data-structures/transactions-manager/history/getLidoData.mjs +50 -0
- package/data-structures/transactions-manager/history/getPendleData.mjs +64 -0
- package/data-structures/transactions-manager/history/getSwapData.mjs +48 -0
- package/data-structures/transactions-manager/history/getTxDetails.mjs +79 -0
- package/data-structures/transactions-manager/history/getVolatileData.mjs +80 -0
- package/data-structures/transactions-manager/history/history.types.mjs +67 -0
- package/data-structures/utxo/Utxo.mjs +134 -0
- package/data-structures/volatile-helper/VolatileHelper.mjs +190 -0
- package/error-handling/customErrors/FeeOverTransactionValueError.mjs +9 -0
- package/error-handling/customErrors/customErrors.helpers.mjs +21 -0
- package/error-handling/get-error.message.mjs +53 -0
- package/error-handling/handleErrorRestore.mjs +40 -0
- package/error-handling/logError.mjs +7 -0
- package/functions/kyc/authentoHelper.mjs +47 -0
- package/functions/kyc/passportHelper.mjs +44 -0
- package/functions/kyc/zkMeHelper.mjs +56 -0
- package/functions/pre-transaction/getFlatFees.mjs +208 -0
- package/functions/pre-transaction/interaction-to-action.mjs +57 -0
- package/functions/pre-transaction/outputUtxoProcessing.mjs +50 -0
- package/functions/pre-transaction/process-gas-estimates.mjs +62 -0
- package/functions/pre-transaction/processAmountChanges.mjs +234 -0
- package/functions/private-wallet/emporium.helpers.mjs +21 -0
- package/functions/private-wallet/opProducer.mjs +24 -0
- package/functions/protocols/convex.protocols.mjs +46 -0
- package/functions/protocols/curve.protocols.mjs +50 -0
- package/functions/protocols/pendle.helpers.mjs +113 -0
- package/functions/snarkjs/common.snarkjs.mjs +97 -0
- package/functions/snarkjs/constant.mjs +216 -0
- package/functions/snarkjs/constructEmporiumProof.mjs +105 -0
- package/functions/snarkjs/constructGeneralZkProof.mjs +134 -0
- package/functions/snarkjs/generateCircomData.mjs +65 -0
- package/functions/snarkjs/generateZkProof.mjs +18 -0
- package/functions/snarkjs/getZKFiles.mjs +35 -0
- package/functions/staking/index.mjs +49 -0
- package/functions/utils/axelar.utils.mjs +43 -0
- package/functions/utils/cacheFunctions.mjs +72 -0
- package/functions/utils/convertIntegrationProviderToExternalActionId.mjs +16 -0
- package/functions/utils/create-provider.mjs +5 -0
- package/functions/utils/erc20tokenFunctions.mjs +20 -0
- package/functions/utils/evmNetworkFunctions.mjs +34 -0
- package/functions/utils/external-action.utils.mjs +63 -0
- package/functions/utils/getDataFromTransaction.mjs +111 -0
- package/functions/utils/memoize.utils.mjs +14 -0
- package/functions/utils/userAgent.mjs +15 -0
- package/functions/utils/volatile-patcher.utils.mjs +45 -0
- package/functions/web3/etherFunctions.mjs +43 -0
- package/functions/web3/events/balanceChangedHandler.mjs +10 -0
- package/functions/web3/events/getInputUtxoAndBalance.mjs +72 -0
- package/functions/web3/events/getShieldedBalance.mjs +113 -0
- package/functions/web3/functionCalls/accessTokenCalls.mjs +53 -0
- package/functions/web3/functionCalls/approveToken.mjs +160 -0
- package/functions/web3/functionCalls/estimateGasRelayer.mjs +18 -0
- package/functions/web3/functionCalls/transactCallDirect.mjs +65 -0
- package/functions/web3/functionCalls/transactCallRelayer.mjs +47 -0
- package/functions/web3/odosAPI.mjs +70 -0
- package/functions/web3/oneInchAPI.mjs +66 -0
- package/functions/web3/runContractFunction.mjs +100 -0
- package/functions/web3/uniswapAPI.mjs +103 -0
- package/index.mjs +644 -0
- package/package.json +1 -1
- package/types/curve.types.mjs +25 -0
- package/types/transactions.types.mjs +36 -0
- package/webworker/performTaskWithWorker.mjs +67 -0
- package/webworker/snarkjsWorker/snarkjsWorkerLogic.mjs +55 -0
- package/webworker/utxoWorker/utxoWorkerLogic.mjs +70 -0
- package/webworker/workerFactory.mjs +42 -0
- package/webworker/zkProofWorker/zkProofWorkerLogic.mjs +66 -0
- package/common.mjs +0 -644
- package/common10.mjs +0 -30
- package/common11.mjs +0 -30
- package/common112.mjs +0 -48
- package/common113.mjs +0 -39
- package/common115.mjs +0 -67
- package/common116.mjs +0 -5
- package/common117.mjs +0 -61
- package/common118.mjs +0 -20
- package/common12.mjs +0 -58
- package/common121.mjs +0 -16
- package/common122.mjs +0 -57
- package/common123.mjs +0 -45
- package/common124.mjs +0 -57
- package/common125.mjs +0 -229
- package/common126.mjs +0 -203
- package/common127.mjs +0 -29
- package/common128.mjs +0 -38
- package/common129.mjs +0 -15
- package/common13.mjs +0 -156
- package/common130.mjs +0 -105
- package/common136.mjs +0 -40
- package/common137.mjs +0 -41
- package/common138.mjs +0 -72
- package/common139.mjs +0 -107
- package/common14.mjs +0 -32
- package/common141.mjs +0 -10
- package/common142.mjs +0 -97
- package/common143.mjs +0 -65
- package/common144.mjs +0 -61
- package/common145.mjs +0 -95
- package/common146.mjs +0 -129
- package/common147.mjs +0 -105
- package/common148.mjs +0 -96
- package/common149.mjs +0 -18
- package/common150.mjs +0 -45
- package/common151.mjs +0 -41
- package/common152.mjs +0 -108
- package/common153.mjs +0 -40
- package/common154.mjs +0 -19
- package/common155.mjs +0 -24
- package/common16.mjs +0 -6
- package/common164.mjs +0 -36
- package/common168.mjs +0 -25
- package/common170.mjs +0 -85
- package/common191.mjs +0 -42
- package/common2.mjs +0 -67
- package/common204.mjs +0 -56
- package/common205.mjs +0 -42
- package/common208.mjs +0 -62
- package/common211.mjs +0 -58
- package/common212.mjs +0 -40
- package/common213.mjs +0 -45
- package/common214.mjs +0 -36
- package/common215.mjs +0 -32
- package/common216.mjs +0 -44
- package/common217.mjs +0 -32
- package/common218.mjs +0 -38
- package/common220.mjs +0 -32
- package/common221.mjs +0 -47
- package/common222.mjs +0 -14
- package/common223.mjs +0 -30
- package/common224.mjs +0 -91
- package/common225.mjs +0 -112
- package/common226.mjs +0 -96
- package/common227.mjs +0 -30
- package/common228.mjs +0 -138
- package/common229.mjs +0 -18
- package/common230.mjs +0 -42
- package/common231.mjs +0 -60
- package/common232.mjs +0 -48
- package/common233.mjs +0 -47
- package/common234.mjs +0 -44
- package/common235.mjs +0 -74
- package/common237.mjs +0 -60
- package/common239.mjs +0 -30
- package/common241.mjs +0 -153
- package/common242.mjs +0 -31
- package/common243.mjs +0 -30
- package/common244.mjs +0 -68
- package/common245.mjs +0 -57
- package/common246.mjs +0 -97
- package/common247.mjs +0 -36
- package/common248.mjs +0 -43
- package/common249.mjs +0 -44
- package/common250.mjs +0 -59
- package/common251.mjs +0 -75
- package/common252.mjs +0 -32
- package/common253.mjs +0 -66
- package/common254.mjs +0 -70
- package/common255.mjs +0 -211
- package/common28.mjs +0 -204
- package/common29.mjs +0 -57
- package/common3.mjs +0 -27
- package/common30.mjs +0 -276
- package/common31.mjs +0 -118
- package/common33.mjs +0 -29
- package/common35.mjs +0 -53
- package/common36.mjs +0 -55
- package/common38.mjs +0 -636
- package/common39.mjs +0 -24
- package/common4.mjs +0 -37
- package/common41.mjs +0 -27
- package/common42.mjs +0 -15
- package/common43.mjs +0 -24
- package/common44.mjs +0 -253
- package/common45.mjs +0 -26
- package/common46.mjs +0 -15
- package/common47.mjs +0 -9
- package/common49.mjs +0 -40
- package/common5.mjs +0 -37
- package/common50.mjs +0 -41
- package/common51.mjs +0 -90
- package/common52.mjs +0 -10
- package/common53.mjs +0 -299
- package/common54.mjs +0 -101
- package/common55.mjs +0 -83
- package/common56.mjs +0 -112
- package/common57.mjs +0 -140
- package/common58.mjs +0 -95
- package/common59.mjs +0 -98
- package/common6.mjs +0 -32
- package/common61.mjs +0 -91
- package/common62.mjs +0 -66
- package/common63.mjs +0 -49
- package/common64.mjs +0 -177
- package/common66.mjs +0 -131
- package/common67.mjs +0 -132
- package/common68.mjs +0 -59
- package/common69.mjs +0 -35
- package/common7.mjs +0 -37
- package/common70.mjs +0 -118
- package/common71.mjs +0 -134
- package/common73.mjs +0 -29
- package/common74.mjs +0 -218
- package/common75.mjs +0 -194
- package/common76.mjs +0 -62
- package/common77.mjs +0 -181
- package/common78.mjs +0 -83
- package/common79.mjs +0 -9
- package/common8.mjs +0 -38
- package/common80.mjs +0 -21
- package/common82.mjs +0 -53
- package/common83.mjs +0 -35
- package/common84.mjs +0 -7
- package/common9.mjs +0 -41
- /package/{common15.mjs → constants/assets.constants.mjs} +0 -0
- /package/{common37.mjs → constants/backend.constants.mjs} +0 -0
- /package/{common18.mjs → constants/deploy-data/deploy-data-arbMainnet.json.mjs} +0 -0
- /package/{common22.mjs → constants/deploy-data/deploy-data-avalanche.json.mjs} +0 -0
- /package/{common26.mjs → constants/deploy-data/deploy-data-axelar1.json.mjs} +0 -0
- /package/{common27.mjs → constants/deploy-data/deploy-data-axelar2.json.mjs} +0 -0
- /package/{common23.mjs → constants/deploy-data/deploy-data-base.json.mjs} +0 -0
- /package/{common24.mjs → constants/deploy-data/deploy-data-blast.json.mjs} +0 -0
- /package/{common17.mjs → constants/deploy-data/deploy-data-bnbMainnet.json.mjs} +0 -0
- /package/{common19.mjs → constants/deploy-data/deploy-data-ethMainnet.json.mjs} +0 -0
- /package/{common25.mjs → constants/deploy-data/deploy-data-localhost.json.mjs} +0 -0
- /package/{common20.mjs → constants/deploy-data/deploy-data-optimism.json.mjs} +0 -0
- /package/{common21.mjs → constants/deploy-data/deploy-data-polygon.json.mjs} +0 -0
- /package/{common40.mjs → constants/lido.constants.mjs} +0 -0
- /package/{common34.mjs → constants/protocol.constants.mjs} +0 -0
- /package/{common32.mjs → constants/server.constants.mjs} +0 -0
- /package/{common180.mjs → constants/token-data/arbMainnetRegistry.json.mjs} +0 -0
- /package/{common172.mjs → constants/token-data/arbMainnetRegistryFixed.json.mjs} +0 -0
- /package/{common175.mjs → constants/token-data/avalancheRegistry.json.mjs} +0 -0
- /package/{common183.mjs → constants/token-data/avalancheRegistryFixed.json.mjs} +0 -0
- /package/{common185.mjs → constants/token-data/baseRegistry.json.mjs} +0 -0
- /package/{common177.mjs → constants/token-data/baseRegistryFixed.json.mjs} +0 -0
- /package/{common178.mjs → constants/token-data/blastRegistry.json.mjs} +0 -0
- /package/{common186.mjs → constants/token-data/blastRegistryFixed.json.mjs} +0 -0
- /package/{common173.mjs → constants/token-data/bnbMainnetRegistry.json.mjs} +0 -0
- /package/{common181.mjs → constants/token-data/bnbMainnetRegistryFixed.json.mjs} +0 -0
- /package/{common190.mjs → constants/token-data/coingeckoRegistry.json.mjs} +0 -0
- /package/{common179.mjs → constants/token-data/ethMainnetRegistry.json.mjs} +0 -0
- /package/{common171.mjs → constants/token-data/ethMainnetRegistryFixed.json.mjs} +0 -0
- /package/{common187.mjs → constants/token-data/localhostRegistry.json.mjs} +0 -0
- /package/{common184.mjs → constants/token-data/optimismRegistry.json.mjs} +0 -0
- /package/{common176.mjs → constants/token-data/optimismRegistryFixed.json.mjs} +0 -0
- /package/{common182.mjs → constants/token-data/polygonRegistry.json.mjs} +0 -0
- /package/{common174.mjs → constants/token-data/polygonRegistryFixed.json.mjs} +0 -0
- /package/{common189.mjs → constants/token-data/popularTokens.constants.mjs} +0 -0
- /package/{common188.mjs → constants/token-data/tokenPricing.consts.mjs} +0 -0
- /package/{common60.mjs → data-structures/Hinkal/hinkalTransfer.mjs} +0 -0
- /package/{common48.mjs → data-structures/ValueCache/ValueCache.mjs} +0 -0
- /package/{common72.mjs → data-structures/custom-token-registry/CustomTokenRegistry.mjs} +0 -0
- /package/{common65.mjs → data-structures/merkle-tree/MerkleTreeIncompleteError.mjs} +0 -0
- /package/{common256.mjs → data-structures/transactions-manager/history/history.utils.mjs} +0 -0
- /package/{common219.mjs → error-handling/customErrors/ErrorWithAmount.mjs} +0 -0
- /package/{common81.mjs → error-handling/error-codes.constants.mjs} +0 -0
- /package/{common85.mjs → error-handling/types.mjs} +0 -0
- /package/{common88.mjs → externalABIs/BUSD.mjs} +0 -0
- /package/{common109.mjs → externalABIs/BabPassport.json.mjs} +0 -0
- /package/{common192.mjs → externalABIs/BeefyRouterAbi.json.mjs} +0 -0
- /package/{common193.mjs → externalABIs/BeefyStrategyAbi.json.mjs} +0 -0
- /package/{common87.mjs → externalABIs/BeefyVaultAbi.json.mjs} +0 -0
- /package/{common194.mjs → externalABIs/BeefyZapAbi.json.mjs} +0 -0
- /package/{common195.mjs → externalABIs/BeefyZapOneInchAbi.json.mjs} +0 -0
- /package/{common196.mjs → externalABIs/ConvexBoosterAbi.json.mjs} +0 -0
- /package/{common197.mjs → externalABIs/ConvexBoosterAbiMainnet.json.mjs} +0 -0
- /package/{common198.mjs → externalABIs/ConvexRewardPoolAbi.json.mjs} +0 -0
- /package/{common89.mjs → externalABIs/CurveReadingWrapperAbi.json.mjs} +0 -0
- /package/{common90.mjs → externalABIs/CurveWrappedMainPool.json.mjs} +0 -0
- /package/{common199.mjs → externalABIs/CurveZap.json.mjs} +0 -0
- /package/{common200.mjs → externalABIs/CvxCrvUtilities.json.mjs} +0 -0
- /package/{common91.mjs → externalABIs/DAI.mjs} +0 -0
- /package/{common92.mjs → externalABIs/ERC20.json.mjs} +0 -0
- /package/{common110.mjs → externalABIs/GalxePassport.json.mjs} +0 -0
- /package/{common93.mjs → externalABIs/IQuoterV2.json.mjs} +0 -0
- /package/{common101.mjs → externalABIs/ISwapRouter.json.mjs} +0 -0
- /package/{common94.mjs → externalABIs/IUniswapV3Factory.json.mjs} +0 -0
- /package/{common202.mjs → externalABIs/IUniswapV3Pool.json.mjs} +0 -0
- /package/{common102.mjs → externalABIs/LidoStEthAbi.json.mjs} +0 -0
- /package/{common103.mjs → externalABIs/LidoStMaticAbi.json.mjs} +0 -0
- /package/{common107.mjs → externalABIs/LidoStakeManagerAbi.json.mjs} +0 -0
- /package/{common104.mjs → externalABIs/LidoWithdrawalQueueERC721Abi.json.mjs} +0 -0
- /package/{common106.mjs → externalABIs/LidoWstEthAbi.json.mjs} +0 -0
- /package/{common111.mjs → externalABIs/OptimismGasPriceOracle.json.mjs} +0 -0
- /package/{common201.mjs → externalABIs/PendleRouterAbi.json.mjs} +0 -0
- /package/{common105.mjs → externalABIs/PoLidoNftAbi.json.mjs} +0 -0
- /package/{common95.mjs → externalABIs/SanctionsList.mjs} +0 -0
- /package/{common96.mjs → externalABIs/USDC.mjs} +0 -0
- /package/{common97.mjs → externalABIs/USDR.mjs} +0 -0
- /package/{common98.mjs → externalABIs/USDR3CRV.mjs} +0 -0
- /package/{common99.mjs → externalABIs/USDT.mjs} +0 -0
- /package/{common203.mjs → externalABIs/UniswapV2PoolAbi.json.mjs} +0 -0
- /package/{common100.mjs → externalABIs/WETH.mjs} +0 -0
- /package/{common86.mjs → externalABIs/amToken.mjs} +0 -0
- /package/{common108.mjs → externalABIs/transactionsProver.json.mjs} +0 -0
- /package/{common114.mjs → functions/utils/amounts.utils.mjs} +0 -0
- /package/{common134.mjs → functions/utils/caseInsensitive.utils.mjs} +0 -0
- /package/{common206.mjs → functions/utils/enum.utils.mjs} +0 -0
- /package/{common133.mjs → functions/utils/nickname.utils.mjs} +0 -0
- /package/{common207.mjs → functions/utils/process.utils.mjs} +0 -0
- /package/{common131.mjs → functions/utils/reloadPage.mjs} +0 -0
- /package/{common119.mjs → functions/utils/requireEnv.mjs} +0 -0
- /package/{common120.mjs → functions/utils/resolve-sync.utils.mjs} +0 -0
- /package/{common240.mjs → functions/utils/serialize.utils.mjs} +0 -0
- /package/{common132.mjs → functions/utils/string.utils.mjs} +0 -0
- /package/{common135.mjs → functions/utils/time.utils.mjs} +0 -0
- /package/{common140.mjs → functions/web3/events/web3RetrieveEvents.mjs} +0 -0
- /package/{common156.mjs → types/beefy.types.mjs} +0 -0
- /package/{common157.mjs → types/circom-data.types.mjs} +0 -0
- /package/{common158.mjs → types/ethereum-network.types.mjs} +0 -0
- /package/{common159.mjs → types/external-action.types.mjs} +0 -0
- /package/{common169.mjs → types/hinkal.stake.types.mjs} +0 -0
- /package/{common160.mjs → types/hinkal.types.mjs} +0 -0
- /package/{common161.mjs → types/kyc.types.mjs} +0 -0
- /package/{common167.mjs → types/pendle.types.mjs} +0 -0
- /package/{common166.mjs → types/rewards.types.mjs} +0 -0
- /package/{common163.mjs → types/slippage.types.mjs} +0 -0
- /package/{common165.mjs → types/time.types.mjs} +0 -0
- /package/{common162.mjs → types/token.types.mjs} +0 -0
- /package/{common238.mjs → webworker/snarkjsWorker/snarkjsWorker.types.mjs} +0 -0
- /package/{common210.mjs → webworker/utxoWorker/utxoWorker.types.mjs} +0 -0
- /package/{common209.mjs → webworker/worker.registry.mjs} +0 -0
- /package/{common257.mjs → webworker/workerProxy.mjs} +0 -0
- /package/{common236.mjs → webworker/zkProofWorker/zkProofWorker.types.mjs} +0 -0
|
@@ -0,0 +1,2787 @@
|
|
|
1
|
+
import { commonjsGlobal as S } from "../../../../../../../../../_virtual/_commonjsHelpers.mjs";
|
|
2
|
+
import { __exports as Be } from "../../../../../../../../../_virtual/types7.mjs";
|
|
3
|
+
import "../../google/protobuf/timestamp.mjs";
|
|
4
|
+
import "../types/params.mjs";
|
|
5
|
+
import "../types/types.mjs";
|
|
6
|
+
import "../crypto/proof.mjs";
|
|
7
|
+
import "../crypto/keys.mjs";
|
|
8
|
+
import "../../helpers.mjs";
|
|
9
|
+
import { m as Ae } from "../../../protobufjs/minimal.mjs";
|
|
10
|
+
import { __exports as Je } from "../../../../../../../../../_virtual/timestamp.mjs";
|
|
11
|
+
import { __exports as Le } from "../../../../../../../../../_virtual/params.mjs";
|
|
12
|
+
import { __exports as Ue } from "../../../../../../../../../_virtual/types8.mjs";
|
|
13
|
+
import { __exports as Ve } from "../../../../../../../../../_virtual/proof.mjs";
|
|
14
|
+
import { __exports as qe } from "../../../../../../../../../_virtual/keys4.mjs";
|
|
15
|
+
import { __exports as Ie } from "../../../../../../../../../_virtual/helpers.mjs";
|
|
16
|
+
(function(t) {
|
|
17
|
+
var Ee = S && S.__createBinding || (Object.create ? function(e, n, i, s) {
|
|
18
|
+
s === void 0 && (s = i);
|
|
19
|
+
var a = Object.getOwnPropertyDescriptor(n, i);
|
|
20
|
+
(!a || ("get" in a ? !n.__esModule : a.writable || a.configurable)) && (a = { enumerable: !0, get: function() {
|
|
21
|
+
return n[i];
|
|
22
|
+
} }), Object.defineProperty(e, s, a);
|
|
23
|
+
} : function(e, n, i, s) {
|
|
24
|
+
s === void 0 && (s = i), e[s] = n[i];
|
|
25
|
+
}), Ne = S && S.__setModuleDefault || (Object.create ? function(e, n) {
|
|
26
|
+
Object.defineProperty(e, "default", { enumerable: !0, value: n });
|
|
27
|
+
} : function(e, n) {
|
|
28
|
+
e.default = n;
|
|
29
|
+
}), Pe = S && S.__importStar || function(e) {
|
|
30
|
+
if (e && e.__esModule)
|
|
31
|
+
return e;
|
|
32
|
+
var n = {};
|
|
33
|
+
if (e != null)
|
|
34
|
+
for (var i in e)
|
|
35
|
+
i !== "default" && Object.prototype.hasOwnProperty.call(e, i) && Ee(n, e, i);
|
|
36
|
+
return Ne(n, e), n;
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(t, "__esModule", { value: !0 }), t.ResponsePrepareProposal = t.ResponseApplySnapshotChunk = t.ResponseLoadSnapshotChunk = t.ResponseOfferSnapshot = t.ResponseListSnapshots = t.ResponseCommit = t.ResponseEndBlock = t.ResponseDeliverTx = t.ResponseCheckTx = t.ResponseBeginBlock = t.ResponseQuery = t.ResponseInitChain = t.ResponseInfo = t.ResponseFlush = t.ResponseEcho = t.ResponseException = t.Response = t.RequestProcessProposal = t.RequestPrepareProposal = t.RequestApplySnapshotChunk = t.RequestLoadSnapshotChunk = t.RequestOfferSnapshot = t.RequestListSnapshots = t.RequestCommit = t.RequestEndBlock = t.RequestDeliverTx = t.RequestCheckTx = t.RequestBeginBlock = t.RequestQuery = t.RequestInitChain = t.RequestInfo = t.RequestFlush = t.RequestEcho = t.Request = t.misbehaviorTypeToJSON = t.misbehaviorTypeFromJSON = t.MisbehaviorType = t.responseProcessProposal_ProposalStatusToJSON = t.responseProcessProposal_ProposalStatusFromJSON = t.ResponseProcessProposal_ProposalStatus = t.responseApplySnapshotChunk_ResultToJSON = t.responseApplySnapshotChunk_ResultFromJSON = t.ResponseApplySnapshotChunk_Result = t.responseOfferSnapshot_ResultToJSON = t.responseOfferSnapshot_ResultFromJSON = t.ResponseOfferSnapshot_Result = t.checkTxTypeToJSON = t.checkTxTypeFromJSON = t.CheckTxType = t.protobufPackage = void 0, t.ABCIApplicationClientImpl = t.Snapshot = t.Misbehavior = t.ExtendedVoteInfo = t.VoteInfo = t.ValidatorUpdate = t.Validator = t.TxResult = t.EventAttribute = t.Event = t.ExtendedCommitInfo = t.CommitInfo = t.ResponseProcessProposal = void 0;
|
|
39
|
+
const h = Je, u = Le, R = Ue, m = Ve, y = qe, r = Ie, o = Pe(Ae);
|
|
40
|
+
t.protobufPackage = "tendermint.abci";
|
|
41
|
+
var k;
|
|
42
|
+
(function(e) {
|
|
43
|
+
e[e.NEW = 0] = "NEW", e[e.RECHECK = 1] = "RECHECK", e[e.UNRECOGNIZED = -1] = "UNRECOGNIZED";
|
|
44
|
+
})(k = t.CheckTxType || (t.CheckTxType = {}));
|
|
45
|
+
function O(e) {
|
|
46
|
+
switch (e) {
|
|
47
|
+
case 0:
|
|
48
|
+
case "NEW":
|
|
49
|
+
return k.NEW;
|
|
50
|
+
case 1:
|
|
51
|
+
case "RECHECK":
|
|
52
|
+
return k.RECHECK;
|
|
53
|
+
case -1:
|
|
54
|
+
case "UNRECOGNIZED":
|
|
55
|
+
default:
|
|
56
|
+
return k.UNRECOGNIZED;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
t.checkTxTypeFromJSON = O;
|
|
60
|
+
function C(e) {
|
|
61
|
+
switch (e) {
|
|
62
|
+
case k.NEW:
|
|
63
|
+
return "NEW";
|
|
64
|
+
case k.RECHECK:
|
|
65
|
+
return "RECHECK";
|
|
66
|
+
case k.UNRECOGNIZED:
|
|
67
|
+
default:
|
|
68
|
+
return "UNRECOGNIZED";
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
t.checkTxTypeToJSON = C;
|
|
72
|
+
var f;
|
|
73
|
+
(function(e) {
|
|
74
|
+
e[e.UNKNOWN = 0] = "UNKNOWN", e[e.ACCEPT = 1] = "ACCEPT", e[e.ABORT = 2] = "ABORT", e[e.REJECT = 3] = "REJECT", e[e.REJECT_FORMAT = 4] = "REJECT_FORMAT", e[e.REJECT_SENDER = 5] = "REJECT_SENDER", e[e.UNRECOGNIZED = -1] = "UNRECOGNIZED";
|
|
75
|
+
})(f = t.ResponseOfferSnapshot_Result || (t.ResponseOfferSnapshot_Result = {}));
|
|
76
|
+
function E(e) {
|
|
77
|
+
switch (e) {
|
|
78
|
+
case 0:
|
|
79
|
+
case "UNKNOWN":
|
|
80
|
+
return f.UNKNOWN;
|
|
81
|
+
case 1:
|
|
82
|
+
case "ACCEPT":
|
|
83
|
+
return f.ACCEPT;
|
|
84
|
+
case 2:
|
|
85
|
+
case "ABORT":
|
|
86
|
+
return f.ABORT;
|
|
87
|
+
case 3:
|
|
88
|
+
case "REJECT":
|
|
89
|
+
return f.REJECT;
|
|
90
|
+
case 4:
|
|
91
|
+
case "REJECT_FORMAT":
|
|
92
|
+
return f.REJECT_FORMAT;
|
|
93
|
+
case 5:
|
|
94
|
+
case "REJECT_SENDER":
|
|
95
|
+
return f.REJECT_SENDER;
|
|
96
|
+
case -1:
|
|
97
|
+
case "UNRECOGNIZED":
|
|
98
|
+
default:
|
|
99
|
+
return f.UNRECOGNIZED;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
t.responseOfferSnapshot_ResultFromJSON = E;
|
|
103
|
+
function N(e) {
|
|
104
|
+
switch (e) {
|
|
105
|
+
case f.UNKNOWN:
|
|
106
|
+
return "UNKNOWN";
|
|
107
|
+
case f.ACCEPT:
|
|
108
|
+
return "ACCEPT";
|
|
109
|
+
case f.ABORT:
|
|
110
|
+
return "ABORT";
|
|
111
|
+
case f.REJECT:
|
|
112
|
+
return "REJECT";
|
|
113
|
+
case f.REJECT_FORMAT:
|
|
114
|
+
return "REJECT_FORMAT";
|
|
115
|
+
case f.REJECT_SENDER:
|
|
116
|
+
return "REJECT_SENDER";
|
|
117
|
+
case f.UNRECOGNIZED:
|
|
118
|
+
default:
|
|
119
|
+
return "UNRECOGNIZED";
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
t.responseOfferSnapshot_ResultToJSON = N;
|
|
123
|
+
var l;
|
|
124
|
+
(function(e) {
|
|
125
|
+
e[e.UNKNOWN = 0] = "UNKNOWN", e[e.ACCEPT = 1] = "ACCEPT", e[e.ABORT = 2] = "ABORT", e[e.RETRY = 3] = "RETRY", e[e.RETRY_SNAPSHOT = 4] = "RETRY_SNAPSHOT", e[e.REJECT_SNAPSHOT = 5] = "REJECT_SNAPSHOT", e[e.UNRECOGNIZED = -1] = "UNRECOGNIZED";
|
|
126
|
+
})(l = t.ResponseApplySnapshotChunk_Result || (t.ResponseApplySnapshotChunk_Result = {}));
|
|
127
|
+
function P(e) {
|
|
128
|
+
switch (e) {
|
|
129
|
+
case 0:
|
|
130
|
+
case "UNKNOWN":
|
|
131
|
+
return l.UNKNOWN;
|
|
132
|
+
case 1:
|
|
133
|
+
case "ACCEPT":
|
|
134
|
+
return l.ACCEPT;
|
|
135
|
+
case 2:
|
|
136
|
+
case "ABORT":
|
|
137
|
+
return l.ABORT;
|
|
138
|
+
case 3:
|
|
139
|
+
case "RETRY":
|
|
140
|
+
return l.RETRY;
|
|
141
|
+
case 4:
|
|
142
|
+
case "RETRY_SNAPSHOT":
|
|
143
|
+
return l.RETRY_SNAPSHOT;
|
|
144
|
+
case 5:
|
|
145
|
+
case "REJECT_SNAPSHOT":
|
|
146
|
+
return l.REJECT_SNAPSHOT;
|
|
147
|
+
case -1:
|
|
148
|
+
case "UNRECOGNIZED":
|
|
149
|
+
default:
|
|
150
|
+
return l.UNRECOGNIZED;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
t.responseApplySnapshotChunk_ResultFromJSON = P;
|
|
154
|
+
function v(e) {
|
|
155
|
+
switch (e) {
|
|
156
|
+
case l.UNKNOWN:
|
|
157
|
+
return "UNKNOWN";
|
|
158
|
+
case l.ACCEPT:
|
|
159
|
+
return "ACCEPT";
|
|
160
|
+
case l.ABORT:
|
|
161
|
+
return "ABORT";
|
|
162
|
+
case l.RETRY:
|
|
163
|
+
return "RETRY";
|
|
164
|
+
case l.RETRY_SNAPSHOT:
|
|
165
|
+
return "RETRY_SNAPSHOT";
|
|
166
|
+
case l.REJECT_SNAPSHOT:
|
|
167
|
+
return "REJECT_SNAPSHOT";
|
|
168
|
+
case l.UNRECOGNIZED:
|
|
169
|
+
default:
|
|
170
|
+
return "UNRECOGNIZED";
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
t.responseApplySnapshotChunk_ResultToJSON = v;
|
|
174
|
+
var c;
|
|
175
|
+
(function(e) {
|
|
176
|
+
e[e.UNKNOWN = 0] = "UNKNOWN", e[e.ACCEPT = 1] = "ACCEPT", e[e.REJECT = 2] = "REJECT", e[e.UNRECOGNIZED = -1] = "UNRECOGNIZED";
|
|
177
|
+
})(c = t.ResponseProcessProposal_ProposalStatus || (t.ResponseProcessProposal_ProposalStatus = {}));
|
|
178
|
+
function T(e) {
|
|
179
|
+
switch (e) {
|
|
180
|
+
case 0:
|
|
181
|
+
case "UNKNOWN":
|
|
182
|
+
return c.UNKNOWN;
|
|
183
|
+
case 1:
|
|
184
|
+
case "ACCEPT":
|
|
185
|
+
return c.ACCEPT;
|
|
186
|
+
case 2:
|
|
187
|
+
case "REJECT":
|
|
188
|
+
return c.REJECT;
|
|
189
|
+
case -1:
|
|
190
|
+
case "UNRECOGNIZED":
|
|
191
|
+
default:
|
|
192
|
+
return c.UNRECOGNIZED;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
t.responseProcessProposal_ProposalStatusFromJSON = T;
|
|
196
|
+
function B(e) {
|
|
197
|
+
switch (e) {
|
|
198
|
+
case c.UNKNOWN:
|
|
199
|
+
return "UNKNOWN";
|
|
200
|
+
case c.ACCEPT:
|
|
201
|
+
return "ACCEPT";
|
|
202
|
+
case c.REJECT:
|
|
203
|
+
return "REJECT";
|
|
204
|
+
case c.UNRECOGNIZED:
|
|
205
|
+
default:
|
|
206
|
+
return "UNRECOGNIZED";
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
t.responseProcessProposal_ProposalStatusToJSON = B;
|
|
210
|
+
var p;
|
|
211
|
+
(function(e) {
|
|
212
|
+
e[e.UNKNOWN = 0] = "UNKNOWN", e[e.DUPLICATE_VOTE = 1] = "DUPLICATE_VOTE", e[e.LIGHT_CLIENT_ATTACK = 2] = "LIGHT_CLIENT_ATTACK", e[e.UNRECOGNIZED = -1] = "UNRECOGNIZED";
|
|
213
|
+
})(p = t.MisbehaviorType || (t.MisbehaviorType = {}));
|
|
214
|
+
function A(e) {
|
|
215
|
+
switch (e) {
|
|
216
|
+
case 0:
|
|
217
|
+
case "UNKNOWN":
|
|
218
|
+
return p.UNKNOWN;
|
|
219
|
+
case 1:
|
|
220
|
+
case "DUPLICATE_VOTE":
|
|
221
|
+
return p.DUPLICATE_VOTE;
|
|
222
|
+
case 2:
|
|
223
|
+
case "LIGHT_CLIENT_ATTACK":
|
|
224
|
+
return p.LIGHT_CLIENT_ATTACK;
|
|
225
|
+
case -1:
|
|
226
|
+
case "UNRECOGNIZED":
|
|
227
|
+
default:
|
|
228
|
+
return p.UNRECOGNIZED;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
t.misbehaviorTypeFromJSON = A;
|
|
232
|
+
function J(e) {
|
|
233
|
+
switch (e) {
|
|
234
|
+
case p.UNKNOWN:
|
|
235
|
+
return "UNKNOWN";
|
|
236
|
+
case p.DUPLICATE_VOTE:
|
|
237
|
+
return "DUPLICATE_VOTE";
|
|
238
|
+
case p.LIGHT_CLIENT_ATTACK:
|
|
239
|
+
return "LIGHT_CLIENT_ATTACK";
|
|
240
|
+
case p.UNRECOGNIZED:
|
|
241
|
+
default:
|
|
242
|
+
return "UNRECOGNIZED";
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
t.misbehaviorTypeToJSON = J;
|
|
246
|
+
function L() {
|
|
247
|
+
return {
|
|
248
|
+
echo: void 0,
|
|
249
|
+
flush: void 0,
|
|
250
|
+
info: void 0,
|
|
251
|
+
initChain: void 0,
|
|
252
|
+
query: void 0,
|
|
253
|
+
beginBlock: void 0,
|
|
254
|
+
checkTx: void 0,
|
|
255
|
+
deliverTx: void 0,
|
|
256
|
+
endBlock: void 0,
|
|
257
|
+
commit: void 0,
|
|
258
|
+
listSnapshots: void 0,
|
|
259
|
+
offerSnapshot: void 0,
|
|
260
|
+
loadSnapshotChunk: void 0,
|
|
261
|
+
applySnapshotChunk: void 0,
|
|
262
|
+
prepareProposal: void 0,
|
|
263
|
+
processProposal: void 0
|
|
264
|
+
};
|
|
265
|
+
}
|
|
266
|
+
t.Request = {
|
|
267
|
+
encode(e, n = o.Writer.create()) {
|
|
268
|
+
return e.echo !== void 0 && t.RequestEcho.encode(e.echo, n.uint32(10).fork()).ldelim(), e.flush !== void 0 && t.RequestFlush.encode(e.flush, n.uint32(18).fork()).ldelim(), e.info !== void 0 && t.RequestInfo.encode(e.info, n.uint32(26).fork()).ldelim(), e.initChain !== void 0 && t.RequestInitChain.encode(e.initChain, n.uint32(42).fork()).ldelim(), e.query !== void 0 && t.RequestQuery.encode(e.query, n.uint32(50).fork()).ldelim(), e.beginBlock !== void 0 && t.RequestBeginBlock.encode(e.beginBlock, n.uint32(58).fork()).ldelim(), e.checkTx !== void 0 && t.RequestCheckTx.encode(e.checkTx, n.uint32(66).fork()).ldelim(), e.deliverTx !== void 0 && t.RequestDeliverTx.encode(e.deliverTx, n.uint32(74).fork()).ldelim(), e.endBlock !== void 0 && t.RequestEndBlock.encode(e.endBlock, n.uint32(82).fork()).ldelim(), e.commit !== void 0 && t.RequestCommit.encode(e.commit, n.uint32(90).fork()).ldelim(), e.listSnapshots !== void 0 && t.RequestListSnapshots.encode(e.listSnapshots, n.uint32(98).fork()).ldelim(), e.offerSnapshot !== void 0 && t.RequestOfferSnapshot.encode(e.offerSnapshot, n.uint32(106).fork()).ldelim(), e.loadSnapshotChunk !== void 0 && t.RequestLoadSnapshotChunk.encode(e.loadSnapshotChunk, n.uint32(114).fork()).ldelim(), e.applySnapshotChunk !== void 0 && t.RequestApplySnapshotChunk.encode(e.applySnapshotChunk, n.uint32(122).fork()).ldelim(), e.prepareProposal !== void 0 && t.RequestPrepareProposal.encode(e.prepareProposal, n.uint32(130).fork()).ldelim(), e.processProposal !== void 0 && t.RequestProcessProposal.encode(e.processProposal, n.uint32(138).fork()).ldelim(), n;
|
|
269
|
+
},
|
|
270
|
+
decode(e, n) {
|
|
271
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
272
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
273
|
+
const a = L();
|
|
274
|
+
for (; i.pos < s; ) {
|
|
275
|
+
const d = i.uint32();
|
|
276
|
+
switch (d >>> 3) {
|
|
277
|
+
case 1:
|
|
278
|
+
a.echo = t.RequestEcho.decode(i, i.uint32());
|
|
279
|
+
break;
|
|
280
|
+
case 2:
|
|
281
|
+
a.flush = t.RequestFlush.decode(i, i.uint32());
|
|
282
|
+
break;
|
|
283
|
+
case 3:
|
|
284
|
+
a.info = t.RequestInfo.decode(i, i.uint32());
|
|
285
|
+
break;
|
|
286
|
+
case 5:
|
|
287
|
+
a.initChain = t.RequestInitChain.decode(i, i.uint32());
|
|
288
|
+
break;
|
|
289
|
+
case 6:
|
|
290
|
+
a.query = t.RequestQuery.decode(i, i.uint32());
|
|
291
|
+
break;
|
|
292
|
+
case 7:
|
|
293
|
+
a.beginBlock = t.RequestBeginBlock.decode(i, i.uint32());
|
|
294
|
+
break;
|
|
295
|
+
case 8:
|
|
296
|
+
a.checkTx = t.RequestCheckTx.decode(i, i.uint32());
|
|
297
|
+
break;
|
|
298
|
+
case 9:
|
|
299
|
+
a.deliverTx = t.RequestDeliverTx.decode(i, i.uint32());
|
|
300
|
+
break;
|
|
301
|
+
case 10:
|
|
302
|
+
a.endBlock = t.RequestEndBlock.decode(i, i.uint32());
|
|
303
|
+
break;
|
|
304
|
+
case 11:
|
|
305
|
+
a.commit = t.RequestCommit.decode(i, i.uint32());
|
|
306
|
+
break;
|
|
307
|
+
case 12:
|
|
308
|
+
a.listSnapshots = t.RequestListSnapshots.decode(i, i.uint32());
|
|
309
|
+
break;
|
|
310
|
+
case 13:
|
|
311
|
+
a.offerSnapshot = t.RequestOfferSnapshot.decode(i, i.uint32());
|
|
312
|
+
break;
|
|
313
|
+
case 14:
|
|
314
|
+
a.loadSnapshotChunk = t.RequestLoadSnapshotChunk.decode(i, i.uint32());
|
|
315
|
+
break;
|
|
316
|
+
case 15:
|
|
317
|
+
a.applySnapshotChunk = t.RequestApplySnapshotChunk.decode(i, i.uint32());
|
|
318
|
+
break;
|
|
319
|
+
case 16:
|
|
320
|
+
a.prepareProposal = t.RequestPrepareProposal.decode(i, i.uint32());
|
|
321
|
+
break;
|
|
322
|
+
case 17:
|
|
323
|
+
a.processProposal = t.RequestProcessProposal.decode(i, i.uint32());
|
|
324
|
+
break;
|
|
325
|
+
default:
|
|
326
|
+
i.skipType(d & 7);
|
|
327
|
+
break;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
return a;
|
|
331
|
+
},
|
|
332
|
+
fromJSON(e) {
|
|
333
|
+
return {
|
|
334
|
+
echo: (0, r.isSet)(e.echo) ? t.RequestEcho.fromJSON(e.echo) : void 0,
|
|
335
|
+
flush: (0, r.isSet)(e.flush) ? t.RequestFlush.fromJSON(e.flush) : void 0,
|
|
336
|
+
info: (0, r.isSet)(e.info) ? t.RequestInfo.fromJSON(e.info) : void 0,
|
|
337
|
+
initChain: (0, r.isSet)(e.initChain) ? t.RequestInitChain.fromJSON(e.initChain) : void 0,
|
|
338
|
+
query: (0, r.isSet)(e.query) ? t.RequestQuery.fromJSON(e.query) : void 0,
|
|
339
|
+
beginBlock: (0, r.isSet)(e.beginBlock) ? t.RequestBeginBlock.fromJSON(e.beginBlock) : void 0,
|
|
340
|
+
checkTx: (0, r.isSet)(e.checkTx) ? t.RequestCheckTx.fromJSON(e.checkTx) : void 0,
|
|
341
|
+
deliverTx: (0, r.isSet)(e.deliverTx) ? t.RequestDeliverTx.fromJSON(e.deliverTx) : void 0,
|
|
342
|
+
endBlock: (0, r.isSet)(e.endBlock) ? t.RequestEndBlock.fromJSON(e.endBlock) : void 0,
|
|
343
|
+
commit: (0, r.isSet)(e.commit) ? t.RequestCommit.fromJSON(e.commit) : void 0,
|
|
344
|
+
listSnapshots: (0, r.isSet)(e.listSnapshots) ? t.RequestListSnapshots.fromJSON(e.listSnapshots) : void 0,
|
|
345
|
+
offerSnapshot: (0, r.isSet)(e.offerSnapshot) ? t.RequestOfferSnapshot.fromJSON(e.offerSnapshot) : void 0,
|
|
346
|
+
loadSnapshotChunk: (0, r.isSet)(e.loadSnapshotChunk) ? t.RequestLoadSnapshotChunk.fromJSON(e.loadSnapshotChunk) : void 0,
|
|
347
|
+
applySnapshotChunk: (0, r.isSet)(e.applySnapshotChunk) ? t.RequestApplySnapshotChunk.fromJSON(e.applySnapshotChunk) : void 0,
|
|
348
|
+
prepareProposal: (0, r.isSet)(e.prepareProposal) ? t.RequestPrepareProposal.fromJSON(e.prepareProposal) : void 0,
|
|
349
|
+
processProposal: (0, r.isSet)(e.processProposal) ? t.RequestProcessProposal.fromJSON(e.processProposal) : void 0
|
|
350
|
+
};
|
|
351
|
+
},
|
|
352
|
+
toJSON(e) {
|
|
353
|
+
const n = {};
|
|
354
|
+
return e.echo !== void 0 && (n.echo = e.echo ? t.RequestEcho.toJSON(e.echo) : void 0), e.flush !== void 0 && (n.flush = e.flush ? t.RequestFlush.toJSON(e.flush) : void 0), e.info !== void 0 && (n.info = e.info ? t.RequestInfo.toJSON(e.info) : void 0), e.initChain !== void 0 && (n.initChain = e.initChain ? t.RequestInitChain.toJSON(e.initChain) : void 0), e.query !== void 0 && (n.query = e.query ? t.RequestQuery.toJSON(e.query) : void 0), e.beginBlock !== void 0 && (n.beginBlock = e.beginBlock ? t.RequestBeginBlock.toJSON(e.beginBlock) : void 0), e.checkTx !== void 0 && (n.checkTx = e.checkTx ? t.RequestCheckTx.toJSON(e.checkTx) : void 0), e.deliverTx !== void 0 && (n.deliverTx = e.deliverTx ? t.RequestDeliverTx.toJSON(e.deliverTx) : void 0), e.endBlock !== void 0 && (n.endBlock = e.endBlock ? t.RequestEndBlock.toJSON(e.endBlock) : void 0), e.commit !== void 0 && (n.commit = e.commit ? t.RequestCommit.toJSON(e.commit) : void 0), e.listSnapshots !== void 0 && (n.listSnapshots = e.listSnapshots ? t.RequestListSnapshots.toJSON(e.listSnapshots) : void 0), e.offerSnapshot !== void 0 && (n.offerSnapshot = e.offerSnapshot ? t.RequestOfferSnapshot.toJSON(e.offerSnapshot) : void 0), e.loadSnapshotChunk !== void 0 && (n.loadSnapshotChunk = e.loadSnapshotChunk ? t.RequestLoadSnapshotChunk.toJSON(e.loadSnapshotChunk) : void 0), e.applySnapshotChunk !== void 0 && (n.applySnapshotChunk = e.applySnapshotChunk ? t.RequestApplySnapshotChunk.toJSON(e.applySnapshotChunk) : void 0), e.prepareProposal !== void 0 && (n.prepareProposal = e.prepareProposal ? t.RequestPrepareProposal.toJSON(e.prepareProposal) : void 0), e.processProposal !== void 0 && (n.processProposal = e.processProposal ? t.RequestProcessProposal.toJSON(e.processProposal) : void 0), n;
|
|
355
|
+
},
|
|
356
|
+
fromPartial(e) {
|
|
357
|
+
const n = L();
|
|
358
|
+
return n.echo = e.echo !== void 0 && e.echo !== null ? t.RequestEcho.fromPartial(e.echo) : void 0, n.flush = e.flush !== void 0 && e.flush !== null ? t.RequestFlush.fromPartial(e.flush) : void 0, n.info = e.info !== void 0 && e.info !== null ? t.RequestInfo.fromPartial(e.info) : void 0, n.initChain = e.initChain !== void 0 && e.initChain !== null ? t.RequestInitChain.fromPartial(e.initChain) : void 0, n.query = e.query !== void 0 && e.query !== null ? t.RequestQuery.fromPartial(e.query) : void 0, n.beginBlock = e.beginBlock !== void 0 && e.beginBlock !== null ? t.RequestBeginBlock.fromPartial(e.beginBlock) : void 0, n.checkTx = e.checkTx !== void 0 && e.checkTx !== null ? t.RequestCheckTx.fromPartial(e.checkTx) : void 0, n.deliverTx = e.deliverTx !== void 0 && e.deliverTx !== null ? t.RequestDeliverTx.fromPartial(e.deliverTx) : void 0, n.endBlock = e.endBlock !== void 0 && e.endBlock !== null ? t.RequestEndBlock.fromPartial(e.endBlock) : void 0, n.commit = e.commit !== void 0 && e.commit !== null ? t.RequestCommit.fromPartial(e.commit) : void 0, n.listSnapshots = e.listSnapshots !== void 0 && e.listSnapshots !== null ? t.RequestListSnapshots.fromPartial(e.listSnapshots) : void 0, n.offerSnapshot = e.offerSnapshot !== void 0 && e.offerSnapshot !== null ? t.RequestOfferSnapshot.fromPartial(e.offerSnapshot) : void 0, n.loadSnapshotChunk = e.loadSnapshotChunk !== void 0 && e.loadSnapshotChunk !== null ? t.RequestLoadSnapshotChunk.fromPartial(e.loadSnapshotChunk) : void 0, n.applySnapshotChunk = e.applySnapshotChunk !== void 0 && e.applySnapshotChunk !== null ? t.RequestApplySnapshotChunk.fromPartial(e.applySnapshotChunk) : void 0, n.prepareProposal = e.prepareProposal !== void 0 && e.prepareProposal !== null ? t.RequestPrepareProposal.fromPartial(e.prepareProposal) : void 0, n.processProposal = e.processProposal !== void 0 && e.processProposal !== null ? t.RequestProcessProposal.fromPartial(e.processProposal) : void 0, n;
|
|
359
|
+
}
|
|
360
|
+
};
|
|
361
|
+
function U() {
|
|
362
|
+
return {
|
|
363
|
+
message: ""
|
|
364
|
+
};
|
|
365
|
+
}
|
|
366
|
+
t.RequestEcho = {
|
|
367
|
+
encode(e, n = o.Writer.create()) {
|
|
368
|
+
return e.message !== "" && n.uint32(10).string(e.message), n;
|
|
369
|
+
},
|
|
370
|
+
decode(e, n) {
|
|
371
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
372
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
373
|
+
const a = U();
|
|
374
|
+
for (; i.pos < s; ) {
|
|
375
|
+
const d = i.uint32();
|
|
376
|
+
switch (d >>> 3) {
|
|
377
|
+
case 1:
|
|
378
|
+
a.message = i.string();
|
|
379
|
+
break;
|
|
380
|
+
default:
|
|
381
|
+
i.skipType(d & 7);
|
|
382
|
+
break;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
return a;
|
|
386
|
+
},
|
|
387
|
+
fromJSON(e) {
|
|
388
|
+
return {
|
|
389
|
+
message: (0, r.isSet)(e.message) ? String(e.message) : ""
|
|
390
|
+
};
|
|
391
|
+
},
|
|
392
|
+
toJSON(e) {
|
|
393
|
+
const n = {};
|
|
394
|
+
return e.message !== void 0 && (n.message = e.message), n;
|
|
395
|
+
},
|
|
396
|
+
fromPartial(e) {
|
|
397
|
+
const n = U();
|
|
398
|
+
return n.message = e.message ?? "", n;
|
|
399
|
+
}
|
|
400
|
+
};
|
|
401
|
+
function V() {
|
|
402
|
+
return {};
|
|
403
|
+
}
|
|
404
|
+
t.RequestFlush = {
|
|
405
|
+
encode(e, n = o.Writer.create()) {
|
|
406
|
+
return n;
|
|
407
|
+
},
|
|
408
|
+
decode(e, n) {
|
|
409
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
410
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
411
|
+
const a = V();
|
|
412
|
+
for (; i.pos < s; ) {
|
|
413
|
+
const d = i.uint32();
|
|
414
|
+
switch (d >>> 3) {
|
|
415
|
+
default:
|
|
416
|
+
i.skipType(d & 7);
|
|
417
|
+
break;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
return a;
|
|
421
|
+
},
|
|
422
|
+
fromJSON(e) {
|
|
423
|
+
return {};
|
|
424
|
+
},
|
|
425
|
+
toJSON(e) {
|
|
426
|
+
return {};
|
|
427
|
+
},
|
|
428
|
+
fromPartial(e) {
|
|
429
|
+
return V();
|
|
430
|
+
}
|
|
431
|
+
};
|
|
432
|
+
function q() {
|
|
433
|
+
return {
|
|
434
|
+
version: "",
|
|
435
|
+
blockVersion: r.Long.UZERO,
|
|
436
|
+
p2pVersion: r.Long.UZERO,
|
|
437
|
+
abciVersion: ""
|
|
438
|
+
};
|
|
439
|
+
}
|
|
440
|
+
t.RequestInfo = {
|
|
441
|
+
encode(e, n = o.Writer.create()) {
|
|
442
|
+
return e.version !== "" && n.uint32(10).string(e.version), e.blockVersion.isZero() || n.uint32(16).uint64(e.blockVersion), e.p2pVersion.isZero() || n.uint32(24).uint64(e.p2pVersion), e.abciVersion !== "" && n.uint32(34).string(e.abciVersion), n;
|
|
443
|
+
},
|
|
444
|
+
decode(e, n) {
|
|
445
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
446
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
447
|
+
const a = q();
|
|
448
|
+
for (; i.pos < s; ) {
|
|
449
|
+
const d = i.uint32();
|
|
450
|
+
switch (d >>> 3) {
|
|
451
|
+
case 1:
|
|
452
|
+
a.version = i.string();
|
|
453
|
+
break;
|
|
454
|
+
case 2:
|
|
455
|
+
a.blockVersion = i.uint64();
|
|
456
|
+
break;
|
|
457
|
+
case 3:
|
|
458
|
+
a.p2pVersion = i.uint64();
|
|
459
|
+
break;
|
|
460
|
+
case 4:
|
|
461
|
+
a.abciVersion = i.string();
|
|
462
|
+
break;
|
|
463
|
+
default:
|
|
464
|
+
i.skipType(d & 7);
|
|
465
|
+
break;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
return a;
|
|
469
|
+
},
|
|
470
|
+
fromJSON(e) {
|
|
471
|
+
return {
|
|
472
|
+
version: (0, r.isSet)(e.version) ? String(e.version) : "",
|
|
473
|
+
blockVersion: (0, r.isSet)(e.blockVersion) ? r.Long.fromValue(e.blockVersion) : r.Long.UZERO,
|
|
474
|
+
p2pVersion: (0, r.isSet)(e.p2pVersion) ? r.Long.fromValue(e.p2pVersion) : r.Long.UZERO,
|
|
475
|
+
abciVersion: (0, r.isSet)(e.abciVersion) ? String(e.abciVersion) : ""
|
|
476
|
+
};
|
|
477
|
+
},
|
|
478
|
+
toJSON(e) {
|
|
479
|
+
const n = {};
|
|
480
|
+
return e.version !== void 0 && (n.version = e.version), e.blockVersion !== void 0 && (n.blockVersion = (e.blockVersion || r.Long.UZERO).toString()), e.p2pVersion !== void 0 && (n.p2pVersion = (e.p2pVersion || r.Long.UZERO).toString()), e.abciVersion !== void 0 && (n.abciVersion = e.abciVersion), n;
|
|
481
|
+
},
|
|
482
|
+
fromPartial(e) {
|
|
483
|
+
const n = q();
|
|
484
|
+
return n.version = e.version ?? "", n.blockVersion = e.blockVersion !== void 0 && e.blockVersion !== null ? r.Long.fromValue(e.blockVersion) : r.Long.UZERO, n.p2pVersion = e.p2pVersion !== void 0 && e.p2pVersion !== null ? r.Long.fromValue(e.p2pVersion) : r.Long.UZERO, n.abciVersion = e.abciVersion ?? "", n;
|
|
485
|
+
}
|
|
486
|
+
};
|
|
487
|
+
function I() {
|
|
488
|
+
return {
|
|
489
|
+
time: void 0,
|
|
490
|
+
chainId: "",
|
|
491
|
+
consensusParams: void 0,
|
|
492
|
+
validators: [],
|
|
493
|
+
appStateBytes: new Uint8Array(),
|
|
494
|
+
initialHeight: r.Long.ZERO
|
|
495
|
+
};
|
|
496
|
+
}
|
|
497
|
+
t.RequestInitChain = {
|
|
498
|
+
encode(e, n = o.Writer.create()) {
|
|
499
|
+
e.time !== void 0 && h.Timestamp.encode(e.time, n.uint32(10).fork()).ldelim(), e.chainId !== "" && n.uint32(18).string(e.chainId), e.consensusParams !== void 0 && u.ConsensusParams.encode(e.consensusParams, n.uint32(26).fork()).ldelim();
|
|
500
|
+
for (const i of e.validators)
|
|
501
|
+
t.ValidatorUpdate.encode(i, n.uint32(34).fork()).ldelim();
|
|
502
|
+
return e.appStateBytes.length !== 0 && n.uint32(42).bytes(e.appStateBytes), e.initialHeight.isZero() || n.uint32(48).int64(e.initialHeight), n;
|
|
503
|
+
},
|
|
504
|
+
decode(e, n) {
|
|
505
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
506
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
507
|
+
const a = I();
|
|
508
|
+
for (; i.pos < s; ) {
|
|
509
|
+
const d = i.uint32();
|
|
510
|
+
switch (d >>> 3) {
|
|
511
|
+
case 1:
|
|
512
|
+
a.time = h.Timestamp.decode(i, i.uint32());
|
|
513
|
+
break;
|
|
514
|
+
case 2:
|
|
515
|
+
a.chainId = i.string();
|
|
516
|
+
break;
|
|
517
|
+
case 3:
|
|
518
|
+
a.consensusParams = u.ConsensusParams.decode(i, i.uint32());
|
|
519
|
+
break;
|
|
520
|
+
case 4:
|
|
521
|
+
a.validators.push(t.ValidatorUpdate.decode(i, i.uint32()));
|
|
522
|
+
break;
|
|
523
|
+
case 5:
|
|
524
|
+
a.appStateBytes = i.bytes();
|
|
525
|
+
break;
|
|
526
|
+
case 6:
|
|
527
|
+
a.initialHeight = i.int64();
|
|
528
|
+
break;
|
|
529
|
+
default:
|
|
530
|
+
i.skipType(d & 7);
|
|
531
|
+
break;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
return a;
|
|
535
|
+
},
|
|
536
|
+
fromJSON(e) {
|
|
537
|
+
return {
|
|
538
|
+
time: (0, r.isSet)(e.time) ? (0, r.fromJsonTimestamp)(e.time) : void 0,
|
|
539
|
+
chainId: (0, r.isSet)(e.chainId) ? String(e.chainId) : "",
|
|
540
|
+
consensusParams: (0, r.isSet)(e.consensusParams) ? u.ConsensusParams.fromJSON(e.consensusParams) : void 0,
|
|
541
|
+
validators: Array.isArray(e?.validators) ? e.validators.map((n) => t.ValidatorUpdate.fromJSON(n)) : [],
|
|
542
|
+
appStateBytes: (0, r.isSet)(e.appStateBytes) ? (0, r.bytesFromBase64)(e.appStateBytes) : new Uint8Array(),
|
|
543
|
+
initialHeight: (0, r.isSet)(e.initialHeight) ? r.Long.fromValue(e.initialHeight) : r.Long.ZERO
|
|
544
|
+
};
|
|
545
|
+
},
|
|
546
|
+
toJSON(e) {
|
|
547
|
+
const n = {};
|
|
548
|
+
return e.time !== void 0 && (n.time = (0, r.fromTimestamp)(e.time).toISOString()), e.chainId !== void 0 && (n.chainId = e.chainId), e.consensusParams !== void 0 && (n.consensusParams = e.consensusParams ? u.ConsensusParams.toJSON(e.consensusParams) : void 0), e.validators ? n.validators = e.validators.map((i) => i ? t.ValidatorUpdate.toJSON(i) : void 0) : n.validators = [], e.appStateBytes !== void 0 && (n.appStateBytes = (0, r.base64FromBytes)(e.appStateBytes !== void 0 ? e.appStateBytes : new Uint8Array())), e.initialHeight !== void 0 && (n.initialHeight = (e.initialHeight || r.Long.ZERO).toString()), n;
|
|
549
|
+
},
|
|
550
|
+
fromPartial(e) {
|
|
551
|
+
const n = I();
|
|
552
|
+
return n.time = e.time !== void 0 && e.time !== null ? h.Timestamp.fromPartial(e.time) : void 0, n.chainId = e.chainId ?? "", n.consensusParams = e.consensusParams !== void 0 && e.consensusParams !== null ? u.ConsensusParams.fromPartial(e.consensusParams) : void 0, n.validators = e.validators?.map((i) => t.ValidatorUpdate.fromPartial(i)) || [], n.appStateBytes = e.appStateBytes ?? new Uint8Array(), n.initialHeight = e.initialHeight !== void 0 && e.initialHeight !== null ? r.Long.fromValue(e.initialHeight) : r.Long.ZERO, n;
|
|
553
|
+
}
|
|
554
|
+
};
|
|
555
|
+
function Z() {
|
|
556
|
+
return {
|
|
557
|
+
data: new Uint8Array(),
|
|
558
|
+
path: "",
|
|
559
|
+
height: r.Long.ZERO,
|
|
560
|
+
prove: !1
|
|
561
|
+
};
|
|
562
|
+
}
|
|
563
|
+
t.RequestQuery = {
|
|
564
|
+
encode(e, n = o.Writer.create()) {
|
|
565
|
+
return e.data.length !== 0 && n.uint32(10).bytes(e.data), e.path !== "" && n.uint32(18).string(e.path), e.height.isZero() || n.uint32(24).int64(e.height), e.prove === !0 && n.uint32(32).bool(e.prove), n;
|
|
566
|
+
},
|
|
567
|
+
decode(e, n) {
|
|
568
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
569
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
570
|
+
const a = Z();
|
|
571
|
+
for (; i.pos < s; ) {
|
|
572
|
+
const d = i.uint32();
|
|
573
|
+
switch (d >>> 3) {
|
|
574
|
+
case 1:
|
|
575
|
+
a.data = i.bytes();
|
|
576
|
+
break;
|
|
577
|
+
case 2:
|
|
578
|
+
a.path = i.string();
|
|
579
|
+
break;
|
|
580
|
+
case 3:
|
|
581
|
+
a.height = i.int64();
|
|
582
|
+
break;
|
|
583
|
+
case 4:
|
|
584
|
+
a.prove = i.bool();
|
|
585
|
+
break;
|
|
586
|
+
default:
|
|
587
|
+
i.skipType(d & 7);
|
|
588
|
+
break;
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
return a;
|
|
592
|
+
},
|
|
593
|
+
fromJSON(e) {
|
|
594
|
+
return {
|
|
595
|
+
data: (0, r.isSet)(e.data) ? (0, r.bytesFromBase64)(e.data) : new Uint8Array(),
|
|
596
|
+
path: (0, r.isSet)(e.path) ? String(e.path) : "",
|
|
597
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO,
|
|
598
|
+
prove: (0, r.isSet)(e.prove) ? !!e.prove : !1
|
|
599
|
+
};
|
|
600
|
+
},
|
|
601
|
+
toJSON(e) {
|
|
602
|
+
const n = {};
|
|
603
|
+
return e.data !== void 0 && (n.data = (0, r.base64FromBytes)(e.data !== void 0 ? e.data : new Uint8Array())), e.path !== void 0 && (n.path = e.path), e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), e.prove !== void 0 && (n.prove = e.prove), n;
|
|
604
|
+
},
|
|
605
|
+
fromPartial(e) {
|
|
606
|
+
const n = Z();
|
|
607
|
+
return n.data = e.data ?? new Uint8Array(), n.path = e.path ?? "", n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n.prove = e.prove ?? !1, n;
|
|
608
|
+
}
|
|
609
|
+
};
|
|
610
|
+
function w() {
|
|
611
|
+
return {
|
|
612
|
+
hash: new Uint8Array(),
|
|
613
|
+
header: void 0,
|
|
614
|
+
lastCommitInfo: void 0,
|
|
615
|
+
byzantineValidators: []
|
|
616
|
+
};
|
|
617
|
+
}
|
|
618
|
+
t.RequestBeginBlock = {
|
|
619
|
+
encode(e, n = o.Writer.create()) {
|
|
620
|
+
e.hash.length !== 0 && n.uint32(10).bytes(e.hash), e.header !== void 0 && R.Header.encode(e.header, n.uint32(18).fork()).ldelim(), e.lastCommitInfo !== void 0 && t.CommitInfo.encode(e.lastCommitInfo, n.uint32(26).fork()).ldelim();
|
|
621
|
+
for (const i of e.byzantineValidators)
|
|
622
|
+
t.Misbehavior.encode(i, n.uint32(34).fork()).ldelim();
|
|
623
|
+
return n;
|
|
624
|
+
},
|
|
625
|
+
decode(e, n) {
|
|
626
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
627
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
628
|
+
const a = w();
|
|
629
|
+
for (; i.pos < s; ) {
|
|
630
|
+
const d = i.uint32();
|
|
631
|
+
switch (d >>> 3) {
|
|
632
|
+
case 1:
|
|
633
|
+
a.hash = i.bytes();
|
|
634
|
+
break;
|
|
635
|
+
case 2:
|
|
636
|
+
a.header = R.Header.decode(i, i.uint32());
|
|
637
|
+
break;
|
|
638
|
+
case 3:
|
|
639
|
+
a.lastCommitInfo = t.CommitInfo.decode(i, i.uint32());
|
|
640
|
+
break;
|
|
641
|
+
case 4:
|
|
642
|
+
a.byzantineValidators.push(t.Misbehavior.decode(i, i.uint32()));
|
|
643
|
+
break;
|
|
644
|
+
default:
|
|
645
|
+
i.skipType(d & 7);
|
|
646
|
+
break;
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
return a;
|
|
650
|
+
},
|
|
651
|
+
fromJSON(e) {
|
|
652
|
+
return {
|
|
653
|
+
hash: (0, r.isSet)(e.hash) ? (0, r.bytesFromBase64)(e.hash) : new Uint8Array(),
|
|
654
|
+
header: (0, r.isSet)(e.header) ? R.Header.fromJSON(e.header) : void 0,
|
|
655
|
+
lastCommitInfo: (0, r.isSet)(e.lastCommitInfo) ? t.CommitInfo.fromJSON(e.lastCommitInfo) : void 0,
|
|
656
|
+
byzantineValidators: Array.isArray(e?.byzantineValidators) ? e.byzantineValidators.map((n) => t.Misbehavior.fromJSON(n)) : []
|
|
657
|
+
};
|
|
658
|
+
},
|
|
659
|
+
toJSON(e) {
|
|
660
|
+
const n = {};
|
|
661
|
+
return e.hash !== void 0 && (n.hash = (0, r.base64FromBytes)(e.hash !== void 0 ? e.hash : new Uint8Array())), e.header !== void 0 && (n.header = e.header ? R.Header.toJSON(e.header) : void 0), e.lastCommitInfo !== void 0 && (n.lastCommitInfo = e.lastCommitInfo ? t.CommitInfo.toJSON(e.lastCommitInfo) : void 0), e.byzantineValidators ? n.byzantineValidators = e.byzantineValidators.map((i) => i ? t.Misbehavior.toJSON(i) : void 0) : n.byzantineValidators = [], n;
|
|
662
|
+
},
|
|
663
|
+
fromPartial(e) {
|
|
664
|
+
const n = w();
|
|
665
|
+
return n.hash = e.hash ?? new Uint8Array(), n.header = e.header !== void 0 && e.header !== null ? R.Header.fromPartial(e.header) : void 0, n.lastCommitInfo = e.lastCommitInfo !== void 0 && e.lastCommitInfo !== null ? t.CommitInfo.fromPartial(e.lastCommitInfo) : void 0, n.byzantineValidators = e.byzantineValidators?.map((i) => t.Misbehavior.fromPartial(i)) || [], n;
|
|
666
|
+
}
|
|
667
|
+
};
|
|
668
|
+
function H() {
|
|
669
|
+
return {
|
|
670
|
+
tx: new Uint8Array(),
|
|
671
|
+
type: 0
|
|
672
|
+
};
|
|
673
|
+
}
|
|
674
|
+
t.RequestCheckTx = {
|
|
675
|
+
encode(e, n = o.Writer.create()) {
|
|
676
|
+
return e.tx.length !== 0 && n.uint32(10).bytes(e.tx), e.type !== 0 && n.uint32(16).int32(e.type), n;
|
|
677
|
+
},
|
|
678
|
+
decode(e, n) {
|
|
679
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
680
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
681
|
+
const a = H();
|
|
682
|
+
for (; i.pos < s; ) {
|
|
683
|
+
const d = i.uint32();
|
|
684
|
+
switch (d >>> 3) {
|
|
685
|
+
case 1:
|
|
686
|
+
a.tx = i.bytes();
|
|
687
|
+
break;
|
|
688
|
+
case 2:
|
|
689
|
+
a.type = i.int32();
|
|
690
|
+
break;
|
|
691
|
+
default:
|
|
692
|
+
i.skipType(d & 7);
|
|
693
|
+
break;
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
return a;
|
|
697
|
+
},
|
|
698
|
+
fromJSON(e) {
|
|
699
|
+
return {
|
|
700
|
+
tx: (0, r.isSet)(e.tx) ? (0, r.bytesFromBase64)(e.tx) : new Uint8Array(),
|
|
701
|
+
type: (0, r.isSet)(e.type) ? O(e.type) : 0
|
|
702
|
+
};
|
|
703
|
+
},
|
|
704
|
+
toJSON(e) {
|
|
705
|
+
const n = {};
|
|
706
|
+
return e.tx !== void 0 && (n.tx = (0, r.base64FromBytes)(e.tx !== void 0 ? e.tx : new Uint8Array())), e.type !== void 0 && (n.type = C(e.type)), n;
|
|
707
|
+
},
|
|
708
|
+
fromPartial(e) {
|
|
709
|
+
const n = H();
|
|
710
|
+
return n.tx = e.tx ?? new Uint8Array(), n.type = e.type ?? 0, n;
|
|
711
|
+
}
|
|
712
|
+
};
|
|
713
|
+
function g() {
|
|
714
|
+
return {
|
|
715
|
+
tx: new Uint8Array()
|
|
716
|
+
};
|
|
717
|
+
}
|
|
718
|
+
t.RequestDeliverTx = {
|
|
719
|
+
encode(e, n = o.Writer.create()) {
|
|
720
|
+
return e.tx.length !== 0 && n.uint32(10).bytes(e.tx), n;
|
|
721
|
+
},
|
|
722
|
+
decode(e, n) {
|
|
723
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
724
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
725
|
+
const a = g();
|
|
726
|
+
for (; i.pos < s; ) {
|
|
727
|
+
const d = i.uint32();
|
|
728
|
+
switch (d >>> 3) {
|
|
729
|
+
case 1:
|
|
730
|
+
a.tx = i.bytes();
|
|
731
|
+
break;
|
|
732
|
+
default:
|
|
733
|
+
i.skipType(d & 7);
|
|
734
|
+
break;
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
return a;
|
|
738
|
+
},
|
|
739
|
+
fromJSON(e) {
|
|
740
|
+
return {
|
|
741
|
+
tx: (0, r.isSet)(e.tx) ? (0, r.bytesFromBase64)(e.tx) : new Uint8Array()
|
|
742
|
+
};
|
|
743
|
+
},
|
|
744
|
+
toJSON(e) {
|
|
745
|
+
const n = {};
|
|
746
|
+
return e.tx !== void 0 && (n.tx = (0, r.base64FromBytes)(e.tx !== void 0 ? e.tx : new Uint8Array())), n;
|
|
747
|
+
},
|
|
748
|
+
fromPartial(e) {
|
|
749
|
+
const n = g();
|
|
750
|
+
return n.tx = e.tx ?? new Uint8Array(), n;
|
|
751
|
+
}
|
|
752
|
+
};
|
|
753
|
+
function _() {
|
|
754
|
+
return {
|
|
755
|
+
height: r.Long.ZERO
|
|
756
|
+
};
|
|
757
|
+
}
|
|
758
|
+
t.RequestEndBlock = {
|
|
759
|
+
encode(e, n = o.Writer.create()) {
|
|
760
|
+
return e.height.isZero() || n.uint32(8).int64(e.height), n;
|
|
761
|
+
},
|
|
762
|
+
decode(e, n) {
|
|
763
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
764
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
765
|
+
const a = _();
|
|
766
|
+
for (; i.pos < s; ) {
|
|
767
|
+
const d = i.uint32();
|
|
768
|
+
switch (d >>> 3) {
|
|
769
|
+
case 1:
|
|
770
|
+
a.height = i.int64();
|
|
771
|
+
break;
|
|
772
|
+
default:
|
|
773
|
+
i.skipType(d & 7);
|
|
774
|
+
break;
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
return a;
|
|
778
|
+
},
|
|
779
|
+
fromJSON(e) {
|
|
780
|
+
return {
|
|
781
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO
|
|
782
|
+
};
|
|
783
|
+
},
|
|
784
|
+
toJSON(e) {
|
|
785
|
+
const n = {};
|
|
786
|
+
return e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), n;
|
|
787
|
+
},
|
|
788
|
+
fromPartial(e) {
|
|
789
|
+
const n = _();
|
|
790
|
+
return n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n;
|
|
791
|
+
}
|
|
792
|
+
};
|
|
793
|
+
function F() {
|
|
794
|
+
return {};
|
|
795
|
+
}
|
|
796
|
+
t.RequestCommit = {
|
|
797
|
+
encode(e, n = o.Writer.create()) {
|
|
798
|
+
return n;
|
|
799
|
+
},
|
|
800
|
+
decode(e, n) {
|
|
801
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
802
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
803
|
+
const a = F();
|
|
804
|
+
for (; i.pos < s; ) {
|
|
805
|
+
const d = i.uint32();
|
|
806
|
+
switch (d >>> 3) {
|
|
807
|
+
default:
|
|
808
|
+
i.skipType(d & 7);
|
|
809
|
+
break;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
return a;
|
|
813
|
+
},
|
|
814
|
+
fromJSON(e) {
|
|
815
|
+
return {};
|
|
816
|
+
},
|
|
817
|
+
toJSON(e) {
|
|
818
|
+
return {};
|
|
819
|
+
},
|
|
820
|
+
fromPartial(e) {
|
|
821
|
+
return F();
|
|
822
|
+
}
|
|
823
|
+
};
|
|
824
|
+
function W() {
|
|
825
|
+
return {};
|
|
826
|
+
}
|
|
827
|
+
t.RequestListSnapshots = {
|
|
828
|
+
encode(e, n = o.Writer.create()) {
|
|
829
|
+
return n;
|
|
830
|
+
},
|
|
831
|
+
decode(e, n) {
|
|
832
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
833
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
834
|
+
const a = W();
|
|
835
|
+
for (; i.pos < s; ) {
|
|
836
|
+
const d = i.uint32();
|
|
837
|
+
switch (d >>> 3) {
|
|
838
|
+
default:
|
|
839
|
+
i.skipType(d & 7);
|
|
840
|
+
break;
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
return a;
|
|
844
|
+
},
|
|
845
|
+
fromJSON(e) {
|
|
846
|
+
return {};
|
|
847
|
+
},
|
|
848
|
+
toJSON(e) {
|
|
849
|
+
return {};
|
|
850
|
+
},
|
|
851
|
+
fromPartial(e) {
|
|
852
|
+
return W();
|
|
853
|
+
}
|
|
854
|
+
};
|
|
855
|
+
function D() {
|
|
856
|
+
return {
|
|
857
|
+
snapshot: void 0,
|
|
858
|
+
appHash: new Uint8Array()
|
|
859
|
+
};
|
|
860
|
+
}
|
|
861
|
+
t.RequestOfferSnapshot = {
|
|
862
|
+
encode(e, n = o.Writer.create()) {
|
|
863
|
+
return e.snapshot !== void 0 && t.Snapshot.encode(e.snapshot, n.uint32(10).fork()).ldelim(), e.appHash.length !== 0 && n.uint32(18).bytes(e.appHash), n;
|
|
864
|
+
},
|
|
865
|
+
decode(e, n) {
|
|
866
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
867
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
868
|
+
const a = D();
|
|
869
|
+
for (; i.pos < s; ) {
|
|
870
|
+
const d = i.uint32();
|
|
871
|
+
switch (d >>> 3) {
|
|
872
|
+
case 1:
|
|
873
|
+
a.snapshot = t.Snapshot.decode(i, i.uint32());
|
|
874
|
+
break;
|
|
875
|
+
case 2:
|
|
876
|
+
a.appHash = i.bytes();
|
|
877
|
+
break;
|
|
878
|
+
default:
|
|
879
|
+
i.skipType(d & 7);
|
|
880
|
+
break;
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
return a;
|
|
884
|
+
},
|
|
885
|
+
fromJSON(e) {
|
|
886
|
+
return {
|
|
887
|
+
snapshot: (0, r.isSet)(e.snapshot) ? t.Snapshot.fromJSON(e.snapshot) : void 0,
|
|
888
|
+
appHash: (0, r.isSet)(e.appHash) ? (0, r.bytesFromBase64)(e.appHash) : new Uint8Array()
|
|
889
|
+
};
|
|
890
|
+
},
|
|
891
|
+
toJSON(e) {
|
|
892
|
+
const n = {};
|
|
893
|
+
return e.snapshot !== void 0 && (n.snapshot = e.snapshot ? t.Snapshot.toJSON(e.snapshot) : void 0), e.appHash !== void 0 && (n.appHash = (0, r.base64FromBytes)(e.appHash !== void 0 ? e.appHash : new Uint8Array())), n;
|
|
894
|
+
},
|
|
895
|
+
fromPartial(e) {
|
|
896
|
+
const n = D();
|
|
897
|
+
return n.snapshot = e.snapshot !== void 0 && e.snapshot !== null ? t.Snapshot.fromPartial(e.snapshot) : void 0, n.appHash = e.appHash ?? new Uint8Array(), n;
|
|
898
|
+
}
|
|
899
|
+
};
|
|
900
|
+
function K() {
|
|
901
|
+
return {
|
|
902
|
+
height: r.Long.UZERO,
|
|
903
|
+
format: 0,
|
|
904
|
+
chunk: 0
|
|
905
|
+
};
|
|
906
|
+
}
|
|
907
|
+
t.RequestLoadSnapshotChunk = {
|
|
908
|
+
encode(e, n = o.Writer.create()) {
|
|
909
|
+
return e.height.isZero() || n.uint32(8).uint64(e.height), e.format !== 0 && n.uint32(16).uint32(e.format), e.chunk !== 0 && n.uint32(24).uint32(e.chunk), n;
|
|
910
|
+
},
|
|
911
|
+
decode(e, n) {
|
|
912
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
913
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
914
|
+
const a = K();
|
|
915
|
+
for (; i.pos < s; ) {
|
|
916
|
+
const d = i.uint32();
|
|
917
|
+
switch (d >>> 3) {
|
|
918
|
+
case 1:
|
|
919
|
+
a.height = i.uint64();
|
|
920
|
+
break;
|
|
921
|
+
case 2:
|
|
922
|
+
a.format = i.uint32();
|
|
923
|
+
break;
|
|
924
|
+
case 3:
|
|
925
|
+
a.chunk = i.uint32();
|
|
926
|
+
break;
|
|
927
|
+
default:
|
|
928
|
+
i.skipType(d & 7);
|
|
929
|
+
break;
|
|
930
|
+
}
|
|
931
|
+
}
|
|
932
|
+
return a;
|
|
933
|
+
},
|
|
934
|
+
fromJSON(e) {
|
|
935
|
+
return {
|
|
936
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.UZERO,
|
|
937
|
+
format: (0, r.isSet)(e.format) ? Number(e.format) : 0,
|
|
938
|
+
chunk: (0, r.isSet)(e.chunk) ? Number(e.chunk) : 0
|
|
939
|
+
};
|
|
940
|
+
},
|
|
941
|
+
toJSON(e) {
|
|
942
|
+
const n = {};
|
|
943
|
+
return e.height !== void 0 && (n.height = (e.height || r.Long.UZERO).toString()), e.format !== void 0 && (n.format = Math.round(e.format)), e.chunk !== void 0 && (n.chunk = Math.round(e.chunk)), n;
|
|
944
|
+
},
|
|
945
|
+
fromPartial(e) {
|
|
946
|
+
const n = K();
|
|
947
|
+
return n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.UZERO, n.format = e.format ?? 0, n.chunk = e.chunk ?? 0, n;
|
|
948
|
+
}
|
|
949
|
+
};
|
|
950
|
+
function M() {
|
|
951
|
+
return {
|
|
952
|
+
index: 0,
|
|
953
|
+
chunk: new Uint8Array(),
|
|
954
|
+
sender: ""
|
|
955
|
+
};
|
|
956
|
+
}
|
|
957
|
+
t.RequestApplySnapshotChunk = {
|
|
958
|
+
encode(e, n = o.Writer.create()) {
|
|
959
|
+
return e.index !== 0 && n.uint32(8).uint32(e.index), e.chunk.length !== 0 && n.uint32(18).bytes(e.chunk), e.sender !== "" && n.uint32(26).string(e.sender), n;
|
|
960
|
+
},
|
|
961
|
+
decode(e, n) {
|
|
962
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
963
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
964
|
+
const a = M();
|
|
965
|
+
for (; i.pos < s; ) {
|
|
966
|
+
const d = i.uint32();
|
|
967
|
+
switch (d >>> 3) {
|
|
968
|
+
case 1:
|
|
969
|
+
a.index = i.uint32();
|
|
970
|
+
break;
|
|
971
|
+
case 2:
|
|
972
|
+
a.chunk = i.bytes();
|
|
973
|
+
break;
|
|
974
|
+
case 3:
|
|
975
|
+
a.sender = i.string();
|
|
976
|
+
break;
|
|
977
|
+
default:
|
|
978
|
+
i.skipType(d & 7);
|
|
979
|
+
break;
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
return a;
|
|
983
|
+
},
|
|
984
|
+
fromJSON(e) {
|
|
985
|
+
return {
|
|
986
|
+
index: (0, r.isSet)(e.index) ? Number(e.index) : 0,
|
|
987
|
+
chunk: (0, r.isSet)(e.chunk) ? (0, r.bytesFromBase64)(e.chunk) : new Uint8Array(),
|
|
988
|
+
sender: (0, r.isSet)(e.sender) ? String(e.sender) : ""
|
|
989
|
+
};
|
|
990
|
+
},
|
|
991
|
+
toJSON(e) {
|
|
992
|
+
const n = {};
|
|
993
|
+
return e.index !== void 0 && (n.index = Math.round(e.index)), e.chunk !== void 0 && (n.chunk = (0, r.base64FromBytes)(e.chunk !== void 0 ? e.chunk : new Uint8Array())), e.sender !== void 0 && (n.sender = e.sender), n;
|
|
994
|
+
},
|
|
995
|
+
fromPartial(e) {
|
|
996
|
+
const n = M();
|
|
997
|
+
return n.index = e.index ?? 0, n.chunk = e.chunk ?? new Uint8Array(), n.sender = e.sender ?? "", n;
|
|
998
|
+
}
|
|
999
|
+
};
|
|
1000
|
+
function G() {
|
|
1001
|
+
return {
|
|
1002
|
+
maxTxBytes: r.Long.ZERO,
|
|
1003
|
+
txs: [],
|
|
1004
|
+
localLastCommit: void 0,
|
|
1005
|
+
misbehavior: [],
|
|
1006
|
+
height: r.Long.ZERO,
|
|
1007
|
+
time: void 0,
|
|
1008
|
+
nextValidatorsHash: new Uint8Array(),
|
|
1009
|
+
proposerAddress: new Uint8Array()
|
|
1010
|
+
};
|
|
1011
|
+
}
|
|
1012
|
+
t.RequestPrepareProposal = {
|
|
1013
|
+
encode(e, n = o.Writer.create()) {
|
|
1014
|
+
e.maxTxBytes.isZero() || n.uint32(8).int64(e.maxTxBytes);
|
|
1015
|
+
for (const i of e.txs)
|
|
1016
|
+
n.uint32(18).bytes(i);
|
|
1017
|
+
e.localLastCommit !== void 0 && t.ExtendedCommitInfo.encode(e.localLastCommit, n.uint32(26).fork()).ldelim();
|
|
1018
|
+
for (const i of e.misbehavior)
|
|
1019
|
+
t.Misbehavior.encode(i, n.uint32(34).fork()).ldelim();
|
|
1020
|
+
return e.height.isZero() || n.uint32(40).int64(e.height), e.time !== void 0 && h.Timestamp.encode(e.time, n.uint32(50).fork()).ldelim(), e.nextValidatorsHash.length !== 0 && n.uint32(58).bytes(e.nextValidatorsHash), e.proposerAddress.length !== 0 && n.uint32(66).bytes(e.proposerAddress), n;
|
|
1021
|
+
},
|
|
1022
|
+
decode(e, n) {
|
|
1023
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1024
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1025
|
+
const a = G();
|
|
1026
|
+
for (; i.pos < s; ) {
|
|
1027
|
+
const d = i.uint32();
|
|
1028
|
+
switch (d >>> 3) {
|
|
1029
|
+
case 1:
|
|
1030
|
+
a.maxTxBytes = i.int64();
|
|
1031
|
+
break;
|
|
1032
|
+
case 2:
|
|
1033
|
+
a.txs.push(i.bytes());
|
|
1034
|
+
break;
|
|
1035
|
+
case 3:
|
|
1036
|
+
a.localLastCommit = t.ExtendedCommitInfo.decode(i, i.uint32());
|
|
1037
|
+
break;
|
|
1038
|
+
case 4:
|
|
1039
|
+
a.misbehavior.push(t.Misbehavior.decode(i, i.uint32()));
|
|
1040
|
+
break;
|
|
1041
|
+
case 5:
|
|
1042
|
+
a.height = i.int64();
|
|
1043
|
+
break;
|
|
1044
|
+
case 6:
|
|
1045
|
+
a.time = h.Timestamp.decode(i, i.uint32());
|
|
1046
|
+
break;
|
|
1047
|
+
case 7:
|
|
1048
|
+
a.nextValidatorsHash = i.bytes();
|
|
1049
|
+
break;
|
|
1050
|
+
case 8:
|
|
1051
|
+
a.proposerAddress = i.bytes();
|
|
1052
|
+
break;
|
|
1053
|
+
default:
|
|
1054
|
+
i.skipType(d & 7);
|
|
1055
|
+
break;
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
return a;
|
|
1059
|
+
},
|
|
1060
|
+
fromJSON(e) {
|
|
1061
|
+
return {
|
|
1062
|
+
maxTxBytes: (0, r.isSet)(e.maxTxBytes) ? r.Long.fromValue(e.maxTxBytes) : r.Long.ZERO,
|
|
1063
|
+
txs: Array.isArray(e?.txs) ? e.txs.map((n) => (0, r.bytesFromBase64)(n)) : [],
|
|
1064
|
+
localLastCommit: (0, r.isSet)(e.localLastCommit) ? t.ExtendedCommitInfo.fromJSON(e.localLastCommit) : void 0,
|
|
1065
|
+
misbehavior: Array.isArray(e?.misbehavior) ? e.misbehavior.map((n) => t.Misbehavior.fromJSON(n)) : [],
|
|
1066
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO,
|
|
1067
|
+
time: (0, r.isSet)(e.time) ? (0, r.fromJsonTimestamp)(e.time) : void 0,
|
|
1068
|
+
nextValidatorsHash: (0, r.isSet)(e.nextValidatorsHash) ? (0, r.bytesFromBase64)(e.nextValidatorsHash) : new Uint8Array(),
|
|
1069
|
+
proposerAddress: (0, r.isSet)(e.proposerAddress) ? (0, r.bytesFromBase64)(e.proposerAddress) : new Uint8Array()
|
|
1070
|
+
};
|
|
1071
|
+
},
|
|
1072
|
+
toJSON(e) {
|
|
1073
|
+
const n = {};
|
|
1074
|
+
return e.maxTxBytes !== void 0 && (n.maxTxBytes = (e.maxTxBytes || r.Long.ZERO).toString()), e.txs ? n.txs = e.txs.map((i) => (0, r.base64FromBytes)(i !== void 0 ? i : new Uint8Array())) : n.txs = [], e.localLastCommit !== void 0 && (n.localLastCommit = e.localLastCommit ? t.ExtendedCommitInfo.toJSON(e.localLastCommit) : void 0), e.misbehavior ? n.misbehavior = e.misbehavior.map((i) => i ? t.Misbehavior.toJSON(i) : void 0) : n.misbehavior = [], e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), e.time !== void 0 && (n.time = (0, r.fromTimestamp)(e.time).toISOString()), e.nextValidatorsHash !== void 0 && (n.nextValidatorsHash = (0, r.base64FromBytes)(e.nextValidatorsHash !== void 0 ? e.nextValidatorsHash : new Uint8Array())), e.proposerAddress !== void 0 && (n.proposerAddress = (0, r.base64FromBytes)(e.proposerAddress !== void 0 ? e.proposerAddress : new Uint8Array())), n;
|
|
1075
|
+
},
|
|
1076
|
+
fromPartial(e) {
|
|
1077
|
+
const n = G();
|
|
1078
|
+
return n.maxTxBytes = e.maxTxBytes !== void 0 && e.maxTxBytes !== null ? r.Long.fromValue(e.maxTxBytes) : r.Long.ZERO, n.txs = e.txs?.map((i) => i) || [], n.localLastCommit = e.localLastCommit !== void 0 && e.localLastCommit !== null ? t.ExtendedCommitInfo.fromPartial(e.localLastCommit) : void 0, n.misbehavior = e.misbehavior?.map((i) => t.Misbehavior.fromPartial(i)) || [], n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n.time = e.time !== void 0 && e.time !== null ? h.Timestamp.fromPartial(e.time) : void 0, n.nextValidatorsHash = e.nextValidatorsHash ?? new Uint8Array(), n.proposerAddress = e.proposerAddress ?? new Uint8Array(), n;
|
|
1079
|
+
}
|
|
1080
|
+
};
|
|
1081
|
+
function b() {
|
|
1082
|
+
return {
|
|
1083
|
+
txs: [],
|
|
1084
|
+
proposedLastCommit: void 0,
|
|
1085
|
+
misbehavior: [],
|
|
1086
|
+
hash: new Uint8Array(),
|
|
1087
|
+
height: r.Long.ZERO,
|
|
1088
|
+
time: void 0,
|
|
1089
|
+
nextValidatorsHash: new Uint8Array(),
|
|
1090
|
+
proposerAddress: new Uint8Array()
|
|
1091
|
+
};
|
|
1092
|
+
}
|
|
1093
|
+
t.RequestProcessProposal = {
|
|
1094
|
+
encode(e, n = o.Writer.create()) {
|
|
1095
|
+
for (const i of e.txs)
|
|
1096
|
+
n.uint32(10).bytes(i);
|
|
1097
|
+
e.proposedLastCommit !== void 0 && t.CommitInfo.encode(e.proposedLastCommit, n.uint32(18).fork()).ldelim();
|
|
1098
|
+
for (const i of e.misbehavior)
|
|
1099
|
+
t.Misbehavior.encode(i, n.uint32(26).fork()).ldelim();
|
|
1100
|
+
return e.hash.length !== 0 && n.uint32(34).bytes(e.hash), e.height.isZero() || n.uint32(40).int64(e.height), e.time !== void 0 && h.Timestamp.encode(e.time, n.uint32(50).fork()).ldelim(), e.nextValidatorsHash.length !== 0 && n.uint32(58).bytes(e.nextValidatorsHash), e.proposerAddress.length !== 0 && n.uint32(66).bytes(e.proposerAddress), n;
|
|
1101
|
+
},
|
|
1102
|
+
decode(e, n) {
|
|
1103
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1104
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1105
|
+
const a = b();
|
|
1106
|
+
for (; i.pos < s; ) {
|
|
1107
|
+
const d = i.uint32();
|
|
1108
|
+
switch (d >>> 3) {
|
|
1109
|
+
case 1:
|
|
1110
|
+
a.txs.push(i.bytes());
|
|
1111
|
+
break;
|
|
1112
|
+
case 2:
|
|
1113
|
+
a.proposedLastCommit = t.CommitInfo.decode(i, i.uint32());
|
|
1114
|
+
break;
|
|
1115
|
+
case 3:
|
|
1116
|
+
a.misbehavior.push(t.Misbehavior.decode(i, i.uint32()));
|
|
1117
|
+
break;
|
|
1118
|
+
case 4:
|
|
1119
|
+
a.hash = i.bytes();
|
|
1120
|
+
break;
|
|
1121
|
+
case 5:
|
|
1122
|
+
a.height = i.int64();
|
|
1123
|
+
break;
|
|
1124
|
+
case 6:
|
|
1125
|
+
a.time = h.Timestamp.decode(i, i.uint32());
|
|
1126
|
+
break;
|
|
1127
|
+
case 7:
|
|
1128
|
+
a.nextValidatorsHash = i.bytes();
|
|
1129
|
+
break;
|
|
1130
|
+
case 8:
|
|
1131
|
+
a.proposerAddress = i.bytes();
|
|
1132
|
+
break;
|
|
1133
|
+
default:
|
|
1134
|
+
i.skipType(d & 7);
|
|
1135
|
+
break;
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
return a;
|
|
1139
|
+
},
|
|
1140
|
+
fromJSON(e) {
|
|
1141
|
+
return {
|
|
1142
|
+
txs: Array.isArray(e?.txs) ? e.txs.map((n) => (0, r.bytesFromBase64)(n)) : [],
|
|
1143
|
+
proposedLastCommit: (0, r.isSet)(e.proposedLastCommit) ? t.CommitInfo.fromJSON(e.proposedLastCommit) : void 0,
|
|
1144
|
+
misbehavior: Array.isArray(e?.misbehavior) ? e.misbehavior.map((n) => t.Misbehavior.fromJSON(n)) : [],
|
|
1145
|
+
hash: (0, r.isSet)(e.hash) ? (0, r.bytesFromBase64)(e.hash) : new Uint8Array(),
|
|
1146
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO,
|
|
1147
|
+
time: (0, r.isSet)(e.time) ? (0, r.fromJsonTimestamp)(e.time) : void 0,
|
|
1148
|
+
nextValidatorsHash: (0, r.isSet)(e.nextValidatorsHash) ? (0, r.bytesFromBase64)(e.nextValidatorsHash) : new Uint8Array(),
|
|
1149
|
+
proposerAddress: (0, r.isSet)(e.proposerAddress) ? (0, r.bytesFromBase64)(e.proposerAddress) : new Uint8Array()
|
|
1150
|
+
};
|
|
1151
|
+
},
|
|
1152
|
+
toJSON(e) {
|
|
1153
|
+
const n = {};
|
|
1154
|
+
return e.txs ? n.txs = e.txs.map((i) => (0, r.base64FromBytes)(i !== void 0 ? i : new Uint8Array())) : n.txs = [], e.proposedLastCommit !== void 0 && (n.proposedLastCommit = e.proposedLastCommit ? t.CommitInfo.toJSON(e.proposedLastCommit) : void 0), e.misbehavior ? n.misbehavior = e.misbehavior.map((i) => i ? t.Misbehavior.toJSON(i) : void 0) : n.misbehavior = [], e.hash !== void 0 && (n.hash = (0, r.base64FromBytes)(e.hash !== void 0 ? e.hash : new Uint8Array())), e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), e.time !== void 0 && (n.time = (0, r.fromTimestamp)(e.time).toISOString()), e.nextValidatorsHash !== void 0 && (n.nextValidatorsHash = (0, r.base64FromBytes)(e.nextValidatorsHash !== void 0 ? e.nextValidatorsHash : new Uint8Array())), e.proposerAddress !== void 0 && (n.proposerAddress = (0, r.base64FromBytes)(e.proposerAddress !== void 0 ? e.proposerAddress : new Uint8Array())), n;
|
|
1155
|
+
},
|
|
1156
|
+
fromPartial(e) {
|
|
1157
|
+
const n = b();
|
|
1158
|
+
return n.txs = e.txs?.map((i) => i) || [], n.proposedLastCommit = e.proposedLastCommit !== void 0 && e.proposedLastCommit !== null ? t.CommitInfo.fromPartial(e.proposedLastCommit) : void 0, n.misbehavior = e.misbehavior?.map((i) => t.Misbehavior.fromPartial(i)) || [], n.hash = e.hash ?? new Uint8Array(), n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n.time = e.time !== void 0 && e.time !== null ? h.Timestamp.fromPartial(e.time) : void 0, n.nextValidatorsHash = e.nextValidatorsHash ?? new Uint8Array(), n.proposerAddress = e.proposerAddress ?? new Uint8Array(), n;
|
|
1159
|
+
}
|
|
1160
|
+
};
|
|
1161
|
+
function Q() {
|
|
1162
|
+
return {
|
|
1163
|
+
exception: void 0,
|
|
1164
|
+
echo: void 0,
|
|
1165
|
+
flush: void 0,
|
|
1166
|
+
info: void 0,
|
|
1167
|
+
initChain: void 0,
|
|
1168
|
+
query: void 0,
|
|
1169
|
+
beginBlock: void 0,
|
|
1170
|
+
checkTx: void 0,
|
|
1171
|
+
deliverTx: void 0,
|
|
1172
|
+
endBlock: void 0,
|
|
1173
|
+
commit: void 0,
|
|
1174
|
+
listSnapshots: void 0,
|
|
1175
|
+
offerSnapshot: void 0,
|
|
1176
|
+
loadSnapshotChunk: void 0,
|
|
1177
|
+
applySnapshotChunk: void 0,
|
|
1178
|
+
prepareProposal: void 0,
|
|
1179
|
+
processProposal: void 0
|
|
1180
|
+
};
|
|
1181
|
+
}
|
|
1182
|
+
t.Response = {
|
|
1183
|
+
encode(e, n = o.Writer.create()) {
|
|
1184
|
+
return e.exception !== void 0 && t.ResponseException.encode(e.exception, n.uint32(10).fork()).ldelim(), e.echo !== void 0 && t.ResponseEcho.encode(e.echo, n.uint32(18).fork()).ldelim(), e.flush !== void 0 && t.ResponseFlush.encode(e.flush, n.uint32(26).fork()).ldelim(), e.info !== void 0 && t.ResponseInfo.encode(e.info, n.uint32(34).fork()).ldelim(), e.initChain !== void 0 && t.ResponseInitChain.encode(e.initChain, n.uint32(50).fork()).ldelim(), e.query !== void 0 && t.ResponseQuery.encode(e.query, n.uint32(58).fork()).ldelim(), e.beginBlock !== void 0 && t.ResponseBeginBlock.encode(e.beginBlock, n.uint32(66).fork()).ldelim(), e.checkTx !== void 0 && t.ResponseCheckTx.encode(e.checkTx, n.uint32(74).fork()).ldelim(), e.deliverTx !== void 0 && t.ResponseDeliverTx.encode(e.deliverTx, n.uint32(82).fork()).ldelim(), e.endBlock !== void 0 && t.ResponseEndBlock.encode(e.endBlock, n.uint32(90).fork()).ldelim(), e.commit !== void 0 && t.ResponseCommit.encode(e.commit, n.uint32(98).fork()).ldelim(), e.listSnapshots !== void 0 && t.ResponseListSnapshots.encode(e.listSnapshots, n.uint32(106).fork()).ldelim(), e.offerSnapshot !== void 0 && t.ResponseOfferSnapshot.encode(e.offerSnapshot, n.uint32(114).fork()).ldelim(), e.loadSnapshotChunk !== void 0 && t.ResponseLoadSnapshotChunk.encode(e.loadSnapshotChunk, n.uint32(122).fork()).ldelim(), e.applySnapshotChunk !== void 0 && t.ResponseApplySnapshotChunk.encode(e.applySnapshotChunk, n.uint32(130).fork()).ldelim(), e.prepareProposal !== void 0 && t.ResponsePrepareProposal.encode(e.prepareProposal, n.uint32(138).fork()).ldelim(), e.processProposal !== void 0 && t.ResponseProcessProposal.encode(e.processProposal, n.uint32(146).fork()).ldelim(), n;
|
|
1185
|
+
},
|
|
1186
|
+
decode(e, n) {
|
|
1187
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1188
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1189
|
+
const a = Q();
|
|
1190
|
+
for (; i.pos < s; ) {
|
|
1191
|
+
const d = i.uint32();
|
|
1192
|
+
switch (d >>> 3) {
|
|
1193
|
+
case 1:
|
|
1194
|
+
a.exception = t.ResponseException.decode(i, i.uint32());
|
|
1195
|
+
break;
|
|
1196
|
+
case 2:
|
|
1197
|
+
a.echo = t.ResponseEcho.decode(i, i.uint32());
|
|
1198
|
+
break;
|
|
1199
|
+
case 3:
|
|
1200
|
+
a.flush = t.ResponseFlush.decode(i, i.uint32());
|
|
1201
|
+
break;
|
|
1202
|
+
case 4:
|
|
1203
|
+
a.info = t.ResponseInfo.decode(i, i.uint32());
|
|
1204
|
+
break;
|
|
1205
|
+
case 6:
|
|
1206
|
+
a.initChain = t.ResponseInitChain.decode(i, i.uint32());
|
|
1207
|
+
break;
|
|
1208
|
+
case 7:
|
|
1209
|
+
a.query = t.ResponseQuery.decode(i, i.uint32());
|
|
1210
|
+
break;
|
|
1211
|
+
case 8:
|
|
1212
|
+
a.beginBlock = t.ResponseBeginBlock.decode(i, i.uint32());
|
|
1213
|
+
break;
|
|
1214
|
+
case 9:
|
|
1215
|
+
a.checkTx = t.ResponseCheckTx.decode(i, i.uint32());
|
|
1216
|
+
break;
|
|
1217
|
+
case 10:
|
|
1218
|
+
a.deliverTx = t.ResponseDeliverTx.decode(i, i.uint32());
|
|
1219
|
+
break;
|
|
1220
|
+
case 11:
|
|
1221
|
+
a.endBlock = t.ResponseEndBlock.decode(i, i.uint32());
|
|
1222
|
+
break;
|
|
1223
|
+
case 12:
|
|
1224
|
+
a.commit = t.ResponseCommit.decode(i, i.uint32());
|
|
1225
|
+
break;
|
|
1226
|
+
case 13:
|
|
1227
|
+
a.listSnapshots = t.ResponseListSnapshots.decode(i, i.uint32());
|
|
1228
|
+
break;
|
|
1229
|
+
case 14:
|
|
1230
|
+
a.offerSnapshot = t.ResponseOfferSnapshot.decode(i, i.uint32());
|
|
1231
|
+
break;
|
|
1232
|
+
case 15:
|
|
1233
|
+
a.loadSnapshotChunk = t.ResponseLoadSnapshotChunk.decode(i, i.uint32());
|
|
1234
|
+
break;
|
|
1235
|
+
case 16:
|
|
1236
|
+
a.applySnapshotChunk = t.ResponseApplySnapshotChunk.decode(i, i.uint32());
|
|
1237
|
+
break;
|
|
1238
|
+
case 17:
|
|
1239
|
+
a.prepareProposal = t.ResponsePrepareProposal.decode(i, i.uint32());
|
|
1240
|
+
break;
|
|
1241
|
+
case 18:
|
|
1242
|
+
a.processProposal = t.ResponseProcessProposal.decode(i, i.uint32());
|
|
1243
|
+
break;
|
|
1244
|
+
default:
|
|
1245
|
+
i.skipType(d & 7);
|
|
1246
|
+
break;
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
return a;
|
|
1250
|
+
},
|
|
1251
|
+
fromJSON(e) {
|
|
1252
|
+
return {
|
|
1253
|
+
exception: (0, r.isSet)(e.exception) ? t.ResponseException.fromJSON(e.exception) : void 0,
|
|
1254
|
+
echo: (0, r.isSet)(e.echo) ? t.ResponseEcho.fromJSON(e.echo) : void 0,
|
|
1255
|
+
flush: (0, r.isSet)(e.flush) ? t.ResponseFlush.fromJSON(e.flush) : void 0,
|
|
1256
|
+
info: (0, r.isSet)(e.info) ? t.ResponseInfo.fromJSON(e.info) : void 0,
|
|
1257
|
+
initChain: (0, r.isSet)(e.initChain) ? t.ResponseInitChain.fromJSON(e.initChain) : void 0,
|
|
1258
|
+
query: (0, r.isSet)(e.query) ? t.ResponseQuery.fromJSON(e.query) : void 0,
|
|
1259
|
+
beginBlock: (0, r.isSet)(e.beginBlock) ? t.ResponseBeginBlock.fromJSON(e.beginBlock) : void 0,
|
|
1260
|
+
checkTx: (0, r.isSet)(e.checkTx) ? t.ResponseCheckTx.fromJSON(e.checkTx) : void 0,
|
|
1261
|
+
deliverTx: (0, r.isSet)(e.deliverTx) ? t.ResponseDeliverTx.fromJSON(e.deliverTx) : void 0,
|
|
1262
|
+
endBlock: (0, r.isSet)(e.endBlock) ? t.ResponseEndBlock.fromJSON(e.endBlock) : void 0,
|
|
1263
|
+
commit: (0, r.isSet)(e.commit) ? t.ResponseCommit.fromJSON(e.commit) : void 0,
|
|
1264
|
+
listSnapshots: (0, r.isSet)(e.listSnapshots) ? t.ResponseListSnapshots.fromJSON(e.listSnapshots) : void 0,
|
|
1265
|
+
offerSnapshot: (0, r.isSet)(e.offerSnapshot) ? t.ResponseOfferSnapshot.fromJSON(e.offerSnapshot) : void 0,
|
|
1266
|
+
loadSnapshotChunk: (0, r.isSet)(e.loadSnapshotChunk) ? t.ResponseLoadSnapshotChunk.fromJSON(e.loadSnapshotChunk) : void 0,
|
|
1267
|
+
applySnapshotChunk: (0, r.isSet)(e.applySnapshotChunk) ? t.ResponseApplySnapshotChunk.fromJSON(e.applySnapshotChunk) : void 0,
|
|
1268
|
+
prepareProposal: (0, r.isSet)(e.prepareProposal) ? t.ResponsePrepareProposal.fromJSON(e.prepareProposal) : void 0,
|
|
1269
|
+
processProposal: (0, r.isSet)(e.processProposal) ? t.ResponseProcessProposal.fromJSON(e.processProposal) : void 0
|
|
1270
|
+
};
|
|
1271
|
+
},
|
|
1272
|
+
toJSON(e) {
|
|
1273
|
+
const n = {};
|
|
1274
|
+
return e.exception !== void 0 && (n.exception = e.exception ? t.ResponseException.toJSON(e.exception) : void 0), e.echo !== void 0 && (n.echo = e.echo ? t.ResponseEcho.toJSON(e.echo) : void 0), e.flush !== void 0 && (n.flush = e.flush ? t.ResponseFlush.toJSON(e.flush) : void 0), e.info !== void 0 && (n.info = e.info ? t.ResponseInfo.toJSON(e.info) : void 0), e.initChain !== void 0 && (n.initChain = e.initChain ? t.ResponseInitChain.toJSON(e.initChain) : void 0), e.query !== void 0 && (n.query = e.query ? t.ResponseQuery.toJSON(e.query) : void 0), e.beginBlock !== void 0 && (n.beginBlock = e.beginBlock ? t.ResponseBeginBlock.toJSON(e.beginBlock) : void 0), e.checkTx !== void 0 && (n.checkTx = e.checkTx ? t.ResponseCheckTx.toJSON(e.checkTx) : void 0), e.deliverTx !== void 0 && (n.deliverTx = e.deliverTx ? t.ResponseDeliverTx.toJSON(e.deliverTx) : void 0), e.endBlock !== void 0 && (n.endBlock = e.endBlock ? t.ResponseEndBlock.toJSON(e.endBlock) : void 0), e.commit !== void 0 && (n.commit = e.commit ? t.ResponseCommit.toJSON(e.commit) : void 0), e.listSnapshots !== void 0 && (n.listSnapshots = e.listSnapshots ? t.ResponseListSnapshots.toJSON(e.listSnapshots) : void 0), e.offerSnapshot !== void 0 && (n.offerSnapshot = e.offerSnapshot ? t.ResponseOfferSnapshot.toJSON(e.offerSnapshot) : void 0), e.loadSnapshotChunk !== void 0 && (n.loadSnapshotChunk = e.loadSnapshotChunk ? t.ResponseLoadSnapshotChunk.toJSON(e.loadSnapshotChunk) : void 0), e.applySnapshotChunk !== void 0 && (n.applySnapshotChunk = e.applySnapshotChunk ? t.ResponseApplySnapshotChunk.toJSON(e.applySnapshotChunk) : void 0), e.prepareProposal !== void 0 && (n.prepareProposal = e.prepareProposal ? t.ResponsePrepareProposal.toJSON(e.prepareProposal) : void 0), e.processProposal !== void 0 && (n.processProposal = e.processProposal ? t.ResponseProcessProposal.toJSON(e.processProposal) : void 0), n;
|
|
1275
|
+
},
|
|
1276
|
+
fromPartial(e) {
|
|
1277
|
+
const n = Q();
|
|
1278
|
+
return n.exception = e.exception !== void 0 && e.exception !== null ? t.ResponseException.fromPartial(e.exception) : void 0, n.echo = e.echo !== void 0 && e.echo !== null ? t.ResponseEcho.fromPartial(e.echo) : void 0, n.flush = e.flush !== void 0 && e.flush !== null ? t.ResponseFlush.fromPartial(e.flush) : void 0, n.info = e.info !== void 0 && e.info !== null ? t.ResponseInfo.fromPartial(e.info) : void 0, n.initChain = e.initChain !== void 0 && e.initChain !== null ? t.ResponseInitChain.fromPartial(e.initChain) : void 0, n.query = e.query !== void 0 && e.query !== null ? t.ResponseQuery.fromPartial(e.query) : void 0, n.beginBlock = e.beginBlock !== void 0 && e.beginBlock !== null ? t.ResponseBeginBlock.fromPartial(e.beginBlock) : void 0, n.checkTx = e.checkTx !== void 0 && e.checkTx !== null ? t.ResponseCheckTx.fromPartial(e.checkTx) : void 0, n.deliverTx = e.deliverTx !== void 0 && e.deliverTx !== null ? t.ResponseDeliverTx.fromPartial(e.deliverTx) : void 0, n.endBlock = e.endBlock !== void 0 && e.endBlock !== null ? t.ResponseEndBlock.fromPartial(e.endBlock) : void 0, n.commit = e.commit !== void 0 && e.commit !== null ? t.ResponseCommit.fromPartial(e.commit) : void 0, n.listSnapshots = e.listSnapshots !== void 0 && e.listSnapshots !== null ? t.ResponseListSnapshots.fromPartial(e.listSnapshots) : void 0, n.offerSnapshot = e.offerSnapshot !== void 0 && e.offerSnapshot !== null ? t.ResponseOfferSnapshot.fromPartial(e.offerSnapshot) : void 0, n.loadSnapshotChunk = e.loadSnapshotChunk !== void 0 && e.loadSnapshotChunk !== null ? t.ResponseLoadSnapshotChunk.fromPartial(e.loadSnapshotChunk) : void 0, n.applySnapshotChunk = e.applySnapshotChunk !== void 0 && e.applySnapshotChunk !== null ? t.ResponseApplySnapshotChunk.fromPartial(e.applySnapshotChunk) : void 0, n.prepareProposal = e.prepareProposal !== void 0 && e.prepareProposal !== null ? t.ResponsePrepareProposal.fromPartial(e.prepareProposal) : void 0, n.processProposal = e.processProposal !== void 0 && e.processProposal !== null ? t.ResponseProcessProposal.fromPartial(e.processProposal) : void 0, n;
|
|
1279
|
+
}
|
|
1280
|
+
};
|
|
1281
|
+
function z() {
|
|
1282
|
+
return {
|
|
1283
|
+
error: ""
|
|
1284
|
+
};
|
|
1285
|
+
}
|
|
1286
|
+
t.ResponseException = {
|
|
1287
|
+
encode(e, n = o.Writer.create()) {
|
|
1288
|
+
return e.error !== "" && n.uint32(10).string(e.error), n;
|
|
1289
|
+
},
|
|
1290
|
+
decode(e, n) {
|
|
1291
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1292
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1293
|
+
const a = z();
|
|
1294
|
+
for (; i.pos < s; ) {
|
|
1295
|
+
const d = i.uint32();
|
|
1296
|
+
switch (d >>> 3) {
|
|
1297
|
+
case 1:
|
|
1298
|
+
a.error = i.string();
|
|
1299
|
+
break;
|
|
1300
|
+
default:
|
|
1301
|
+
i.skipType(d & 7);
|
|
1302
|
+
break;
|
|
1303
|
+
}
|
|
1304
|
+
}
|
|
1305
|
+
return a;
|
|
1306
|
+
},
|
|
1307
|
+
fromJSON(e) {
|
|
1308
|
+
return {
|
|
1309
|
+
error: (0, r.isSet)(e.error) ? String(e.error) : ""
|
|
1310
|
+
};
|
|
1311
|
+
},
|
|
1312
|
+
toJSON(e) {
|
|
1313
|
+
const n = {};
|
|
1314
|
+
return e.error !== void 0 && (n.error = e.error), n;
|
|
1315
|
+
},
|
|
1316
|
+
fromPartial(e) {
|
|
1317
|
+
const n = z();
|
|
1318
|
+
return n.error = e.error ?? "", n;
|
|
1319
|
+
}
|
|
1320
|
+
};
|
|
1321
|
+
function Y() {
|
|
1322
|
+
return {
|
|
1323
|
+
message: ""
|
|
1324
|
+
};
|
|
1325
|
+
}
|
|
1326
|
+
t.ResponseEcho = {
|
|
1327
|
+
encode(e, n = o.Writer.create()) {
|
|
1328
|
+
return e.message !== "" && n.uint32(10).string(e.message), n;
|
|
1329
|
+
},
|
|
1330
|
+
decode(e, n) {
|
|
1331
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1332
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1333
|
+
const a = Y();
|
|
1334
|
+
for (; i.pos < s; ) {
|
|
1335
|
+
const d = i.uint32();
|
|
1336
|
+
switch (d >>> 3) {
|
|
1337
|
+
case 1:
|
|
1338
|
+
a.message = i.string();
|
|
1339
|
+
break;
|
|
1340
|
+
default:
|
|
1341
|
+
i.skipType(d & 7);
|
|
1342
|
+
break;
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
return a;
|
|
1346
|
+
},
|
|
1347
|
+
fromJSON(e) {
|
|
1348
|
+
return {
|
|
1349
|
+
message: (0, r.isSet)(e.message) ? String(e.message) : ""
|
|
1350
|
+
};
|
|
1351
|
+
},
|
|
1352
|
+
toJSON(e) {
|
|
1353
|
+
const n = {};
|
|
1354
|
+
return e.message !== void 0 && (n.message = e.message), n;
|
|
1355
|
+
},
|
|
1356
|
+
fromPartial(e) {
|
|
1357
|
+
const n = Y();
|
|
1358
|
+
return n.message = e.message ?? "", n;
|
|
1359
|
+
}
|
|
1360
|
+
};
|
|
1361
|
+
function $() {
|
|
1362
|
+
return {};
|
|
1363
|
+
}
|
|
1364
|
+
t.ResponseFlush = {
|
|
1365
|
+
encode(e, n = o.Writer.create()) {
|
|
1366
|
+
return n;
|
|
1367
|
+
},
|
|
1368
|
+
decode(e, n) {
|
|
1369
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1370
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1371
|
+
const a = $();
|
|
1372
|
+
for (; i.pos < s; ) {
|
|
1373
|
+
const d = i.uint32();
|
|
1374
|
+
switch (d >>> 3) {
|
|
1375
|
+
default:
|
|
1376
|
+
i.skipType(d & 7);
|
|
1377
|
+
break;
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
return a;
|
|
1381
|
+
},
|
|
1382
|
+
fromJSON(e) {
|
|
1383
|
+
return {};
|
|
1384
|
+
},
|
|
1385
|
+
toJSON(e) {
|
|
1386
|
+
return {};
|
|
1387
|
+
},
|
|
1388
|
+
fromPartial(e) {
|
|
1389
|
+
return $();
|
|
1390
|
+
}
|
|
1391
|
+
};
|
|
1392
|
+
function X() {
|
|
1393
|
+
return {
|
|
1394
|
+
data: "",
|
|
1395
|
+
version: "",
|
|
1396
|
+
appVersion: r.Long.UZERO,
|
|
1397
|
+
lastBlockHeight: r.Long.ZERO,
|
|
1398
|
+
lastBlockAppHash: new Uint8Array()
|
|
1399
|
+
};
|
|
1400
|
+
}
|
|
1401
|
+
t.ResponseInfo = {
|
|
1402
|
+
encode(e, n = o.Writer.create()) {
|
|
1403
|
+
return e.data !== "" && n.uint32(10).string(e.data), e.version !== "" && n.uint32(18).string(e.version), e.appVersion.isZero() || n.uint32(24).uint64(e.appVersion), e.lastBlockHeight.isZero() || n.uint32(32).int64(e.lastBlockHeight), e.lastBlockAppHash.length !== 0 && n.uint32(42).bytes(e.lastBlockAppHash), n;
|
|
1404
|
+
},
|
|
1405
|
+
decode(e, n) {
|
|
1406
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1407
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1408
|
+
const a = X();
|
|
1409
|
+
for (; i.pos < s; ) {
|
|
1410
|
+
const d = i.uint32();
|
|
1411
|
+
switch (d >>> 3) {
|
|
1412
|
+
case 1:
|
|
1413
|
+
a.data = i.string();
|
|
1414
|
+
break;
|
|
1415
|
+
case 2:
|
|
1416
|
+
a.version = i.string();
|
|
1417
|
+
break;
|
|
1418
|
+
case 3:
|
|
1419
|
+
a.appVersion = i.uint64();
|
|
1420
|
+
break;
|
|
1421
|
+
case 4:
|
|
1422
|
+
a.lastBlockHeight = i.int64();
|
|
1423
|
+
break;
|
|
1424
|
+
case 5:
|
|
1425
|
+
a.lastBlockAppHash = i.bytes();
|
|
1426
|
+
break;
|
|
1427
|
+
default:
|
|
1428
|
+
i.skipType(d & 7);
|
|
1429
|
+
break;
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
return a;
|
|
1433
|
+
},
|
|
1434
|
+
fromJSON(e) {
|
|
1435
|
+
return {
|
|
1436
|
+
data: (0, r.isSet)(e.data) ? String(e.data) : "",
|
|
1437
|
+
version: (0, r.isSet)(e.version) ? String(e.version) : "",
|
|
1438
|
+
appVersion: (0, r.isSet)(e.appVersion) ? r.Long.fromValue(e.appVersion) : r.Long.UZERO,
|
|
1439
|
+
lastBlockHeight: (0, r.isSet)(e.lastBlockHeight) ? r.Long.fromValue(e.lastBlockHeight) : r.Long.ZERO,
|
|
1440
|
+
lastBlockAppHash: (0, r.isSet)(e.lastBlockAppHash) ? (0, r.bytesFromBase64)(e.lastBlockAppHash) : new Uint8Array()
|
|
1441
|
+
};
|
|
1442
|
+
},
|
|
1443
|
+
toJSON(e) {
|
|
1444
|
+
const n = {};
|
|
1445
|
+
return e.data !== void 0 && (n.data = e.data), e.version !== void 0 && (n.version = e.version), e.appVersion !== void 0 && (n.appVersion = (e.appVersion || r.Long.UZERO).toString()), e.lastBlockHeight !== void 0 && (n.lastBlockHeight = (e.lastBlockHeight || r.Long.ZERO).toString()), e.lastBlockAppHash !== void 0 && (n.lastBlockAppHash = (0, r.base64FromBytes)(e.lastBlockAppHash !== void 0 ? e.lastBlockAppHash : new Uint8Array())), n;
|
|
1446
|
+
},
|
|
1447
|
+
fromPartial(e) {
|
|
1448
|
+
const n = X();
|
|
1449
|
+
return n.data = e.data ?? "", n.version = e.version ?? "", n.appVersion = e.appVersion !== void 0 && e.appVersion !== null ? r.Long.fromValue(e.appVersion) : r.Long.UZERO, n.lastBlockHeight = e.lastBlockHeight !== void 0 && e.lastBlockHeight !== null ? r.Long.fromValue(e.lastBlockHeight) : r.Long.ZERO, n.lastBlockAppHash = e.lastBlockAppHash ?? new Uint8Array(), n;
|
|
1450
|
+
}
|
|
1451
|
+
};
|
|
1452
|
+
function x() {
|
|
1453
|
+
return {
|
|
1454
|
+
consensusParams: void 0,
|
|
1455
|
+
validators: [],
|
|
1456
|
+
appHash: new Uint8Array()
|
|
1457
|
+
};
|
|
1458
|
+
}
|
|
1459
|
+
t.ResponseInitChain = {
|
|
1460
|
+
encode(e, n = o.Writer.create()) {
|
|
1461
|
+
e.consensusParams !== void 0 && u.ConsensusParams.encode(e.consensusParams, n.uint32(10).fork()).ldelim();
|
|
1462
|
+
for (const i of e.validators)
|
|
1463
|
+
t.ValidatorUpdate.encode(i, n.uint32(18).fork()).ldelim();
|
|
1464
|
+
return e.appHash.length !== 0 && n.uint32(26).bytes(e.appHash), n;
|
|
1465
|
+
},
|
|
1466
|
+
decode(e, n) {
|
|
1467
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1468
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1469
|
+
const a = x();
|
|
1470
|
+
for (; i.pos < s; ) {
|
|
1471
|
+
const d = i.uint32();
|
|
1472
|
+
switch (d >>> 3) {
|
|
1473
|
+
case 1:
|
|
1474
|
+
a.consensusParams = u.ConsensusParams.decode(i, i.uint32());
|
|
1475
|
+
break;
|
|
1476
|
+
case 2:
|
|
1477
|
+
a.validators.push(t.ValidatorUpdate.decode(i, i.uint32()));
|
|
1478
|
+
break;
|
|
1479
|
+
case 3:
|
|
1480
|
+
a.appHash = i.bytes();
|
|
1481
|
+
break;
|
|
1482
|
+
default:
|
|
1483
|
+
i.skipType(d & 7);
|
|
1484
|
+
break;
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
return a;
|
|
1488
|
+
},
|
|
1489
|
+
fromJSON(e) {
|
|
1490
|
+
return {
|
|
1491
|
+
consensusParams: (0, r.isSet)(e.consensusParams) ? u.ConsensusParams.fromJSON(e.consensusParams) : void 0,
|
|
1492
|
+
validators: Array.isArray(e?.validators) ? e.validators.map((n) => t.ValidatorUpdate.fromJSON(n)) : [],
|
|
1493
|
+
appHash: (0, r.isSet)(e.appHash) ? (0, r.bytesFromBase64)(e.appHash) : new Uint8Array()
|
|
1494
|
+
};
|
|
1495
|
+
},
|
|
1496
|
+
toJSON(e) {
|
|
1497
|
+
const n = {};
|
|
1498
|
+
return e.consensusParams !== void 0 && (n.consensusParams = e.consensusParams ? u.ConsensusParams.toJSON(e.consensusParams) : void 0), e.validators ? n.validators = e.validators.map((i) => i ? t.ValidatorUpdate.toJSON(i) : void 0) : n.validators = [], e.appHash !== void 0 && (n.appHash = (0, r.base64FromBytes)(e.appHash !== void 0 ? e.appHash : new Uint8Array())), n;
|
|
1499
|
+
},
|
|
1500
|
+
fromPartial(e) {
|
|
1501
|
+
const n = x();
|
|
1502
|
+
return n.consensusParams = e.consensusParams !== void 0 && e.consensusParams !== null ? u.ConsensusParams.fromPartial(e.consensusParams) : void 0, n.validators = e.validators?.map((i) => t.ValidatorUpdate.fromPartial(i)) || [], n.appHash = e.appHash ?? new Uint8Array(), n;
|
|
1503
|
+
}
|
|
1504
|
+
};
|
|
1505
|
+
function j() {
|
|
1506
|
+
return {
|
|
1507
|
+
code: 0,
|
|
1508
|
+
log: "",
|
|
1509
|
+
info: "",
|
|
1510
|
+
index: r.Long.ZERO,
|
|
1511
|
+
key: new Uint8Array(),
|
|
1512
|
+
value: new Uint8Array(),
|
|
1513
|
+
proofOps: void 0,
|
|
1514
|
+
height: r.Long.ZERO,
|
|
1515
|
+
codespace: ""
|
|
1516
|
+
};
|
|
1517
|
+
}
|
|
1518
|
+
t.ResponseQuery = {
|
|
1519
|
+
encode(e, n = o.Writer.create()) {
|
|
1520
|
+
return e.code !== 0 && n.uint32(8).uint32(e.code), e.log !== "" && n.uint32(26).string(e.log), e.info !== "" && n.uint32(34).string(e.info), e.index.isZero() || n.uint32(40).int64(e.index), e.key.length !== 0 && n.uint32(50).bytes(e.key), e.value.length !== 0 && n.uint32(58).bytes(e.value), e.proofOps !== void 0 && m.ProofOps.encode(e.proofOps, n.uint32(66).fork()).ldelim(), e.height.isZero() || n.uint32(72).int64(e.height), e.codespace !== "" && n.uint32(82).string(e.codespace), n;
|
|
1521
|
+
},
|
|
1522
|
+
decode(e, n) {
|
|
1523
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1524
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1525
|
+
const a = j();
|
|
1526
|
+
for (; i.pos < s; ) {
|
|
1527
|
+
const d = i.uint32();
|
|
1528
|
+
switch (d >>> 3) {
|
|
1529
|
+
case 1:
|
|
1530
|
+
a.code = i.uint32();
|
|
1531
|
+
break;
|
|
1532
|
+
case 3:
|
|
1533
|
+
a.log = i.string();
|
|
1534
|
+
break;
|
|
1535
|
+
case 4:
|
|
1536
|
+
a.info = i.string();
|
|
1537
|
+
break;
|
|
1538
|
+
case 5:
|
|
1539
|
+
a.index = i.int64();
|
|
1540
|
+
break;
|
|
1541
|
+
case 6:
|
|
1542
|
+
a.key = i.bytes();
|
|
1543
|
+
break;
|
|
1544
|
+
case 7:
|
|
1545
|
+
a.value = i.bytes();
|
|
1546
|
+
break;
|
|
1547
|
+
case 8:
|
|
1548
|
+
a.proofOps = m.ProofOps.decode(i, i.uint32());
|
|
1549
|
+
break;
|
|
1550
|
+
case 9:
|
|
1551
|
+
a.height = i.int64();
|
|
1552
|
+
break;
|
|
1553
|
+
case 10:
|
|
1554
|
+
a.codespace = i.string();
|
|
1555
|
+
break;
|
|
1556
|
+
default:
|
|
1557
|
+
i.skipType(d & 7);
|
|
1558
|
+
break;
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1561
|
+
return a;
|
|
1562
|
+
},
|
|
1563
|
+
fromJSON(e) {
|
|
1564
|
+
return {
|
|
1565
|
+
code: (0, r.isSet)(e.code) ? Number(e.code) : 0,
|
|
1566
|
+
log: (0, r.isSet)(e.log) ? String(e.log) : "",
|
|
1567
|
+
info: (0, r.isSet)(e.info) ? String(e.info) : "",
|
|
1568
|
+
index: (0, r.isSet)(e.index) ? r.Long.fromValue(e.index) : r.Long.ZERO,
|
|
1569
|
+
key: (0, r.isSet)(e.key) ? (0, r.bytesFromBase64)(e.key) : new Uint8Array(),
|
|
1570
|
+
value: (0, r.isSet)(e.value) ? (0, r.bytesFromBase64)(e.value) : new Uint8Array(),
|
|
1571
|
+
proofOps: (0, r.isSet)(e.proofOps) ? m.ProofOps.fromJSON(e.proofOps) : void 0,
|
|
1572
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO,
|
|
1573
|
+
codespace: (0, r.isSet)(e.codespace) ? String(e.codespace) : ""
|
|
1574
|
+
};
|
|
1575
|
+
},
|
|
1576
|
+
toJSON(e) {
|
|
1577
|
+
const n = {};
|
|
1578
|
+
return e.code !== void 0 && (n.code = Math.round(e.code)), e.log !== void 0 && (n.log = e.log), e.info !== void 0 && (n.info = e.info), e.index !== void 0 && (n.index = (e.index || r.Long.ZERO).toString()), e.key !== void 0 && (n.key = (0, r.base64FromBytes)(e.key !== void 0 ? e.key : new Uint8Array())), e.value !== void 0 && (n.value = (0, r.base64FromBytes)(e.value !== void 0 ? e.value : new Uint8Array())), e.proofOps !== void 0 && (n.proofOps = e.proofOps ? m.ProofOps.toJSON(e.proofOps) : void 0), e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), e.codespace !== void 0 && (n.codespace = e.codespace), n;
|
|
1579
|
+
},
|
|
1580
|
+
fromPartial(e) {
|
|
1581
|
+
const n = j();
|
|
1582
|
+
return n.code = e.code ?? 0, n.log = e.log ?? "", n.info = e.info ?? "", n.index = e.index !== void 0 && e.index !== null ? r.Long.fromValue(e.index) : r.Long.ZERO, n.key = e.key ?? new Uint8Array(), n.value = e.value ?? new Uint8Array(), n.proofOps = e.proofOps !== void 0 && e.proofOps !== null ? m.ProofOps.fromPartial(e.proofOps) : void 0, n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n.codespace = e.codespace ?? "", n;
|
|
1583
|
+
}
|
|
1584
|
+
};
|
|
1585
|
+
function ee() {
|
|
1586
|
+
return {
|
|
1587
|
+
events: []
|
|
1588
|
+
};
|
|
1589
|
+
}
|
|
1590
|
+
t.ResponseBeginBlock = {
|
|
1591
|
+
encode(e, n = o.Writer.create()) {
|
|
1592
|
+
for (const i of e.events)
|
|
1593
|
+
t.Event.encode(i, n.uint32(10).fork()).ldelim();
|
|
1594
|
+
return n;
|
|
1595
|
+
},
|
|
1596
|
+
decode(e, n) {
|
|
1597
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1598
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1599
|
+
const a = ee();
|
|
1600
|
+
for (; i.pos < s; ) {
|
|
1601
|
+
const d = i.uint32();
|
|
1602
|
+
switch (d >>> 3) {
|
|
1603
|
+
case 1:
|
|
1604
|
+
a.events.push(t.Event.decode(i, i.uint32()));
|
|
1605
|
+
break;
|
|
1606
|
+
default:
|
|
1607
|
+
i.skipType(d & 7);
|
|
1608
|
+
break;
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
return a;
|
|
1612
|
+
},
|
|
1613
|
+
fromJSON(e) {
|
|
1614
|
+
return {
|
|
1615
|
+
events: Array.isArray(e?.events) ? e.events.map((n) => t.Event.fromJSON(n)) : []
|
|
1616
|
+
};
|
|
1617
|
+
},
|
|
1618
|
+
toJSON(e) {
|
|
1619
|
+
const n = {};
|
|
1620
|
+
return e.events ? n.events = e.events.map((i) => i ? t.Event.toJSON(i) : void 0) : n.events = [], n;
|
|
1621
|
+
},
|
|
1622
|
+
fromPartial(e) {
|
|
1623
|
+
const n = ee();
|
|
1624
|
+
return n.events = e.events?.map((i) => t.Event.fromPartial(i)) || [], n;
|
|
1625
|
+
}
|
|
1626
|
+
};
|
|
1627
|
+
function ne() {
|
|
1628
|
+
return {
|
|
1629
|
+
code: 0,
|
|
1630
|
+
data: new Uint8Array(),
|
|
1631
|
+
log: "",
|
|
1632
|
+
info: "",
|
|
1633
|
+
gasWanted: r.Long.ZERO,
|
|
1634
|
+
gasUsed: r.Long.ZERO,
|
|
1635
|
+
events: [],
|
|
1636
|
+
codespace: "",
|
|
1637
|
+
sender: "",
|
|
1638
|
+
priority: r.Long.ZERO,
|
|
1639
|
+
mempoolError: ""
|
|
1640
|
+
};
|
|
1641
|
+
}
|
|
1642
|
+
t.ResponseCheckTx = {
|
|
1643
|
+
encode(e, n = o.Writer.create()) {
|
|
1644
|
+
e.code !== 0 && n.uint32(8).uint32(e.code), e.data.length !== 0 && n.uint32(18).bytes(e.data), e.log !== "" && n.uint32(26).string(e.log), e.info !== "" && n.uint32(34).string(e.info), e.gasWanted.isZero() || n.uint32(40).int64(e.gasWanted), e.gasUsed.isZero() || n.uint32(48).int64(e.gasUsed);
|
|
1645
|
+
for (const i of e.events)
|
|
1646
|
+
t.Event.encode(i, n.uint32(58).fork()).ldelim();
|
|
1647
|
+
return e.codespace !== "" && n.uint32(66).string(e.codespace), e.sender !== "" && n.uint32(74).string(e.sender), e.priority.isZero() || n.uint32(80).int64(e.priority), e.mempoolError !== "" && n.uint32(90).string(e.mempoolError), n;
|
|
1648
|
+
},
|
|
1649
|
+
decode(e, n) {
|
|
1650
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1651
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1652
|
+
const a = ne();
|
|
1653
|
+
for (; i.pos < s; ) {
|
|
1654
|
+
const d = i.uint32();
|
|
1655
|
+
switch (d >>> 3) {
|
|
1656
|
+
case 1:
|
|
1657
|
+
a.code = i.uint32();
|
|
1658
|
+
break;
|
|
1659
|
+
case 2:
|
|
1660
|
+
a.data = i.bytes();
|
|
1661
|
+
break;
|
|
1662
|
+
case 3:
|
|
1663
|
+
a.log = i.string();
|
|
1664
|
+
break;
|
|
1665
|
+
case 4:
|
|
1666
|
+
a.info = i.string();
|
|
1667
|
+
break;
|
|
1668
|
+
case 5:
|
|
1669
|
+
a.gasWanted = i.int64();
|
|
1670
|
+
break;
|
|
1671
|
+
case 6:
|
|
1672
|
+
a.gasUsed = i.int64();
|
|
1673
|
+
break;
|
|
1674
|
+
case 7:
|
|
1675
|
+
a.events.push(t.Event.decode(i, i.uint32()));
|
|
1676
|
+
break;
|
|
1677
|
+
case 8:
|
|
1678
|
+
a.codespace = i.string();
|
|
1679
|
+
break;
|
|
1680
|
+
case 9:
|
|
1681
|
+
a.sender = i.string();
|
|
1682
|
+
break;
|
|
1683
|
+
case 10:
|
|
1684
|
+
a.priority = i.int64();
|
|
1685
|
+
break;
|
|
1686
|
+
case 11:
|
|
1687
|
+
a.mempoolError = i.string();
|
|
1688
|
+
break;
|
|
1689
|
+
default:
|
|
1690
|
+
i.skipType(d & 7);
|
|
1691
|
+
break;
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1694
|
+
return a;
|
|
1695
|
+
},
|
|
1696
|
+
fromJSON(e) {
|
|
1697
|
+
return {
|
|
1698
|
+
code: (0, r.isSet)(e.code) ? Number(e.code) : 0,
|
|
1699
|
+
data: (0, r.isSet)(e.data) ? (0, r.bytesFromBase64)(e.data) : new Uint8Array(),
|
|
1700
|
+
log: (0, r.isSet)(e.log) ? String(e.log) : "",
|
|
1701
|
+
info: (0, r.isSet)(e.info) ? String(e.info) : "",
|
|
1702
|
+
gasWanted: (0, r.isSet)(e.gas_wanted) ? r.Long.fromValue(e.gas_wanted) : r.Long.ZERO,
|
|
1703
|
+
gasUsed: (0, r.isSet)(e.gas_used) ? r.Long.fromValue(e.gas_used) : r.Long.ZERO,
|
|
1704
|
+
events: Array.isArray(e?.events) ? e.events.map((n) => t.Event.fromJSON(n)) : [],
|
|
1705
|
+
codespace: (0, r.isSet)(e.codespace) ? String(e.codespace) : "",
|
|
1706
|
+
sender: (0, r.isSet)(e.sender) ? String(e.sender) : "",
|
|
1707
|
+
priority: (0, r.isSet)(e.priority) ? r.Long.fromValue(e.priority) : r.Long.ZERO,
|
|
1708
|
+
mempoolError: (0, r.isSet)(e.mempoolError) ? String(e.mempoolError) : ""
|
|
1709
|
+
};
|
|
1710
|
+
},
|
|
1711
|
+
toJSON(e) {
|
|
1712
|
+
const n = {};
|
|
1713
|
+
return e.code !== void 0 && (n.code = Math.round(e.code)), e.data !== void 0 && (n.data = (0, r.base64FromBytes)(e.data !== void 0 ? e.data : new Uint8Array())), e.log !== void 0 && (n.log = e.log), e.info !== void 0 && (n.info = e.info), e.gasWanted !== void 0 && (n.gas_wanted = (e.gasWanted || r.Long.ZERO).toString()), e.gasUsed !== void 0 && (n.gas_used = (e.gasUsed || r.Long.ZERO).toString()), e.events ? n.events = e.events.map((i) => i ? t.Event.toJSON(i) : void 0) : n.events = [], e.codespace !== void 0 && (n.codespace = e.codespace), e.sender !== void 0 && (n.sender = e.sender), e.priority !== void 0 && (n.priority = (e.priority || r.Long.ZERO).toString()), e.mempoolError !== void 0 && (n.mempoolError = e.mempoolError), n;
|
|
1714
|
+
},
|
|
1715
|
+
fromPartial(e) {
|
|
1716
|
+
const n = ne();
|
|
1717
|
+
return n.code = e.code ?? 0, n.data = e.data ?? new Uint8Array(), n.log = e.log ?? "", n.info = e.info ?? "", n.gasWanted = e.gasWanted !== void 0 && e.gasWanted !== null ? r.Long.fromValue(e.gasWanted) : r.Long.ZERO, n.gasUsed = e.gasUsed !== void 0 && e.gasUsed !== null ? r.Long.fromValue(e.gasUsed) : r.Long.ZERO, n.events = e.events?.map((i) => t.Event.fromPartial(i)) || [], n.codespace = e.codespace ?? "", n.sender = e.sender ?? "", n.priority = e.priority !== void 0 && e.priority !== null ? r.Long.fromValue(e.priority) : r.Long.ZERO, n.mempoolError = e.mempoolError ?? "", n;
|
|
1718
|
+
}
|
|
1719
|
+
};
|
|
1720
|
+
function ie() {
|
|
1721
|
+
return {
|
|
1722
|
+
code: 0,
|
|
1723
|
+
data: new Uint8Array(),
|
|
1724
|
+
log: "",
|
|
1725
|
+
info: "",
|
|
1726
|
+
gasWanted: r.Long.ZERO,
|
|
1727
|
+
gasUsed: r.Long.ZERO,
|
|
1728
|
+
events: [],
|
|
1729
|
+
codespace: ""
|
|
1730
|
+
};
|
|
1731
|
+
}
|
|
1732
|
+
t.ResponseDeliverTx = {
|
|
1733
|
+
encode(e, n = o.Writer.create()) {
|
|
1734
|
+
e.code !== 0 && n.uint32(8).uint32(e.code), e.data.length !== 0 && n.uint32(18).bytes(e.data), e.log !== "" && n.uint32(26).string(e.log), e.info !== "" && n.uint32(34).string(e.info), e.gasWanted.isZero() || n.uint32(40).int64(e.gasWanted), e.gasUsed.isZero() || n.uint32(48).int64(e.gasUsed);
|
|
1735
|
+
for (const i of e.events)
|
|
1736
|
+
t.Event.encode(i, n.uint32(58).fork()).ldelim();
|
|
1737
|
+
return e.codespace !== "" && n.uint32(66).string(e.codespace), n;
|
|
1738
|
+
},
|
|
1739
|
+
decode(e, n) {
|
|
1740
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1741
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1742
|
+
const a = ie();
|
|
1743
|
+
for (; i.pos < s; ) {
|
|
1744
|
+
const d = i.uint32();
|
|
1745
|
+
switch (d >>> 3) {
|
|
1746
|
+
case 1:
|
|
1747
|
+
a.code = i.uint32();
|
|
1748
|
+
break;
|
|
1749
|
+
case 2:
|
|
1750
|
+
a.data = i.bytes();
|
|
1751
|
+
break;
|
|
1752
|
+
case 3:
|
|
1753
|
+
a.log = i.string();
|
|
1754
|
+
break;
|
|
1755
|
+
case 4:
|
|
1756
|
+
a.info = i.string();
|
|
1757
|
+
break;
|
|
1758
|
+
case 5:
|
|
1759
|
+
a.gasWanted = i.int64();
|
|
1760
|
+
break;
|
|
1761
|
+
case 6:
|
|
1762
|
+
a.gasUsed = i.int64();
|
|
1763
|
+
break;
|
|
1764
|
+
case 7:
|
|
1765
|
+
a.events.push(t.Event.decode(i, i.uint32()));
|
|
1766
|
+
break;
|
|
1767
|
+
case 8:
|
|
1768
|
+
a.codespace = i.string();
|
|
1769
|
+
break;
|
|
1770
|
+
default:
|
|
1771
|
+
i.skipType(d & 7);
|
|
1772
|
+
break;
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
return a;
|
|
1776
|
+
},
|
|
1777
|
+
fromJSON(e) {
|
|
1778
|
+
return {
|
|
1779
|
+
code: (0, r.isSet)(e.code) ? Number(e.code) : 0,
|
|
1780
|
+
data: (0, r.isSet)(e.data) ? (0, r.bytesFromBase64)(e.data) : new Uint8Array(),
|
|
1781
|
+
log: (0, r.isSet)(e.log) ? String(e.log) : "",
|
|
1782
|
+
info: (0, r.isSet)(e.info) ? String(e.info) : "",
|
|
1783
|
+
gasWanted: (0, r.isSet)(e.gas_wanted) ? r.Long.fromValue(e.gas_wanted) : r.Long.ZERO,
|
|
1784
|
+
gasUsed: (0, r.isSet)(e.gas_used) ? r.Long.fromValue(e.gas_used) : r.Long.ZERO,
|
|
1785
|
+
events: Array.isArray(e?.events) ? e.events.map((n) => t.Event.fromJSON(n)) : [],
|
|
1786
|
+
codespace: (0, r.isSet)(e.codespace) ? String(e.codespace) : ""
|
|
1787
|
+
};
|
|
1788
|
+
},
|
|
1789
|
+
toJSON(e) {
|
|
1790
|
+
const n = {};
|
|
1791
|
+
return e.code !== void 0 && (n.code = Math.round(e.code)), e.data !== void 0 && (n.data = (0, r.base64FromBytes)(e.data !== void 0 ? e.data : new Uint8Array())), e.log !== void 0 && (n.log = e.log), e.info !== void 0 && (n.info = e.info), e.gasWanted !== void 0 && (n.gas_wanted = (e.gasWanted || r.Long.ZERO).toString()), e.gasUsed !== void 0 && (n.gas_used = (e.gasUsed || r.Long.ZERO).toString()), e.events ? n.events = e.events.map((i) => i ? t.Event.toJSON(i) : void 0) : n.events = [], e.codespace !== void 0 && (n.codespace = e.codespace), n;
|
|
1792
|
+
},
|
|
1793
|
+
fromPartial(e) {
|
|
1794
|
+
const n = ie();
|
|
1795
|
+
return n.code = e.code ?? 0, n.data = e.data ?? new Uint8Array(), n.log = e.log ?? "", n.info = e.info ?? "", n.gasWanted = e.gasWanted !== void 0 && e.gasWanted !== null ? r.Long.fromValue(e.gasWanted) : r.Long.ZERO, n.gasUsed = e.gasUsed !== void 0 && e.gasUsed !== null ? r.Long.fromValue(e.gasUsed) : r.Long.ZERO, n.events = e.events?.map((i) => t.Event.fromPartial(i)) || [], n.codespace = e.codespace ?? "", n;
|
|
1796
|
+
}
|
|
1797
|
+
};
|
|
1798
|
+
function te() {
|
|
1799
|
+
return {
|
|
1800
|
+
validatorUpdates: [],
|
|
1801
|
+
consensusParamUpdates: void 0,
|
|
1802
|
+
events: []
|
|
1803
|
+
};
|
|
1804
|
+
}
|
|
1805
|
+
t.ResponseEndBlock = {
|
|
1806
|
+
encode(e, n = o.Writer.create()) {
|
|
1807
|
+
for (const i of e.validatorUpdates)
|
|
1808
|
+
t.ValidatorUpdate.encode(i, n.uint32(10).fork()).ldelim();
|
|
1809
|
+
e.consensusParamUpdates !== void 0 && u.ConsensusParams.encode(e.consensusParamUpdates, n.uint32(18).fork()).ldelim();
|
|
1810
|
+
for (const i of e.events)
|
|
1811
|
+
t.Event.encode(i, n.uint32(26).fork()).ldelim();
|
|
1812
|
+
return n;
|
|
1813
|
+
},
|
|
1814
|
+
decode(e, n) {
|
|
1815
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1816
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1817
|
+
const a = te();
|
|
1818
|
+
for (; i.pos < s; ) {
|
|
1819
|
+
const d = i.uint32();
|
|
1820
|
+
switch (d >>> 3) {
|
|
1821
|
+
case 1:
|
|
1822
|
+
a.validatorUpdates.push(t.ValidatorUpdate.decode(i, i.uint32()));
|
|
1823
|
+
break;
|
|
1824
|
+
case 2:
|
|
1825
|
+
a.consensusParamUpdates = u.ConsensusParams.decode(i, i.uint32());
|
|
1826
|
+
break;
|
|
1827
|
+
case 3:
|
|
1828
|
+
a.events.push(t.Event.decode(i, i.uint32()));
|
|
1829
|
+
break;
|
|
1830
|
+
default:
|
|
1831
|
+
i.skipType(d & 7);
|
|
1832
|
+
break;
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
return a;
|
|
1836
|
+
},
|
|
1837
|
+
fromJSON(e) {
|
|
1838
|
+
return {
|
|
1839
|
+
validatorUpdates: Array.isArray(e?.validatorUpdates) ? e.validatorUpdates.map((n) => t.ValidatorUpdate.fromJSON(n)) : [],
|
|
1840
|
+
consensusParamUpdates: (0, r.isSet)(e.consensusParamUpdates) ? u.ConsensusParams.fromJSON(e.consensusParamUpdates) : void 0,
|
|
1841
|
+
events: Array.isArray(e?.events) ? e.events.map((n) => t.Event.fromJSON(n)) : []
|
|
1842
|
+
};
|
|
1843
|
+
},
|
|
1844
|
+
toJSON(e) {
|
|
1845
|
+
const n = {};
|
|
1846
|
+
return e.validatorUpdates ? n.validatorUpdates = e.validatorUpdates.map((i) => i ? t.ValidatorUpdate.toJSON(i) : void 0) : n.validatorUpdates = [], e.consensusParamUpdates !== void 0 && (n.consensusParamUpdates = e.consensusParamUpdates ? u.ConsensusParams.toJSON(e.consensusParamUpdates) : void 0), e.events ? n.events = e.events.map((i) => i ? t.Event.toJSON(i) : void 0) : n.events = [], n;
|
|
1847
|
+
},
|
|
1848
|
+
fromPartial(e) {
|
|
1849
|
+
const n = te();
|
|
1850
|
+
return n.validatorUpdates = e.validatorUpdates?.map((i) => t.ValidatorUpdate.fromPartial(i)) || [], n.consensusParamUpdates = e.consensusParamUpdates !== void 0 && e.consensusParamUpdates !== null ? u.ConsensusParams.fromPartial(e.consensusParamUpdates) : void 0, n.events = e.events?.map((i) => t.Event.fromPartial(i)) || [], n;
|
|
1851
|
+
}
|
|
1852
|
+
};
|
|
1853
|
+
function re() {
|
|
1854
|
+
return {
|
|
1855
|
+
data: new Uint8Array(),
|
|
1856
|
+
retainHeight: r.Long.ZERO
|
|
1857
|
+
};
|
|
1858
|
+
}
|
|
1859
|
+
t.ResponseCommit = {
|
|
1860
|
+
encode(e, n = o.Writer.create()) {
|
|
1861
|
+
return e.data.length !== 0 && n.uint32(18).bytes(e.data), e.retainHeight.isZero() || n.uint32(24).int64(e.retainHeight), n;
|
|
1862
|
+
},
|
|
1863
|
+
decode(e, n) {
|
|
1864
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1865
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1866
|
+
const a = re();
|
|
1867
|
+
for (; i.pos < s; ) {
|
|
1868
|
+
const d = i.uint32();
|
|
1869
|
+
switch (d >>> 3) {
|
|
1870
|
+
case 2:
|
|
1871
|
+
a.data = i.bytes();
|
|
1872
|
+
break;
|
|
1873
|
+
case 3:
|
|
1874
|
+
a.retainHeight = i.int64();
|
|
1875
|
+
break;
|
|
1876
|
+
default:
|
|
1877
|
+
i.skipType(d & 7);
|
|
1878
|
+
break;
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
return a;
|
|
1882
|
+
},
|
|
1883
|
+
fromJSON(e) {
|
|
1884
|
+
return {
|
|
1885
|
+
data: (0, r.isSet)(e.data) ? (0, r.bytesFromBase64)(e.data) : new Uint8Array(),
|
|
1886
|
+
retainHeight: (0, r.isSet)(e.retainHeight) ? r.Long.fromValue(e.retainHeight) : r.Long.ZERO
|
|
1887
|
+
};
|
|
1888
|
+
},
|
|
1889
|
+
toJSON(e) {
|
|
1890
|
+
const n = {};
|
|
1891
|
+
return e.data !== void 0 && (n.data = (0, r.base64FromBytes)(e.data !== void 0 ? e.data : new Uint8Array())), e.retainHeight !== void 0 && (n.retainHeight = (e.retainHeight || r.Long.ZERO).toString()), n;
|
|
1892
|
+
},
|
|
1893
|
+
fromPartial(e) {
|
|
1894
|
+
const n = re();
|
|
1895
|
+
return n.data = e.data ?? new Uint8Array(), n.retainHeight = e.retainHeight !== void 0 && e.retainHeight !== null ? r.Long.fromValue(e.retainHeight) : r.Long.ZERO, n;
|
|
1896
|
+
}
|
|
1897
|
+
};
|
|
1898
|
+
function ae() {
|
|
1899
|
+
return {
|
|
1900
|
+
snapshots: []
|
|
1901
|
+
};
|
|
1902
|
+
}
|
|
1903
|
+
t.ResponseListSnapshots = {
|
|
1904
|
+
encode(e, n = o.Writer.create()) {
|
|
1905
|
+
for (const i of e.snapshots)
|
|
1906
|
+
t.Snapshot.encode(i, n.uint32(10).fork()).ldelim();
|
|
1907
|
+
return n;
|
|
1908
|
+
},
|
|
1909
|
+
decode(e, n) {
|
|
1910
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1911
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1912
|
+
const a = ae();
|
|
1913
|
+
for (; i.pos < s; ) {
|
|
1914
|
+
const d = i.uint32();
|
|
1915
|
+
switch (d >>> 3) {
|
|
1916
|
+
case 1:
|
|
1917
|
+
a.snapshots.push(t.Snapshot.decode(i, i.uint32()));
|
|
1918
|
+
break;
|
|
1919
|
+
default:
|
|
1920
|
+
i.skipType(d & 7);
|
|
1921
|
+
break;
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1924
|
+
return a;
|
|
1925
|
+
},
|
|
1926
|
+
fromJSON(e) {
|
|
1927
|
+
return {
|
|
1928
|
+
snapshots: Array.isArray(e?.snapshots) ? e.snapshots.map((n) => t.Snapshot.fromJSON(n)) : []
|
|
1929
|
+
};
|
|
1930
|
+
},
|
|
1931
|
+
toJSON(e) {
|
|
1932
|
+
const n = {};
|
|
1933
|
+
return e.snapshots ? n.snapshots = e.snapshots.map((i) => i ? t.Snapshot.toJSON(i) : void 0) : n.snapshots = [], n;
|
|
1934
|
+
},
|
|
1935
|
+
fromPartial(e) {
|
|
1936
|
+
const n = ae();
|
|
1937
|
+
return n.snapshots = e.snapshots?.map((i) => t.Snapshot.fromPartial(i)) || [], n;
|
|
1938
|
+
}
|
|
1939
|
+
};
|
|
1940
|
+
function oe() {
|
|
1941
|
+
return {
|
|
1942
|
+
result: 0
|
|
1943
|
+
};
|
|
1944
|
+
}
|
|
1945
|
+
t.ResponseOfferSnapshot = {
|
|
1946
|
+
encode(e, n = o.Writer.create()) {
|
|
1947
|
+
return e.result !== 0 && n.uint32(8).int32(e.result), n;
|
|
1948
|
+
},
|
|
1949
|
+
decode(e, n) {
|
|
1950
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1951
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1952
|
+
const a = oe();
|
|
1953
|
+
for (; i.pos < s; ) {
|
|
1954
|
+
const d = i.uint32();
|
|
1955
|
+
switch (d >>> 3) {
|
|
1956
|
+
case 1:
|
|
1957
|
+
a.result = i.int32();
|
|
1958
|
+
break;
|
|
1959
|
+
default:
|
|
1960
|
+
i.skipType(d & 7);
|
|
1961
|
+
break;
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
return a;
|
|
1965
|
+
},
|
|
1966
|
+
fromJSON(e) {
|
|
1967
|
+
return {
|
|
1968
|
+
result: (0, r.isSet)(e.result) ? E(e.result) : 0
|
|
1969
|
+
};
|
|
1970
|
+
},
|
|
1971
|
+
toJSON(e) {
|
|
1972
|
+
const n = {};
|
|
1973
|
+
return e.result !== void 0 && (n.result = N(e.result)), n;
|
|
1974
|
+
},
|
|
1975
|
+
fromPartial(e) {
|
|
1976
|
+
const n = oe();
|
|
1977
|
+
return n.result = e.result ?? 0, n;
|
|
1978
|
+
}
|
|
1979
|
+
};
|
|
1980
|
+
function de() {
|
|
1981
|
+
return {
|
|
1982
|
+
chunk: new Uint8Array()
|
|
1983
|
+
};
|
|
1984
|
+
}
|
|
1985
|
+
t.ResponseLoadSnapshotChunk = {
|
|
1986
|
+
encode(e, n = o.Writer.create()) {
|
|
1987
|
+
return e.chunk.length !== 0 && n.uint32(10).bytes(e.chunk), n;
|
|
1988
|
+
},
|
|
1989
|
+
decode(e, n) {
|
|
1990
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
1991
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
1992
|
+
const a = de();
|
|
1993
|
+
for (; i.pos < s; ) {
|
|
1994
|
+
const d = i.uint32();
|
|
1995
|
+
switch (d >>> 3) {
|
|
1996
|
+
case 1:
|
|
1997
|
+
a.chunk = i.bytes();
|
|
1998
|
+
break;
|
|
1999
|
+
default:
|
|
2000
|
+
i.skipType(d & 7);
|
|
2001
|
+
break;
|
|
2002
|
+
}
|
|
2003
|
+
}
|
|
2004
|
+
return a;
|
|
2005
|
+
},
|
|
2006
|
+
fromJSON(e) {
|
|
2007
|
+
return {
|
|
2008
|
+
chunk: (0, r.isSet)(e.chunk) ? (0, r.bytesFromBase64)(e.chunk) : new Uint8Array()
|
|
2009
|
+
};
|
|
2010
|
+
},
|
|
2011
|
+
toJSON(e) {
|
|
2012
|
+
const n = {};
|
|
2013
|
+
return e.chunk !== void 0 && (n.chunk = (0, r.base64FromBytes)(e.chunk !== void 0 ? e.chunk : new Uint8Array())), n;
|
|
2014
|
+
},
|
|
2015
|
+
fromPartial(e) {
|
|
2016
|
+
const n = de();
|
|
2017
|
+
return n.chunk = e.chunk ?? new Uint8Array(), n;
|
|
2018
|
+
}
|
|
2019
|
+
};
|
|
2020
|
+
function se() {
|
|
2021
|
+
return {
|
|
2022
|
+
result: 0,
|
|
2023
|
+
refetchChunks: [],
|
|
2024
|
+
rejectSenders: []
|
|
2025
|
+
};
|
|
2026
|
+
}
|
|
2027
|
+
t.ResponseApplySnapshotChunk = {
|
|
2028
|
+
encode(e, n = o.Writer.create()) {
|
|
2029
|
+
e.result !== 0 && n.uint32(8).int32(e.result), n.uint32(18).fork();
|
|
2030
|
+
for (const i of e.refetchChunks)
|
|
2031
|
+
n.uint32(i);
|
|
2032
|
+
n.ldelim();
|
|
2033
|
+
for (const i of e.rejectSenders)
|
|
2034
|
+
n.uint32(26).string(i);
|
|
2035
|
+
return n;
|
|
2036
|
+
},
|
|
2037
|
+
decode(e, n) {
|
|
2038
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2039
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2040
|
+
const a = se();
|
|
2041
|
+
for (; i.pos < s; ) {
|
|
2042
|
+
const d = i.uint32();
|
|
2043
|
+
switch (d >>> 3) {
|
|
2044
|
+
case 1:
|
|
2045
|
+
a.result = i.int32();
|
|
2046
|
+
break;
|
|
2047
|
+
case 2:
|
|
2048
|
+
if ((d & 7) === 2) {
|
|
2049
|
+
const Te = i.uint32() + i.pos;
|
|
2050
|
+
for (; i.pos < Te; )
|
|
2051
|
+
a.refetchChunks.push(i.uint32());
|
|
2052
|
+
} else
|
|
2053
|
+
a.refetchChunks.push(i.uint32());
|
|
2054
|
+
break;
|
|
2055
|
+
case 3:
|
|
2056
|
+
a.rejectSenders.push(i.string());
|
|
2057
|
+
break;
|
|
2058
|
+
default:
|
|
2059
|
+
i.skipType(d & 7);
|
|
2060
|
+
break;
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
return a;
|
|
2064
|
+
},
|
|
2065
|
+
fromJSON(e) {
|
|
2066
|
+
return {
|
|
2067
|
+
result: (0, r.isSet)(e.result) ? P(e.result) : 0,
|
|
2068
|
+
refetchChunks: Array.isArray(e?.refetchChunks) ? e.refetchChunks.map((n) => Number(n)) : [],
|
|
2069
|
+
rejectSenders: Array.isArray(e?.rejectSenders) ? e.rejectSenders.map((n) => String(n)) : []
|
|
2070
|
+
};
|
|
2071
|
+
},
|
|
2072
|
+
toJSON(e) {
|
|
2073
|
+
const n = {};
|
|
2074
|
+
return e.result !== void 0 && (n.result = v(e.result)), e.refetchChunks ? n.refetchChunks = e.refetchChunks.map((i) => Math.round(i)) : n.refetchChunks = [], e.rejectSenders ? n.rejectSenders = e.rejectSenders.map((i) => i) : n.rejectSenders = [], n;
|
|
2075
|
+
},
|
|
2076
|
+
fromPartial(e) {
|
|
2077
|
+
const n = se();
|
|
2078
|
+
return n.result = e.result ?? 0, n.refetchChunks = e.refetchChunks?.map((i) => i) || [], n.rejectSenders = e.rejectSenders?.map((i) => i) || [], n;
|
|
2079
|
+
}
|
|
2080
|
+
};
|
|
2081
|
+
function ue() {
|
|
2082
|
+
return {
|
|
2083
|
+
txs: []
|
|
2084
|
+
};
|
|
2085
|
+
}
|
|
2086
|
+
t.ResponsePrepareProposal = {
|
|
2087
|
+
encode(e, n = o.Writer.create()) {
|
|
2088
|
+
for (const i of e.txs)
|
|
2089
|
+
n.uint32(10).bytes(i);
|
|
2090
|
+
return n;
|
|
2091
|
+
},
|
|
2092
|
+
decode(e, n) {
|
|
2093
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2094
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2095
|
+
const a = ue();
|
|
2096
|
+
for (; i.pos < s; ) {
|
|
2097
|
+
const d = i.uint32();
|
|
2098
|
+
switch (d >>> 3) {
|
|
2099
|
+
case 1:
|
|
2100
|
+
a.txs.push(i.bytes());
|
|
2101
|
+
break;
|
|
2102
|
+
default:
|
|
2103
|
+
i.skipType(d & 7);
|
|
2104
|
+
break;
|
|
2105
|
+
}
|
|
2106
|
+
}
|
|
2107
|
+
return a;
|
|
2108
|
+
},
|
|
2109
|
+
fromJSON(e) {
|
|
2110
|
+
return {
|
|
2111
|
+
txs: Array.isArray(e?.txs) ? e.txs.map((n) => (0, r.bytesFromBase64)(n)) : []
|
|
2112
|
+
};
|
|
2113
|
+
},
|
|
2114
|
+
toJSON(e) {
|
|
2115
|
+
const n = {};
|
|
2116
|
+
return e.txs ? n.txs = e.txs.map((i) => (0, r.base64FromBytes)(i !== void 0 ? i : new Uint8Array())) : n.txs = [], n;
|
|
2117
|
+
},
|
|
2118
|
+
fromPartial(e) {
|
|
2119
|
+
const n = ue();
|
|
2120
|
+
return n.txs = e.txs?.map((i) => i) || [], n;
|
|
2121
|
+
}
|
|
2122
|
+
};
|
|
2123
|
+
function fe() {
|
|
2124
|
+
return {
|
|
2125
|
+
status: 0
|
|
2126
|
+
};
|
|
2127
|
+
}
|
|
2128
|
+
t.ResponseProcessProposal = {
|
|
2129
|
+
encode(e, n = o.Writer.create()) {
|
|
2130
|
+
return e.status !== 0 && n.uint32(8).int32(e.status), n;
|
|
2131
|
+
},
|
|
2132
|
+
decode(e, n) {
|
|
2133
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2134
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2135
|
+
const a = fe();
|
|
2136
|
+
for (; i.pos < s; ) {
|
|
2137
|
+
const d = i.uint32();
|
|
2138
|
+
switch (d >>> 3) {
|
|
2139
|
+
case 1:
|
|
2140
|
+
a.status = i.int32();
|
|
2141
|
+
break;
|
|
2142
|
+
default:
|
|
2143
|
+
i.skipType(d & 7);
|
|
2144
|
+
break;
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2147
|
+
return a;
|
|
2148
|
+
},
|
|
2149
|
+
fromJSON(e) {
|
|
2150
|
+
return {
|
|
2151
|
+
status: (0, r.isSet)(e.status) ? T(e.status) : 0
|
|
2152
|
+
};
|
|
2153
|
+
},
|
|
2154
|
+
toJSON(e) {
|
|
2155
|
+
const n = {};
|
|
2156
|
+
return e.status !== void 0 && (n.status = B(e.status)), n;
|
|
2157
|
+
},
|
|
2158
|
+
fromPartial(e) {
|
|
2159
|
+
const n = fe();
|
|
2160
|
+
return n.status = e.status ?? 0, n;
|
|
2161
|
+
}
|
|
2162
|
+
};
|
|
2163
|
+
function le() {
|
|
2164
|
+
return {
|
|
2165
|
+
round: 0,
|
|
2166
|
+
votes: []
|
|
2167
|
+
};
|
|
2168
|
+
}
|
|
2169
|
+
t.CommitInfo = {
|
|
2170
|
+
encode(e, n = o.Writer.create()) {
|
|
2171
|
+
e.round !== 0 && n.uint32(8).int32(e.round);
|
|
2172
|
+
for (const i of e.votes)
|
|
2173
|
+
t.VoteInfo.encode(i, n.uint32(18).fork()).ldelim();
|
|
2174
|
+
return n;
|
|
2175
|
+
},
|
|
2176
|
+
decode(e, n) {
|
|
2177
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2178
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2179
|
+
const a = le();
|
|
2180
|
+
for (; i.pos < s; ) {
|
|
2181
|
+
const d = i.uint32();
|
|
2182
|
+
switch (d >>> 3) {
|
|
2183
|
+
case 1:
|
|
2184
|
+
a.round = i.int32();
|
|
2185
|
+
break;
|
|
2186
|
+
case 2:
|
|
2187
|
+
a.votes.push(t.VoteInfo.decode(i, i.uint32()));
|
|
2188
|
+
break;
|
|
2189
|
+
default:
|
|
2190
|
+
i.skipType(d & 7);
|
|
2191
|
+
break;
|
|
2192
|
+
}
|
|
2193
|
+
}
|
|
2194
|
+
return a;
|
|
2195
|
+
},
|
|
2196
|
+
fromJSON(e) {
|
|
2197
|
+
return {
|
|
2198
|
+
round: (0, r.isSet)(e.round) ? Number(e.round) : 0,
|
|
2199
|
+
votes: Array.isArray(e?.votes) ? e.votes.map((n) => t.VoteInfo.fromJSON(n)) : []
|
|
2200
|
+
};
|
|
2201
|
+
},
|
|
2202
|
+
toJSON(e) {
|
|
2203
|
+
const n = {};
|
|
2204
|
+
return e.round !== void 0 && (n.round = Math.round(e.round)), e.votes ? n.votes = e.votes.map((i) => i ? t.VoteInfo.toJSON(i) : void 0) : n.votes = [], n;
|
|
2205
|
+
},
|
|
2206
|
+
fromPartial(e) {
|
|
2207
|
+
const n = le();
|
|
2208
|
+
return n.round = e.round ?? 0, n.votes = e.votes?.map((i) => t.VoteInfo.fromPartial(i)) || [], n;
|
|
2209
|
+
}
|
|
2210
|
+
};
|
|
2211
|
+
function he() {
|
|
2212
|
+
return {
|
|
2213
|
+
round: 0,
|
|
2214
|
+
votes: []
|
|
2215
|
+
};
|
|
2216
|
+
}
|
|
2217
|
+
t.ExtendedCommitInfo = {
|
|
2218
|
+
encode(e, n = o.Writer.create()) {
|
|
2219
|
+
e.round !== 0 && n.uint32(8).int32(e.round);
|
|
2220
|
+
for (const i of e.votes)
|
|
2221
|
+
t.ExtendedVoteInfo.encode(i, n.uint32(18).fork()).ldelim();
|
|
2222
|
+
return n;
|
|
2223
|
+
},
|
|
2224
|
+
decode(e, n) {
|
|
2225
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2226
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2227
|
+
const a = he();
|
|
2228
|
+
for (; i.pos < s; ) {
|
|
2229
|
+
const d = i.uint32();
|
|
2230
|
+
switch (d >>> 3) {
|
|
2231
|
+
case 1:
|
|
2232
|
+
a.round = i.int32();
|
|
2233
|
+
break;
|
|
2234
|
+
case 2:
|
|
2235
|
+
a.votes.push(t.ExtendedVoteInfo.decode(i, i.uint32()));
|
|
2236
|
+
break;
|
|
2237
|
+
default:
|
|
2238
|
+
i.skipType(d & 7);
|
|
2239
|
+
break;
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
return a;
|
|
2243
|
+
},
|
|
2244
|
+
fromJSON(e) {
|
|
2245
|
+
return {
|
|
2246
|
+
round: (0, r.isSet)(e.round) ? Number(e.round) : 0,
|
|
2247
|
+
votes: Array.isArray(e?.votes) ? e.votes.map((n) => t.ExtendedVoteInfo.fromJSON(n)) : []
|
|
2248
|
+
};
|
|
2249
|
+
},
|
|
2250
|
+
toJSON(e) {
|
|
2251
|
+
const n = {};
|
|
2252
|
+
return e.round !== void 0 && (n.round = Math.round(e.round)), e.votes ? n.votes = e.votes.map((i) => i ? t.ExtendedVoteInfo.toJSON(i) : void 0) : n.votes = [], n;
|
|
2253
|
+
},
|
|
2254
|
+
fromPartial(e) {
|
|
2255
|
+
const n = he();
|
|
2256
|
+
return n.round = e.round ?? 0, n.votes = e.votes?.map((i) => t.ExtendedVoteInfo.fromPartial(i)) || [], n;
|
|
2257
|
+
}
|
|
2258
|
+
};
|
|
2259
|
+
function ce() {
|
|
2260
|
+
return {
|
|
2261
|
+
type: "",
|
|
2262
|
+
attributes: []
|
|
2263
|
+
};
|
|
2264
|
+
}
|
|
2265
|
+
t.Event = {
|
|
2266
|
+
encode(e, n = o.Writer.create()) {
|
|
2267
|
+
e.type !== "" && n.uint32(10).string(e.type);
|
|
2268
|
+
for (const i of e.attributes)
|
|
2269
|
+
t.EventAttribute.encode(i, n.uint32(18).fork()).ldelim();
|
|
2270
|
+
return n;
|
|
2271
|
+
},
|
|
2272
|
+
decode(e, n) {
|
|
2273
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2274
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2275
|
+
const a = ce();
|
|
2276
|
+
for (; i.pos < s; ) {
|
|
2277
|
+
const d = i.uint32();
|
|
2278
|
+
switch (d >>> 3) {
|
|
2279
|
+
case 1:
|
|
2280
|
+
a.type = i.string();
|
|
2281
|
+
break;
|
|
2282
|
+
case 2:
|
|
2283
|
+
a.attributes.push(t.EventAttribute.decode(i, i.uint32()));
|
|
2284
|
+
break;
|
|
2285
|
+
default:
|
|
2286
|
+
i.skipType(d & 7);
|
|
2287
|
+
break;
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
return a;
|
|
2291
|
+
},
|
|
2292
|
+
fromJSON(e) {
|
|
2293
|
+
return {
|
|
2294
|
+
type: (0, r.isSet)(e.type) ? String(e.type) : "",
|
|
2295
|
+
attributes: Array.isArray(e?.attributes) ? e.attributes.map((n) => t.EventAttribute.fromJSON(n)) : []
|
|
2296
|
+
};
|
|
2297
|
+
},
|
|
2298
|
+
toJSON(e) {
|
|
2299
|
+
const n = {};
|
|
2300
|
+
return e.type !== void 0 && (n.type = e.type), e.attributes ? n.attributes = e.attributes.map((i) => i ? t.EventAttribute.toJSON(i) : void 0) : n.attributes = [], n;
|
|
2301
|
+
},
|
|
2302
|
+
fromPartial(e) {
|
|
2303
|
+
const n = ce();
|
|
2304
|
+
return n.type = e.type ?? "", n.attributes = e.attributes?.map((i) => t.EventAttribute.fromPartial(i)) || [], n;
|
|
2305
|
+
}
|
|
2306
|
+
};
|
|
2307
|
+
function pe() {
|
|
2308
|
+
return {
|
|
2309
|
+
key: "",
|
|
2310
|
+
value: "",
|
|
2311
|
+
index: !1
|
|
2312
|
+
};
|
|
2313
|
+
}
|
|
2314
|
+
t.EventAttribute = {
|
|
2315
|
+
encode(e, n = o.Writer.create()) {
|
|
2316
|
+
return e.key !== "" && n.uint32(10).string(e.key), e.value !== "" && n.uint32(18).string(e.value), e.index === !0 && n.uint32(24).bool(e.index), n;
|
|
2317
|
+
},
|
|
2318
|
+
decode(e, n) {
|
|
2319
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2320
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2321
|
+
const a = pe();
|
|
2322
|
+
for (; i.pos < s; ) {
|
|
2323
|
+
const d = i.uint32();
|
|
2324
|
+
switch (d >>> 3) {
|
|
2325
|
+
case 1:
|
|
2326
|
+
a.key = i.string();
|
|
2327
|
+
break;
|
|
2328
|
+
case 2:
|
|
2329
|
+
a.value = i.string();
|
|
2330
|
+
break;
|
|
2331
|
+
case 3:
|
|
2332
|
+
a.index = i.bool();
|
|
2333
|
+
break;
|
|
2334
|
+
default:
|
|
2335
|
+
i.skipType(d & 7);
|
|
2336
|
+
break;
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
return a;
|
|
2340
|
+
},
|
|
2341
|
+
fromJSON(e) {
|
|
2342
|
+
return {
|
|
2343
|
+
key: (0, r.isSet)(e.key) ? String(e.key) : "",
|
|
2344
|
+
value: (0, r.isSet)(e.value) ? String(e.value) : "",
|
|
2345
|
+
index: (0, r.isSet)(e.index) ? !!e.index : !1
|
|
2346
|
+
};
|
|
2347
|
+
},
|
|
2348
|
+
toJSON(e) {
|
|
2349
|
+
const n = {};
|
|
2350
|
+
return e.key !== void 0 && (n.key = e.key), e.value !== void 0 && (n.value = e.value), e.index !== void 0 && (n.index = e.index), n;
|
|
2351
|
+
},
|
|
2352
|
+
fromPartial(e) {
|
|
2353
|
+
const n = pe();
|
|
2354
|
+
return n.key = e.key ?? "", n.value = e.value ?? "", n.index = e.index ?? !1, n;
|
|
2355
|
+
}
|
|
2356
|
+
};
|
|
2357
|
+
function ke() {
|
|
2358
|
+
return {
|
|
2359
|
+
height: r.Long.ZERO,
|
|
2360
|
+
index: 0,
|
|
2361
|
+
tx: new Uint8Array(),
|
|
2362
|
+
result: void 0
|
|
2363
|
+
};
|
|
2364
|
+
}
|
|
2365
|
+
t.TxResult = {
|
|
2366
|
+
encode(e, n = o.Writer.create()) {
|
|
2367
|
+
return e.height.isZero() || n.uint32(8).int64(e.height), e.index !== 0 && n.uint32(16).uint32(e.index), e.tx.length !== 0 && n.uint32(26).bytes(e.tx), e.result !== void 0 && t.ResponseDeliverTx.encode(e.result, n.uint32(34).fork()).ldelim(), n;
|
|
2368
|
+
},
|
|
2369
|
+
decode(e, n) {
|
|
2370
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2371
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2372
|
+
const a = ke();
|
|
2373
|
+
for (; i.pos < s; ) {
|
|
2374
|
+
const d = i.uint32();
|
|
2375
|
+
switch (d >>> 3) {
|
|
2376
|
+
case 1:
|
|
2377
|
+
a.height = i.int64();
|
|
2378
|
+
break;
|
|
2379
|
+
case 2:
|
|
2380
|
+
a.index = i.uint32();
|
|
2381
|
+
break;
|
|
2382
|
+
case 3:
|
|
2383
|
+
a.tx = i.bytes();
|
|
2384
|
+
break;
|
|
2385
|
+
case 4:
|
|
2386
|
+
a.result = t.ResponseDeliverTx.decode(i, i.uint32());
|
|
2387
|
+
break;
|
|
2388
|
+
default:
|
|
2389
|
+
i.skipType(d & 7);
|
|
2390
|
+
break;
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
return a;
|
|
2394
|
+
},
|
|
2395
|
+
fromJSON(e) {
|
|
2396
|
+
return {
|
|
2397
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO,
|
|
2398
|
+
index: (0, r.isSet)(e.index) ? Number(e.index) : 0,
|
|
2399
|
+
tx: (0, r.isSet)(e.tx) ? (0, r.bytesFromBase64)(e.tx) : new Uint8Array(),
|
|
2400
|
+
result: (0, r.isSet)(e.result) ? t.ResponseDeliverTx.fromJSON(e.result) : void 0
|
|
2401
|
+
};
|
|
2402
|
+
},
|
|
2403
|
+
toJSON(e) {
|
|
2404
|
+
const n = {};
|
|
2405
|
+
return e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), e.index !== void 0 && (n.index = Math.round(e.index)), e.tx !== void 0 && (n.tx = (0, r.base64FromBytes)(e.tx !== void 0 ? e.tx : new Uint8Array())), e.result !== void 0 && (n.result = e.result ? t.ResponseDeliverTx.toJSON(e.result) : void 0), n;
|
|
2406
|
+
},
|
|
2407
|
+
fromPartial(e) {
|
|
2408
|
+
const n = ke();
|
|
2409
|
+
return n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n.index = e.index ?? 0, n.tx = e.tx ?? new Uint8Array(), n.result = e.result !== void 0 && e.result !== null ? t.ResponseDeliverTx.fromPartial(e.result) : void 0, n;
|
|
2410
|
+
}
|
|
2411
|
+
};
|
|
2412
|
+
function Se() {
|
|
2413
|
+
return {
|
|
2414
|
+
address: new Uint8Array(),
|
|
2415
|
+
power: r.Long.ZERO
|
|
2416
|
+
};
|
|
2417
|
+
}
|
|
2418
|
+
t.Validator = {
|
|
2419
|
+
encode(e, n = o.Writer.create()) {
|
|
2420
|
+
return e.address.length !== 0 && n.uint32(10).bytes(e.address), e.power.isZero() || n.uint32(24).int64(e.power), n;
|
|
2421
|
+
},
|
|
2422
|
+
decode(e, n) {
|
|
2423
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2424
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2425
|
+
const a = Se();
|
|
2426
|
+
for (; i.pos < s; ) {
|
|
2427
|
+
const d = i.uint32();
|
|
2428
|
+
switch (d >>> 3) {
|
|
2429
|
+
case 1:
|
|
2430
|
+
a.address = i.bytes();
|
|
2431
|
+
break;
|
|
2432
|
+
case 3:
|
|
2433
|
+
a.power = i.int64();
|
|
2434
|
+
break;
|
|
2435
|
+
default:
|
|
2436
|
+
i.skipType(d & 7);
|
|
2437
|
+
break;
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
return a;
|
|
2441
|
+
},
|
|
2442
|
+
fromJSON(e) {
|
|
2443
|
+
return {
|
|
2444
|
+
address: (0, r.isSet)(e.address) ? (0, r.bytesFromBase64)(e.address) : new Uint8Array(),
|
|
2445
|
+
power: (0, r.isSet)(e.power) ? r.Long.fromValue(e.power) : r.Long.ZERO
|
|
2446
|
+
};
|
|
2447
|
+
},
|
|
2448
|
+
toJSON(e) {
|
|
2449
|
+
const n = {};
|
|
2450
|
+
return e.address !== void 0 && (n.address = (0, r.base64FromBytes)(e.address !== void 0 ? e.address : new Uint8Array())), e.power !== void 0 && (n.power = (e.power || r.Long.ZERO).toString()), n;
|
|
2451
|
+
},
|
|
2452
|
+
fromPartial(e) {
|
|
2453
|
+
const n = Se();
|
|
2454
|
+
return n.address = e.address ?? new Uint8Array(), n.power = e.power !== void 0 && e.power !== null ? r.Long.fromValue(e.power) : r.Long.ZERO, n;
|
|
2455
|
+
}
|
|
2456
|
+
};
|
|
2457
|
+
function Re() {
|
|
2458
|
+
return {
|
|
2459
|
+
pubKey: void 0,
|
|
2460
|
+
power: r.Long.ZERO
|
|
2461
|
+
};
|
|
2462
|
+
}
|
|
2463
|
+
t.ValidatorUpdate = {
|
|
2464
|
+
encode(e, n = o.Writer.create()) {
|
|
2465
|
+
return e.pubKey !== void 0 && y.PublicKey.encode(e.pubKey, n.uint32(10).fork()).ldelim(), e.power.isZero() || n.uint32(16).int64(e.power), n;
|
|
2466
|
+
},
|
|
2467
|
+
decode(e, n) {
|
|
2468
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2469
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2470
|
+
const a = Re();
|
|
2471
|
+
for (; i.pos < s; ) {
|
|
2472
|
+
const d = i.uint32();
|
|
2473
|
+
switch (d >>> 3) {
|
|
2474
|
+
case 1:
|
|
2475
|
+
a.pubKey = y.PublicKey.decode(i, i.uint32());
|
|
2476
|
+
break;
|
|
2477
|
+
case 2:
|
|
2478
|
+
a.power = i.int64();
|
|
2479
|
+
break;
|
|
2480
|
+
default:
|
|
2481
|
+
i.skipType(d & 7);
|
|
2482
|
+
break;
|
|
2483
|
+
}
|
|
2484
|
+
}
|
|
2485
|
+
return a;
|
|
2486
|
+
},
|
|
2487
|
+
fromJSON(e) {
|
|
2488
|
+
return {
|
|
2489
|
+
pubKey: (0, r.isSet)(e.pubKey) ? y.PublicKey.fromJSON(e.pubKey) : void 0,
|
|
2490
|
+
power: (0, r.isSet)(e.power) ? r.Long.fromValue(e.power) : r.Long.ZERO
|
|
2491
|
+
};
|
|
2492
|
+
},
|
|
2493
|
+
toJSON(e) {
|
|
2494
|
+
const n = {};
|
|
2495
|
+
return e.pubKey !== void 0 && (n.pubKey = e.pubKey ? y.PublicKey.toJSON(e.pubKey) : void 0), e.power !== void 0 && (n.power = (e.power || r.Long.ZERO).toString()), n;
|
|
2496
|
+
},
|
|
2497
|
+
fromPartial(e) {
|
|
2498
|
+
const n = Re();
|
|
2499
|
+
return n.pubKey = e.pubKey !== void 0 && e.pubKey !== null ? y.PublicKey.fromPartial(e.pubKey) : void 0, n.power = e.power !== void 0 && e.power !== null ? r.Long.fromValue(e.power) : r.Long.ZERO, n;
|
|
2500
|
+
}
|
|
2501
|
+
};
|
|
2502
|
+
function me() {
|
|
2503
|
+
return {
|
|
2504
|
+
validator: void 0,
|
|
2505
|
+
signedLastBlock: !1
|
|
2506
|
+
};
|
|
2507
|
+
}
|
|
2508
|
+
t.VoteInfo = {
|
|
2509
|
+
encode(e, n = o.Writer.create()) {
|
|
2510
|
+
return e.validator !== void 0 && t.Validator.encode(e.validator, n.uint32(10).fork()).ldelim(), e.signedLastBlock === !0 && n.uint32(16).bool(e.signedLastBlock), n;
|
|
2511
|
+
},
|
|
2512
|
+
decode(e, n) {
|
|
2513
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2514
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2515
|
+
const a = me();
|
|
2516
|
+
for (; i.pos < s; ) {
|
|
2517
|
+
const d = i.uint32();
|
|
2518
|
+
switch (d >>> 3) {
|
|
2519
|
+
case 1:
|
|
2520
|
+
a.validator = t.Validator.decode(i, i.uint32());
|
|
2521
|
+
break;
|
|
2522
|
+
case 2:
|
|
2523
|
+
a.signedLastBlock = i.bool();
|
|
2524
|
+
break;
|
|
2525
|
+
default:
|
|
2526
|
+
i.skipType(d & 7);
|
|
2527
|
+
break;
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
return a;
|
|
2531
|
+
},
|
|
2532
|
+
fromJSON(e) {
|
|
2533
|
+
return {
|
|
2534
|
+
validator: (0, r.isSet)(e.validator) ? t.Validator.fromJSON(e.validator) : void 0,
|
|
2535
|
+
signedLastBlock: (0, r.isSet)(e.signedLastBlock) ? !!e.signedLastBlock : !1
|
|
2536
|
+
};
|
|
2537
|
+
},
|
|
2538
|
+
toJSON(e) {
|
|
2539
|
+
const n = {};
|
|
2540
|
+
return e.validator !== void 0 && (n.validator = e.validator ? t.Validator.toJSON(e.validator) : void 0), e.signedLastBlock !== void 0 && (n.signedLastBlock = e.signedLastBlock), n;
|
|
2541
|
+
},
|
|
2542
|
+
fromPartial(e) {
|
|
2543
|
+
const n = me();
|
|
2544
|
+
return n.validator = e.validator !== void 0 && e.validator !== null ? t.Validator.fromPartial(e.validator) : void 0, n.signedLastBlock = e.signedLastBlock ?? !1, n;
|
|
2545
|
+
}
|
|
2546
|
+
};
|
|
2547
|
+
function ye() {
|
|
2548
|
+
return {
|
|
2549
|
+
validator: void 0,
|
|
2550
|
+
signedLastBlock: !1,
|
|
2551
|
+
voteExtension: new Uint8Array()
|
|
2552
|
+
};
|
|
2553
|
+
}
|
|
2554
|
+
t.ExtendedVoteInfo = {
|
|
2555
|
+
encode(e, n = o.Writer.create()) {
|
|
2556
|
+
return e.validator !== void 0 && t.Validator.encode(e.validator, n.uint32(10).fork()).ldelim(), e.signedLastBlock === !0 && n.uint32(16).bool(e.signedLastBlock), e.voteExtension.length !== 0 && n.uint32(26).bytes(e.voteExtension), n;
|
|
2557
|
+
},
|
|
2558
|
+
decode(e, n) {
|
|
2559
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2560
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2561
|
+
const a = ye();
|
|
2562
|
+
for (; i.pos < s; ) {
|
|
2563
|
+
const d = i.uint32();
|
|
2564
|
+
switch (d >>> 3) {
|
|
2565
|
+
case 1:
|
|
2566
|
+
a.validator = t.Validator.decode(i, i.uint32());
|
|
2567
|
+
break;
|
|
2568
|
+
case 2:
|
|
2569
|
+
a.signedLastBlock = i.bool();
|
|
2570
|
+
break;
|
|
2571
|
+
case 3:
|
|
2572
|
+
a.voteExtension = i.bytes();
|
|
2573
|
+
break;
|
|
2574
|
+
default:
|
|
2575
|
+
i.skipType(d & 7);
|
|
2576
|
+
break;
|
|
2577
|
+
}
|
|
2578
|
+
}
|
|
2579
|
+
return a;
|
|
2580
|
+
},
|
|
2581
|
+
fromJSON(e) {
|
|
2582
|
+
return {
|
|
2583
|
+
validator: (0, r.isSet)(e.validator) ? t.Validator.fromJSON(e.validator) : void 0,
|
|
2584
|
+
signedLastBlock: (0, r.isSet)(e.signedLastBlock) ? !!e.signedLastBlock : !1,
|
|
2585
|
+
voteExtension: (0, r.isSet)(e.voteExtension) ? (0, r.bytesFromBase64)(e.voteExtension) : new Uint8Array()
|
|
2586
|
+
};
|
|
2587
|
+
},
|
|
2588
|
+
toJSON(e) {
|
|
2589
|
+
const n = {};
|
|
2590
|
+
return e.validator !== void 0 && (n.validator = e.validator ? t.Validator.toJSON(e.validator) : void 0), e.signedLastBlock !== void 0 && (n.signedLastBlock = e.signedLastBlock), e.voteExtension !== void 0 && (n.voteExtension = (0, r.base64FromBytes)(e.voteExtension !== void 0 ? e.voteExtension : new Uint8Array())), n;
|
|
2591
|
+
},
|
|
2592
|
+
fromPartial(e) {
|
|
2593
|
+
const n = ye();
|
|
2594
|
+
return n.validator = e.validator !== void 0 && e.validator !== null ? t.Validator.fromPartial(e.validator) : void 0, n.signedLastBlock = e.signedLastBlock ?? !1, n.voteExtension = e.voteExtension ?? new Uint8Array(), n;
|
|
2595
|
+
}
|
|
2596
|
+
};
|
|
2597
|
+
function Oe() {
|
|
2598
|
+
return {
|
|
2599
|
+
type: 0,
|
|
2600
|
+
validator: void 0,
|
|
2601
|
+
height: r.Long.ZERO,
|
|
2602
|
+
time: void 0,
|
|
2603
|
+
totalVotingPower: r.Long.ZERO
|
|
2604
|
+
};
|
|
2605
|
+
}
|
|
2606
|
+
t.Misbehavior = {
|
|
2607
|
+
encode(e, n = o.Writer.create()) {
|
|
2608
|
+
return e.type !== 0 && n.uint32(8).int32(e.type), e.validator !== void 0 && t.Validator.encode(e.validator, n.uint32(18).fork()).ldelim(), e.height.isZero() || n.uint32(24).int64(e.height), e.time !== void 0 && h.Timestamp.encode(e.time, n.uint32(34).fork()).ldelim(), e.totalVotingPower.isZero() || n.uint32(40).int64(e.totalVotingPower), n;
|
|
2609
|
+
},
|
|
2610
|
+
decode(e, n) {
|
|
2611
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2612
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2613
|
+
const a = Oe();
|
|
2614
|
+
for (; i.pos < s; ) {
|
|
2615
|
+
const d = i.uint32();
|
|
2616
|
+
switch (d >>> 3) {
|
|
2617
|
+
case 1:
|
|
2618
|
+
a.type = i.int32();
|
|
2619
|
+
break;
|
|
2620
|
+
case 2:
|
|
2621
|
+
a.validator = t.Validator.decode(i, i.uint32());
|
|
2622
|
+
break;
|
|
2623
|
+
case 3:
|
|
2624
|
+
a.height = i.int64();
|
|
2625
|
+
break;
|
|
2626
|
+
case 4:
|
|
2627
|
+
a.time = h.Timestamp.decode(i, i.uint32());
|
|
2628
|
+
break;
|
|
2629
|
+
case 5:
|
|
2630
|
+
a.totalVotingPower = i.int64();
|
|
2631
|
+
break;
|
|
2632
|
+
default:
|
|
2633
|
+
i.skipType(d & 7);
|
|
2634
|
+
break;
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
return a;
|
|
2638
|
+
},
|
|
2639
|
+
fromJSON(e) {
|
|
2640
|
+
return {
|
|
2641
|
+
type: (0, r.isSet)(e.type) ? A(e.type) : 0,
|
|
2642
|
+
validator: (0, r.isSet)(e.validator) ? t.Validator.fromJSON(e.validator) : void 0,
|
|
2643
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.ZERO,
|
|
2644
|
+
time: (0, r.isSet)(e.time) ? (0, r.fromJsonTimestamp)(e.time) : void 0,
|
|
2645
|
+
totalVotingPower: (0, r.isSet)(e.totalVotingPower) ? r.Long.fromValue(e.totalVotingPower) : r.Long.ZERO
|
|
2646
|
+
};
|
|
2647
|
+
},
|
|
2648
|
+
toJSON(e) {
|
|
2649
|
+
const n = {};
|
|
2650
|
+
return e.type !== void 0 && (n.type = J(e.type)), e.validator !== void 0 && (n.validator = e.validator ? t.Validator.toJSON(e.validator) : void 0), e.height !== void 0 && (n.height = (e.height || r.Long.ZERO).toString()), e.time !== void 0 && (n.time = (0, r.fromTimestamp)(e.time).toISOString()), e.totalVotingPower !== void 0 && (n.totalVotingPower = (e.totalVotingPower || r.Long.ZERO).toString()), n;
|
|
2651
|
+
},
|
|
2652
|
+
fromPartial(e) {
|
|
2653
|
+
const n = Oe();
|
|
2654
|
+
return n.type = e.type ?? 0, n.validator = e.validator !== void 0 && e.validator !== null ? t.Validator.fromPartial(e.validator) : void 0, n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.ZERO, n.time = e.time !== void 0 && e.time !== null ? h.Timestamp.fromPartial(e.time) : void 0, n.totalVotingPower = e.totalVotingPower !== void 0 && e.totalVotingPower !== null ? r.Long.fromValue(e.totalVotingPower) : r.Long.ZERO, n;
|
|
2655
|
+
}
|
|
2656
|
+
};
|
|
2657
|
+
function Ce() {
|
|
2658
|
+
return {
|
|
2659
|
+
height: r.Long.UZERO,
|
|
2660
|
+
format: 0,
|
|
2661
|
+
chunks: 0,
|
|
2662
|
+
hash: new Uint8Array(),
|
|
2663
|
+
metadata: new Uint8Array()
|
|
2664
|
+
};
|
|
2665
|
+
}
|
|
2666
|
+
t.Snapshot = {
|
|
2667
|
+
encode(e, n = o.Writer.create()) {
|
|
2668
|
+
return e.height.isZero() || n.uint32(8).uint64(e.height), e.format !== 0 && n.uint32(16).uint32(e.format), e.chunks !== 0 && n.uint32(24).uint32(e.chunks), e.hash.length !== 0 && n.uint32(34).bytes(e.hash), e.metadata.length !== 0 && n.uint32(42).bytes(e.metadata), n;
|
|
2669
|
+
},
|
|
2670
|
+
decode(e, n) {
|
|
2671
|
+
const i = e instanceof o.Reader ? e : new o.Reader(e);
|
|
2672
|
+
let s = n === void 0 ? i.len : i.pos + n;
|
|
2673
|
+
const a = Ce();
|
|
2674
|
+
for (; i.pos < s; ) {
|
|
2675
|
+
const d = i.uint32();
|
|
2676
|
+
switch (d >>> 3) {
|
|
2677
|
+
case 1:
|
|
2678
|
+
a.height = i.uint64();
|
|
2679
|
+
break;
|
|
2680
|
+
case 2:
|
|
2681
|
+
a.format = i.uint32();
|
|
2682
|
+
break;
|
|
2683
|
+
case 3:
|
|
2684
|
+
a.chunks = i.uint32();
|
|
2685
|
+
break;
|
|
2686
|
+
case 4:
|
|
2687
|
+
a.hash = i.bytes();
|
|
2688
|
+
break;
|
|
2689
|
+
case 5:
|
|
2690
|
+
a.metadata = i.bytes();
|
|
2691
|
+
break;
|
|
2692
|
+
default:
|
|
2693
|
+
i.skipType(d & 7);
|
|
2694
|
+
break;
|
|
2695
|
+
}
|
|
2696
|
+
}
|
|
2697
|
+
return a;
|
|
2698
|
+
},
|
|
2699
|
+
fromJSON(e) {
|
|
2700
|
+
return {
|
|
2701
|
+
height: (0, r.isSet)(e.height) ? r.Long.fromValue(e.height) : r.Long.UZERO,
|
|
2702
|
+
format: (0, r.isSet)(e.format) ? Number(e.format) : 0,
|
|
2703
|
+
chunks: (0, r.isSet)(e.chunks) ? Number(e.chunks) : 0,
|
|
2704
|
+
hash: (0, r.isSet)(e.hash) ? (0, r.bytesFromBase64)(e.hash) : new Uint8Array(),
|
|
2705
|
+
metadata: (0, r.isSet)(e.metadata) ? (0, r.bytesFromBase64)(e.metadata) : new Uint8Array()
|
|
2706
|
+
};
|
|
2707
|
+
},
|
|
2708
|
+
toJSON(e) {
|
|
2709
|
+
const n = {};
|
|
2710
|
+
return e.height !== void 0 && (n.height = (e.height || r.Long.UZERO).toString()), e.format !== void 0 && (n.format = Math.round(e.format)), e.chunks !== void 0 && (n.chunks = Math.round(e.chunks)), e.hash !== void 0 && (n.hash = (0, r.base64FromBytes)(e.hash !== void 0 ? e.hash : new Uint8Array())), e.metadata !== void 0 && (n.metadata = (0, r.base64FromBytes)(e.metadata !== void 0 ? e.metadata : new Uint8Array())), n;
|
|
2711
|
+
},
|
|
2712
|
+
fromPartial(e) {
|
|
2713
|
+
const n = Ce();
|
|
2714
|
+
return n.height = e.height !== void 0 && e.height !== null ? r.Long.fromValue(e.height) : r.Long.UZERO, n.format = e.format ?? 0, n.chunks = e.chunks ?? 0, n.hash = e.hash ?? new Uint8Array(), n.metadata = e.metadata ?? new Uint8Array(), n;
|
|
2715
|
+
}
|
|
2716
|
+
};
|
|
2717
|
+
class ve {
|
|
2718
|
+
constructor(n) {
|
|
2719
|
+
this.rpc = n, this.Echo = this.Echo.bind(this), this.Flush = this.Flush.bind(this), this.Info = this.Info.bind(this), this.DeliverTx = this.DeliverTx.bind(this), this.CheckTx = this.CheckTx.bind(this), this.Query = this.Query.bind(this), this.Commit = this.Commit.bind(this), this.InitChain = this.InitChain.bind(this), this.BeginBlock = this.BeginBlock.bind(this), this.EndBlock = this.EndBlock.bind(this), this.ListSnapshots = this.ListSnapshots.bind(this), this.OfferSnapshot = this.OfferSnapshot.bind(this), this.LoadSnapshotChunk = this.LoadSnapshotChunk.bind(this), this.ApplySnapshotChunk = this.ApplySnapshotChunk.bind(this), this.PrepareProposal = this.PrepareProposal.bind(this), this.ProcessProposal = this.ProcessProposal.bind(this);
|
|
2720
|
+
}
|
|
2721
|
+
Echo(n) {
|
|
2722
|
+
const i = t.RequestEcho.encode(n).finish();
|
|
2723
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "Echo", i).then((a) => t.ResponseEcho.decode(new o.Reader(a)));
|
|
2724
|
+
}
|
|
2725
|
+
Flush(n = {}) {
|
|
2726
|
+
const i = t.RequestFlush.encode(n).finish();
|
|
2727
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "Flush", i).then((a) => t.ResponseFlush.decode(new o.Reader(a)));
|
|
2728
|
+
}
|
|
2729
|
+
Info(n) {
|
|
2730
|
+
const i = t.RequestInfo.encode(n).finish();
|
|
2731
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "Info", i).then((a) => t.ResponseInfo.decode(new o.Reader(a)));
|
|
2732
|
+
}
|
|
2733
|
+
DeliverTx(n) {
|
|
2734
|
+
const i = t.RequestDeliverTx.encode(n).finish();
|
|
2735
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "DeliverTx", i).then((a) => t.ResponseDeliverTx.decode(new o.Reader(a)));
|
|
2736
|
+
}
|
|
2737
|
+
CheckTx(n) {
|
|
2738
|
+
const i = t.RequestCheckTx.encode(n).finish();
|
|
2739
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "CheckTx", i).then((a) => t.ResponseCheckTx.decode(new o.Reader(a)));
|
|
2740
|
+
}
|
|
2741
|
+
Query(n) {
|
|
2742
|
+
const i = t.RequestQuery.encode(n).finish();
|
|
2743
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "Query", i).then((a) => t.ResponseQuery.decode(new o.Reader(a)));
|
|
2744
|
+
}
|
|
2745
|
+
Commit(n = {}) {
|
|
2746
|
+
const i = t.RequestCommit.encode(n).finish();
|
|
2747
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "Commit", i).then((a) => t.ResponseCommit.decode(new o.Reader(a)));
|
|
2748
|
+
}
|
|
2749
|
+
InitChain(n) {
|
|
2750
|
+
const i = t.RequestInitChain.encode(n).finish();
|
|
2751
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "InitChain", i).then((a) => t.ResponseInitChain.decode(new o.Reader(a)));
|
|
2752
|
+
}
|
|
2753
|
+
BeginBlock(n) {
|
|
2754
|
+
const i = t.RequestBeginBlock.encode(n).finish();
|
|
2755
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "BeginBlock", i).then((a) => t.ResponseBeginBlock.decode(new o.Reader(a)));
|
|
2756
|
+
}
|
|
2757
|
+
EndBlock(n) {
|
|
2758
|
+
const i = t.RequestEndBlock.encode(n).finish();
|
|
2759
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "EndBlock", i).then((a) => t.ResponseEndBlock.decode(new o.Reader(a)));
|
|
2760
|
+
}
|
|
2761
|
+
ListSnapshots(n = {}) {
|
|
2762
|
+
const i = t.RequestListSnapshots.encode(n).finish();
|
|
2763
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "ListSnapshots", i).then((a) => t.ResponseListSnapshots.decode(new o.Reader(a)));
|
|
2764
|
+
}
|
|
2765
|
+
OfferSnapshot(n) {
|
|
2766
|
+
const i = t.RequestOfferSnapshot.encode(n).finish();
|
|
2767
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "OfferSnapshot", i).then((a) => t.ResponseOfferSnapshot.decode(new o.Reader(a)));
|
|
2768
|
+
}
|
|
2769
|
+
LoadSnapshotChunk(n) {
|
|
2770
|
+
const i = t.RequestLoadSnapshotChunk.encode(n).finish();
|
|
2771
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "LoadSnapshotChunk", i).then((a) => t.ResponseLoadSnapshotChunk.decode(new o.Reader(a)));
|
|
2772
|
+
}
|
|
2773
|
+
ApplySnapshotChunk(n) {
|
|
2774
|
+
const i = t.RequestApplySnapshotChunk.encode(n).finish();
|
|
2775
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "ApplySnapshotChunk", i).then((a) => t.ResponseApplySnapshotChunk.decode(new o.Reader(a)));
|
|
2776
|
+
}
|
|
2777
|
+
PrepareProposal(n) {
|
|
2778
|
+
const i = t.RequestPrepareProposal.encode(n).finish();
|
|
2779
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "PrepareProposal", i).then((a) => t.ResponsePrepareProposal.decode(new o.Reader(a)));
|
|
2780
|
+
}
|
|
2781
|
+
ProcessProposal(n) {
|
|
2782
|
+
const i = t.RequestProcessProposal.encode(n).finish();
|
|
2783
|
+
return this.rpc.request("tendermint.abci.ABCIApplication", "ProcessProposal", i).then((a) => t.ResponseProcessProposal.decode(new o.Reader(a)));
|
|
2784
|
+
}
|
|
2785
|
+
}
|
|
2786
|
+
t.ABCIApplicationClientImpl = ve;
|
|
2787
|
+
})(Be);
|