@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,1133 @@
|
|
|
1
|
+
import b from "../../../bn.js/lib/bn.mjs";
|
|
2
|
+
import z from "../../../hash.js/lib/hash.mjs";
|
|
3
|
+
function j(t, e, r) {
|
|
4
|
+
return r = {
|
|
5
|
+
path: e,
|
|
6
|
+
exports: {},
|
|
7
|
+
require: function(f, i) {
|
|
8
|
+
return fe(f, i ?? r.path);
|
|
9
|
+
}
|
|
10
|
+
}, t(r, r.exports), r.exports;
|
|
11
|
+
}
|
|
12
|
+
function fe() {
|
|
13
|
+
throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs");
|
|
14
|
+
}
|
|
15
|
+
var U = $;
|
|
16
|
+
function $(t, e) {
|
|
17
|
+
if (!t)
|
|
18
|
+
throw new Error(e || "Assertion failed");
|
|
19
|
+
}
|
|
20
|
+
$.equal = function(e, r, f) {
|
|
21
|
+
if (e != r)
|
|
22
|
+
throw new Error(f || "Assertion failed: " + e + " != " + r);
|
|
23
|
+
};
|
|
24
|
+
var q = j(function(t, e) {
|
|
25
|
+
var r = e;
|
|
26
|
+
function f(n, s) {
|
|
27
|
+
if (Array.isArray(n))
|
|
28
|
+
return n.slice();
|
|
29
|
+
if (!n)
|
|
30
|
+
return [];
|
|
31
|
+
var a = [];
|
|
32
|
+
if (typeof n != "string") {
|
|
33
|
+
for (var o = 0; o < n.length; o++)
|
|
34
|
+
a[o] = n[o] | 0;
|
|
35
|
+
return a;
|
|
36
|
+
}
|
|
37
|
+
if (s === "hex") {
|
|
38
|
+
n = n.replace(/[^a-z0-9]+/ig, ""), n.length % 2 !== 0 && (n = "0" + n);
|
|
39
|
+
for (var o = 0; o < n.length; o += 2)
|
|
40
|
+
a.push(parseInt(n[o] + n[o + 1], 16));
|
|
41
|
+
} else
|
|
42
|
+
for (var o = 0; o < n.length; o++) {
|
|
43
|
+
var u = n.charCodeAt(o), h = u >> 8, c = u & 255;
|
|
44
|
+
h ? a.push(h, c) : a.push(c);
|
|
45
|
+
}
|
|
46
|
+
return a;
|
|
47
|
+
}
|
|
48
|
+
r.toArray = f;
|
|
49
|
+
function i(n) {
|
|
50
|
+
return n.length === 1 ? "0" + n : n;
|
|
51
|
+
}
|
|
52
|
+
r.zero2 = i;
|
|
53
|
+
function d(n) {
|
|
54
|
+
for (var s = "", a = 0; a < n.length; a++)
|
|
55
|
+
s += i(n[a].toString(16));
|
|
56
|
+
return s;
|
|
57
|
+
}
|
|
58
|
+
r.toHex = d, r.encode = function(s, a) {
|
|
59
|
+
return a === "hex" ? d(s) : s;
|
|
60
|
+
};
|
|
61
|
+
}), x = j(function(t, e) {
|
|
62
|
+
var r = e;
|
|
63
|
+
r.assert = U, r.toArray = q.toArray, r.zero2 = q.zero2, r.toHex = q.toHex, r.encode = q.encode;
|
|
64
|
+
function f(a, o, u) {
|
|
65
|
+
var h = new Array(Math.max(a.bitLength(), u) + 1);
|
|
66
|
+
h.fill(0);
|
|
67
|
+
for (var c = 1 << o + 1, l = a.clone(), v = 0; v < h.length; v++) {
|
|
68
|
+
var p, m = l.andln(c - 1);
|
|
69
|
+
l.isOdd() ? (m > (c >> 1) - 1 ? p = (c >> 1) - m : p = m, l.isubn(p)) : p = 0, h[v] = p, l.iushrn(1);
|
|
70
|
+
}
|
|
71
|
+
return h;
|
|
72
|
+
}
|
|
73
|
+
r.getNAF = f;
|
|
74
|
+
function i(a, o) {
|
|
75
|
+
var u = [
|
|
76
|
+
[],
|
|
77
|
+
[]
|
|
78
|
+
];
|
|
79
|
+
a = a.clone(), o = o.clone();
|
|
80
|
+
for (var h = 0, c = 0, l; a.cmpn(-h) > 0 || o.cmpn(-c) > 0; ) {
|
|
81
|
+
var v = a.andln(3) + h & 3, p = o.andln(3) + c & 3;
|
|
82
|
+
v === 3 && (v = -1), p === 3 && (p = -1);
|
|
83
|
+
var m;
|
|
84
|
+
v & 1 ? (l = a.andln(7) + h & 7, (l === 3 || l === 5) && p === 2 ? m = -v : m = v) : m = 0, u[0].push(m);
|
|
85
|
+
var y;
|
|
86
|
+
p & 1 ? (l = o.andln(7) + c & 7, (l === 3 || l === 5) && v === 2 ? y = -p : y = p) : y = 0, u[1].push(y), 2 * h === m + 1 && (h = 1 - h), 2 * c === y + 1 && (c = 1 - c), a.iushrn(1), o.iushrn(1);
|
|
87
|
+
}
|
|
88
|
+
return u;
|
|
89
|
+
}
|
|
90
|
+
r.getJSF = i;
|
|
91
|
+
function d(a, o, u) {
|
|
92
|
+
var h = "_" + o;
|
|
93
|
+
a.prototype[o] = function() {
|
|
94
|
+
return this[h] !== void 0 ? this[h] : this[h] = u.call(this);
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
r.cachedProperty = d;
|
|
98
|
+
function n(a) {
|
|
99
|
+
return typeof a == "string" ? r.toArray(a, "hex") : a;
|
|
100
|
+
}
|
|
101
|
+
r.parseBytes = n;
|
|
102
|
+
function s(a) {
|
|
103
|
+
return new b(a, "hex", "le");
|
|
104
|
+
}
|
|
105
|
+
r.intFromLE = s;
|
|
106
|
+
}), D = x.getNAF, te = x.getJSF, B = x.assert;
|
|
107
|
+
function E(t, e) {
|
|
108
|
+
this.type = t, this.p = new b(e.p, 16), this.red = e.prime ? b.red(e.prime) : b.mont(this.p), this.zero = new b(0).toRed(this.red), this.one = new b(1).toRed(this.red), this.two = new b(2).toRed(this.red), this.n = e.n && new b(e.n, 16), this.g = e.g && this.pointFromJSON(e.g, e.gRed), this._wnafT1 = new Array(4), this._wnafT2 = new Array(4), this._wnafT3 = new Array(4), this._wnafT4 = new Array(4), this._bitLength = this.n ? this.n.bitLength() : 0;
|
|
109
|
+
var r = this.n && this.p.div(this.n);
|
|
110
|
+
!r || r.cmpn(100) > 0 ? this.redN = null : (this._maxwellTrick = !0, this.redN = this.n.toRed(this.red));
|
|
111
|
+
}
|
|
112
|
+
var F = E;
|
|
113
|
+
E.prototype.point = function() {
|
|
114
|
+
throw new Error("Not implemented");
|
|
115
|
+
};
|
|
116
|
+
E.prototype.validate = function() {
|
|
117
|
+
throw new Error("Not implemented");
|
|
118
|
+
};
|
|
119
|
+
E.prototype._fixedNafMul = function(e, r) {
|
|
120
|
+
B(e.precomputed);
|
|
121
|
+
var f = e._getDoubles(), i = D(r, 1, this._bitLength), d = (1 << f.step + 1) - (f.step % 2 === 0 ? 2 : 1);
|
|
122
|
+
d /= 3;
|
|
123
|
+
var n = [], s, a;
|
|
124
|
+
for (s = 0; s < i.length; s += f.step) {
|
|
125
|
+
a = 0;
|
|
126
|
+
for (var o = s + f.step - 1; o >= s; o--)
|
|
127
|
+
a = (a << 1) + i[o];
|
|
128
|
+
n.push(a);
|
|
129
|
+
}
|
|
130
|
+
for (var u = this.jpoint(null, null, null), h = this.jpoint(null, null, null), c = d; c > 0; c--) {
|
|
131
|
+
for (s = 0; s < n.length; s++)
|
|
132
|
+
a = n[s], a === c ? h = h.mixedAdd(f.points[s]) : a === -c && (h = h.mixedAdd(f.points[s].neg()));
|
|
133
|
+
u = u.add(h);
|
|
134
|
+
}
|
|
135
|
+
return u.toP();
|
|
136
|
+
};
|
|
137
|
+
E.prototype._wnafMul = function(e, r) {
|
|
138
|
+
var f = 4, i = e._getNAFPoints(f);
|
|
139
|
+
f = i.wnd;
|
|
140
|
+
for (var d = i.points, n = D(r, f, this._bitLength), s = this.jpoint(null, null, null), a = n.length - 1; a >= 0; a--) {
|
|
141
|
+
for (var o = 0; a >= 0 && n[a] === 0; a--)
|
|
142
|
+
o++;
|
|
143
|
+
if (a >= 0 && o++, s = s.dblp(o), a < 0)
|
|
144
|
+
break;
|
|
145
|
+
var u = n[a];
|
|
146
|
+
B(u !== 0), e.type === "affine" ? u > 0 ? s = s.mixedAdd(d[u - 1 >> 1]) : s = s.mixedAdd(d[-u - 1 >> 1].neg()) : u > 0 ? s = s.add(d[u - 1 >> 1]) : s = s.add(d[-u - 1 >> 1].neg());
|
|
147
|
+
}
|
|
148
|
+
return e.type === "affine" ? s.toP() : s;
|
|
149
|
+
};
|
|
150
|
+
E.prototype._wnafMulAdd = function(e, r, f, i, d) {
|
|
151
|
+
var n = this._wnafT1, s = this._wnafT2, a = this._wnafT3, o = 0, u, h, c;
|
|
152
|
+
for (u = 0; u < i; u++) {
|
|
153
|
+
c = r[u];
|
|
154
|
+
var l = c._getNAFPoints(e);
|
|
155
|
+
n[u] = l.wnd, s[u] = l.points;
|
|
156
|
+
}
|
|
157
|
+
for (u = i - 1; u >= 1; u -= 2) {
|
|
158
|
+
var v = u - 1, p = u;
|
|
159
|
+
if (n[v] !== 1 || n[p] !== 1) {
|
|
160
|
+
a[v] = D(f[v], n[v], this._bitLength), a[p] = D(f[p], n[p], this._bitLength), o = Math.max(a[v].length, o), o = Math.max(a[p].length, o);
|
|
161
|
+
continue;
|
|
162
|
+
}
|
|
163
|
+
var m = [
|
|
164
|
+
r[v],
|
|
165
|
+
/* 1 */
|
|
166
|
+
null,
|
|
167
|
+
/* 3 */
|
|
168
|
+
null,
|
|
169
|
+
/* 5 */
|
|
170
|
+
r[p]
|
|
171
|
+
/* 7 */
|
|
172
|
+
];
|
|
173
|
+
r[v].y.cmp(r[p].y) === 0 ? (m[1] = r[v].add(r[p]), m[2] = r[v].toJ().mixedAdd(r[p].neg())) : r[v].y.cmp(r[p].y.redNeg()) === 0 ? (m[1] = r[v].toJ().mixedAdd(r[p]), m[2] = r[v].add(r[p].neg())) : (m[1] = r[v].toJ().mixedAdd(r[p]), m[2] = r[v].toJ().mixedAdd(r[p].neg()));
|
|
174
|
+
var y = [
|
|
175
|
+
-3,
|
|
176
|
+
/* -1 -1 */
|
|
177
|
+
-1,
|
|
178
|
+
/* -1 0 */
|
|
179
|
+
-5,
|
|
180
|
+
/* -1 1 */
|
|
181
|
+
-7,
|
|
182
|
+
/* 0 -1 */
|
|
183
|
+
0,
|
|
184
|
+
/* 0 0 */
|
|
185
|
+
7,
|
|
186
|
+
/* 0 1 */
|
|
187
|
+
5,
|
|
188
|
+
/* 1 -1 */
|
|
189
|
+
1,
|
|
190
|
+
/* 1 0 */
|
|
191
|
+
3
|
|
192
|
+
/* 1 1 */
|
|
193
|
+
], I = te(f[v], f[p]);
|
|
194
|
+
for (o = Math.max(I[0].length, o), a[v] = new Array(o), a[p] = new Array(o), h = 0; h < o; h++) {
|
|
195
|
+
var N = I[0][h] | 0, V = I[1][h] | 0;
|
|
196
|
+
a[v][h] = y[(N + 1) * 3 + (V + 1)], a[p][h] = 0, s[v] = m;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
var P = this.jpoint(null, null, null), L = this._wnafT4;
|
|
200
|
+
for (u = o; u >= 0; u--) {
|
|
201
|
+
for (var X = 0; u >= 0; ) {
|
|
202
|
+
var k = !0;
|
|
203
|
+
for (h = 0; h < i; h++)
|
|
204
|
+
L[h] = a[h][u] | 0, L[h] !== 0 && (k = !1);
|
|
205
|
+
if (!k)
|
|
206
|
+
break;
|
|
207
|
+
X++, u--;
|
|
208
|
+
}
|
|
209
|
+
if (u >= 0 && X++, P = P.dblp(X), u < 0)
|
|
210
|
+
break;
|
|
211
|
+
for (h = 0; h < i; h++) {
|
|
212
|
+
var O = L[h];
|
|
213
|
+
O !== 0 && (O > 0 ? c = s[h][O - 1 >> 1] : O < 0 && (c = s[h][-O - 1 >> 1].neg()), c.type === "affine" ? P = P.mixedAdd(c) : P = P.add(c));
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
for (u = 0; u < i; u++)
|
|
217
|
+
s[u] = null;
|
|
218
|
+
return d ? P : P.toP();
|
|
219
|
+
};
|
|
220
|
+
function _(t, e) {
|
|
221
|
+
this.curve = t, this.type = e, this.precomputed = null;
|
|
222
|
+
}
|
|
223
|
+
E.BasePoint = _;
|
|
224
|
+
_.prototype.eq = function() {
|
|
225
|
+
throw new Error("Not implemented");
|
|
226
|
+
};
|
|
227
|
+
_.prototype.validate = function() {
|
|
228
|
+
return this.curve.validate(this);
|
|
229
|
+
};
|
|
230
|
+
E.prototype.decodePoint = function(e, r) {
|
|
231
|
+
e = x.toArray(e, r);
|
|
232
|
+
var f = this.p.byteLength();
|
|
233
|
+
if ((e[0] === 4 || e[0] === 6 || e[0] === 7) && e.length - 1 === 2 * f) {
|
|
234
|
+
e[0] === 6 ? B(e[e.length - 1] % 2 === 0) : e[0] === 7 && B(e[e.length - 1] % 2 === 1);
|
|
235
|
+
var i = this.point(
|
|
236
|
+
e.slice(1, 1 + f),
|
|
237
|
+
e.slice(1 + f, 1 + 2 * f)
|
|
238
|
+
);
|
|
239
|
+
return i;
|
|
240
|
+
} else if ((e[0] === 2 || e[0] === 3) && e.length - 1 === f)
|
|
241
|
+
return this.pointFromX(e.slice(1, 1 + f), e[0] === 3);
|
|
242
|
+
throw new Error("Unknown point format");
|
|
243
|
+
};
|
|
244
|
+
_.prototype.encodeCompressed = function(e) {
|
|
245
|
+
return this.encode(e, !0);
|
|
246
|
+
};
|
|
247
|
+
_.prototype._encode = function(e) {
|
|
248
|
+
var r = this.curve.p.byteLength(), f = this.getX().toArray("be", r);
|
|
249
|
+
return e ? [this.getY().isEven() ? 2 : 3].concat(f) : [4].concat(f, this.getY().toArray("be", r));
|
|
250
|
+
};
|
|
251
|
+
_.prototype.encode = function(e, r) {
|
|
252
|
+
return x.encode(this._encode(r), e);
|
|
253
|
+
};
|
|
254
|
+
_.prototype.precompute = function(e) {
|
|
255
|
+
if (this.precomputed)
|
|
256
|
+
return this;
|
|
257
|
+
var r = {
|
|
258
|
+
doubles: null,
|
|
259
|
+
naf: null,
|
|
260
|
+
beta: null
|
|
261
|
+
};
|
|
262
|
+
return r.naf = this._getNAFPoints(8), r.doubles = this._getDoubles(4, e), r.beta = this._getBeta(), this.precomputed = r, this;
|
|
263
|
+
};
|
|
264
|
+
_.prototype._hasDoubles = function(e) {
|
|
265
|
+
if (!this.precomputed)
|
|
266
|
+
return !1;
|
|
267
|
+
var r = this.precomputed.doubles;
|
|
268
|
+
return r ? r.points.length >= Math.ceil((e.bitLength() + 1) / r.step) : !1;
|
|
269
|
+
};
|
|
270
|
+
_.prototype._getDoubles = function(e, r) {
|
|
271
|
+
if (this.precomputed && this.precomputed.doubles)
|
|
272
|
+
return this.precomputed.doubles;
|
|
273
|
+
for (var f = [this], i = this, d = 0; d < r; d += e) {
|
|
274
|
+
for (var n = 0; n < e; n++)
|
|
275
|
+
i = i.dbl();
|
|
276
|
+
f.push(i);
|
|
277
|
+
}
|
|
278
|
+
return {
|
|
279
|
+
step: e,
|
|
280
|
+
points: f
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
_.prototype._getNAFPoints = function(e) {
|
|
284
|
+
if (this.precomputed && this.precomputed.naf)
|
|
285
|
+
return this.precomputed.naf;
|
|
286
|
+
for (var r = [this], f = (1 << e) - 1, i = f === 1 ? null : this.dbl(), d = 1; d < f; d++)
|
|
287
|
+
r[d] = r[d - 1].add(i);
|
|
288
|
+
return {
|
|
289
|
+
wnd: e,
|
|
290
|
+
points: r
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
_.prototype._getBeta = function() {
|
|
294
|
+
return null;
|
|
295
|
+
};
|
|
296
|
+
_.prototype.dblp = function(e) {
|
|
297
|
+
for (var r = this, f = 0; f < e; f++)
|
|
298
|
+
r = r.dbl();
|
|
299
|
+
return r;
|
|
300
|
+
};
|
|
301
|
+
var G = j(function(t) {
|
|
302
|
+
typeof Object.create == "function" ? t.exports = function(r, f) {
|
|
303
|
+
f && (r.super_ = f, r.prototype = Object.create(f.prototype, {
|
|
304
|
+
constructor: {
|
|
305
|
+
value: r,
|
|
306
|
+
enumerable: !1,
|
|
307
|
+
writable: !0,
|
|
308
|
+
configurable: !0
|
|
309
|
+
}
|
|
310
|
+
}));
|
|
311
|
+
} : t.exports = function(r, f) {
|
|
312
|
+
if (f) {
|
|
313
|
+
r.super_ = f;
|
|
314
|
+
var i = function() {
|
|
315
|
+
};
|
|
316
|
+
i.prototype = f.prototype, r.prototype = new i(), r.prototype.constructor = r;
|
|
317
|
+
}
|
|
318
|
+
};
|
|
319
|
+
}), ie = x.assert;
|
|
320
|
+
function M(t) {
|
|
321
|
+
F.call(this, "short", t), this.a = new b(t.a, 16).toRed(this.red), this.b = new b(t.b, 16).toRed(this.red), this.tinv = this.two.redInvm(), this.zeroA = this.a.fromRed().cmpn(0) === 0, this.threeA = this.a.fromRed().sub(this.p).cmpn(-3) === 0, this.endo = this._getEndomorphism(t), this._endoWnafT1 = new Array(4), this._endoWnafT2 = new Array(4);
|
|
322
|
+
}
|
|
323
|
+
G(M, F);
|
|
324
|
+
var ne = M;
|
|
325
|
+
M.prototype._getEndomorphism = function(e) {
|
|
326
|
+
if (!(!this.zeroA || !this.g || !this.n || this.p.modn(3) !== 1)) {
|
|
327
|
+
var r, f;
|
|
328
|
+
if (e.beta)
|
|
329
|
+
r = new b(e.beta, 16).toRed(this.red);
|
|
330
|
+
else {
|
|
331
|
+
var i = this._getEndoRoots(this.p);
|
|
332
|
+
r = i[0].cmp(i[1]) < 0 ? i[0] : i[1], r = r.toRed(this.red);
|
|
333
|
+
}
|
|
334
|
+
if (e.lambda)
|
|
335
|
+
f = new b(e.lambda, 16);
|
|
336
|
+
else {
|
|
337
|
+
var d = this._getEndoRoots(this.n);
|
|
338
|
+
this.g.mul(d[0]).x.cmp(this.g.x.redMul(r)) === 0 ? f = d[0] : (f = d[1], ie(this.g.mul(f).x.cmp(this.g.x.redMul(r)) === 0));
|
|
339
|
+
}
|
|
340
|
+
var n;
|
|
341
|
+
return e.basis ? n = e.basis.map(function(s) {
|
|
342
|
+
return {
|
|
343
|
+
a: new b(s.a, 16),
|
|
344
|
+
b: new b(s.b, 16)
|
|
345
|
+
};
|
|
346
|
+
}) : n = this._getEndoBasis(f), {
|
|
347
|
+
beta: r,
|
|
348
|
+
lambda: f,
|
|
349
|
+
basis: n
|
|
350
|
+
};
|
|
351
|
+
}
|
|
352
|
+
};
|
|
353
|
+
M.prototype._getEndoRoots = function(e) {
|
|
354
|
+
var r = e === this.p ? this.red : b.mont(e), f = new b(2).toRed(r).redInvm(), i = f.redNeg(), d = new b(3).toRed(r).redNeg().redSqrt().redMul(f), n = i.redAdd(d).fromRed(), s = i.redSub(d).fromRed();
|
|
355
|
+
return [n, s];
|
|
356
|
+
};
|
|
357
|
+
M.prototype._getEndoBasis = function(e) {
|
|
358
|
+
for (var r = this.n.ushrn(Math.floor(this.n.bitLength() / 2)), f = e, i = this.n.clone(), d = new b(1), n = new b(0), s = new b(0), a = new b(1), o, u, h, c, l, v, p, m = 0, y, I; f.cmpn(0) !== 0; ) {
|
|
359
|
+
var N = i.div(f);
|
|
360
|
+
y = i.sub(N.mul(f)), I = s.sub(N.mul(d));
|
|
361
|
+
var V = a.sub(N.mul(n));
|
|
362
|
+
if (!h && y.cmp(r) < 0)
|
|
363
|
+
o = p.neg(), u = d, h = y.neg(), c = I;
|
|
364
|
+
else if (h && ++m === 2)
|
|
365
|
+
break;
|
|
366
|
+
p = y, i = f, f = y, s = d, d = I, a = n, n = V;
|
|
367
|
+
}
|
|
368
|
+
l = y.neg(), v = I;
|
|
369
|
+
var P = h.sqr().add(c.sqr()), L = l.sqr().add(v.sqr());
|
|
370
|
+
return L.cmp(P) >= 0 && (l = o, v = u), h.negative && (h = h.neg(), c = c.neg()), l.negative && (l = l.neg(), v = v.neg()), [
|
|
371
|
+
{ a: h, b: c },
|
|
372
|
+
{ a: l, b: v }
|
|
373
|
+
];
|
|
374
|
+
};
|
|
375
|
+
M.prototype._endoSplit = function(e) {
|
|
376
|
+
var r = this.endo.basis, f = r[0], i = r[1], d = i.b.mul(e).divRound(this.n), n = f.b.neg().mul(e).divRound(this.n), s = d.mul(f.a), a = n.mul(i.a), o = d.mul(f.b), u = n.mul(i.b), h = e.sub(s).sub(a), c = o.add(u).neg();
|
|
377
|
+
return { k1: h, k2: c };
|
|
378
|
+
};
|
|
379
|
+
M.prototype.pointFromX = function(e, r) {
|
|
380
|
+
e = new b(e, 16), e.red || (e = e.toRed(this.red));
|
|
381
|
+
var f = e.redSqr().redMul(e).redIAdd(e.redMul(this.a)).redIAdd(this.b), i = f.redSqrt();
|
|
382
|
+
if (i.redSqr().redSub(f).cmp(this.zero) !== 0)
|
|
383
|
+
throw new Error("invalid point");
|
|
384
|
+
var d = i.fromRed().isOdd();
|
|
385
|
+
return (r && !d || !r && d) && (i = i.redNeg()), this.point(e, i);
|
|
386
|
+
};
|
|
387
|
+
M.prototype.validate = function(e) {
|
|
388
|
+
if (e.inf)
|
|
389
|
+
return !0;
|
|
390
|
+
var r = e.x, f = e.y, i = this.a.redMul(r), d = r.redSqr().redMul(r).redIAdd(i).redIAdd(this.b);
|
|
391
|
+
return f.redSqr().redISub(d).cmpn(0) === 0;
|
|
392
|
+
};
|
|
393
|
+
M.prototype._endoWnafMulAdd = function(e, r, f) {
|
|
394
|
+
for (var i = this._endoWnafT1, d = this._endoWnafT2, n = 0; n < e.length; n++) {
|
|
395
|
+
var s = this._endoSplit(r[n]), a = e[n], o = a._getBeta();
|
|
396
|
+
s.k1.negative && (s.k1.ineg(), a = a.neg(!0)), s.k2.negative && (s.k2.ineg(), o = o.neg(!0)), i[n * 2] = a, i[n * 2 + 1] = o, d[n * 2] = s.k1, d[n * 2 + 1] = s.k2;
|
|
397
|
+
}
|
|
398
|
+
for (var u = this._wnafMulAdd(1, i, d, n * 2, f), h = 0; h < n * 2; h++)
|
|
399
|
+
i[h] = null, d[h] = null;
|
|
400
|
+
return u;
|
|
401
|
+
};
|
|
402
|
+
function g(t, e, r, f) {
|
|
403
|
+
F.BasePoint.call(this, t, "affine"), e === null && r === null ? (this.x = null, this.y = null, this.inf = !0) : (this.x = new b(e, 16), this.y = new b(r, 16), f && (this.x.forceRed(this.curve.red), this.y.forceRed(this.curve.red)), this.x.red || (this.x = this.x.toRed(this.curve.red)), this.y.red || (this.y = this.y.toRed(this.curve.red)), this.inf = !1);
|
|
404
|
+
}
|
|
405
|
+
G(g, F.BasePoint);
|
|
406
|
+
M.prototype.point = function(e, r, f) {
|
|
407
|
+
return new g(this, e, r, f);
|
|
408
|
+
};
|
|
409
|
+
M.prototype.pointFromJSON = function(e, r) {
|
|
410
|
+
return g.fromJSON(this, e, r);
|
|
411
|
+
};
|
|
412
|
+
g.prototype._getBeta = function() {
|
|
413
|
+
if (this.curve.endo) {
|
|
414
|
+
var e = this.precomputed;
|
|
415
|
+
if (e && e.beta)
|
|
416
|
+
return e.beta;
|
|
417
|
+
var r = this.curve.point(this.x.redMul(this.curve.endo.beta), this.y);
|
|
418
|
+
if (e) {
|
|
419
|
+
var f = this.curve, i = function(d) {
|
|
420
|
+
return f.point(d.x.redMul(f.endo.beta), d.y);
|
|
421
|
+
};
|
|
422
|
+
e.beta = r, r.precomputed = {
|
|
423
|
+
beta: null,
|
|
424
|
+
naf: e.naf && {
|
|
425
|
+
wnd: e.naf.wnd,
|
|
426
|
+
points: e.naf.points.map(i)
|
|
427
|
+
},
|
|
428
|
+
doubles: e.doubles && {
|
|
429
|
+
step: e.doubles.step,
|
|
430
|
+
points: e.doubles.points.map(i)
|
|
431
|
+
}
|
|
432
|
+
};
|
|
433
|
+
}
|
|
434
|
+
return r;
|
|
435
|
+
}
|
|
436
|
+
};
|
|
437
|
+
g.prototype.toJSON = function() {
|
|
438
|
+
return this.precomputed ? [this.x, this.y, this.precomputed && {
|
|
439
|
+
doubles: this.precomputed.doubles && {
|
|
440
|
+
step: this.precomputed.doubles.step,
|
|
441
|
+
points: this.precomputed.doubles.points.slice(1)
|
|
442
|
+
},
|
|
443
|
+
naf: this.precomputed.naf && {
|
|
444
|
+
wnd: this.precomputed.naf.wnd,
|
|
445
|
+
points: this.precomputed.naf.points.slice(1)
|
|
446
|
+
}
|
|
447
|
+
}] : [this.x, this.y];
|
|
448
|
+
};
|
|
449
|
+
g.fromJSON = function(e, r, f) {
|
|
450
|
+
typeof r == "string" && (r = JSON.parse(r));
|
|
451
|
+
var i = e.point(r[0], r[1], f);
|
|
452
|
+
if (!r[2])
|
|
453
|
+
return i;
|
|
454
|
+
function d(s) {
|
|
455
|
+
return e.point(s[0], s[1], f);
|
|
456
|
+
}
|
|
457
|
+
var n = r[2];
|
|
458
|
+
return i.precomputed = {
|
|
459
|
+
beta: null,
|
|
460
|
+
doubles: n.doubles && {
|
|
461
|
+
step: n.doubles.step,
|
|
462
|
+
points: [i].concat(n.doubles.points.map(d))
|
|
463
|
+
},
|
|
464
|
+
naf: n.naf && {
|
|
465
|
+
wnd: n.naf.wnd,
|
|
466
|
+
points: [i].concat(n.naf.points.map(d))
|
|
467
|
+
}
|
|
468
|
+
}, i;
|
|
469
|
+
};
|
|
470
|
+
g.prototype.inspect = function() {
|
|
471
|
+
return this.isInfinity() ? "<EC Point Infinity>" : "<EC Point x: " + this.x.fromRed().toString(16, 2) + " y: " + this.y.fromRed().toString(16, 2) + ">";
|
|
472
|
+
};
|
|
473
|
+
g.prototype.isInfinity = function() {
|
|
474
|
+
return this.inf;
|
|
475
|
+
};
|
|
476
|
+
g.prototype.add = function(e) {
|
|
477
|
+
if (this.inf)
|
|
478
|
+
return e;
|
|
479
|
+
if (e.inf)
|
|
480
|
+
return this;
|
|
481
|
+
if (this.eq(e))
|
|
482
|
+
return this.dbl();
|
|
483
|
+
if (this.neg().eq(e))
|
|
484
|
+
return this.curve.point(null, null);
|
|
485
|
+
if (this.x.cmp(e.x) === 0)
|
|
486
|
+
return this.curve.point(null, null);
|
|
487
|
+
var r = this.y.redSub(e.y);
|
|
488
|
+
r.cmpn(0) !== 0 && (r = r.redMul(this.x.redSub(e.x).redInvm()));
|
|
489
|
+
var f = r.redSqr().redISub(this.x).redISub(e.x), i = r.redMul(this.x.redSub(f)).redISub(this.y);
|
|
490
|
+
return this.curve.point(f, i);
|
|
491
|
+
};
|
|
492
|
+
g.prototype.dbl = function() {
|
|
493
|
+
if (this.inf)
|
|
494
|
+
return this;
|
|
495
|
+
var e = this.y.redAdd(this.y);
|
|
496
|
+
if (e.cmpn(0) === 0)
|
|
497
|
+
return this.curve.point(null, null);
|
|
498
|
+
var r = this.curve.a, f = this.x.redSqr(), i = e.redInvm(), d = f.redAdd(f).redIAdd(f).redIAdd(r).redMul(i), n = d.redSqr().redISub(this.x.redAdd(this.x)), s = d.redMul(this.x.redSub(n)).redISub(this.y);
|
|
499
|
+
return this.curve.point(n, s);
|
|
500
|
+
};
|
|
501
|
+
g.prototype.getX = function() {
|
|
502
|
+
return this.x.fromRed();
|
|
503
|
+
};
|
|
504
|
+
g.prototype.getY = function() {
|
|
505
|
+
return this.y.fromRed();
|
|
506
|
+
};
|
|
507
|
+
g.prototype.mul = function(e) {
|
|
508
|
+
return e = new b(e, 16), this.isInfinity() ? this : this._hasDoubles(e) ? this.curve._fixedNafMul(this, e) : this.curve.endo ? this.curve._endoWnafMulAdd([this], [e]) : this.curve._wnafMul(this, e);
|
|
509
|
+
};
|
|
510
|
+
g.prototype.mulAdd = function(e, r, f) {
|
|
511
|
+
var i = [this, r], d = [e, f];
|
|
512
|
+
return this.curve.endo ? this.curve._endoWnafMulAdd(i, d) : this.curve._wnafMulAdd(1, i, d, 2);
|
|
513
|
+
};
|
|
514
|
+
g.prototype.jmulAdd = function(e, r, f) {
|
|
515
|
+
var i = [this, r], d = [e, f];
|
|
516
|
+
return this.curve.endo ? this.curve._endoWnafMulAdd(i, d, !0) : this.curve._wnafMulAdd(1, i, d, 2, !0);
|
|
517
|
+
};
|
|
518
|
+
g.prototype.eq = function(e) {
|
|
519
|
+
return this === e || this.inf === e.inf && (this.inf || this.x.cmp(e.x) === 0 && this.y.cmp(e.y) === 0);
|
|
520
|
+
};
|
|
521
|
+
g.prototype.neg = function(e) {
|
|
522
|
+
if (this.inf)
|
|
523
|
+
return this;
|
|
524
|
+
var r = this.curve.point(this.x, this.y.redNeg());
|
|
525
|
+
if (e && this.precomputed) {
|
|
526
|
+
var f = this.precomputed, i = function(d) {
|
|
527
|
+
return d.neg();
|
|
528
|
+
};
|
|
529
|
+
r.precomputed = {
|
|
530
|
+
naf: f.naf && {
|
|
531
|
+
wnd: f.naf.wnd,
|
|
532
|
+
points: f.naf.points.map(i)
|
|
533
|
+
},
|
|
534
|
+
doubles: f.doubles && {
|
|
535
|
+
step: f.doubles.step,
|
|
536
|
+
points: f.doubles.points.map(i)
|
|
537
|
+
}
|
|
538
|
+
};
|
|
539
|
+
}
|
|
540
|
+
return r;
|
|
541
|
+
};
|
|
542
|
+
g.prototype.toJ = function() {
|
|
543
|
+
if (this.inf)
|
|
544
|
+
return this.curve.jpoint(null, null, null);
|
|
545
|
+
var e = this.curve.jpoint(this.x, this.y, this.curve.one);
|
|
546
|
+
return e;
|
|
547
|
+
};
|
|
548
|
+
function A(t, e, r, f) {
|
|
549
|
+
F.BasePoint.call(this, t, "jacobian"), e === null && r === null && f === null ? (this.x = this.curve.one, this.y = this.curve.one, this.z = new b(0)) : (this.x = new b(e, 16), this.y = new b(r, 16), this.z = new b(f, 16)), this.x.red || (this.x = this.x.toRed(this.curve.red)), this.y.red || (this.y = this.y.toRed(this.curve.red)), this.z.red || (this.z = this.z.toRed(this.curve.red)), this.zOne = this.z === this.curve.one;
|
|
550
|
+
}
|
|
551
|
+
G(A, F.BasePoint);
|
|
552
|
+
M.prototype.jpoint = function(e, r, f) {
|
|
553
|
+
return new A(this, e, r, f);
|
|
554
|
+
};
|
|
555
|
+
A.prototype.toP = function() {
|
|
556
|
+
if (this.isInfinity())
|
|
557
|
+
return this.curve.point(null, null);
|
|
558
|
+
var e = this.z.redInvm(), r = e.redSqr(), f = this.x.redMul(r), i = this.y.redMul(r).redMul(e);
|
|
559
|
+
return this.curve.point(f, i);
|
|
560
|
+
};
|
|
561
|
+
A.prototype.neg = function() {
|
|
562
|
+
return this.curve.jpoint(this.x, this.y.redNeg(), this.z);
|
|
563
|
+
};
|
|
564
|
+
A.prototype.add = function(e) {
|
|
565
|
+
if (this.isInfinity())
|
|
566
|
+
return e;
|
|
567
|
+
if (e.isInfinity())
|
|
568
|
+
return this;
|
|
569
|
+
var r = e.z.redSqr(), f = this.z.redSqr(), i = this.x.redMul(r), d = e.x.redMul(f), n = this.y.redMul(r.redMul(e.z)), s = e.y.redMul(f.redMul(this.z)), a = i.redSub(d), o = n.redSub(s);
|
|
570
|
+
if (a.cmpn(0) === 0)
|
|
571
|
+
return o.cmpn(0) !== 0 ? this.curve.jpoint(null, null, null) : this.dbl();
|
|
572
|
+
var u = a.redSqr(), h = u.redMul(a), c = i.redMul(u), l = o.redSqr().redIAdd(h).redISub(c).redISub(c), v = o.redMul(c.redISub(l)).redISub(n.redMul(h)), p = this.z.redMul(e.z).redMul(a);
|
|
573
|
+
return this.curve.jpoint(l, v, p);
|
|
574
|
+
};
|
|
575
|
+
A.prototype.mixedAdd = function(e) {
|
|
576
|
+
if (this.isInfinity())
|
|
577
|
+
return e.toJ();
|
|
578
|
+
if (e.isInfinity())
|
|
579
|
+
return this;
|
|
580
|
+
var r = this.z.redSqr(), f = this.x, i = e.x.redMul(r), d = this.y, n = e.y.redMul(r).redMul(this.z), s = f.redSub(i), a = d.redSub(n);
|
|
581
|
+
if (s.cmpn(0) === 0)
|
|
582
|
+
return a.cmpn(0) !== 0 ? this.curve.jpoint(null, null, null) : this.dbl();
|
|
583
|
+
var o = s.redSqr(), u = o.redMul(s), h = f.redMul(o), c = a.redSqr().redIAdd(u).redISub(h).redISub(h), l = a.redMul(h.redISub(c)).redISub(d.redMul(u)), v = this.z.redMul(s);
|
|
584
|
+
return this.curve.jpoint(c, l, v);
|
|
585
|
+
};
|
|
586
|
+
A.prototype.dblp = function(e) {
|
|
587
|
+
if (e === 0)
|
|
588
|
+
return this;
|
|
589
|
+
if (this.isInfinity())
|
|
590
|
+
return this;
|
|
591
|
+
if (!e)
|
|
592
|
+
return this.dbl();
|
|
593
|
+
var r;
|
|
594
|
+
if (this.curve.zeroA || this.curve.threeA) {
|
|
595
|
+
var f = this;
|
|
596
|
+
for (r = 0; r < e; r++)
|
|
597
|
+
f = f.dbl();
|
|
598
|
+
return f;
|
|
599
|
+
}
|
|
600
|
+
var i = this.curve.a, d = this.curve.tinv, n = this.x, s = this.y, a = this.z, o = a.redSqr().redSqr(), u = s.redAdd(s);
|
|
601
|
+
for (r = 0; r < e; r++) {
|
|
602
|
+
var h = n.redSqr(), c = u.redSqr(), l = c.redSqr(), v = h.redAdd(h).redIAdd(h).redIAdd(i.redMul(o)), p = n.redMul(c), m = v.redSqr().redISub(p.redAdd(p)), y = p.redISub(m), I = v.redMul(y);
|
|
603
|
+
I = I.redIAdd(I).redISub(l);
|
|
604
|
+
var N = u.redMul(a);
|
|
605
|
+
r + 1 < e && (o = o.redMul(l)), n = m, a = N, u = I;
|
|
606
|
+
}
|
|
607
|
+
return this.curve.jpoint(n, u.redMul(d), a);
|
|
608
|
+
};
|
|
609
|
+
A.prototype.dbl = function() {
|
|
610
|
+
return this.isInfinity() ? this : this.curve.zeroA ? this._zeroDbl() : this.curve.threeA ? this._threeDbl() : this._dbl();
|
|
611
|
+
};
|
|
612
|
+
A.prototype._zeroDbl = function() {
|
|
613
|
+
var e, r, f;
|
|
614
|
+
if (this.zOne) {
|
|
615
|
+
var i = this.x.redSqr(), d = this.y.redSqr(), n = d.redSqr(), s = this.x.redAdd(d).redSqr().redISub(i).redISub(n);
|
|
616
|
+
s = s.redIAdd(s);
|
|
617
|
+
var a = i.redAdd(i).redIAdd(i), o = a.redSqr().redISub(s).redISub(s), u = n.redIAdd(n);
|
|
618
|
+
u = u.redIAdd(u), u = u.redIAdd(u), e = o, r = a.redMul(s.redISub(o)).redISub(u), f = this.y.redAdd(this.y);
|
|
619
|
+
} else {
|
|
620
|
+
var h = this.x.redSqr(), c = this.y.redSqr(), l = c.redSqr(), v = this.x.redAdd(c).redSqr().redISub(h).redISub(l);
|
|
621
|
+
v = v.redIAdd(v);
|
|
622
|
+
var p = h.redAdd(h).redIAdd(h), m = p.redSqr(), y = l.redIAdd(l);
|
|
623
|
+
y = y.redIAdd(y), y = y.redIAdd(y), e = m.redISub(v).redISub(v), r = p.redMul(v.redISub(e)).redISub(y), f = this.y.redMul(this.z), f = f.redIAdd(f);
|
|
624
|
+
}
|
|
625
|
+
return this.curve.jpoint(e, r, f);
|
|
626
|
+
};
|
|
627
|
+
A.prototype._threeDbl = function() {
|
|
628
|
+
var e, r, f;
|
|
629
|
+
if (this.zOne) {
|
|
630
|
+
var i = this.x.redSqr(), d = this.y.redSqr(), n = d.redSqr(), s = this.x.redAdd(d).redSqr().redISub(i).redISub(n);
|
|
631
|
+
s = s.redIAdd(s);
|
|
632
|
+
var a = i.redAdd(i).redIAdd(i).redIAdd(this.curve.a), o = a.redSqr().redISub(s).redISub(s);
|
|
633
|
+
e = o;
|
|
634
|
+
var u = n.redIAdd(n);
|
|
635
|
+
u = u.redIAdd(u), u = u.redIAdd(u), r = a.redMul(s.redISub(o)).redISub(u), f = this.y.redAdd(this.y);
|
|
636
|
+
} else {
|
|
637
|
+
var h = this.z.redSqr(), c = this.y.redSqr(), l = this.x.redMul(c), v = this.x.redSub(h).redMul(this.x.redAdd(h));
|
|
638
|
+
v = v.redAdd(v).redIAdd(v);
|
|
639
|
+
var p = l.redIAdd(l);
|
|
640
|
+
p = p.redIAdd(p);
|
|
641
|
+
var m = p.redAdd(p);
|
|
642
|
+
e = v.redSqr().redISub(m), f = this.y.redAdd(this.z).redSqr().redISub(c).redISub(h);
|
|
643
|
+
var y = c.redSqr();
|
|
644
|
+
y = y.redIAdd(y), y = y.redIAdd(y), y = y.redIAdd(y), r = v.redMul(p.redISub(e)).redISub(y);
|
|
645
|
+
}
|
|
646
|
+
return this.curve.jpoint(e, r, f);
|
|
647
|
+
};
|
|
648
|
+
A.prototype._dbl = function() {
|
|
649
|
+
var e = this.curve.a, r = this.x, f = this.y, i = this.z, d = i.redSqr().redSqr(), n = r.redSqr(), s = f.redSqr(), a = n.redAdd(n).redIAdd(n).redIAdd(e.redMul(d)), o = r.redAdd(r);
|
|
650
|
+
o = o.redIAdd(o);
|
|
651
|
+
var u = o.redMul(s), h = a.redSqr().redISub(u.redAdd(u)), c = u.redISub(h), l = s.redSqr();
|
|
652
|
+
l = l.redIAdd(l), l = l.redIAdd(l), l = l.redIAdd(l);
|
|
653
|
+
var v = a.redMul(c).redISub(l), p = f.redAdd(f).redMul(i);
|
|
654
|
+
return this.curve.jpoint(h, v, p);
|
|
655
|
+
};
|
|
656
|
+
A.prototype.trpl = function() {
|
|
657
|
+
if (!this.curve.zeroA)
|
|
658
|
+
return this.dbl().add(this);
|
|
659
|
+
var e = this.x.redSqr(), r = this.y.redSqr(), f = this.z.redSqr(), i = r.redSqr(), d = e.redAdd(e).redIAdd(e), n = d.redSqr(), s = this.x.redAdd(r).redSqr().redISub(e).redISub(i);
|
|
660
|
+
s = s.redIAdd(s), s = s.redAdd(s).redIAdd(s), s = s.redISub(n);
|
|
661
|
+
var a = s.redSqr(), o = i.redIAdd(i);
|
|
662
|
+
o = o.redIAdd(o), o = o.redIAdd(o), o = o.redIAdd(o);
|
|
663
|
+
var u = d.redIAdd(s).redSqr().redISub(n).redISub(a).redISub(o), h = r.redMul(u);
|
|
664
|
+
h = h.redIAdd(h), h = h.redIAdd(h);
|
|
665
|
+
var c = this.x.redMul(a).redISub(h);
|
|
666
|
+
c = c.redIAdd(c), c = c.redIAdd(c);
|
|
667
|
+
var l = this.y.redMul(u.redMul(o.redISub(u)).redISub(s.redMul(a)));
|
|
668
|
+
l = l.redIAdd(l), l = l.redIAdd(l), l = l.redIAdd(l);
|
|
669
|
+
var v = this.z.redAdd(s).redSqr().redISub(f).redISub(a);
|
|
670
|
+
return this.curve.jpoint(c, l, v);
|
|
671
|
+
};
|
|
672
|
+
A.prototype.mul = function(e, r) {
|
|
673
|
+
return e = new b(e, r), this.curve._wnafMul(this, e);
|
|
674
|
+
};
|
|
675
|
+
A.prototype.eq = function(e) {
|
|
676
|
+
if (e.type === "affine")
|
|
677
|
+
return this.eq(e.toJ());
|
|
678
|
+
if (this === e)
|
|
679
|
+
return !0;
|
|
680
|
+
var r = this.z.redSqr(), f = e.z.redSqr();
|
|
681
|
+
if (this.x.redMul(f).redISub(e.x.redMul(r)).cmpn(0) !== 0)
|
|
682
|
+
return !1;
|
|
683
|
+
var i = r.redMul(this.z), d = f.redMul(e.z);
|
|
684
|
+
return this.y.redMul(d).redISub(e.y.redMul(i)).cmpn(0) === 0;
|
|
685
|
+
};
|
|
686
|
+
A.prototype.eqXToP = function(e) {
|
|
687
|
+
var r = this.z.redSqr(), f = e.toRed(this.curve.red).redMul(r);
|
|
688
|
+
if (this.x.cmp(f) === 0)
|
|
689
|
+
return !0;
|
|
690
|
+
for (var i = e.clone(), d = this.curve.redN.redMul(r); ; ) {
|
|
691
|
+
if (i.iadd(this.curve.n), i.cmp(this.curve.p) >= 0)
|
|
692
|
+
return !1;
|
|
693
|
+
if (f.redIAdd(d), this.x.cmp(f) === 0)
|
|
694
|
+
return !0;
|
|
695
|
+
}
|
|
696
|
+
};
|
|
697
|
+
A.prototype.inspect = function() {
|
|
698
|
+
return this.isInfinity() ? "<EC JPoint Infinity>" : "<EC JPoint x: " + this.x.toString(16, 2) + " y: " + this.y.toString(16, 2) + " z: " + this.z.toString(16, 2) + ">";
|
|
699
|
+
};
|
|
700
|
+
A.prototype.isInfinity = function() {
|
|
701
|
+
return this.z.cmpn(0) === 0;
|
|
702
|
+
};
|
|
703
|
+
var J = j(function(t, e) {
|
|
704
|
+
var r = e;
|
|
705
|
+
r.base = F, r.short = ne, r.mont = /*RicMoo:ethers:require(./mont)*/
|
|
706
|
+
null, r.edwards = /*RicMoo:ethers:require(./edwards)*/
|
|
707
|
+
null;
|
|
708
|
+
}), T = j(function(t, e) {
|
|
709
|
+
var r = e, f = x.assert;
|
|
710
|
+
function i(s) {
|
|
711
|
+
s.type === "short" ? this.curve = new J.short(s) : s.type === "edwards" ? this.curve = new J.edwards(s) : this.curve = new J.mont(s), this.g = this.curve.g, this.n = this.curve.n, this.hash = s.hash, f(this.g.validate(), "Invalid curve"), f(this.g.mul(this.n).isInfinity(), "Invalid curve, G*N != O");
|
|
712
|
+
}
|
|
713
|
+
r.PresetCurve = i;
|
|
714
|
+
function d(s, a) {
|
|
715
|
+
Object.defineProperty(r, s, {
|
|
716
|
+
configurable: !0,
|
|
717
|
+
enumerable: !0,
|
|
718
|
+
get: function() {
|
|
719
|
+
var o = new i(a);
|
|
720
|
+
return Object.defineProperty(r, s, {
|
|
721
|
+
configurable: !0,
|
|
722
|
+
enumerable: !0,
|
|
723
|
+
value: o
|
|
724
|
+
}), o;
|
|
725
|
+
}
|
|
726
|
+
});
|
|
727
|
+
}
|
|
728
|
+
d("p192", {
|
|
729
|
+
type: "short",
|
|
730
|
+
prime: "p192",
|
|
731
|
+
p: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",
|
|
732
|
+
a: "ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",
|
|
733
|
+
b: "64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",
|
|
734
|
+
n: "ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",
|
|
735
|
+
hash: z.sha256,
|
|
736
|
+
gRed: !1,
|
|
737
|
+
g: [
|
|
738
|
+
"188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012",
|
|
739
|
+
"07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"
|
|
740
|
+
]
|
|
741
|
+
}), d("p224", {
|
|
742
|
+
type: "short",
|
|
743
|
+
prime: "p224",
|
|
744
|
+
p: "ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",
|
|
745
|
+
a: "ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",
|
|
746
|
+
b: "b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",
|
|
747
|
+
n: "ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",
|
|
748
|
+
hash: z.sha256,
|
|
749
|
+
gRed: !1,
|
|
750
|
+
g: [
|
|
751
|
+
"b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21",
|
|
752
|
+
"bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"
|
|
753
|
+
]
|
|
754
|
+
}), d("p256", {
|
|
755
|
+
type: "short",
|
|
756
|
+
prime: null,
|
|
757
|
+
p: "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",
|
|
758
|
+
a: "ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",
|
|
759
|
+
b: "5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",
|
|
760
|
+
n: "ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",
|
|
761
|
+
hash: z.sha256,
|
|
762
|
+
gRed: !1,
|
|
763
|
+
g: [
|
|
764
|
+
"6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296",
|
|
765
|
+
"4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"
|
|
766
|
+
]
|
|
767
|
+
}), d("p384", {
|
|
768
|
+
type: "short",
|
|
769
|
+
prime: null,
|
|
770
|
+
p: "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",
|
|
771
|
+
a: "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",
|
|
772
|
+
b: "b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",
|
|
773
|
+
n: "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",
|
|
774
|
+
hash: z.sha384,
|
|
775
|
+
gRed: !1,
|
|
776
|
+
g: [
|
|
777
|
+
"aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7",
|
|
778
|
+
"3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"
|
|
779
|
+
]
|
|
780
|
+
}), d("p521", {
|
|
781
|
+
type: "short",
|
|
782
|
+
prime: null,
|
|
783
|
+
p: "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",
|
|
784
|
+
a: "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",
|
|
785
|
+
b: "00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",
|
|
786
|
+
n: "000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",
|
|
787
|
+
hash: z.sha512,
|
|
788
|
+
gRed: !1,
|
|
789
|
+
g: [
|
|
790
|
+
"000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66",
|
|
791
|
+
"00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"
|
|
792
|
+
]
|
|
793
|
+
}), d("curve25519", {
|
|
794
|
+
type: "mont",
|
|
795
|
+
prime: "p25519",
|
|
796
|
+
p: "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",
|
|
797
|
+
a: "76d06",
|
|
798
|
+
b: "1",
|
|
799
|
+
n: "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",
|
|
800
|
+
hash: z.sha256,
|
|
801
|
+
gRed: !1,
|
|
802
|
+
g: [
|
|
803
|
+
"9"
|
|
804
|
+
]
|
|
805
|
+
}), d("ed25519", {
|
|
806
|
+
type: "edwards",
|
|
807
|
+
prime: "p25519",
|
|
808
|
+
p: "7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",
|
|
809
|
+
a: "-1",
|
|
810
|
+
c: "1",
|
|
811
|
+
// -121665 * (121666^(-1)) (mod P)
|
|
812
|
+
d: "52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",
|
|
813
|
+
n: "1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",
|
|
814
|
+
hash: z.sha256,
|
|
815
|
+
gRed: !1,
|
|
816
|
+
g: [
|
|
817
|
+
"216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a",
|
|
818
|
+
// 4/5
|
|
819
|
+
"6666666666666666666666666666666666666666666666666666666666666658"
|
|
820
|
+
]
|
|
821
|
+
});
|
|
822
|
+
var n;
|
|
823
|
+
try {
|
|
824
|
+
n = /*RicMoo:ethers:require(./precomputed/secp256k1)*/
|
|
825
|
+
null.crash();
|
|
826
|
+
} catch {
|
|
827
|
+
n = void 0;
|
|
828
|
+
}
|
|
829
|
+
d("secp256k1", {
|
|
830
|
+
type: "short",
|
|
831
|
+
prime: "k256",
|
|
832
|
+
p: "ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",
|
|
833
|
+
a: "0",
|
|
834
|
+
b: "7",
|
|
835
|
+
n: "ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",
|
|
836
|
+
h: "1",
|
|
837
|
+
hash: z.sha256,
|
|
838
|
+
// Precomputed endomorphism
|
|
839
|
+
beta: "7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",
|
|
840
|
+
lambda: "5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",
|
|
841
|
+
basis: [
|
|
842
|
+
{
|
|
843
|
+
a: "3086d221a7d46bcde86c90e49284eb15",
|
|
844
|
+
b: "-e4437ed6010e88286f547fa90abfe4c3"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
a: "114ca50f7a8e2f3f657c1108d9d44cfd8",
|
|
848
|
+
b: "3086d221a7d46bcde86c90e49284eb15"
|
|
849
|
+
}
|
|
850
|
+
],
|
|
851
|
+
gRed: !1,
|
|
852
|
+
g: [
|
|
853
|
+
"79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798",
|
|
854
|
+
"483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",
|
|
855
|
+
n
|
|
856
|
+
]
|
|
857
|
+
});
|
|
858
|
+
});
|
|
859
|
+
function R(t) {
|
|
860
|
+
if (!(this instanceof R))
|
|
861
|
+
return new R(t);
|
|
862
|
+
this.hash = t.hash, this.predResist = !!t.predResist, this.outLen = this.hash.outSize, this.minEntropy = t.minEntropy || this.hash.hmacStrength, this._reseed = null, this.reseedInterval = null, this.K = null, this.V = null;
|
|
863
|
+
var e = q.toArray(t.entropy, t.entropyEnc || "hex"), r = q.toArray(t.nonce, t.nonceEnc || "hex"), f = q.toArray(t.pers, t.persEnc || "hex");
|
|
864
|
+
U(
|
|
865
|
+
e.length >= this.minEntropy / 8,
|
|
866
|
+
"Not enough entropy. Minimum is: " + this.minEntropy + " bits"
|
|
867
|
+
), this._init(e, r, f);
|
|
868
|
+
}
|
|
869
|
+
var ee = R;
|
|
870
|
+
R.prototype._init = function(e, r, f) {
|
|
871
|
+
var i = e.concat(r).concat(f);
|
|
872
|
+
this.K = new Array(this.outLen / 8), this.V = new Array(this.outLen / 8);
|
|
873
|
+
for (var d = 0; d < this.V.length; d++)
|
|
874
|
+
this.K[d] = 0, this.V[d] = 1;
|
|
875
|
+
this._update(i), this._reseed = 1, this.reseedInterval = 281474976710656;
|
|
876
|
+
};
|
|
877
|
+
R.prototype._hmac = function() {
|
|
878
|
+
return new z.hmac(this.hash, this.K);
|
|
879
|
+
};
|
|
880
|
+
R.prototype._update = function(e) {
|
|
881
|
+
var r = this._hmac().update(this.V).update([0]);
|
|
882
|
+
e && (r = r.update(e)), this.K = r.digest(), this.V = this._hmac().update(this.V).digest(), e && (this.K = this._hmac().update(this.V).update([1]).update(e).digest(), this.V = this._hmac().update(this.V).digest());
|
|
883
|
+
};
|
|
884
|
+
R.prototype.reseed = function(e, r, f, i) {
|
|
885
|
+
typeof r != "string" && (i = f, f = r, r = null), e = q.toArray(e, r), f = q.toArray(f, i), U(
|
|
886
|
+
e.length >= this.minEntropy / 8,
|
|
887
|
+
"Not enough entropy. Minimum is: " + this.minEntropy + " bits"
|
|
888
|
+
), this._update(e.concat(f || [])), this._reseed = 1;
|
|
889
|
+
};
|
|
890
|
+
R.prototype.generate = function(e, r, f, i) {
|
|
891
|
+
if (this._reseed > this.reseedInterval)
|
|
892
|
+
throw new Error("Reseed is required");
|
|
893
|
+
typeof r != "string" && (i = f, f = r, r = null), f && (f = q.toArray(f, i || "hex"), this._update(f));
|
|
894
|
+
for (var d = []; d.length < e; )
|
|
895
|
+
this.V = this._hmac().update(this.V).digest(), d = d.concat(this.V);
|
|
896
|
+
var n = d.slice(0, e);
|
|
897
|
+
return this._update(f), this._reseed++, q.encode(n, r);
|
|
898
|
+
};
|
|
899
|
+
var Y = x.assert;
|
|
900
|
+
function S(t, e) {
|
|
901
|
+
this.ec = t, this.priv = null, this.pub = null, e.priv && this._importPrivate(e.priv, e.privEnc), e.pub && this._importPublic(e.pub, e.pubEnc);
|
|
902
|
+
}
|
|
903
|
+
var Z = S;
|
|
904
|
+
S.fromPublic = function(e, r, f) {
|
|
905
|
+
return r instanceof S ? r : new S(e, {
|
|
906
|
+
pub: r,
|
|
907
|
+
pubEnc: f
|
|
908
|
+
});
|
|
909
|
+
};
|
|
910
|
+
S.fromPrivate = function(e, r, f) {
|
|
911
|
+
return r instanceof S ? r : new S(e, {
|
|
912
|
+
priv: r,
|
|
913
|
+
privEnc: f
|
|
914
|
+
});
|
|
915
|
+
};
|
|
916
|
+
S.prototype.validate = function() {
|
|
917
|
+
var e = this.getPublic();
|
|
918
|
+
return e.isInfinity() ? { result: !1, reason: "Invalid public key" } : e.validate() ? e.mul(this.ec.curve.n).isInfinity() ? { result: !0, reason: null } : { result: !1, reason: "Public key * N != O" } : { result: !1, reason: "Public key is not a point" };
|
|
919
|
+
};
|
|
920
|
+
S.prototype.getPublic = function(e, r) {
|
|
921
|
+
return typeof e == "string" && (r = e, e = null), this.pub || (this.pub = this.ec.g.mul(this.priv)), r ? this.pub.encode(r, e) : this.pub;
|
|
922
|
+
};
|
|
923
|
+
S.prototype.getPrivate = function(e) {
|
|
924
|
+
return e === "hex" ? this.priv.toString(16, 2) : this.priv;
|
|
925
|
+
};
|
|
926
|
+
S.prototype._importPrivate = function(e, r) {
|
|
927
|
+
this.priv = new b(e, r || 16), this.priv = this.priv.umod(this.ec.curve.n);
|
|
928
|
+
};
|
|
929
|
+
S.prototype._importPublic = function(e, r) {
|
|
930
|
+
if (e.x || e.y) {
|
|
931
|
+
this.ec.curve.type === "mont" ? Y(e.x, "Need x coordinate") : (this.ec.curve.type === "short" || this.ec.curve.type === "edwards") && Y(e.x && e.y, "Need both x and y coordinate"), this.pub = this.ec.curve.point(e.x, e.y);
|
|
932
|
+
return;
|
|
933
|
+
}
|
|
934
|
+
this.pub = this.ec.curve.decodePoint(e, r);
|
|
935
|
+
};
|
|
936
|
+
S.prototype.derive = function(e) {
|
|
937
|
+
return e.validate() || Y(e.validate(), "public point not validated"), e.mul(this.priv).getX();
|
|
938
|
+
};
|
|
939
|
+
S.prototype.sign = function(e, r, f) {
|
|
940
|
+
return this.ec.sign(e, this, r, f);
|
|
941
|
+
};
|
|
942
|
+
S.prototype.verify = function(e, r) {
|
|
943
|
+
return this.ec.verify(e, r, this);
|
|
944
|
+
};
|
|
945
|
+
S.prototype.inspect = function() {
|
|
946
|
+
return "<Key priv: " + (this.priv && this.priv.toString(16, 2)) + " pub: " + (this.pub && this.pub.inspect()) + " >";
|
|
947
|
+
};
|
|
948
|
+
var de = x.assert;
|
|
949
|
+
function K(t, e) {
|
|
950
|
+
if (t instanceof K)
|
|
951
|
+
return t;
|
|
952
|
+
this._importDER(t, e) || (de(t.r && t.s, "Signature without r or s"), this.r = new b(t.r, 16), this.s = new b(t.s, 16), t.recoveryParam === void 0 ? this.recoveryParam = null : this.recoveryParam = t.recoveryParam);
|
|
953
|
+
}
|
|
954
|
+
var C = K;
|
|
955
|
+
function se() {
|
|
956
|
+
this.place = 0;
|
|
957
|
+
}
|
|
958
|
+
function W(t, e) {
|
|
959
|
+
var r = t[e.place++];
|
|
960
|
+
if (!(r & 128))
|
|
961
|
+
return r;
|
|
962
|
+
var f = r & 15;
|
|
963
|
+
if (f === 0 || f > 4)
|
|
964
|
+
return !1;
|
|
965
|
+
for (var i = 0, d = 0, n = e.place; d < f; d++, n++)
|
|
966
|
+
i <<= 8, i |= t[n], i >>>= 0;
|
|
967
|
+
return i <= 127 ? !1 : (e.place = n, i);
|
|
968
|
+
}
|
|
969
|
+
function Q(t) {
|
|
970
|
+
for (var e = 0, r = t.length - 1; !t[e] && !(t[e + 1] & 128) && e < r; )
|
|
971
|
+
e++;
|
|
972
|
+
return e === 0 ? t : t.slice(e);
|
|
973
|
+
}
|
|
974
|
+
K.prototype._importDER = function(e, r) {
|
|
975
|
+
e = x.toArray(e, r);
|
|
976
|
+
var f = new se();
|
|
977
|
+
if (e[f.place++] !== 48)
|
|
978
|
+
return !1;
|
|
979
|
+
var i = W(e, f);
|
|
980
|
+
if (i === !1 || i + f.place !== e.length || e[f.place++] !== 2)
|
|
981
|
+
return !1;
|
|
982
|
+
var d = W(e, f);
|
|
983
|
+
if (d === !1)
|
|
984
|
+
return !1;
|
|
985
|
+
var n = e.slice(f.place, d + f.place);
|
|
986
|
+
if (f.place += d, e[f.place++] !== 2)
|
|
987
|
+
return !1;
|
|
988
|
+
var s = W(e, f);
|
|
989
|
+
if (s === !1 || e.length !== s + f.place)
|
|
990
|
+
return !1;
|
|
991
|
+
var a = e.slice(f.place, s + f.place);
|
|
992
|
+
if (n[0] === 0)
|
|
993
|
+
if (n[1] & 128)
|
|
994
|
+
n = n.slice(1);
|
|
995
|
+
else
|
|
996
|
+
return !1;
|
|
997
|
+
if (a[0] === 0)
|
|
998
|
+
if (a[1] & 128)
|
|
999
|
+
a = a.slice(1);
|
|
1000
|
+
else
|
|
1001
|
+
return !1;
|
|
1002
|
+
return this.r = new b(n), this.s = new b(a), this.recoveryParam = null, !0;
|
|
1003
|
+
};
|
|
1004
|
+
function H(t, e) {
|
|
1005
|
+
if (e < 128) {
|
|
1006
|
+
t.push(e);
|
|
1007
|
+
return;
|
|
1008
|
+
}
|
|
1009
|
+
var r = 1 + (Math.log(e) / Math.LN2 >>> 3);
|
|
1010
|
+
for (t.push(r | 128); --r; )
|
|
1011
|
+
t.push(e >>> (r << 3) & 255);
|
|
1012
|
+
t.push(e);
|
|
1013
|
+
}
|
|
1014
|
+
K.prototype.toDER = function(e) {
|
|
1015
|
+
var r = this.r.toArray(), f = this.s.toArray();
|
|
1016
|
+
for (r[0] & 128 && (r = [0].concat(r)), f[0] & 128 && (f = [0].concat(f)), r = Q(r), f = Q(f); !f[0] && !(f[1] & 128); )
|
|
1017
|
+
f = f.slice(1);
|
|
1018
|
+
var i = [2];
|
|
1019
|
+
H(i, r.length), i = i.concat(r), i.push(2), H(i, f.length);
|
|
1020
|
+
var d = i.concat(f), n = [48];
|
|
1021
|
+
return H(n, d.length), n = n.concat(d), x.encode(n, e);
|
|
1022
|
+
};
|
|
1023
|
+
var ae = (
|
|
1024
|
+
/*RicMoo:ethers:require(brorand)*/
|
|
1025
|
+
function() {
|
|
1026
|
+
throw new Error("unsupported");
|
|
1027
|
+
}
|
|
1028
|
+
), re = x.assert;
|
|
1029
|
+
function w(t) {
|
|
1030
|
+
if (!(this instanceof w))
|
|
1031
|
+
return new w(t);
|
|
1032
|
+
typeof t == "string" && (re(
|
|
1033
|
+
Object.prototype.hasOwnProperty.call(T, t),
|
|
1034
|
+
"Unknown curve " + t
|
|
1035
|
+
), t = T[t]), t instanceof T.PresetCurve && (t = { curve: t }), this.curve = t.curve.curve, this.n = this.curve.n, this.nh = this.n.ushrn(1), this.g = this.curve.g, this.g = t.curve.g, this.g.precompute(t.curve.n.bitLength() + 1), this.hash = t.hash || t.curve.hash;
|
|
1036
|
+
}
|
|
1037
|
+
var ue = w;
|
|
1038
|
+
w.prototype.keyPair = function(e) {
|
|
1039
|
+
return new Z(this, e);
|
|
1040
|
+
};
|
|
1041
|
+
w.prototype.keyFromPrivate = function(e, r) {
|
|
1042
|
+
return Z.fromPrivate(this, e, r);
|
|
1043
|
+
};
|
|
1044
|
+
w.prototype.keyFromPublic = function(e, r) {
|
|
1045
|
+
return Z.fromPublic(this, e, r);
|
|
1046
|
+
};
|
|
1047
|
+
w.prototype.genKeyPair = function(e) {
|
|
1048
|
+
e || (e = {});
|
|
1049
|
+
for (var r = new ee({
|
|
1050
|
+
hash: this.hash,
|
|
1051
|
+
pers: e.pers,
|
|
1052
|
+
persEnc: e.persEnc || "utf8",
|
|
1053
|
+
entropy: e.entropy || ae(this.hash.hmacStrength),
|
|
1054
|
+
entropyEnc: e.entropy && e.entropyEnc || "utf8",
|
|
1055
|
+
nonce: this.n.toArray()
|
|
1056
|
+
}), f = this.n.byteLength(), i = this.n.sub(new b(2)); ; ) {
|
|
1057
|
+
var d = new b(r.generate(f));
|
|
1058
|
+
if (!(d.cmp(i) > 0))
|
|
1059
|
+
return d.iaddn(1), this.keyFromPrivate(d);
|
|
1060
|
+
}
|
|
1061
|
+
};
|
|
1062
|
+
w.prototype._truncateToN = function(e, r) {
|
|
1063
|
+
var f = e.byteLength() * 8 - this.n.bitLength();
|
|
1064
|
+
return f > 0 && (e = e.ushrn(f)), !r && e.cmp(this.n) >= 0 ? e.sub(this.n) : e;
|
|
1065
|
+
};
|
|
1066
|
+
w.prototype.sign = function(e, r, f, i) {
|
|
1067
|
+
typeof f == "object" && (i = f, f = null), i || (i = {}), r = this.keyFromPrivate(r, f), e = this._truncateToN(new b(e, 16));
|
|
1068
|
+
for (var d = this.n.byteLength(), n = r.getPrivate().toArray("be", d), s = e.toArray("be", d), a = new ee({
|
|
1069
|
+
hash: this.hash,
|
|
1070
|
+
entropy: n,
|
|
1071
|
+
nonce: s,
|
|
1072
|
+
pers: i.pers,
|
|
1073
|
+
persEnc: i.persEnc || "utf8"
|
|
1074
|
+
}), o = this.n.sub(new b(1)), u = 0; ; u++) {
|
|
1075
|
+
var h = i.k ? i.k(u) : new b(a.generate(this.n.byteLength()));
|
|
1076
|
+
if (h = this._truncateToN(h, !0), !(h.cmpn(1) <= 0 || h.cmp(o) >= 0)) {
|
|
1077
|
+
var c = this.g.mul(h);
|
|
1078
|
+
if (!c.isInfinity()) {
|
|
1079
|
+
var l = c.getX(), v = l.umod(this.n);
|
|
1080
|
+
if (v.cmpn(0) !== 0) {
|
|
1081
|
+
var p = h.invm(this.n).mul(v.mul(r.getPrivate()).iadd(e));
|
|
1082
|
+
if (p = p.umod(this.n), p.cmpn(0) !== 0) {
|
|
1083
|
+
var m = (c.getY().isOdd() ? 1 : 0) | (l.cmp(v) !== 0 ? 2 : 0);
|
|
1084
|
+
return i.canonical && p.cmp(this.nh) > 0 && (p = this.n.sub(p), m ^= 1), new C({ r: v, s: p, recoveryParam: m });
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
};
|
|
1091
|
+
w.prototype.verify = function(e, r, f, i) {
|
|
1092
|
+
e = this._truncateToN(new b(e, 16)), f = this.keyFromPublic(f, i), r = new C(r, "hex");
|
|
1093
|
+
var d = r.r, n = r.s;
|
|
1094
|
+
if (d.cmpn(1) < 0 || d.cmp(this.n) >= 0 || n.cmpn(1) < 0 || n.cmp(this.n) >= 0)
|
|
1095
|
+
return !1;
|
|
1096
|
+
var s = n.invm(this.n), a = s.mul(e).umod(this.n), o = s.mul(d).umod(this.n), u;
|
|
1097
|
+
return this.curve._maxwellTrick ? (u = this.g.jmulAdd(a, f.getPublic(), o), u.isInfinity() ? !1 : u.eqXToP(d)) : (u = this.g.mulAdd(a, f.getPublic(), o), u.isInfinity() ? !1 : u.getX().umod(this.n).cmp(d) === 0);
|
|
1098
|
+
};
|
|
1099
|
+
w.prototype.recoverPubKey = function(t, e, r, f) {
|
|
1100
|
+
re((3 & r) === r, "The recovery param is more than two bits"), e = new C(e, f);
|
|
1101
|
+
var i = this.n, d = new b(t), n = e.r, s = e.s, a = r & 1, o = r >> 1;
|
|
1102
|
+
if (n.cmp(this.curve.p.umod(this.curve.n)) >= 0 && o)
|
|
1103
|
+
throw new Error("Unable to find sencond key candinate");
|
|
1104
|
+
o ? n = this.curve.pointFromX(n.add(this.curve.n), a) : n = this.curve.pointFromX(n, a);
|
|
1105
|
+
var u = e.r.invm(i), h = i.sub(d).mul(u).umod(i), c = s.mul(u).umod(i);
|
|
1106
|
+
return this.g.mulAdd(h, n, c);
|
|
1107
|
+
};
|
|
1108
|
+
w.prototype.getKeyRecoveryParam = function(t, e, r, f) {
|
|
1109
|
+
if (e = new C(e, f), e.recoveryParam !== null)
|
|
1110
|
+
return e.recoveryParam;
|
|
1111
|
+
for (var i = 0; i < 4; i++) {
|
|
1112
|
+
var d;
|
|
1113
|
+
try {
|
|
1114
|
+
d = this.recoverPubKey(t, e, i);
|
|
1115
|
+
} catch {
|
|
1116
|
+
continue;
|
|
1117
|
+
}
|
|
1118
|
+
if (d.eq(r))
|
|
1119
|
+
return i;
|
|
1120
|
+
}
|
|
1121
|
+
throw new Error("Unable to find valid recovery factor");
|
|
1122
|
+
};
|
|
1123
|
+
var he = j(function(t, e) {
|
|
1124
|
+
var r = e;
|
|
1125
|
+
r.version = "6.5.4", r.utils = x, r.rand = /*RicMoo:ethers:require(brorand)*/
|
|
1126
|
+
function() {
|
|
1127
|
+
throw new Error("unsupported");
|
|
1128
|
+
}, r.curve = J, r.curves = T, r.ec = ue, r.eddsa = /*RicMoo:ethers:require(./elliptic/eddsa)*/
|
|
1129
|
+
null;
|
|
1130
|
+
}), ve = he.ec;
|
|
1131
|
+
export {
|
|
1132
|
+
ve as EC
|
|
1133
|
+
};
|