@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,1240 @@
|
|
|
1
|
+
import { Provider as ot, ForkEvent as lt } from "../../abstract-provider/lib.esm/index.mjs";
|
|
2
|
+
import { Base58 as M } from "../../basex/lib.esm/index.mjs";
|
|
3
|
+
import { hexConcat as R, arrayify as $, concat as A, hexZeroPad as F, hexlify as x, hexValue as at, hexDataLength as W, hexDataSlice as v, isHexString as L } from "../../bytes/lib.esm/index.mjs";
|
|
4
|
+
import { namehash as U, dnsEncode as ut } from "../../hash/lib.esm/namehash.mjs";
|
|
5
|
+
import { getNetwork as ct } from "../../networks/lib.esm/index.mjs";
|
|
6
|
+
import { defineReadOnly as w, getStatic as ht, resolveProperties as E } from "../../properties/lib.esm/index.mjs";
|
|
7
|
+
import { sha256 as j } from "../../sha2/lib.esm/sha2.mjs";
|
|
8
|
+
import { toUtf8Bytes as dt, toUtf8String as et } from "../../strings/lib.esm/utf8.mjs";
|
|
9
|
+
import { fetchJson as rt, poll as S } from "../../web/lib.esm/index.mjs";
|
|
10
|
+
import G from "../../../bech32/index.mjs";
|
|
11
|
+
import { Logger as h } from "../../logger/lib.esm/index.mjs";
|
|
12
|
+
import { version as ft } from "./_version.mjs";
|
|
13
|
+
import { Formatter as H } from "./formatter.mjs";
|
|
14
|
+
import { BigNumber as k } from "../../bignumber/lib.esm/bignumber.mjs";
|
|
15
|
+
import { HashZero as mt } from "../../constants/lib.esm/hashes.mjs";
|
|
16
|
+
import { encode as pt } from "../../base64/lib.esm/base64.mjs";
|
|
17
|
+
var a = function(o, t, e, r) {
|
|
18
|
+
function i(n) {
|
|
19
|
+
return n instanceof e ? n : new e(function(s) {
|
|
20
|
+
s(n);
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
return new (e || (e = Promise))(function(n, s) {
|
|
24
|
+
function l(m) {
|
|
25
|
+
try {
|
|
26
|
+
d(r.next(m));
|
|
27
|
+
} catch (g) {
|
|
28
|
+
s(g);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
function c(m) {
|
|
32
|
+
try {
|
|
33
|
+
d(r.throw(m));
|
|
34
|
+
} catch (g) {
|
|
35
|
+
s(g);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function d(m) {
|
|
39
|
+
m.done ? n(m.value) : i(m.value).then(l, c);
|
|
40
|
+
}
|
|
41
|
+
d((r = r.apply(o, t || [])).next());
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
const u = new h(ft), gt = 10;
|
|
45
|
+
function J(o) {
|
|
46
|
+
return o == null ? "null" : (W(o) !== 32 && u.throwArgumentError("invalid topic", "topic", o), o.toLowerCase());
|
|
47
|
+
}
|
|
48
|
+
function K(o) {
|
|
49
|
+
for (o = o.slice(); o.length > 0 && o[o.length - 1] == null; )
|
|
50
|
+
o.pop();
|
|
51
|
+
return o.map((t) => {
|
|
52
|
+
if (Array.isArray(t)) {
|
|
53
|
+
const e = {};
|
|
54
|
+
t.forEach((i) => {
|
|
55
|
+
e[J(i)] = !0;
|
|
56
|
+
});
|
|
57
|
+
const r = Object.keys(e);
|
|
58
|
+
return r.sort(), r.join("|");
|
|
59
|
+
} else
|
|
60
|
+
return J(t);
|
|
61
|
+
}).join("&");
|
|
62
|
+
}
|
|
63
|
+
function _t(o) {
|
|
64
|
+
return o === "" ? [] : o.split(/&/g).map((t) => {
|
|
65
|
+
if (t === "")
|
|
66
|
+
return [];
|
|
67
|
+
const e = t.split("|").map((r) => r === "null" ? null : r);
|
|
68
|
+
return e.length === 1 ? e[0] : e;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
function T(o) {
|
|
72
|
+
if (typeof o == "string") {
|
|
73
|
+
if (o = o.toLowerCase(), W(o) === 32)
|
|
74
|
+
return "tx:" + o;
|
|
75
|
+
if (o.indexOf(":") === -1)
|
|
76
|
+
return o;
|
|
77
|
+
} else {
|
|
78
|
+
if (Array.isArray(o))
|
|
79
|
+
return "filter:*:" + K(o);
|
|
80
|
+
if (lt.isForkEvent(o))
|
|
81
|
+
throw u.warn("not implemented"), new Error("not implemented");
|
|
82
|
+
if (o && typeof o == "object")
|
|
83
|
+
return "filter:" + (o.address || "*") + ":" + K(o.topics || []);
|
|
84
|
+
}
|
|
85
|
+
throw new Error("invalid event - " + o);
|
|
86
|
+
}
|
|
87
|
+
function I() {
|
|
88
|
+
return (/* @__PURE__ */ new Date()).getTime();
|
|
89
|
+
}
|
|
90
|
+
function Q(o) {
|
|
91
|
+
return new Promise((t) => {
|
|
92
|
+
setTimeout(t, o);
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
const kt = ["block", "network", "pending", "poll"];
|
|
96
|
+
class bt {
|
|
97
|
+
constructor(t, e, r) {
|
|
98
|
+
w(this, "tag", t), w(this, "listener", e), w(this, "once", r), this._lastBlockNumber = -2, this._inflight = !1;
|
|
99
|
+
}
|
|
100
|
+
get event() {
|
|
101
|
+
switch (this.type) {
|
|
102
|
+
case "tx":
|
|
103
|
+
return this.hash;
|
|
104
|
+
case "filter":
|
|
105
|
+
return this.filter;
|
|
106
|
+
}
|
|
107
|
+
return this.tag;
|
|
108
|
+
}
|
|
109
|
+
get type() {
|
|
110
|
+
return this.tag.split(":")[0];
|
|
111
|
+
}
|
|
112
|
+
get hash() {
|
|
113
|
+
const t = this.tag.split(":");
|
|
114
|
+
return t[0] !== "tx" ? null : t[1];
|
|
115
|
+
}
|
|
116
|
+
get filter() {
|
|
117
|
+
const t = this.tag.split(":");
|
|
118
|
+
if (t[0] !== "filter")
|
|
119
|
+
return null;
|
|
120
|
+
const e = t[1], r = _t(t[2]), i = {};
|
|
121
|
+
return r.length > 0 && (i.topics = r), e && e !== "*" && (i.address = e), i;
|
|
122
|
+
}
|
|
123
|
+
pollable() {
|
|
124
|
+
return this.tag.indexOf(":") >= 0 || kt.indexOf(this.tag) >= 0;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
const yt = {
|
|
128
|
+
0: { symbol: "btc", p2pkh: 0, p2sh: 5, prefix: "bc" },
|
|
129
|
+
2: { symbol: "ltc", p2pkh: 48, p2sh: 50, prefix: "ltc" },
|
|
130
|
+
3: { symbol: "doge", p2pkh: 30, p2sh: 22 },
|
|
131
|
+
60: { symbol: "eth", ilk: "eth" },
|
|
132
|
+
61: { symbol: "etc", ilk: "eth" },
|
|
133
|
+
700: { symbol: "xdai", ilk: "eth" }
|
|
134
|
+
};
|
|
135
|
+
function V(o) {
|
|
136
|
+
return F(k.from(o).toHexString(), 32);
|
|
137
|
+
}
|
|
138
|
+
function Z(o) {
|
|
139
|
+
return M.encode(A([o, v(j(j(o)), 0, 4)]));
|
|
140
|
+
}
|
|
141
|
+
const it = new RegExp("^(ipfs)://(.*)$", "i"), z = [
|
|
142
|
+
new RegExp("^(https)://(.*)$", "i"),
|
|
143
|
+
new RegExp("^(data):(.*)$", "i"),
|
|
144
|
+
it,
|
|
145
|
+
new RegExp("^eip155:[0-9]+/(erc[0-9]+):(.*)$", "i")
|
|
146
|
+
];
|
|
147
|
+
function D(o, t) {
|
|
148
|
+
try {
|
|
149
|
+
return et(O(o, t));
|
|
150
|
+
} catch {
|
|
151
|
+
}
|
|
152
|
+
return null;
|
|
153
|
+
}
|
|
154
|
+
function O(o, t) {
|
|
155
|
+
if (o === "0x")
|
|
156
|
+
return null;
|
|
157
|
+
const e = k.from(v(o, t, t + 32)).toNumber(), r = k.from(v(o, e, e + 32)).toNumber();
|
|
158
|
+
return v(o, e + 32, e + 32 + r);
|
|
159
|
+
}
|
|
160
|
+
function X(o) {
|
|
161
|
+
return o.match(/^ipfs:\/\/ipfs\//i) ? o = o.substring(12) : o.match(/^ipfs:\/\//i) ? o = o.substring(7) : u.throwArgumentError("unsupported IPFS format", "link", o), `https://gateway.ipfs.io/ipfs/${o}`;
|
|
162
|
+
}
|
|
163
|
+
function Y(o) {
|
|
164
|
+
const t = $(o);
|
|
165
|
+
if (t.length > 32)
|
|
166
|
+
throw new Error("internal; should not happen");
|
|
167
|
+
const e = new Uint8Array(32);
|
|
168
|
+
return e.set(t, 32 - t.length), e;
|
|
169
|
+
}
|
|
170
|
+
function vt(o) {
|
|
171
|
+
if (o.length % 32 === 0)
|
|
172
|
+
return o;
|
|
173
|
+
const t = new Uint8Array(Math.ceil(o.length / 32) * 32);
|
|
174
|
+
return t.set(o), t;
|
|
175
|
+
}
|
|
176
|
+
function nt(o) {
|
|
177
|
+
const t = [];
|
|
178
|
+
let e = 0;
|
|
179
|
+
for (let r = 0; r < o.length; r++)
|
|
180
|
+
t.push(null), e += 32;
|
|
181
|
+
for (let r = 0; r < o.length; r++) {
|
|
182
|
+
const i = $(o[r]);
|
|
183
|
+
t[r] = Y(e), t.push(Y(i.length)), t.push(vt(i)), e += 32 + Math.ceil(i.length / 32) * 32;
|
|
184
|
+
}
|
|
185
|
+
return R(t);
|
|
186
|
+
}
|
|
187
|
+
class tt {
|
|
188
|
+
// The resolvedAddress is only for creating a ReverseLookup resolver
|
|
189
|
+
constructor(t, e, r, i) {
|
|
190
|
+
w(this, "provider", t), w(this, "name", r), w(this, "address", t.formatter.address(e)), w(this, "_resolvedAddress", i);
|
|
191
|
+
}
|
|
192
|
+
supportsWildcard() {
|
|
193
|
+
return this._supportsEip2544 || (this._supportsEip2544 = this.provider.call({
|
|
194
|
+
to: this.address,
|
|
195
|
+
data: "0x01ffc9a79061b92300000000000000000000000000000000000000000000000000000000"
|
|
196
|
+
}).then((t) => k.from(t).eq(1)).catch((t) => {
|
|
197
|
+
if (t.code === h.errors.CALL_EXCEPTION)
|
|
198
|
+
return !1;
|
|
199
|
+
throw this._supportsEip2544 = null, t;
|
|
200
|
+
})), this._supportsEip2544;
|
|
201
|
+
}
|
|
202
|
+
_fetch(t, e) {
|
|
203
|
+
return a(this, void 0, void 0, function* () {
|
|
204
|
+
const r = {
|
|
205
|
+
to: this.address,
|
|
206
|
+
ccipReadEnabled: !0,
|
|
207
|
+
data: R([t, U(this.name), e || "0x"])
|
|
208
|
+
};
|
|
209
|
+
let i = !1;
|
|
210
|
+
(yield this.supportsWildcard()) && (i = !0, r.data = R(["0x9061b923", nt([ut(this.name), r.data])]));
|
|
211
|
+
try {
|
|
212
|
+
let n = yield this.provider.call(r);
|
|
213
|
+
return $(n).length % 32 === 4 && u.throwError("resolver threw error", h.errors.CALL_EXCEPTION, {
|
|
214
|
+
transaction: r,
|
|
215
|
+
data: n
|
|
216
|
+
}), i && (n = O(n, 0)), n;
|
|
217
|
+
} catch (n) {
|
|
218
|
+
if (n.code === h.errors.CALL_EXCEPTION)
|
|
219
|
+
return null;
|
|
220
|
+
throw n;
|
|
221
|
+
}
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
_fetchBytes(t, e) {
|
|
225
|
+
return a(this, void 0, void 0, function* () {
|
|
226
|
+
const r = yield this._fetch(t, e);
|
|
227
|
+
return r != null ? O(r, 0) : null;
|
|
228
|
+
});
|
|
229
|
+
}
|
|
230
|
+
_getAddress(t, e) {
|
|
231
|
+
const r = yt[String(t)];
|
|
232
|
+
if (r == null && u.throwError(`unsupported coin type: ${t}`, h.errors.UNSUPPORTED_OPERATION, {
|
|
233
|
+
operation: `getAddress(${t})`
|
|
234
|
+
}), r.ilk === "eth")
|
|
235
|
+
return this.provider.formatter.address(e);
|
|
236
|
+
const i = $(e);
|
|
237
|
+
if (r.p2pkh != null) {
|
|
238
|
+
const n = e.match(/^0x76a9([0-9a-f][0-9a-f])([0-9a-f]*)88ac$/);
|
|
239
|
+
if (n) {
|
|
240
|
+
const s = parseInt(n[1], 16);
|
|
241
|
+
if (n[2].length === s * 2 && s >= 1 && s <= 75)
|
|
242
|
+
return Z(A([[r.p2pkh], "0x" + n[2]]));
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
if (r.p2sh != null) {
|
|
246
|
+
const n = e.match(/^0xa9([0-9a-f][0-9a-f])([0-9a-f]*)87$/);
|
|
247
|
+
if (n) {
|
|
248
|
+
const s = parseInt(n[1], 16);
|
|
249
|
+
if (n[2].length === s * 2 && s >= 1 && s <= 75)
|
|
250
|
+
return Z(A([[r.p2sh], "0x" + n[2]]));
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
if (r.prefix != null) {
|
|
254
|
+
const n = i[1];
|
|
255
|
+
let s = i[0];
|
|
256
|
+
if (s === 0 ? n !== 20 && n !== 32 && (s = -1) : s = -1, s >= 0 && i.length === 2 + n && n >= 1 && n <= 75) {
|
|
257
|
+
const l = G.toWords(i.slice(2));
|
|
258
|
+
return l.unshift(s), G.encode(r.prefix, l);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
return null;
|
|
262
|
+
}
|
|
263
|
+
getAddress(t) {
|
|
264
|
+
return a(this, void 0, void 0, function* () {
|
|
265
|
+
if (t == null && (t = 60), t === 60)
|
|
266
|
+
try {
|
|
267
|
+
const i = yield this._fetch("0x3b3b57de");
|
|
268
|
+
return i === "0x" || i === mt ? null : this.provider.formatter.callAddress(i);
|
|
269
|
+
} catch (i) {
|
|
270
|
+
if (i.code === h.errors.CALL_EXCEPTION)
|
|
271
|
+
return null;
|
|
272
|
+
throw i;
|
|
273
|
+
}
|
|
274
|
+
const e = yield this._fetchBytes("0xf1cb7e06", V(t));
|
|
275
|
+
if (e == null || e === "0x")
|
|
276
|
+
return null;
|
|
277
|
+
const r = this._getAddress(t, e);
|
|
278
|
+
return r == null && u.throwError("invalid or unsupported coin data", h.errors.UNSUPPORTED_OPERATION, {
|
|
279
|
+
operation: `getAddress(${t})`,
|
|
280
|
+
coinType: t,
|
|
281
|
+
data: e
|
|
282
|
+
}), r;
|
|
283
|
+
});
|
|
284
|
+
}
|
|
285
|
+
getAvatar() {
|
|
286
|
+
return a(this, void 0, void 0, function* () {
|
|
287
|
+
const t = [{ type: "name", content: this.name }];
|
|
288
|
+
try {
|
|
289
|
+
const e = yield this.getText("avatar");
|
|
290
|
+
if (e == null)
|
|
291
|
+
return null;
|
|
292
|
+
for (let r = 0; r < z.length; r++) {
|
|
293
|
+
const i = e.match(z[r]);
|
|
294
|
+
if (i == null)
|
|
295
|
+
continue;
|
|
296
|
+
const n = i[1].toLowerCase();
|
|
297
|
+
switch (n) {
|
|
298
|
+
case "https":
|
|
299
|
+
return t.push({ type: "url", content: e }), { linkage: t, url: e };
|
|
300
|
+
case "data":
|
|
301
|
+
return t.push({ type: "data", content: e }), { linkage: t, url: e };
|
|
302
|
+
case "ipfs":
|
|
303
|
+
return t.push({ type: "ipfs", content: e }), { linkage: t, url: X(e) };
|
|
304
|
+
case "erc721":
|
|
305
|
+
case "erc1155": {
|
|
306
|
+
const s = n === "erc721" ? "0xc87b56dd" : "0x0e89341c";
|
|
307
|
+
t.push({ type: n, content: e });
|
|
308
|
+
const l = this._resolvedAddress || (yield this.getAddress()), c = (i[2] || "").split("/");
|
|
309
|
+
if (c.length !== 2)
|
|
310
|
+
return null;
|
|
311
|
+
const d = yield this.provider.formatter.address(c[0]), m = F(k.from(c[1]).toHexString(), 32);
|
|
312
|
+
if (n === "erc721") {
|
|
313
|
+
const b = this.provider.formatter.callAddress(yield this.provider.call({
|
|
314
|
+
to: d,
|
|
315
|
+
data: R(["0x6352211e", m])
|
|
316
|
+
}));
|
|
317
|
+
if (l !== b)
|
|
318
|
+
return null;
|
|
319
|
+
t.push({ type: "owner", content: b });
|
|
320
|
+
} else if (n === "erc1155") {
|
|
321
|
+
const b = k.from(yield this.provider.call({
|
|
322
|
+
to: d,
|
|
323
|
+
data: R(["0x00fdd58e", F(l, 32), m])
|
|
324
|
+
}));
|
|
325
|
+
if (b.isZero())
|
|
326
|
+
return null;
|
|
327
|
+
t.push({ type: "balance", content: b.toString() });
|
|
328
|
+
}
|
|
329
|
+
const g = {
|
|
330
|
+
to: this.provider.formatter.address(c[0]),
|
|
331
|
+
data: R([s, m])
|
|
332
|
+
};
|
|
333
|
+
let f = D(yield this.provider.call(g), 0);
|
|
334
|
+
if (f == null)
|
|
335
|
+
return null;
|
|
336
|
+
t.push({ type: "metadata-url-base", content: f }), n === "erc1155" && (f = f.replace("{id}", m.substring(2)), t.push({ type: "metadata-url-expanded", content: f })), f.match(/^ipfs:/i) && (f = X(f)), t.push({ type: "metadata-url", content: f });
|
|
337
|
+
const _ = yield rt(f);
|
|
338
|
+
if (!_)
|
|
339
|
+
return null;
|
|
340
|
+
t.push({ type: "metadata", content: JSON.stringify(_) });
|
|
341
|
+
let p = _.image;
|
|
342
|
+
if (typeof p != "string")
|
|
343
|
+
return null;
|
|
344
|
+
if (!p.match(/^(https:\/\/|data:)/i)) {
|
|
345
|
+
if (p.match(it) == null)
|
|
346
|
+
return null;
|
|
347
|
+
t.push({ type: "url-ipfs", content: p }), p = X(p);
|
|
348
|
+
}
|
|
349
|
+
return t.push({ type: "url", content: p }), { linkage: t, url: p };
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
} catch {
|
|
354
|
+
}
|
|
355
|
+
return null;
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
getContentHash() {
|
|
359
|
+
return a(this, void 0, void 0, function* () {
|
|
360
|
+
const t = yield this._fetchBytes("0xbc1c58d1");
|
|
361
|
+
if (t == null || t === "0x")
|
|
362
|
+
return null;
|
|
363
|
+
const e = t.match(/^0xe3010170(([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f]*))$/);
|
|
364
|
+
if (e) {
|
|
365
|
+
const s = parseInt(e[3], 16);
|
|
366
|
+
if (e[4].length === s * 2)
|
|
367
|
+
return "ipfs://" + M.encode("0x" + e[1]);
|
|
368
|
+
}
|
|
369
|
+
const r = t.match(/^0xe5010172(([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f]*))$/);
|
|
370
|
+
if (r) {
|
|
371
|
+
const s = parseInt(r[3], 16);
|
|
372
|
+
if (r[4].length === s * 2)
|
|
373
|
+
return "ipns://" + M.encode("0x" + r[1]);
|
|
374
|
+
}
|
|
375
|
+
const i = t.match(/^0xe40101fa011b20([0-9a-f]*)$/);
|
|
376
|
+
if (i && i[1].length === 32 * 2)
|
|
377
|
+
return "bzz://" + i[1];
|
|
378
|
+
const n = t.match(/^0x90b2c605([0-9a-f]*)$/);
|
|
379
|
+
if (n && n[1].length === 34 * 2) {
|
|
380
|
+
const s = { "=": "", "+": "-", "/": "_" };
|
|
381
|
+
return "sia://" + pt("0x" + n[1]).replace(/[=+\/]/g, (c) => s[c]);
|
|
382
|
+
}
|
|
383
|
+
return u.throwError("invalid or unsupported content hash data", h.errors.UNSUPPORTED_OPERATION, {
|
|
384
|
+
operation: "getContentHash()",
|
|
385
|
+
data: t
|
|
386
|
+
});
|
|
387
|
+
});
|
|
388
|
+
}
|
|
389
|
+
getText(t) {
|
|
390
|
+
return a(this, void 0, void 0, function* () {
|
|
391
|
+
let e = dt(t);
|
|
392
|
+
e = A([V(64), V(e.length), e]), e.length % 32 !== 0 && (e = A([e, F("0x", 32 - t.length % 32)]));
|
|
393
|
+
const r = yield this._fetchBytes("0x59d1d43c", x(e));
|
|
394
|
+
return r == null || r === "0x" ? null : et(r);
|
|
395
|
+
});
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
let q = null, Et = 1;
|
|
399
|
+
class $t extends ot {
|
|
400
|
+
/**
|
|
401
|
+
* ready
|
|
402
|
+
*
|
|
403
|
+
* A Promise<Network> that resolves only once the provider is ready.
|
|
404
|
+
*
|
|
405
|
+
* Sub-classes that call the super with a network without a chainId
|
|
406
|
+
* MUST set this. Standard named networks have a known chainId.
|
|
407
|
+
*
|
|
408
|
+
*/
|
|
409
|
+
constructor(t) {
|
|
410
|
+
if (super(), this._events = [], this._emitted = { block: -2 }, this.disableCcipRead = !1, this.formatter = new.target.getFormatter(), w(this, "anyNetwork", t === "any"), this.anyNetwork && (t = this.detectNetwork()), t instanceof Promise)
|
|
411
|
+
this._networkPromise = t, t.catch((e) => {
|
|
412
|
+
}), this._ready().catch((e) => {
|
|
413
|
+
});
|
|
414
|
+
else {
|
|
415
|
+
const e = ht(new.target, "getNetwork")(t);
|
|
416
|
+
e ? (w(this, "_network", e), this.emit("network", e, null)) : u.throwArgumentError("invalid network", "network", t);
|
|
417
|
+
}
|
|
418
|
+
this._maxInternalBlockNumber = -1024, this._lastBlockNumber = -2, this._maxFilterBlockRange = 10, this._pollingInterval = 4e3, this._fastQueryDate = 0;
|
|
419
|
+
}
|
|
420
|
+
_ready() {
|
|
421
|
+
return a(this, void 0, void 0, function* () {
|
|
422
|
+
if (this._network == null) {
|
|
423
|
+
let t = null;
|
|
424
|
+
if (this._networkPromise)
|
|
425
|
+
try {
|
|
426
|
+
t = yield this._networkPromise;
|
|
427
|
+
} catch {
|
|
428
|
+
}
|
|
429
|
+
t == null && (t = yield this.detectNetwork()), t || u.throwError("no network detected", h.errors.UNKNOWN_ERROR, {}), this._network == null && (this.anyNetwork ? this._network = t : w(this, "_network", t), this.emit("network", t, null));
|
|
430
|
+
}
|
|
431
|
+
return this._network;
|
|
432
|
+
});
|
|
433
|
+
}
|
|
434
|
+
// This will always return the most recently established network.
|
|
435
|
+
// For "any", this can change (a "network" event is emitted before
|
|
436
|
+
// any change is reflected); otherwise this cannot change
|
|
437
|
+
get ready() {
|
|
438
|
+
return S(() => this._ready().then((t) => t, (t) => {
|
|
439
|
+
if (!(t.code === h.errors.NETWORK_ERROR && t.event === "noNetwork"))
|
|
440
|
+
throw t;
|
|
441
|
+
}));
|
|
442
|
+
}
|
|
443
|
+
// @TODO: Remove this and just create a singleton formatter
|
|
444
|
+
static getFormatter() {
|
|
445
|
+
return q == null && (q = new H()), q;
|
|
446
|
+
}
|
|
447
|
+
// @TODO: Remove this and just use getNetwork
|
|
448
|
+
static getNetwork(t) {
|
|
449
|
+
return ct(t ?? "homestead");
|
|
450
|
+
}
|
|
451
|
+
ccipReadFetch(t, e, r) {
|
|
452
|
+
return a(this, void 0, void 0, function* () {
|
|
453
|
+
if (this.disableCcipRead || r.length === 0)
|
|
454
|
+
return null;
|
|
455
|
+
const i = t.to.toLowerCase(), n = e.toLowerCase(), s = [];
|
|
456
|
+
for (let l = 0; l < r.length; l++) {
|
|
457
|
+
const c = r[l], d = c.replace("{sender}", i).replace("{data}", n), m = c.indexOf("{data}") >= 0 ? null : JSON.stringify({ data: n, sender: i }), g = yield rt({ url: d, errorPassThrough: !0 }, m, (_, p) => (_.status = p.statusCode, _));
|
|
458
|
+
if (g.data)
|
|
459
|
+
return g.data;
|
|
460
|
+
const f = g.message || "unknown error";
|
|
461
|
+
if (g.status >= 400 && g.status < 500)
|
|
462
|
+
return u.throwError(`response not found during CCIP fetch: ${f}`, h.errors.SERVER_ERROR, { url: c, errorMessage: f });
|
|
463
|
+
s.push(f);
|
|
464
|
+
}
|
|
465
|
+
return u.throwError(`error encountered during CCIP fetch: ${s.map((l) => JSON.stringify(l)).join(", ")}`, h.errors.SERVER_ERROR, {
|
|
466
|
+
urls: r,
|
|
467
|
+
errorMessages: s
|
|
468
|
+
});
|
|
469
|
+
});
|
|
470
|
+
}
|
|
471
|
+
// Fetches the blockNumber, but will reuse any result that is less
|
|
472
|
+
// than maxAge old or has been requested since the last request
|
|
473
|
+
_getInternalBlockNumber(t) {
|
|
474
|
+
return a(this, void 0, void 0, function* () {
|
|
475
|
+
if (yield this._ready(), t > 0)
|
|
476
|
+
for (; this._internalBlockNumber; ) {
|
|
477
|
+
const i = this._internalBlockNumber;
|
|
478
|
+
try {
|
|
479
|
+
const n = yield i;
|
|
480
|
+
if (I() - n.respTime <= t)
|
|
481
|
+
return n.blockNumber;
|
|
482
|
+
break;
|
|
483
|
+
} catch {
|
|
484
|
+
if (this._internalBlockNumber === i)
|
|
485
|
+
break;
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
const e = I(), r = E({
|
|
489
|
+
blockNumber: this.perform("getBlockNumber", {}),
|
|
490
|
+
networkError: this.getNetwork().then((i) => null, (i) => i)
|
|
491
|
+
}).then(({ blockNumber: i, networkError: n }) => {
|
|
492
|
+
if (n)
|
|
493
|
+
throw this._internalBlockNumber === r && (this._internalBlockNumber = null), n;
|
|
494
|
+
const s = I();
|
|
495
|
+
return i = k.from(i).toNumber(), i < this._maxInternalBlockNumber && (i = this._maxInternalBlockNumber), this._maxInternalBlockNumber = i, this._setFastBlockNumber(i), { blockNumber: i, reqTime: e, respTime: s };
|
|
496
|
+
});
|
|
497
|
+
return this._internalBlockNumber = r, r.catch((i) => {
|
|
498
|
+
this._internalBlockNumber === r && (this._internalBlockNumber = null);
|
|
499
|
+
}), (yield r).blockNumber;
|
|
500
|
+
});
|
|
501
|
+
}
|
|
502
|
+
poll() {
|
|
503
|
+
return a(this, void 0, void 0, function* () {
|
|
504
|
+
const t = Et++, e = [];
|
|
505
|
+
let r = null;
|
|
506
|
+
try {
|
|
507
|
+
r = yield this._getInternalBlockNumber(100 + this.pollingInterval / 2);
|
|
508
|
+
} catch (i) {
|
|
509
|
+
this.emit("error", i);
|
|
510
|
+
return;
|
|
511
|
+
}
|
|
512
|
+
if (this._setFastBlockNumber(r), this.emit("poll", t, r), r === this._lastBlockNumber) {
|
|
513
|
+
this.emit("didPoll", t);
|
|
514
|
+
return;
|
|
515
|
+
}
|
|
516
|
+
if (this._emitted.block === -2 && (this._emitted.block = r - 1), Math.abs(this._emitted.block - r) > 1e3)
|
|
517
|
+
u.warn(`network block skew detected; skipping block events (emitted=${this._emitted.block} blockNumber${r})`), this.emit("error", u.makeError("network block skew detected", h.errors.NETWORK_ERROR, {
|
|
518
|
+
blockNumber: r,
|
|
519
|
+
event: "blockSkew",
|
|
520
|
+
previousBlockNumber: this._emitted.block
|
|
521
|
+
})), this.emit("block", r);
|
|
522
|
+
else
|
|
523
|
+
for (let i = this._emitted.block + 1; i <= r; i++)
|
|
524
|
+
this.emit("block", i);
|
|
525
|
+
this._emitted.block !== r && (this._emitted.block = r, Object.keys(this._emitted).forEach((i) => {
|
|
526
|
+
if (i === "block")
|
|
527
|
+
return;
|
|
528
|
+
const n = this._emitted[i];
|
|
529
|
+
n !== "pending" && r - n > 12 && delete this._emitted[i];
|
|
530
|
+
})), this._lastBlockNumber === -2 && (this._lastBlockNumber = r - 1), this._events.forEach((i) => {
|
|
531
|
+
switch (i.type) {
|
|
532
|
+
case "tx": {
|
|
533
|
+
const n = i.hash;
|
|
534
|
+
let s = this.getTransactionReceipt(n).then((l) => (!l || l.blockNumber == null || (this._emitted["t:" + n] = l.blockNumber, this.emit(n, l)), null)).catch((l) => {
|
|
535
|
+
this.emit("error", l);
|
|
536
|
+
});
|
|
537
|
+
e.push(s);
|
|
538
|
+
break;
|
|
539
|
+
}
|
|
540
|
+
case "filter": {
|
|
541
|
+
if (!i._inflight) {
|
|
542
|
+
i._inflight = !0, i._lastBlockNumber === -2 && (i._lastBlockNumber = r - 1);
|
|
543
|
+
const n = i.filter;
|
|
544
|
+
n.fromBlock = i._lastBlockNumber + 1, n.toBlock = r;
|
|
545
|
+
const s = n.toBlock - this._maxFilterBlockRange;
|
|
546
|
+
s > n.fromBlock && (n.fromBlock = s), n.fromBlock < 0 && (n.fromBlock = 0);
|
|
547
|
+
const l = this.getLogs(n).then((c) => {
|
|
548
|
+
i._inflight = !1, c.length !== 0 && c.forEach((d) => {
|
|
549
|
+
d.blockNumber > i._lastBlockNumber && (i._lastBlockNumber = d.blockNumber), this._emitted["b:" + d.blockHash] = d.blockNumber, this._emitted["t:" + d.transactionHash] = d.blockNumber, this.emit(n, d);
|
|
550
|
+
});
|
|
551
|
+
}).catch((c) => {
|
|
552
|
+
this.emit("error", c), i._inflight = !1;
|
|
553
|
+
});
|
|
554
|
+
e.push(l);
|
|
555
|
+
}
|
|
556
|
+
break;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}), this._lastBlockNumber = r, Promise.all(e).then(() => {
|
|
560
|
+
this.emit("didPoll", t);
|
|
561
|
+
}).catch((i) => {
|
|
562
|
+
this.emit("error", i);
|
|
563
|
+
});
|
|
564
|
+
});
|
|
565
|
+
}
|
|
566
|
+
// Deprecated; do not use this
|
|
567
|
+
resetEventsBlock(t) {
|
|
568
|
+
this._lastBlockNumber = t - 1, this.polling && this.poll();
|
|
569
|
+
}
|
|
570
|
+
get network() {
|
|
571
|
+
return this._network;
|
|
572
|
+
}
|
|
573
|
+
// This method should query the network if the underlying network
|
|
574
|
+
// can change, such as when connected to a JSON-RPC backend
|
|
575
|
+
detectNetwork() {
|
|
576
|
+
return a(this, void 0, void 0, function* () {
|
|
577
|
+
return u.throwError("provider does not support network detection", h.errors.UNSUPPORTED_OPERATION, {
|
|
578
|
+
operation: "provider.detectNetwork"
|
|
579
|
+
});
|
|
580
|
+
});
|
|
581
|
+
}
|
|
582
|
+
getNetwork() {
|
|
583
|
+
return a(this, void 0, void 0, function* () {
|
|
584
|
+
const t = yield this._ready(), e = yield this.detectNetwork();
|
|
585
|
+
if (t.chainId !== e.chainId) {
|
|
586
|
+
if (this.anyNetwork)
|
|
587
|
+
return this._network = e, this._lastBlockNumber = -2, this._fastBlockNumber = null, this._fastBlockNumberPromise = null, this._fastQueryDate = 0, this._emitted.block = -2, this._maxInternalBlockNumber = -1024, this._internalBlockNumber = null, this.emit("network", e, t), yield Q(0), this._network;
|
|
588
|
+
const r = u.makeError("underlying network changed", h.errors.NETWORK_ERROR, {
|
|
589
|
+
event: "changed",
|
|
590
|
+
network: t,
|
|
591
|
+
detectedNetwork: e
|
|
592
|
+
});
|
|
593
|
+
throw this.emit("error", r), r;
|
|
594
|
+
}
|
|
595
|
+
return t;
|
|
596
|
+
});
|
|
597
|
+
}
|
|
598
|
+
get blockNumber() {
|
|
599
|
+
return this._getInternalBlockNumber(100 + this.pollingInterval / 2).then((t) => {
|
|
600
|
+
this._setFastBlockNumber(t);
|
|
601
|
+
}, (t) => {
|
|
602
|
+
}), this._fastBlockNumber != null ? this._fastBlockNumber : -1;
|
|
603
|
+
}
|
|
604
|
+
get polling() {
|
|
605
|
+
return this._poller != null;
|
|
606
|
+
}
|
|
607
|
+
set polling(t) {
|
|
608
|
+
t && !this._poller ? (this._poller = setInterval(() => {
|
|
609
|
+
this.poll();
|
|
610
|
+
}, this.pollingInterval), this._bootstrapPoll || (this._bootstrapPoll = setTimeout(() => {
|
|
611
|
+
this.poll(), this._bootstrapPoll = setTimeout(() => {
|
|
612
|
+
this._poller || this.poll(), this._bootstrapPoll = null;
|
|
613
|
+
}, this.pollingInterval);
|
|
614
|
+
}, 0))) : !t && this._poller && (clearInterval(this._poller), this._poller = null);
|
|
615
|
+
}
|
|
616
|
+
get pollingInterval() {
|
|
617
|
+
return this._pollingInterval;
|
|
618
|
+
}
|
|
619
|
+
set pollingInterval(t) {
|
|
620
|
+
if (typeof t != "number" || t <= 0 || parseInt(String(t)) != t)
|
|
621
|
+
throw new Error("invalid polling interval");
|
|
622
|
+
this._pollingInterval = t, this._poller && (clearInterval(this._poller), this._poller = setInterval(() => {
|
|
623
|
+
this.poll();
|
|
624
|
+
}, this._pollingInterval));
|
|
625
|
+
}
|
|
626
|
+
_getFastBlockNumber() {
|
|
627
|
+
const t = I();
|
|
628
|
+
return t - this._fastQueryDate > 2 * this._pollingInterval && (this._fastQueryDate = t, this._fastBlockNumberPromise = this.getBlockNumber().then((e) => ((this._fastBlockNumber == null || e > this._fastBlockNumber) && (this._fastBlockNumber = e), this._fastBlockNumber))), this._fastBlockNumberPromise;
|
|
629
|
+
}
|
|
630
|
+
_setFastBlockNumber(t) {
|
|
631
|
+
this._fastBlockNumber != null && t < this._fastBlockNumber || (this._fastQueryDate = I(), (this._fastBlockNumber == null || t > this._fastBlockNumber) && (this._fastBlockNumber = t, this._fastBlockNumberPromise = Promise.resolve(t)));
|
|
632
|
+
}
|
|
633
|
+
waitForTransaction(t, e, r) {
|
|
634
|
+
return a(this, void 0, void 0, function* () {
|
|
635
|
+
return this._waitForTransaction(t, e ?? 1, r || 0, null);
|
|
636
|
+
});
|
|
637
|
+
}
|
|
638
|
+
_waitForTransaction(t, e, r, i) {
|
|
639
|
+
return a(this, void 0, void 0, function* () {
|
|
640
|
+
const n = yield this.getTransactionReceipt(t);
|
|
641
|
+
return (n ? n.confirmations : 0) >= e ? n : new Promise((s, l) => {
|
|
642
|
+
const c = [];
|
|
643
|
+
let d = !1;
|
|
644
|
+
const m = function() {
|
|
645
|
+
return d ? !0 : (d = !0, c.forEach((f) => {
|
|
646
|
+
f();
|
|
647
|
+
}), !1);
|
|
648
|
+
}, g = (f) => {
|
|
649
|
+
f.confirmations < e || m() || s(f);
|
|
650
|
+
};
|
|
651
|
+
if (this.on(t, g), c.push(() => {
|
|
652
|
+
this.removeListener(t, g);
|
|
653
|
+
}), i) {
|
|
654
|
+
let f = i.startBlock, _ = null;
|
|
655
|
+
const p = (b) => a(this, void 0, void 0, function* () {
|
|
656
|
+
d || (yield Q(1e3), this.getTransactionCount(i.from).then((C) => a(this, void 0, void 0, function* () {
|
|
657
|
+
if (!d) {
|
|
658
|
+
if (C <= i.nonce)
|
|
659
|
+
f = b;
|
|
660
|
+
else {
|
|
661
|
+
{
|
|
662
|
+
const N = yield this.getTransaction(t);
|
|
663
|
+
if (N && N.blockNumber != null)
|
|
664
|
+
return;
|
|
665
|
+
}
|
|
666
|
+
for (_ == null && (_ = f - 3, _ < i.startBlock && (_ = i.startBlock)); _ <= b; ) {
|
|
667
|
+
if (d)
|
|
668
|
+
return;
|
|
669
|
+
const N = yield this.getBlockWithTransactions(_);
|
|
670
|
+
for (let B = 0; B < N.transactions.length; B++) {
|
|
671
|
+
const y = N.transactions[B];
|
|
672
|
+
if (y.hash === t)
|
|
673
|
+
return;
|
|
674
|
+
if (y.from === i.from && y.nonce === i.nonce) {
|
|
675
|
+
if (d)
|
|
676
|
+
return;
|
|
677
|
+
const st = yield this.waitForTransaction(y.hash, e);
|
|
678
|
+
if (m())
|
|
679
|
+
return;
|
|
680
|
+
let P = "replaced";
|
|
681
|
+
y.data === i.data && y.to === i.to && y.value.eq(i.value) ? P = "repriced" : y.data === "0x" && y.from === y.to && y.value.isZero() && (P = "cancelled"), l(u.makeError("transaction was replaced", h.errors.TRANSACTION_REPLACED, {
|
|
682
|
+
cancelled: P === "replaced" || P === "cancelled",
|
|
683
|
+
reason: P,
|
|
684
|
+
replacement: this._wrapTransaction(y),
|
|
685
|
+
hash: t,
|
|
686
|
+
receipt: st
|
|
687
|
+
}));
|
|
688
|
+
return;
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
_++;
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
d || this.once("block", p);
|
|
695
|
+
}
|
|
696
|
+
}), (C) => {
|
|
697
|
+
d || this.once("block", p);
|
|
698
|
+
}));
|
|
699
|
+
});
|
|
700
|
+
if (d)
|
|
701
|
+
return;
|
|
702
|
+
this.once("block", p), c.push(() => {
|
|
703
|
+
this.removeListener("block", p);
|
|
704
|
+
});
|
|
705
|
+
}
|
|
706
|
+
if (typeof r == "number" && r > 0) {
|
|
707
|
+
const f = setTimeout(() => {
|
|
708
|
+
m() || l(u.makeError("timeout exceeded", h.errors.TIMEOUT, { timeout: r }));
|
|
709
|
+
}, r);
|
|
710
|
+
f.unref && f.unref(), c.push(() => {
|
|
711
|
+
clearTimeout(f);
|
|
712
|
+
});
|
|
713
|
+
}
|
|
714
|
+
});
|
|
715
|
+
});
|
|
716
|
+
}
|
|
717
|
+
getBlockNumber() {
|
|
718
|
+
return a(this, void 0, void 0, function* () {
|
|
719
|
+
return this._getInternalBlockNumber(0);
|
|
720
|
+
});
|
|
721
|
+
}
|
|
722
|
+
getGasPrice() {
|
|
723
|
+
return a(this, void 0, void 0, function* () {
|
|
724
|
+
yield this.getNetwork();
|
|
725
|
+
const t = yield this.perform("getGasPrice", {});
|
|
726
|
+
try {
|
|
727
|
+
return k.from(t);
|
|
728
|
+
} catch (e) {
|
|
729
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
730
|
+
method: "getGasPrice",
|
|
731
|
+
result: t,
|
|
732
|
+
error: e
|
|
733
|
+
});
|
|
734
|
+
}
|
|
735
|
+
});
|
|
736
|
+
}
|
|
737
|
+
getBalance(t, e) {
|
|
738
|
+
return a(this, void 0, void 0, function* () {
|
|
739
|
+
yield this.getNetwork();
|
|
740
|
+
const r = yield E({
|
|
741
|
+
address: this._getAddress(t),
|
|
742
|
+
blockTag: this._getBlockTag(e)
|
|
743
|
+
}), i = yield this.perform("getBalance", r);
|
|
744
|
+
try {
|
|
745
|
+
return k.from(i);
|
|
746
|
+
} catch (n) {
|
|
747
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
748
|
+
method: "getBalance",
|
|
749
|
+
params: r,
|
|
750
|
+
result: i,
|
|
751
|
+
error: n
|
|
752
|
+
});
|
|
753
|
+
}
|
|
754
|
+
});
|
|
755
|
+
}
|
|
756
|
+
getTransactionCount(t, e) {
|
|
757
|
+
return a(this, void 0, void 0, function* () {
|
|
758
|
+
yield this.getNetwork();
|
|
759
|
+
const r = yield E({
|
|
760
|
+
address: this._getAddress(t),
|
|
761
|
+
blockTag: this._getBlockTag(e)
|
|
762
|
+
}), i = yield this.perform("getTransactionCount", r);
|
|
763
|
+
try {
|
|
764
|
+
return k.from(i).toNumber();
|
|
765
|
+
} catch (n) {
|
|
766
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
767
|
+
method: "getTransactionCount",
|
|
768
|
+
params: r,
|
|
769
|
+
result: i,
|
|
770
|
+
error: n
|
|
771
|
+
});
|
|
772
|
+
}
|
|
773
|
+
});
|
|
774
|
+
}
|
|
775
|
+
getCode(t, e) {
|
|
776
|
+
return a(this, void 0, void 0, function* () {
|
|
777
|
+
yield this.getNetwork();
|
|
778
|
+
const r = yield E({
|
|
779
|
+
address: this._getAddress(t),
|
|
780
|
+
blockTag: this._getBlockTag(e)
|
|
781
|
+
}), i = yield this.perform("getCode", r);
|
|
782
|
+
try {
|
|
783
|
+
return x(i);
|
|
784
|
+
} catch (n) {
|
|
785
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
786
|
+
method: "getCode",
|
|
787
|
+
params: r,
|
|
788
|
+
result: i,
|
|
789
|
+
error: n
|
|
790
|
+
});
|
|
791
|
+
}
|
|
792
|
+
});
|
|
793
|
+
}
|
|
794
|
+
getStorageAt(t, e, r) {
|
|
795
|
+
return a(this, void 0, void 0, function* () {
|
|
796
|
+
yield this.getNetwork();
|
|
797
|
+
const i = yield E({
|
|
798
|
+
address: this._getAddress(t),
|
|
799
|
+
blockTag: this._getBlockTag(r),
|
|
800
|
+
position: Promise.resolve(e).then((s) => at(s))
|
|
801
|
+
}), n = yield this.perform("getStorageAt", i);
|
|
802
|
+
try {
|
|
803
|
+
return x(n);
|
|
804
|
+
} catch (s) {
|
|
805
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
806
|
+
method: "getStorageAt",
|
|
807
|
+
params: i,
|
|
808
|
+
result: n,
|
|
809
|
+
error: s
|
|
810
|
+
});
|
|
811
|
+
}
|
|
812
|
+
});
|
|
813
|
+
}
|
|
814
|
+
// This should be called by any subclass wrapping a TransactionResponse
|
|
815
|
+
_wrapTransaction(t, e, r) {
|
|
816
|
+
if (e != null && W(e) !== 32)
|
|
817
|
+
throw new Error("invalid response - sendTransaction");
|
|
818
|
+
const i = t;
|
|
819
|
+
return e != null && t.hash !== e && u.throwError("Transaction hash mismatch from Provider.sendTransaction.", h.errors.UNKNOWN_ERROR, { expectedHash: t.hash, returnedHash: e }), i.wait = (n, s) => a(this, void 0, void 0, function* () {
|
|
820
|
+
n == null && (n = 1), s == null && (s = 0);
|
|
821
|
+
let l;
|
|
822
|
+
n !== 0 && r != null && (l = {
|
|
823
|
+
data: t.data,
|
|
824
|
+
from: t.from,
|
|
825
|
+
nonce: t.nonce,
|
|
826
|
+
to: t.to,
|
|
827
|
+
value: t.value,
|
|
828
|
+
startBlock: r
|
|
829
|
+
});
|
|
830
|
+
const c = yield this._waitForTransaction(t.hash, n, s, l);
|
|
831
|
+
return c == null && n === 0 ? null : (this._emitted["t:" + t.hash] = c.blockNumber, c.status === 0 && u.throwError("transaction failed", h.errors.CALL_EXCEPTION, {
|
|
832
|
+
transactionHash: t.hash,
|
|
833
|
+
transaction: t,
|
|
834
|
+
receipt: c
|
|
835
|
+
}), c);
|
|
836
|
+
}), i;
|
|
837
|
+
}
|
|
838
|
+
sendTransaction(t) {
|
|
839
|
+
return a(this, void 0, void 0, function* () {
|
|
840
|
+
yield this.getNetwork();
|
|
841
|
+
const e = yield Promise.resolve(t).then((n) => x(n)), r = this.formatter.transaction(t);
|
|
842
|
+
r.confirmations == null && (r.confirmations = 0);
|
|
843
|
+
const i = yield this._getInternalBlockNumber(100 + 2 * this.pollingInterval);
|
|
844
|
+
try {
|
|
845
|
+
const n = yield this.perform("sendTransaction", { signedTransaction: e });
|
|
846
|
+
return this._wrapTransaction(r, n, i);
|
|
847
|
+
} catch (n) {
|
|
848
|
+
throw n.transaction = r, n.transactionHash = r.hash, n;
|
|
849
|
+
}
|
|
850
|
+
});
|
|
851
|
+
}
|
|
852
|
+
_getTransactionRequest(t) {
|
|
853
|
+
return a(this, void 0, void 0, function* () {
|
|
854
|
+
const e = yield t, r = {};
|
|
855
|
+
return ["from", "to"].forEach((i) => {
|
|
856
|
+
e[i] != null && (r[i] = Promise.resolve(e[i]).then((n) => n ? this._getAddress(n) : null));
|
|
857
|
+
}), ["gasLimit", "gasPrice", "maxFeePerGas", "maxPriorityFeePerGas", "value"].forEach((i) => {
|
|
858
|
+
e[i] != null && (r[i] = Promise.resolve(e[i]).then((n) => n ? k.from(n) : null));
|
|
859
|
+
}), ["type"].forEach((i) => {
|
|
860
|
+
e[i] != null && (r[i] = Promise.resolve(e[i]).then((n) => n ?? null));
|
|
861
|
+
}), e.accessList && (r.accessList = this.formatter.accessList(e.accessList)), ["data"].forEach((i) => {
|
|
862
|
+
e[i] != null && (r[i] = Promise.resolve(e[i]).then((n) => n ? x(n) : null));
|
|
863
|
+
}), this.formatter.transactionRequest(yield E(r));
|
|
864
|
+
});
|
|
865
|
+
}
|
|
866
|
+
_getFilter(t) {
|
|
867
|
+
return a(this, void 0, void 0, function* () {
|
|
868
|
+
t = yield t;
|
|
869
|
+
const e = {};
|
|
870
|
+
return t.address != null && (e.address = this._getAddress(t.address)), ["blockHash", "topics"].forEach((r) => {
|
|
871
|
+
t[r] != null && (e[r] = t[r]);
|
|
872
|
+
}), ["fromBlock", "toBlock"].forEach((r) => {
|
|
873
|
+
t[r] != null && (e[r] = this._getBlockTag(t[r]));
|
|
874
|
+
}), this.formatter.filter(yield E(e));
|
|
875
|
+
});
|
|
876
|
+
}
|
|
877
|
+
_call(t, e, r) {
|
|
878
|
+
return a(this, void 0, void 0, function* () {
|
|
879
|
+
r >= gt && u.throwError("CCIP read exceeded maximum redirections", h.errors.SERVER_ERROR, {
|
|
880
|
+
redirects: r,
|
|
881
|
+
transaction: t
|
|
882
|
+
});
|
|
883
|
+
const i = t.to, n = yield this.perform("call", { transaction: t, blockTag: e });
|
|
884
|
+
if (r >= 0 && e === "latest" && i != null && n.substring(0, 10) === "0x556f1830" && W(n) % 32 === 4)
|
|
885
|
+
try {
|
|
886
|
+
const s = v(n, 4), l = v(s, 0, 32);
|
|
887
|
+
k.from(l).eq(i) || u.throwError("CCIP Read sender did not match", h.errors.CALL_EXCEPTION, {
|
|
888
|
+
name: "OffchainLookup",
|
|
889
|
+
signature: "OffchainLookup(address,string[],bytes,bytes4,bytes)",
|
|
890
|
+
transaction: t,
|
|
891
|
+
data: n
|
|
892
|
+
});
|
|
893
|
+
const c = [], d = k.from(v(s, 32, 64)).toNumber(), m = k.from(v(s, d, d + 32)).toNumber(), g = v(s, d + 32);
|
|
894
|
+
for (let N = 0; N < m; N++) {
|
|
895
|
+
const B = D(g, N * 32);
|
|
896
|
+
B == null && u.throwError("CCIP Read contained corrupt URL string", h.errors.CALL_EXCEPTION, {
|
|
897
|
+
name: "OffchainLookup",
|
|
898
|
+
signature: "OffchainLookup(address,string[],bytes,bytes4,bytes)",
|
|
899
|
+
transaction: t,
|
|
900
|
+
data: n
|
|
901
|
+
}), c.push(B);
|
|
902
|
+
}
|
|
903
|
+
const f = O(s, 64);
|
|
904
|
+
k.from(v(s, 100, 128)).isZero() || u.throwError("CCIP Read callback selector included junk", h.errors.CALL_EXCEPTION, {
|
|
905
|
+
name: "OffchainLookup",
|
|
906
|
+
signature: "OffchainLookup(address,string[],bytes,bytes4,bytes)",
|
|
907
|
+
transaction: t,
|
|
908
|
+
data: n
|
|
909
|
+
});
|
|
910
|
+
const _ = v(s, 96, 100), p = O(s, 128), b = yield this.ccipReadFetch(t, f, c);
|
|
911
|
+
b == null && u.throwError("CCIP Read disabled or provided no URLs", h.errors.CALL_EXCEPTION, {
|
|
912
|
+
name: "OffchainLookup",
|
|
913
|
+
signature: "OffchainLookup(address,string[],bytes,bytes4,bytes)",
|
|
914
|
+
transaction: t,
|
|
915
|
+
data: n
|
|
916
|
+
});
|
|
917
|
+
const C = {
|
|
918
|
+
to: i,
|
|
919
|
+
data: R([_, nt([b, p])])
|
|
920
|
+
};
|
|
921
|
+
return this._call(C, e, r + 1);
|
|
922
|
+
} catch (s) {
|
|
923
|
+
if (s.code === h.errors.SERVER_ERROR)
|
|
924
|
+
throw s;
|
|
925
|
+
}
|
|
926
|
+
try {
|
|
927
|
+
return x(n);
|
|
928
|
+
} catch (s) {
|
|
929
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
930
|
+
method: "call",
|
|
931
|
+
params: { transaction: t, blockTag: e },
|
|
932
|
+
result: n,
|
|
933
|
+
error: s
|
|
934
|
+
});
|
|
935
|
+
}
|
|
936
|
+
});
|
|
937
|
+
}
|
|
938
|
+
call(t, e) {
|
|
939
|
+
return a(this, void 0, void 0, function* () {
|
|
940
|
+
yield this.getNetwork();
|
|
941
|
+
const r = yield E({
|
|
942
|
+
transaction: this._getTransactionRequest(t),
|
|
943
|
+
blockTag: this._getBlockTag(e),
|
|
944
|
+
ccipReadEnabled: Promise.resolve(t.ccipReadEnabled)
|
|
945
|
+
});
|
|
946
|
+
return this._call(r.transaction, r.blockTag, r.ccipReadEnabled ? 0 : -1);
|
|
947
|
+
});
|
|
948
|
+
}
|
|
949
|
+
estimateGas(t) {
|
|
950
|
+
return a(this, void 0, void 0, function* () {
|
|
951
|
+
yield this.getNetwork();
|
|
952
|
+
const e = yield E({
|
|
953
|
+
transaction: this._getTransactionRequest(t)
|
|
954
|
+
}), r = yield this.perform("estimateGas", e);
|
|
955
|
+
try {
|
|
956
|
+
return k.from(r);
|
|
957
|
+
} catch (i) {
|
|
958
|
+
return u.throwError("bad result from backend", h.errors.SERVER_ERROR, {
|
|
959
|
+
method: "estimateGas",
|
|
960
|
+
params: e,
|
|
961
|
+
result: r,
|
|
962
|
+
error: i
|
|
963
|
+
});
|
|
964
|
+
}
|
|
965
|
+
});
|
|
966
|
+
}
|
|
967
|
+
_getAddress(t) {
|
|
968
|
+
return a(this, void 0, void 0, function* () {
|
|
969
|
+
t = yield t, typeof t != "string" && u.throwArgumentError("invalid address or ENS name", "name", t);
|
|
970
|
+
const e = yield this.resolveName(t);
|
|
971
|
+
return e == null && u.throwError("ENS name not configured", h.errors.UNSUPPORTED_OPERATION, {
|
|
972
|
+
operation: `resolveName(${JSON.stringify(t)})`
|
|
973
|
+
}), e;
|
|
974
|
+
});
|
|
975
|
+
}
|
|
976
|
+
_getBlock(t, e) {
|
|
977
|
+
return a(this, void 0, void 0, function* () {
|
|
978
|
+
yield this.getNetwork(), t = yield t;
|
|
979
|
+
let r = -128;
|
|
980
|
+
const i = {
|
|
981
|
+
includeTransactions: !!e
|
|
982
|
+
};
|
|
983
|
+
if (L(t, 32))
|
|
984
|
+
i.blockHash = t;
|
|
985
|
+
else
|
|
986
|
+
try {
|
|
987
|
+
i.blockTag = yield this._getBlockTag(t), L(i.blockTag) && (r = parseInt(i.blockTag.substring(2), 16));
|
|
988
|
+
} catch {
|
|
989
|
+
u.throwArgumentError("invalid block hash or block tag", "blockHashOrBlockTag", t);
|
|
990
|
+
}
|
|
991
|
+
return S(() => a(this, void 0, void 0, function* () {
|
|
992
|
+
const n = yield this.perform("getBlock", i);
|
|
993
|
+
if (n == null)
|
|
994
|
+
return i.blockHash != null && this._emitted["b:" + i.blockHash] == null || i.blockTag != null && r > this._emitted.block ? null : void 0;
|
|
995
|
+
if (e) {
|
|
996
|
+
let s = null;
|
|
997
|
+
for (let c = 0; c < n.transactions.length; c++) {
|
|
998
|
+
const d = n.transactions[c];
|
|
999
|
+
if (d.blockNumber == null)
|
|
1000
|
+
d.confirmations = 0;
|
|
1001
|
+
else if (d.confirmations == null) {
|
|
1002
|
+
s == null && (s = yield this._getInternalBlockNumber(100 + 2 * this.pollingInterval));
|
|
1003
|
+
let m = s - d.blockNumber + 1;
|
|
1004
|
+
m <= 0 && (m = 1), d.confirmations = m;
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
const l = this.formatter.blockWithTransactions(n);
|
|
1008
|
+
return l.transactions = l.transactions.map((c) => this._wrapTransaction(c)), l;
|
|
1009
|
+
}
|
|
1010
|
+
return this.formatter.block(n);
|
|
1011
|
+
}), { oncePoll: this });
|
|
1012
|
+
});
|
|
1013
|
+
}
|
|
1014
|
+
getBlock(t) {
|
|
1015
|
+
return this._getBlock(t, !1);
|
|
1016
|
+
}
|
|
1017
|
+
getBlockWithTransactions(t) {
|
|
1018
|
+
return this._getBlock(t, !0);
|
|
1019
|
+
}
|
|
1020
|
+
getTransaction(t) {
|
|
1021
|
+
return a(this, void 0, void 0, function* () {
|
|
1022
|
+
yield this.getNetwork(), t = yield t;
|
|
1023
|
+
const e = { transactionHash: this.formatter.hash(t, !0) };
|
|
1024
|
+
return S(() => a(this, void 0, void 0, function* () {
|
|
1025
|
+
const r = yield this.perform("getTransaction", e);
|
|
1026
|
+
if (r == null)
|
|
1027
|
+
return this._emitted["t:" + t] == null ? null : void 0;
|
|
1028
|
+
const i = this.formatter.transactionResponse(r);
|
|
1029
|
+
if (i.blockNumber == null)
|
|
1030
|
+
i.confirmations = 0;
|
|
1031
|
+
else if (i.confirmations == null) {
|
|
1032
|
+
let s = (yield this._getInternalBlockNumber(100 + 2 * this.pollingInterval)) - i.blockNumber + 1;
|
|
1033
|
+
s <= 0 && (s = 1), i.confirmations = s;
|
|
1034
|
+
}
|
|
1035
|
+
return this._wrapTransaction(i);
|
|
1036
|
+
}), { oncePoll: this });
|
|
1037
|
+
});
|
|
1038
|
+
}
|
|
1039
|
+
getTransactionReceipt(t) {
|
|
1040
|
+
return a(this, void 0, void 0, function* () {
|
|
1041
|
+
yield this.getNetwork(), t = yield t;
|
|
1042
|
+
const e = { transactionHash: this.formatter.hash(t, !0) };
|
|
1043
|
+
return S(() => a(this, void 0, void 0, function* () {
|
|
1044
|
+
const r = yield this.perform("getTransactionReceipt", e);
|
|
1045
|
+
if (r == null)
|
|
1046
|
+
return this._emitted["t:" + t] == null ? null : void 0;
|
|
1047
|
+
if (r.blockHash == null)
|
|
1048
|
+
return;
|
|
1049
|
+
const i = this.formatter.receipt(r);
|
|
1050
|
+
if (i.blockNumber == null)
|
|
1051
|
+
i.confirmations = 0;
|
|
1052
|
+
else if (i.confirmations == null) {
|
|
1053
|
+
let s = (yield this._getInternalBlockNumber(100 + 2 * this.pollingInterval)) - i.blockNumber + 1;
|
|
1054
|
+
s <= 0 && (s = 1), i.confirmations = s;
|
|
1055
|
+
}
|
|
1056
|
+
return i;
|
|
1057
|
+
}), { oncePoll: this });
|
|
1058
|
+
});
|
|
1059
|
+
}
|
|
1060
|
+
getLogs(t) {
|
|
1061
|
+
return a(this, void 0, void 0, function* () {
|
|
1062
|
+
yield this.getNetwork();
|
|
1063
|
+
const e = yield E({ filter: this._getFilter(t) }), r = yield this.perform("getLogs", e);
|
|
1064
|
+
return r.forEach((i) => {
|
|
1065
|
+
i.removed == null && (i.removed = !1);
|
|
1066
|
+
}), H.arrayOf(this.formatter.filterLog.bind(this.formatter))(r);
|
|
1067
|
+
});
|
|
1068
|
+
}
|
|
1069
|
+
getEtherPrice() {
|
|
1070
|
+
return a(this, void 0, void 0, function* () {
|
|
1071
|
+
return yield this.getNetwork(), this.perform("getEtherPrice", {});
|
|
1072
|
+
});
|
|
1073
|
+
}
|
|
1074
|
+
_getBlockTag(t) {
|
|
1075
|
+
return a(this, void 0, void 0, function* () {
|
|
1076
|
+
if (t = yield t, typeof t == "number" && t < 0) {
|
|
1077
|
+
t % 1 && u.throwArgumentError("invalid BlockTag", "blockTag", t);
|
|
1078
|
+
let e = yield this._getInternalBlockNumber(100 + 2 * this.pollingInterval);
|
|
1079
|
+
return e += t, e < 0 && (e = 0), this.formatter.blockTag(e);
|
|
1080
|
+
}
|
|
1081
|
+
return this.formatter.blockTag(t);
|
|
1082
|
+
});
|
|
1083
|
+
}
|
|
1084
|
+
getResolver(t) {
|
|
1085
|
+
return a(this, void 0, void 0, function* () {
|
|
1086
|
+
let e = t;
|
|
1087
|
+
for (; ; ) {
|
|
1088
|
+
if (e === "" || e === "." || t !== "eth" && e === "eth")
|
|
1089
|
+
return null;
|
|
1090
|
+
const r = yield this._getResolver(e, "getResolver");
|
|
1091
|
+
if (r != null) {
|
|
1092
|
+
const i = new tt(this, r, t);
|
|
1093
|
+
return e !== t && !(yield i.supportsWildcard()) ? null : i;
|
|
1094
|
+
}
|
|
1095
|
+
e = e.split(".").slice(1).join(".");
|
|
1096
|
+
}
|
|
1097
|
+
});
|
|
1098
|
+
}
|
|
1099
|
+
_getResolver(t, e) {
|
|
1100
|
+
return a(this, void 0, void 0, function* () {
|
|
1101
|
+
e == null && (e = "ENS");
|
|
1102
|
+
const r = yield this.getNetwork();
|
|
1103
|
+
r.ensAddress || u.throwError("network does not support ENS", h.errors.UNSUPPORTED_OPERATION, { operation: e, network: r.name });
|
|
1104
|
+
try {
|
|
1105
|
+
const i = yield this.call({
|
|
1106
|
+
to: r.ensAddress,
|
|
1107
|
+
data: "0x0178b8bf" + U(t).substring(2)
|
|
1108
|
+
});
|
|
1109
|
+
return this.formatter.callAddress(i);
|
|
1110
|
+
} catch {
|
|
1111
|
+
}
|
|
1112
|
+
return null;
|
|
1113
|
+
});
|
|
1114
|
+
}
|
|
1115
|
+
resolveName(t) {
|
|
1116
|
+
return a(this, void 0, void 0, function* () {
|
|
1117
|
+
t = yield t;
|
|
1118
|
+
try {
|
|
1119
|
+
return Promise.resolve(this.formatter.address(t));
|
|
1120
|
+
} catch (r) {
|
|
1121
|
+
if (L(t))
|
|
1122
|
+
throw r;
|
|
1123
|
+
}
|
|
1124
|
+
typeof t != "string" && u.throwArgumentError("invalid ENS name", "name", t);
|
|
1125
|
+
const e = yield this.getResolver(t);
|
|
1126
|
+
return e ? yield e.getAddress() : null;
|
|
1127
|
+
});
|
|
1128
|
+
}
|
|
1129
|
+
lookupAddress(t) {
|
|
1130
|
+
return a(this, void 0, void 0, function* () {
|
|
1131
|
+
t = yield t, t = this.formatter.address(t);
|
|
1132
|
+
const e = t.substring(2).toLowerCase() + ".addr.reverse", r = yield this._getResolver(e, "lookupAddress");
|
|
1133
|
+
if (r == null)
|
|
1134
|
+
return null;
|
|
1135
|
+
const i = D(yield this.call({
|
|
1136
|
+
to: r,
|
|
1137
|
+
data: "0x691f3431" + U(e).substring(2)
|
|
1138
|
+
}), 0);
|
|
1139
|
+
return (yield this.resolveName(i)) != t ? null : i;
|
|
1140
|
+
});
|
|
1141
|
+
}
|
|
1142
|
+
getAvatar(t) {
|
|
1143
|
+
return a(this, void 0, void 0, function* () {
|
|
1144
|
+
let e = null;
|
|
1145
|
+
if (L(t)) {
|
|
1146
|
+
const n = this.formatter.address(t).substring(2).toLowerCase() + ".addr.reverse", s = yield this._getResolver(n, "getAvatar");
|
|
1147
|
+
if (!s)
|
|
1148
|
+
return null;
|
|
1149
|
+
e = new tt(this, s, n);
|
|
1150
|
+
try {
|
|
1151
|
+
const l = yield e.getAvatar();
|
|
1152
|
+
if (l)
|
|
1153
|
+
return l.url;
|
|
1154
|
+
} catch (l) {
|
|
1155
|
+
if (l.code !== h.errors.CALL_EXCEPTION)
|
|
1156
|
+
throw l;
|
|
1157
|
+
}
|
|
1158
|
+
try {
|
|
1159
|
+
const l = D(yield this.call({
|
|
1160
|
+
to: s,
|
|
1161
|
+
data: "0x691f3431" + U(n).substring(2)
|
|
1162
|
+
}), 0);
|
|
1163
|
+
e = yield this.getResolver(l);
|
|
1164
|
+
} catch (l) {
|
|
1165
|
+
if (l.code !== h.errors.CALL_EXCEPTION)
|
|
1166
|
+
throw l;
|
|
1167
|
+
return null;
|
|
1168
|
+
}
|
|
1169
|
+
} else if (e = yield this.getResolver(t), !e)
|
|
1170
|
+
return null;
|
|
1171
|
+
const r = yield e.getAvatar();
|
|
1172
|
+
return r == null ? null : r.url;
|
|
1173
|
+
});
|
|
1174
|
+
}
|
|
1175
|
+
perform(t, e) {
|
|
1176
|
+
return u.throwError(t + " not implemented", h.errors.NOT_IMPLEMENTED, { operation: t });
|
|
1177
|
+
}
|
|
1178
|
+
_startEvent(t) {
|
|
1179
|
+
this.polling = this._events.filter((e) => e.pollable()).length > 0;
|
|
1180
|
+
}
|
|
1181
|
+
_stopEvent(t) {
|
|
1182
|
+
this.polling = this._events.filter((e) => e.pollable()).length > 0;
|
|
1183
|
+
}
|
|
1184
|
+
_addEventListener(t, e, r) {
|
|
1185
|
+
const i = new bt(T(t), e, r);
|
|
1186
|
+
return this._events.push(i), this._startEvent(i), this;
|
|
1187
|
+
}
|
|
1188
|
+
on(t, e) {
|
|
1189
|
+
return this._addEventListener(t, e, !1);
|
|
1190
|
+
}
|
|
1191
|
+
once(t, e) {
|
|
1192
|
+
return this._addEventListener(t, e, !0);
|
|
1193
|
+
}
|
|
1194
|
+
emit(t, ...e) {
|
|
1195
|
+
let r = !1, i = [], n = T(t);
|
|
1196
|
+
return this._events = this._events.filter((s) => s.tag !== n ? !0 : (setTimeout(() => {
|
|
1197
|
+
s.listener.apply(this, e);
|
|
1198
|
+
}, 0), r = !0, s.once ? (i.push(s), !1) : !0)), i.forEach((s) => {
|
|
1199
|
+
this._stopEvent(s);
|
|
1200
|
+
}), r;
|
|
1201
|
+
}
|
|
1202
|
+
listenerCount(t) {
|
|
1203
|
+
if (!t)
|
|
1204
|
+
return this._events.length;
|
|
1205
|
+
let e = T(t);
|
|
1206
|
+
return this._events.filter((r) => r.tag === e).length;
|
|
1207
|
+
}
|
|
1208
|
+
listeners(t) {
|
|
1209
|
+
if (t == null)
|
|
1210
|
+
return this._events.map((r) => r.listener);
|
|
1211
|
+
let e = T(t);
|
|
1212
|
+
return this._events.filter((r) => r.tag === e).map((r) => r.listener);
|
|
1213
|
+
}
|
|
1214
|
+
off(t, e) {
|
|
1215
|
+
if (e == null)
|
|
1216
|
+
return this.removeAllListeners(t);
|
|
1217
|
+
const r = [];
|
|
1218
|
+
let i = !1, n = T(t);
|
|
1219
|
+
return this._events = this._events.filter((s) => s.tag !== n || s.listener != e || i ? !0 : (i = !0, r.push(s), !1)), r.forEach((s) => {
|
|
1220
|
+
this._stopEvent(s);
|
|
1221
|
+
}), this;
|
|
1222
|
+
}
|
|
1223
|
+
removeAllListeners(t) {
|
|
1224
|
+
let e = [];
|
|
1225
|
+
if (t == null)
|
|
1226
|
+
e = this._events, this._events = [];
|
|
1227
|
+
else {
|
|
1228
|
+
const r = T(t);
|
|
1229
|
+
this._events = this._events.filter((i) => i.tag !== r ? !0 : (e.push(i), !1));
|
|
1230
|
+
}
|
|
1231
|
+
return e.forEach((r) => {
|
|
1232
|
+
this._stopEvent(r);
|
|
1233
|
+
}), this;
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
export {
|
|
1237
|
+
$t as BaseProvider,
|
|
1238
|
+
bt as Event,
|
|
1239
|
+
tt as Resolver
|
|
1240
|
+
};
|