@sabaaa1/common 0.0.1
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/.env.example +5 -0
- package/.eslintrc.json +18 -0
- package/README.md +164 -0
- package/copyPackageJson.js +81 -0
- package/handleCDNWorkers.js +92 -0
- package/jest.config.ts +10 -0
- package/package.json +101 -0
- package/polyfillWorker.ts +15 -0
- package/project.json +32 -0
- package/src/API/API.ts +203 -0
- package/src/API/admin-calls.ts +8 -0
- package/src/API/ai-calls.ts +48 -0
- package/src/API/brotherhoodCalls.ts +184 -0
- package/src/API/callLifiAPI.ts +41 -0
- package/src/API/callMonitor.ts +9 -0
- package/src/API/callOdosAPI.ts +89 -0
- package/src/API/callOneInchAPI.ts +47 -0
- package/src/API/callRelayer.ts +23 -0
- package/src/API/checkRisk.ts +7 -0
- package/src/API/duneAPI.ts +26 -0
- package/src/API/enclaveCalls.ts +23 -0
- package/src/API/fetchCommitmentsCache.ts +63 -0
- package/src/API/generate-trading-points.ts +77 -0
- package/src/API/get-token-data.ts +12 -0
- package/src/API/getBridgeProtocols.ts +16 -0
- package/src/API/getCoingeckoPrice.ts +59 -0
- package/src/API/getGasEstimates.ts +30 -0
- package/src/API/getLifiStatus.ts +35 -0
- package/src/API/getRelayerURL.ts +27 -0
- package/src/API/getServerURL.ts +116 -0
- package/src/API/getTokenPrice.ts +39 -0
- package/src/API/getWebsiteURL.ts +58 -0
- package/src/API/index.ts +19 -0
- package/src/API/is-tx-stateless.ts +32 -0
- package/src/API/kycCalls.ts +81 -0
- package/src/API/leaderboardCalls.ts +32 -0
- package/src/API/mysteryBoxesCalls.ts +141 -0
- package/src/API/passwordCalls.ts +34 -0
- package/src/API/proxyAccountsCalls.ts +40 -0
- package/src/API/referralsCalls.ts +52 -0
- package/src/API/relayCalls.ts +14 -0
- package/src/API/restoreSnapshots.ts +7 -0
- package/src/API/rewardsUserCalls.ts +124 -0
- package/src/API/send-telegram-callback.ts +17 -0
- package/src/API/simulate-batch-tx.ts +19 -0
- package/src/API/tenderly.api.ts +96 -0
- package/src/API/token-calls.ts +19 -0
- package/src/API/weeklyAnalyticCalls.ts +43 -0
- package/src/constants/activity.constants.ts +10 -0
- package/src/constants/addresses.constants.ts +74 -0
- package/src/constants/assets.constants.ts +15 -0
- package/src/constants/backend.constants.ts +16 -0
- package/src/constants/balance.constants.ts +1 -0
- package/src/constants/bridging.constants.ts +5 -0
- package/src/constants/chains.constants.ts +194 -0
- package/src/constants/coingecko.constants.ts +67 -0
- package/src/constants/contracts.constants.ts +106 -0
- package/src/constants/conversion.constants.ts +1 -0
- package/src/constants/deploy-data/deploy-data-arbMainnet.json +5685 -0
- package/src/constants/deploy-data/deploy-data-arcTestnet.json +6157 -0
- package/src/constants/deploy-data/deploy-data-avalanche.json +5921 -0
- package/src/constants/deploy-data/deploy-data-base.json +5695 -0
- package/src/constants/deploy-data/deploy-data-bnbMainnet.json +5921 -0
- package/src/constants/deploy-data/deploy-data-ethMainnet.json +5922 -0
- package/src/constants/deploy-data/deploy-data-localhost.json +5921 -0
- package/src/constants/deploy-data/deploy-data-optimism.json +5687 -0
- package/src/constants/deploy-data/deploy-data-polygon.json +5695 -0
- package/src/constants/deploy-data/index.ts +21 -0
- package/src/constants/events.constants.ts +10 -0
- package/src/constants/fees.constants.ts +4 -0
- package/src/constants/function-signatures.constants.ts +6 -0
- package/src/constants/index.ts +30 -0
- package/src/constants/kyc.constants.ts +202 -0
- package/src/constants/lifi.constants.ts +1 -0
- package/src/constants/mediaUrls.constants.ts +25 -0
- package/src/constants/mystery-boxes.constants.ts +402 -0
- package/src/constants/oauthUrls.constants.ts +7 -0
- package/src/constants/permit2.constants.ts +28 -0
- package/src/constants/presale.constants.ts +503 -0
- package/src/constants/protocol.constants.ts +65 -0
- package/src/constants/reorg-depths.constants.ts +13 -0
- package/src/constants/rewards.constants.ts +27 -0
- package/src/constants/save-depths.ts +13 -0
- package/src/constants/server.constants.ts +233 -0
- package/src/constants/tasks.constants.ts +205 -0
- package/src/constants/token-data/ERC20Registry.ts +90 -0
- package/src/constants/token-data/arbMainnetRegistry.json +1841 -0
- package/src/constants/token-data/arbMainnetRegistryFixed.json +1841 -0
- package/src/constants/token-data/arcTestnetRegistry.json +436 -0
- package/src/constants/token-data/avalancheRegistry.json +729 -0
- package/src/constants/token-data/avalancheRegistryFixed.json +729 -0
- package/src/constants/token-data/baseRegistry.json +1134 -0
- package/src/constants/token-data/baseRegistryFixed.json +1134 -0
- package/src/constants/token-data/bnbMainnetRegistry.json +900 -0
- package/src/constants/token-data/bnbMainnetRegistryFixed.json +900 -0
- package/src/constants/token-data/ethMainnetRegistry.json +4298 -0
- package/src/constants/token-data/ethMainnetRegistryFixed.json +4298 -0
- package/src/constants/token-data/index.ts +60 -0
- package/src/constants/token-data/localhostRegistry.json +2784 -0
- package/src/constants/token-data/optimismRegistry.json +701 -0
- package/src/constants/token-data/optimismRegistryFixed.json +701 -0
- package/src/constants/token-data/polygonRegistry.json +2309 -0
- package/src/constants/token-data/polygonRegistryFixed.json +2309 -0
- package/src/constants/token-data/popularTokens.constants.ts +11 -0
- package/src/constants/token-data/tokenPricing.consts.ts +2 -0
- package/src/constants/token.limits.constants.ts +31 -0
- package/src/constants/vite.constants.ts +74 -0
- package/src/constants/wallet.constants.ts +9 -0
- package/src/crypto/babyJub.ts +31 -0
- package/src/crypto/index.ts +3 -0
- package/src/crypto/poseidon.ts +36 -0
- package/src/crypto/preProcessing.ts +20 -0
- package/src/data-structures/ApprovalDBs/EventsPublicApprovalsDB.ts +288 -0
- package/src/data-structures/ApprovalDBs/index.ts +1 -0
- package/src/data-structures/Hinkal/Hinkal.ts +746 -0
- package/src/data-structures/Hinkal/IHinkal.ts +315 -0
- package/src/data-structures/Hinkal/handleAutoDepositBack.ts +138 -0
- package/src/data-structures/Hinkal/hinkalActionFundApproveAndTransact.ts +64 -0
- package/src/data-structures/Hinkal/hinkalActionReceive.ts +65 -0
- package/src/data-structures/Hinkal/hinkalActionStake.ts +152 -0
- package/src/data-structures/Hinkal/hinkalApprove.ts +170 -0
- package/src/data-structures/Hinkal/hinkalCheckTokenRegistry.ts +26 -0
- package/src/data-structures/Hinkal/hinkalDeposit.ts +199 -0
- package/src/data-structures/Hinkal/hinkalGetRecipientInfo.ts +12 -0
- package/src/data-structures/Hinkal/hinkalGetZkMeProvider.ts +31 -0
- package/src/data-structures/Hinkal/hinkalInsideTransact.ts +190 -0
- package/src/data-structures/Hinkal/hinkalMultiSend.ts +26 -0
- package/src/data-structures/Hinkal/hinkalPrivateWallet.ts +198 -0
- package/src/data-structures/Hinkal/hinkalProoflessDeposit.ts +91 -0
- package/src/data-structures/Hinkal/hinkalProxySwap.ts +91 -0
- package/src/data-structures/Hinkal/hinkalSignSubAccount.ts +28 -0
- package/src/data-structures/Hinkal/hinkalSwap.ts +157 -0
- package/src/data-structures/Hinkal/hinkalTransfer.ts +171 -0
- package/src/data-structures/Hinkal/hinkalWithdraw.ts +161 -0
- package/src/data-structures/Hinkal/index.ts +9 -0
- package/src/data-structures/Hinkal/resetMerkleTrees.ts +64 -0
- package/src/data-structures/IndexedDB/activity-db.ts +204 -0
- package/src/data-structures/IndexedDB/balances-db.ts +97 -0
- package/src/data-structures/IndexedDB/contact-db.ts +81 -0
- package/src/data-structures/IndexedDB/index.ts +6 -0
- package/src/data-structures/IndexedDB/prices-db.ts +89 -0
- package/src/data-structures/IndexedDB/private-balances-db.ts +31 -0
- package/src/data-structures/IndexedDB/signatures-db.ts +62 -0
- package/src/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.ts +152 -0
- package/src/data-structures/TokenDBs/AlchemyPublicTokensDB.ts +224 -0
- package/src/data-structures/TokenDBs/ArcPublicTokensDB.ts +198 -0
- package/src/data-structures/TokenDBs/EventsPublicTokensDB.ts +216 -0
- package/src/data-structures/TokenDBs/IPublicTokensDB.ts +7 -0
- package/src/data-structures/TokenDBs/PrivateTokensDB.ts +96 -0
- package/src/data-structures/TokenDBs/PublicTokensDB.ts +49 -0
- package/src/data-structures/TokenDBs/index.ts +4 -0
- package/src/data-structures/TokenDBs/token-visibility-db.ts +154 -0
- package/src/data-structures/ValueCache/ValueCache.ts +29 -0
- package/src/data-structures/ValueCache/index.ts +1 -0
- package/src/data-structures/cacheDevices/AttachableMemoryCacheDevice.ts +33 -0
- package/src/data-structures/cacheDevices/BaseCacheDevice.ts +30 -0
- package/src/data-structures/cacheDevices/FileCacheDevice.ts +59 -0
- package/src/data-structures/cacheDevices/LocalStorageCacheDevice.ts +36 -0
- package/src/data-structures/cacheDevices/index.ts +2 -0
- package/src/data-structures/crypto-keys/decodeUTXO.ts +60 -0
- package/src/data-structures/crypto-keys/encryptDecryptUtxo.ts +74 -0
- package/src/data-structures/crypto-keys/index.ts +4 -0
- package/src/data-structures/crypto-keys/keyUtils.ts +8 -0
- package/src/data-structures/crypto-keys/keys.ts +203 -0
- package/src/data-structures/custom-token-registry/CustomTokenRegistry.ts +49 -0
- package/src/data-structures/event-service/AbstractAccessTokenSnapshotService.ts +142 -0
- package/src/data-structures/event-service/AbstractApprovalsSnapshotService.ts +152 -0
- package/src/data-structures/event-service/AbstractCommitmentsSnapshotService.ts +116 -0
- package/src/data-structures/event-service/AbstractEventService.ts +44 -0
- package/src/data-structures/event-service/AbstractNullifierSnapshotService.ts +76 -0
- package/src/data-structures/event-service/AbstractSnapshotService.ts +63 -0
- package/src/data-structures/event-service/BlockchainEventEmitter.ts +132 -0
- package/src/data-structures/event-service/index.ts +7 -0
- package/src/data-structures/index.ts +18 -0
- package/src/data-structures/merkle-tree/MerkleTree.test.ts +77 -0
- package/src/data-structures/merkle-tree/MerkleTree.ts +253 -0
- package/src/data-structures/merkle-tree/MerkleTreeIncompleteError.ts +6 -0
- package/src/data-structures/merkle-tree/getPatchedAccessTokenMerkleTree.ts +24 -0
- package/src/data-structures/merkle-tree/index.ts +3 -0
- package/src/data-structures/presale/PresaleContractWrapper.ts +80 -0
- package/src/data-structures/presale/index.ts +1 -0
- package/src/data-structures/provider-adapter/IProviderAdapter.ts +43 -0
- package/src/data-structures/snapshot/ClientAccessTokenSnapshotService.ts +41 -0
- package/src/data-structures/snapshot/ClientApprovalsSnapshotService.ts +36 -0
- package/src/data-structures/snapshot/ClientCommitmentsSnapshotService.ts +30 -0
- package/src/data-structures/snapshot/ClientNullifierSnapshotService.ts +28 -0
- package/src/data-structures/snapshot/SnapshotFetcherService.ts +68 -0
- package/src/data-structures/snapshot/index.ts +1 -0
- package/src/data-structures/token-price-fetcher/TokenChecker.ts +45 -0
- package/src/data-structures/token-price-fetcher/index.ts +1 -0
- package/src/data-structures/tor/HttpClient.ts +118 -0
- package/src/data-structures/tor/TorAdapter.ts +94 -0
- package/src/data-structures/tor/TorClient.ts +283 -0
- package/src/data-structures/tor/WebSocketDuplex.ts +32 -0
- package/src/data-structures/tor/index.ts +3 -0
- package/src/data-structures/transactions-manager/history/history.types.ts +14 -0
- package/src/data-structures/transactions-manager/index.ts +1 -0
- package/src/data-structures/utxo/Utxo.ts +189 -0
- package/src/error-handling/customErrors/ErrorWithAmount.ts +8 -0
- package/src/error-handling/customErrors/ErrorWithTx.ts +10 -0
- package/src/error-handling/customErrors/FeeOverTransactionValueError.ts +16 -0
- package/src/error-handling/customErrors/SimulationFailureError.ts +9 -0
- package/src/error-handling/customErrors/customErrors.helpers.ts +39 -0
- package/src/error-handling/customErrors/index.ts +5 -0
- package/src/error-handling/error-codes.constants.ts +214 -0
- package/src/error-handling/get-error.message.ts +149 -0
- package/src/error-handling/handleErrorRestore.ts +25 -0
- package/src/error-handling/index.ts +7 -0
- package/src/error-handling/logError.ts +8 -0
- package/src/error-handling/logger.ts +21 -0
- package/src/error-handling/types.ts +10 -0
- package/src/externalABIs/BUSD.ts +516 -0
- package/src/externalABIs/BabPassport.json +24 -0
- package/src/externalABIs/DAI.ts +331 -0
- package/src/externalABIs/ERC1155.json +316 -0
- package/src/externalABIs/ERC20.json +297 -0
- package/src/externalABIs/ERC20.ts +1 -0
- package/src/externalABIs/ERC721.json +205 -0
- package/src/externalABIs/GalxePassport.json +23 -0
- package/src/externalABIs/IQuoterV2.json +211 -0
- package/src/externalABIs/ISwapRouter.json +568 -0
- package/src/externalABIs/IUniswapV3Factory.json +207 -0
- package/src/externalABIs/IUniswapV3Pool.json +999 -0
- package/src/externalABIs/NodeInterfaceABI.json +1 -0
- package/src/externalABIs/OptimismGasPriceOracle.json +1 -0
- package/src/externalABIs/PoLidoNftAbi.json +307 -0
- package/src/externalABIs/SanctionsList.ts +86 -0
- package/src/externalABIs/USDC.ts +718 -0
- package/src/externalABIs/USDR.ts +343 -0
- package/src/externalABIs/USDR3CRV.ts +539 -0
- package/src/externalABIs/USDT.ts +390 -0
- package/src/externalABIs/UniswapV2PoolAbi.json +66 -0
- package/src/externalABIs/WETH.ts +153 -0
- package/src/externalABIs/amToken.ts +347 -0
- package/src/externalABIs/index.ts +53 -0
- package/src/externalABIs/swapAbi.ts +442 -0
- package/src/externalABIs/transactionsProver.json +45 -0
- package/src/functions/index.ts +16 -0
- package/src/functions/kyc/aiPriseHelper.ts +0 -0
- package/src/functions/kyc/authentoHelper.ts +44 -0
- package/src/functions/kyc/index.ts +3 -0
- package/src/functions/kyc/openDefaultPassportWindow.ts +9 -0
- package/src/functions/kyc/passportHelper.ts +13 -0
- package/src/functions/kyc/zkMeHelper.ts +69 -0
- package/src/functions/pre-transaction/constructAdminData.ts +21 -0
- package/src/functions/pre-transaction/getExternalSwapAddress.ts +30 -0
- package/src/functions/pre-transaction/getFeeStructure.ts +44 -0
- package/src/functions/pre-transaction/getFlatFees.ts +88 -0
- package/src/functions/pre-transaction/getSignatureDataForTransact.ts +16 -0
- package/src/functions/pre-transaction/getVolatileTransferAmount.ts +56 -0
- package/src/functions/pre-transaction/index.ts +7 -0
- package/src/functions/pre-transaction/interaction-to-action.ts +17 -0
- package/src/functions/pre-transaction/merge-with-fee-structure-emporium.ts +50 -0
- package/src/functions/pre-transaction/merge-with-fee-structure.ts +35 -0
- package/src/functions/pre-transaction/outputApprovalDataProcessing.ts +95 -0
- package/src/functions/pre-transaction/outputUtxoProcessing.ts +52 -0
- package/src/functions/pre-transaction/process-gas-estimates.ts +36 -0
- package/src/functions/pre-transaction/shouldPatchAccessTokenMerkleTree.ts +15 -0
- package/src/functions/private-wallet/emporium.helpers.ts +296 -0
- package/src/functions/private-wallet/emporium.swap.helpers.ts +284 -0
- package/src/functions/private-wallet/index.ts +3 -0
- package/src/functions/private-wallet/opProducer.ts +33 -0
- package/src/functions/snarkjs/common.snarkjs.ts +377 -0
- package/src/functions/snarkjs/constant.ts +490 -0
- package/src/functions/snarkjs/constructEmporiumProof.ts +301 -0
- package/src/functions/snarkjs/constructGeneralZkProof.ts +281 -0
- package/src/functions/snarkjs/generateCircomData.ts +81 -0
- package/src/functions/snarkjs/generateZkProof.ts +21 -0
- package/src/functions/snarkjs/generateZkProofEnclave.ts +45 -0
- package/src/functions/snarkjs/generateZkProofSelf.ts +29 -0
- package/src/functions/snarkjs/getOriginalSender.ts +4 -0
- package/src/functions/snarkjs/getZKFiles.ts +29 -0
- package/src/functions/snarkjs/index.ts +4 -0
- package/src/functions/staking/index.ts +78 -0
- package/src/functions/utils/addresses.ts +37 -0
- package/src/functions/utils/amounts.utils.test.ts +91 -0
- package/src/functions/utils/amounts.utils.ts +119 -0
- package/src/functions/utils/arraysMatch.ts +4 -0
- package/src/functions/utils/cacheDevice.utils.ts +21 -0
- package/src/functions/utils/cacheFunctions.ts +154 -0
- package/src/functions/utils/caseInsensitive.utils.ts +10 -0
- package/src/functions/utils/convertEmporiumOpToCallInfo.ts +19 -0
- package/src/functions/utils/convertIntegrationProviderToExternalActionId.ts +14 -0
- package/src/functions/utils/create-provider.ts +11 -0
- package/src/functions/utils/encodeTokenWithId.ts +4 -0
- package/src/functions/utils/encryptInputForEnclave.ts +119 -0
- package/src/functions/utils/enum.utils.ts +30 -0
- package/src/functions/utils/erc20tokenFunctions.ts +110 -0
- package/src/functions/utils/ethers-formatter.utils.ts +32 -0
- package/src/functions/utils/evmNetworkFunctions.ts +9 -0
- package/src/functions/utils/external-action.utils.ts +15 -0
- package/src/functions/utils/fees.utils.ts +26 -0
- package/src/functions/utils/get-hinkal-approvals.ts +36 -0
- package/src/functions/utils/get-signature-header.ts +5 -0
- package/src/functions/utils/getBlockExplorerUrl.ts +14 -0
- package/src/functions/utils/getDataFromTransaction.ts +79 -0
- package/src/functions/utils/getRecipientInfoFromUserKeys.ts +28 -0
- package/src/functions/utils/inLogicMetadata.ts +9 -0
- package/src/functions/utils/index.ts +43 -0
- package/src/functions/utils/involves-permit2-op.ts +17 -0
- package/src/functions/utils/ipfs.ts +74 -0
- package/src/functions/utils/is-valid-url.ts +5 -0
- package/src/functions/utils/lifi.utils.ts +3 -0
- package/src/functions/utils/memoize.utils.ts +23 -0
- package/src/functions/utils/merkleTree.utils.ts +27 -0
- package/src/functions/utils/mutexes.utils.ts +3 -0
- package/src/functions/utils/mystery-box-auction.utils.ts +61 -0
- package/src/functions/utils/networks.utils.ts +6 -0
- package/src/functions/utils/nftTokenFunctions.ts +25 -0
- package/src/functions/utils/nickname.utils.ts +4 -0
- package/src/functions/utils/postToOffscreen.ts +6 -0
- package/src/functions/utils/prepareHinkal.ts +78 -0
- package/src/functions/utils/process.utils.ts +23 -0
- package/src/functions/utils/processUseApprovalUtxoData.ts +26 -0
- package/src/functions/utils/publicBalance.utils.ts +131 -0
- package/src/functions/utils/reloadPage.ts +1 -0
- package/src/functions/utils/replaceAddressInCalldata.ts +6 -0
- package/src/functions/utils/requireEnv.ts +10 -0
- package/src/functions/utils/resolve-sync.utils.ts +40 -0
- package/src/functions/utils/rpc-int-encode.ts +7 -0
- package/src/functions/utils/serialize.utils.ts +12 -0
- package/src/functions/utils/string.utils.ts +92 -0
- package/src/functions/utils/time.utils.ts +80 -0
- package/src/functions/utils/token-check.utils.ts +12 -0
- package/src/functions/utils/trimFieldValues.ts +24 -0
- package/src/functions/utils/upToDateState.ts +12 -0
- package/src/functions/utils/userAgent.ts +26 -0
- package/src/functions/utils/walletBalances.utils.ts +117 -0
- package/src/functions/web3/EIP-712.test.ts +302 -0
- package/src/functions/web3/EIP-712.ts +243 -0
- package/src/functions/web3/etherFunctions.test.ts +129 -0
- package/src/functions/web3/etherFunctions.ts +84 -0
- package/src/functions/web3/events/balanceChangedCustomHandler.ts +13 -0
- package/src/functions/web3/events/balanceChangedHandler.ts +10 -0
- package/src/functions/web3/events/getApprovedBalance.ts +154 -0
- package/src/functions/web3/events/getInputUtxoAndBalance.ts +305 -0
- package/src/functions/web3/events/getInputUtxosEnclave.ts +40 -0
- package/src/functions/web3/events/getShieldedBalance.ts +163 -0
- package/src/functions/web3/events/getTransactionLogEvents.ts +55 -0
- package/src/functions/web3/events/index.ts +7 -0
- package/src/functions/web3/events/web3RetrieveEvents.ts +33 -0
- package/src/functions/web3/functionCalls/accessTokenCalls.ts +27 -0
- package/src/functions/web3/functionCalls/approveToken.ts +180 -0
- package/src/functions/web3/functionCalls/approveTokensToHinkal.ts +21 -0
- package/src/functions/web3/functionCalls/estimateGasRelayer.ts +40 -0
- package/src/functions/web3/functionCalls/getRootHash.ts +7 -0
- package/src/functions/web3/functionCalls/inHinkalApprovalCalls.ts +60 -0
- package/src/functions/web3/functionCalls/relayFunctions.ts +12 -0
- package/src/functions/web3/functionCalls/transactCallDirect.ts +71 -0
- package/src/functions/web3/functionCalls/transactCallRelayer.ts +57 -0
- package/src/functions/web3/getContractMetadata.ts +43 -0
- package/src/functions/web3/getPublicAddressBalance.ts +17 -0
- package/src/functions/web3/getTokenHolder.ts +53 -0
- package/src/functions/web3/index.ts +9 -0
- package/src/functions/web3/lifiAPI.ts +41 -0
- package/src/functions/web3/odosAPI.ts +50 -0
- package/src/functions/web3/oneInchAPI.ts +47 -0
- package/src/functions/web3/runContractFunction.ts +116 -0
- package/src/functions/web3/uniswapAPI.ts +156 -0
- package/src/index.ts +9 -0
- package/src/mutexes/index.ts +1 -0
- package/src/mutexes/mutex.ts +3 -0
- package/src/providers/EthersProviderAdapter.ts +230 -0
- package/src/providers/TorExternalProvider.ts +36 -0
- package/src/providers/WagmiProviderAdapter.ts +311 -0
- package/src/providers/exportProviers.ts +11 -0
- package/src/providers/prepareEthersHinkal.ts +18 -0
- package/src/providers/prepareWagmiHinkal.ts +16 -0
- package/src/types/API.types.ts +23 -0
- package/src/types/ICacheDevice.ts +5 -0
- package/src/types/IMultiThreadedUtxoUtils.ts +16 -0
- package/src/types/RewardUserEnums.ts +12 -0
- package/src/types/TransactionSimulator.types.ts +30 -0
- package/src/types/WeeklyAnalytics.types.ts +44 -0
- package/src/types/activities.types.ts +90 -0
- package/src/types/admin.types.ts +30 -0
- package/src/types/all-points.types.ts +8 -0
- package/src/types/approvals.types.ts +45 -0
- package/src/types/balances.types.ts +20 -0
- package/src/types/big-intable.types.ts +3 -0
- package/src/types/bridging.types.ts +30 -0
- package/src/types/brotherhood-user.types.ts +13 -0
- package/src/types/cache.types.ts +42 -0
- package/src/types/circom-data.types.ts +120 -0
- package/src/types/coingecko.types.ts +216 -0
- package/src/types/commitments.types.ts +39 -0
- package/src/types/confirmation-request.types.ts +10 -0
- package/src/types/contacts.types.ts +6 -0
- package/src/types/crypto.types.ts +8 -0
- package/src/types/duneAPI.types.ts +9 -0
- package/src/types/eip5792.types.ts +31 -0
- package/src/types/ethereum-network.types.ts +70 -0
- package/src/types/external-action.types.ts +19 -0
- package/src/types/fee.types.ts +11 -0
- package/src/types/generatePoints.ts +14 -0
- package/src/types/hinkal.stake.types.ts +12 -0
- package/src/types/hinkal.types.ts +150 -0
- package/src/types/index.ts +50 -0
- package/src/types/kyc.types.ts +49 -0
- package/src/types/merch-order.types.ts +18 -0
- package/src/types/message.types.ts +6 -0
- package/src/types/mystery-boxes.types.ts +50 -0
- package/src/types/new-rewards.type.ts +181 -0
- package/src/types/offscreen.types.ts +8 -0
- package/src/types/presaleReferral.types.ts +4 -0
- package/src/types/proxy.types.ts +11 -0
- package/src/types/referral.types.ts +13 -0
- package/src/types/relayer.types.ts +16 -0
- package/src/types/remote-proof.types.ts +18 -0
- package/src/types/rewards.types.ts +53 -0
- package/src/types/routing.types.ts +7 -0
- package/src/types/sandbox.types.ts +246 -0
- package/src/types/session.types.ts +12 -0
- package/src/types/signature.types.ts +11 -0
- package/src/types/slippage.types.ts +3 -0
- package/src/types/snark.types.ts +43 -0
- package/src/types/tenderly.api.types.ts +200 -0
- package/src/types/token-prices.types.ts +8 -0
- package/src/types/token-with-id.types.ts +4 -0
- package/src/types/token.types.ts +86 -0
- package/src/types/transactions.types.ts +120 -0
- package/src/types/wc.types.ts +83 -0
- package/src/types/with-id.types.ts +1 -0
- package/src/webworker/performTaskWithWorker.ts +50 -0
- package/src/webworker/snarkjsWorker/snarkjs.d.ts +2 -0
- package/src/webworker/snarkjsWorker/snarkjsWorker.types.ts +18 -0
- package/src/webworker/snarkjsWorker/snarkjsWorkerLauncher.ts +19 -0
- package/src/webworker/snarkjsWorker/snarkjsWorkerLogic.ts +90 -0
- package/src/webworker/utxoWorker/utxoWorker.types.ts +41 -0
- package/src/webworker/utxoWorker/utxoWorkerLauncher.ts +19 -0
- package/src/webworker/utxoWorker/utxoWorkerLogic.ts +107 -0
- package/src/webworker/viteWorkerURL.constant.ts +25 -0
- package/src/webworker/worker.registry.ts +11 -0
- package/src/webworker/worker.types.ts +35 -0
- package/src/webworker/workerErrorHandler.ts +10 -0
- package/src/webworker/workerFactory.ts +47 -0
- package/src/webworker/workerProxy.ts +88 -0
- package/src/webworker/zkProofWorker/zkProofWorker.types.ts +52 -0
- package/src/webworker/zkProofWorker/zkProofWorkerLauncher.ts +19 -0
- package/src/webworker/zkProofWorker/zkProofWorkerLogic.ts +84 -0
- package/tsconfig.json +23 -0
- package/tsconfig.lib.json +10 -0
- package/tsconfig.spec.json +15 -0
- package/vite.config.ts +97 -0
- package/vite.config.workers.ts +51 -0
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import { ethers, TypedDataField } from 'ethers';
|
|
2
|
+
import { DecodedTypedMessageValue } from '../../types/message.types';
|
|
3
|
+
|
|
4
|
+
export const decodeMessage = (
|
|
5
|
+
message: Record<string, any>,
|
|
6
|
+
typeDefinition: TypedDataField[],
|
|
7
|
+
types: Record<string, TypedDataField[]>,
|
|
8
|
+
): Record<string, DecodedTypedMessageValue> => {
|
|
9
|
+
return typeDefinition.reduce(
|
|
10
|
+
(result, { name, type }) => {
|
|
11
|
+
const value = message[name];
|
|
12
|
+
|
|
13
|
+
if (type.endsWith('[]')) {
|
|
14
|
+
const baseType = type.slice(0, -2);
|
|
15
|
+
if (types[baseType] && Array.isArray(value)) {
|
|
16
|
+
const arrayResult = value.reduce(
|
|
17
|
+
(acc, item, index) => ({
|
|
18
|
+
...acc,
|
|
19
|
+
[index]: {
|
|
20
|
+
value: decodeMessage(item, types[baseType], types),
|
|
21
|
+
type: baseType,
|
|
22
|
+
},
|
|
23
|
+
}),
|
|
24
|
+
{},
|
|
25
|
+
);
|
|
26
|
+
return {
|
|
27
|
+
...result,
|
|
28
|
+
[name]: {
|
|
29
|
+
value: arrayResult,
|
|
30
|
+
type,
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
...result,
|
|
36
|
+
[name]: {
|
|
37
|
+
value,
|
|
38
|
+
type,
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
if (types[type]) {
|
|
44
|
+
return {
|
|
45
|
+
...result,
|
|
46
|
+
[name]: {
|
|
47
|
+
value: decodeMessage(value, types[type], types),
|
|
48
|
+
type,
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
return {
|
|
54
|
+
...result,
|
|
55
|
+
[name]: {
|
|
56
|
+
value,
|
|
57
|
+
type,
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
},
|
|
61
|
+
{} as Record<string, DecodedTypedMessageValue>,
|
|
62
|
+
);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export const getDecodedMessage = (
|
|
66
|
+
message: Record<string, any>,
|
|
67
|
+
types: Record<string, TypedDataField[]>,
|
|
68
|
+
primaryType: string,
|
|
69
|
+
) => {
|
|
70
|
+
const decodedMessage = decodeMessage(message, types[primaryType], types);
|
|
71
|
+
return {
|
|
72
|
+
primaryType: {
|
|
73
|
+
value: primaryType,
|
|
74
|
+
type: 'string',
|
|
75
|
+
},
|
|
76
|
+
...decodedMessage,
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
enum PrimaryTypePermit {
|
|
81
|
+
Permit = 'Permit',
|
|
82
|
+
PermitWithExpiry = 'PermitWithExpiry',
|
|
83
|
+
PermitBatch = 'PermitBatch',
|
|
84
|
+
PermitBatchTransferFrom = 'PermitBatchTransferFrom',
|
|
85
|
+
PermitSingle = 'PermitSingle',
|
|
86
|
+
PermitTransferFrom = 'PermitTransferFrom',
|
|
87
|
+
PermitWitnessTransferFrom = 'PermitWitnessTransferFrom',
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const permitTypes = [
|
|
91
|
+
'Permit',
|
|
92
|
+
'PermitWithExpiry',
|
|
93
|
+
'PermitBatch',
|
|
94
|
+
'PermitBatchTransferFrom',
|
|
95
|
+
'PermitSingle',
|
|
96
|
+
'PermitTransferFrom',
|
|
97
|
+
'PermitWitnessTransferFrom',
|
|
98
|
+
];
|
|
99
|
+
|
|
100
|
+
type TokenDetail = {
|
|
101
|
+
token: string;
|
|
102
|
+
amount: string;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
const extractTokenDetailsByPrimaryType = (
|
|
106
|
+
message: Record<string, unknown>,
|
|
107
|
+
primaryType: string,
|
|
108
|
+
): TokenDetail[] | undefined => {
|
|
109
|
+
let tokenDetails: TokenDetail | TokenDetail[] | undefined;
|
|
110
|
+
|
|
111
|
+
switch (primaryType) {
|
|
112
|
+
case PrimaryTypePermit.PermitSingle:
|
|
113
|
+
case PrimaryTypePermit.PermitBatch:
|
|
114
|
+
tokenDetails = message['details'] as TokenDetail | TokenDetail[];
|
|
115
|
+
break;
|
|
116
|
+
case PrimaryTypePermit.PermitBatchTransferFrom:
|
|
117
|
+
case PrimaryTypePermit.PermitTransferFrom:
|
|
118
|
+
case PrimaryTypePermit.PermitWitnessTransferFrom:
|
|
119
|
+
tokenDetails = message['permitted'] as TokenDetail | TokenDetail[];
|
|
120
|
+
break;
|
|
121
|
+
default:
|
|
122
|
+
break;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if (!tokenDetails) return undefined;
|
|
126
|
+
|
|
127
|
+
if (Array.isArray(tokenDetails)) return tokenDetails;
|
|
128
|
+
|
|
129
|
+
return [tokenDetails];
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
const detectPermitAndGetTokenAddress = (
|
|
133
|
+
message: Record<string, any>,
|
|
134
|
+
types: Record<string, TypedDataField[]>,
|
|
135
|
+
primaryType: string,
|
|
136
|
+
): { isPermit: boolean; tokenDetails: TokenDetail[] } => {
|
|
137
|
+
// Check if types definition includes Permit-like structure
|
|
138
|
+
const hasPermitTypeDefinition = Object.keys(types).some((type) => permitTypes.includes(type));
|
|
139
|
+
|
|
140
|
+
if (!hasPermitTypeDefinition) return { isPermit: false, tokenDetails: [] };
|
|
141
|
+
|
|
142
|
+
const tokenDetails = extractTokenDetailsByPrimaryType(message, primaryType);
|
|
143
|
+
if (!tokenDetails) return { isPermit: true, tokenDetails: [] };
|
|
144
|
+
|
|
145
|
+
return {
|
|
146
|
+
isPermit: true,
|
|
147
|
+
tokenDetails,
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export const getPermitInfo = (
|
|
152
|
+
message: Record<string, any>,
|
|
153
|
+
types: Record<string, TypedDataField[]>,
|
|
154
|
+
domain: Record<string, unknown>,
|
|
155
|
+
primaryType: string,
|
|
156
|
+
) => {
|
|
157
|
+
const { isPermit, tokenDetails } = detectPermitAndGetTokenAddress(message, types, primaryType);
|
|
158
|
+
if (!isPermit) return { isPermit: false };
|
|
159
|
+
|
|
160
|
+
let spender: string | undefined;
|
|
161
|
+
|
|
162
|
+
if (!tokenDetails.length) {
|
|
163
|
+
const verifyingContract = domain['verifyingContract'] as string | undefined;
|
|
164
|
+
if (verifyingContract) {
|
|
165
|
+
tokenDetails.push({
|
|
166
|
+
token: verifyingContract,
|
|
167
|
+
amount: ethers.constants.MaxUint256.toString(),
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
} else {
|
|
171
|
+
spender = domain['verifyingContract'] as string | undefined;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return {
|
|
175
|
+
isPermit,
|
|
176
|
+
tokenDetails,
|
|
177
|
+
spender,
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
// EXAMPLE OF PERMIT MESSAGE:
|
|
182
|
+
|
|
183
|
+
// {
|
|
184
|
+
// "types": {
|
|
185
|
+
// "EIP712Domain": [
|
|
186
|
+
// { "name": "name", "type": "string" },
|
|
187
|
+
// { "name": "version", "type": "string" },
|
|
188
|
+
// { "name": "chainId", "type": "uint256" },
|
|
189
|
+
// { "name": "verifyingContract", "type": "address" }
|
|
190
|
+
// ],
|
|
191
|
+
// "Condition": [
|
|
192
|
+
// { "name": "key", "type": "string" },
|
|
193
|
+
// { "name": "allowed", "type": "bool" }
|
|
194
|
+
// ],
|
|
195
|
+
// "Allowance": [
|
|
196
|
+
// { "name": "token", "type": "address" },
|
|
197
|
+
// { "name": "amounts", "type": "uint256[]" }, // array of values
|
|
198
|
+
// { "name": "conditions", "type": "Condition[]" } // nested array of structs
|
|
199
|
+
// ],
|
|
200
|
+
// "Permit": [
|
|
201
|
+
// { "name": "owner", "type": "address" },
|
|
202
|
+
// { "name": "spender", "type": "address" },
|
|
203
|
+
// { "name": "allowances", "type": "Allowance[]" }, // array of structs
|
|
204
|
+
// { "name": "nonce", "type": "uint256" },
|
|
205
|
+
// { "name": "deadline", "type": "uint256" }
|
|
206
|
+
// ]
|
|
207
|
+
// },
|
|
208
|
+
// "domain": {
|
|
209
|
+
// "name": "MyComplexToken",
|
|
210
|
+
// "version": "1",
|
|
211
|
+
// "chainId": 1,
|
|
212
|
+
// "verifyingContract": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef12"
|
|
213
|
+
// },
|
|
214
|
+
// "primaryType": "Permit",
|
|
215
|
+
// "message": {
|
|
216
|
+
// "owner": "0xAaBbCcDdEeFf00112233445566778899AaBbCcDd",
|
|
217
|
+
// "spender": "0xBbCcDdEeFf00112233445566778899AaBbCcDdEe",
|
|
218
|
+
// "allowances": [
|
|
219
|
+
// {
|
|
220
|
+
// "token": "0x111111111117dC0aa78b770fA6A738034120C302",
|
|
221
|
+
// "amounts": [
|
|
222
|
+
// "1000000000000000000",
|
|
223
|
+
// "500000000000000000"
|
|
224
|
+
// ],
|
|
225
|
+
// "conditions": [
|
|
226
|
+
// { "key": "afterTimestamp", "allowed": true },
|
|
227
|
+
// { "key": "maxTransfers", "allowed": false }
|
|
228
|
+
// ]
|
|
229
|
+
// },
|
|
230
|
+
// {
|
|
231
|
+
// "token": "0x222222222117dC0bb78b770fA6A738034120C303",
|
|
232
|
+
// "amounts": [
|
|
233
|
+
// "2500000000000000000"
|
|
234
|
+
// ],
|
|
235
|
+
// "conditions": [
|
|
236
|
+
// { "key": "whitelistedOnly", "allowed": true }
|
|
237
|
+
// ]
|
|
238
|
+
// }
|
|
239
|
+
// ],
|
|
240
|
+
// "nonce": 42,
|
|
241
|
+
// "deadline": 1735689600
|
|
242
|
+
// }
|
|
243
|
+
// }
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import {
|
|
2
|
+
calculateDollarValue,
|
|
3
|
+
getAmountInWei,
|
|
4
|
+
getAmountWithPrecisionOrZero,
|
|
5
|
+
toBigIntWithDecimals,
|
|
6
|
+
} from './etherFunctions';
|
|
7
|
+
import { ERC20Token } from 'src/types';
|
|
8
|
+
import { getERC20Token } from '../utils';
|
|
9
|
+
import { zeroAddress } from 'src/constants';
|
|
10
|
+
import { transactionErrorCodes } from 'src/error-handling';
|
|
11
|
+
// import { toBigIntWithDecimals, getAmountInWei, getAmountWithPrecision } from './etherFunctions';
|
|
12
|
+
// import { getERC20Token } from '../utils';
|
|
13
|
+
// import { zeroAddress } from 'src/constants';
|
|
14
|
+
// import { transactionErrorCodes } from 'src/error-handling';
|
|
15
|
+
|
|
16
|
+
const ethToken: ERC20Token = getERC20Token(zeroAddress, 1) as ERC20Token;
|
|
17
|
+
|
|
18
|
+
describe('toBigIntWithDecimals', () => {
|
|
19
|
+
it('should convert decimal number to bigint with decimal places', () => {
|
|
20
|
+
const decimal = 123.456;
|
|
21
|
+
const [bigintEquivalent, decimalPlaces] = toBigIntWithDecimals(decimal);
|
|
22
|
+
|
|
23
|
+
expect(bigintEquivalent.toString()).toBe('123456');
|
|
24
|
+
expect(decimalPlaces).toBe(3);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('should convert integer number to bigint with zero decimal places', () => {
|
|
28
|
+
const decimal = 789;
|
|
29
|
+
const [bigintEquivalent, decimalPlaces] = toBigIntWithDecimals(decimal);
|
|
30
|
+
|
|
31
|
+
expect(bigintEquivalent.toString()).toBe('789');
|
|
32
|
+
expect(decimalPlaces).toBe(0);
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
it('should convert decimal number with no decimal places to bigint with zero decimal places', () => {
|
|
36
|
+
const decimal = 987.0;
|
|
37
|
+
const [bigintEquivalent, decimalPlaces] = toBigIntWithDecimals(decimal);
|
|
38
|
+
|
|
39
|
+
expect(bigintEquivalent.toString()).toBe('987');
|
|
40
|
+
expect(decimalPlaces).toBe(0);
|
|
41
|
+
});
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
describe('getAmountInWei', () => {
|
|
45
|
+
it('should convert amount to wei with correct decimal places', () => {
|
|
46
|
+
const amount = '123456.789';
|
|
47
|
+
const result = getAmountInWei(ethToken, amount);
|
|
48
|
+
|
|
49
|
+
expect(result.toString()).toEqual('123456789000000000000000');
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it('should throw an error if amount is not a valid number', () => {
|
|
53
|
+
const amount = 'invalid';
|
|
54
|
+
|
|
55
|
+
expect(() => {
|
|
56
|
+
getAmountInWei(ethToken, amount);
|
|
57
|
+
}).toThrowError(transactionErrorCodes.DECIMALS_LIMIT);
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
describe('getAmountWithPrecision', () => {
|
|
62
|
+
// const token: ERC20Token = getERC20Token(zeroAddress, 1) as ERC20Token;
|
|
63
|
+
// it('should throw an error if the precision is greater than the token decimals', () => {
|
|
64
|
+
// const balance = BigInt('123456789000000000000000');
|
|
65
|
+
// const precision = 20;
|
|
66
|
+
// expect(() => {
|
|
67
|
+
// getAmountWithPrecision(balance, token, precision);
|
|
68
|
+
// }).toThrowError(transactionErrorCodes.DECIMALS_LIMIT);
|
|
69
|
+
// });
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
describe('calculateDollarValue', () => {
|
|
73
|
+
it('should calculate the dollar value correctly', () => {
|
|
74
|
+
const tokenAmount = BigInt('1000000000000000000');
|
|
75
|
+
const tokenPriceDollar = 10;
|
|
76
|
+
const precision = 6;
|
|
77
|
+
const result = calculateDollarValue(ethToken, tokenAmount, tokenPriceDollar, precision);
|
|
78
|
+
|
|
79
|
+
expect(result.totalValueDollarsBigInt.toString()).toEqual(BigInt('10000000').toString());
|
|
80
|
+
expect(result.precision).toBe(6);
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
// it('should handle token decimals less than precision', () => {
|
|
84
|
+
// const token = { decimals: 6 };
|
|
85
|
+
// const tokenAmount = BigInt('1000000');
|
|
86
|
+
// const tokenPriceDollar = 10;
|
|
87
|
+
// const precision = 10;
|
|
88
|
+
|
|
89
|
+
// const result = calculateDollarValue(ethToken, tokenAmount, tokenPriceDollar, precision);
|
|
90
|
+
|
|
91
|
+
// expect(result.totalValueDollarsBigInt).toBe(BigInt('1000'));
|
|
92
|
+
// expect(result.precision).toBe(10);
|
|
93
|
+
// });
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
describe('getAmountWithPrecisionOrZero', () => {
|
|
97
|
+
it('should return "0" if token or amount is undefined', () => {
|
|
98
|
+
const token: ERC20Token | undefined = undefined;
|
|
99
|
+
const amount: bigint | undefined = undefined;
|
|
100
|
+
const result = getAmountWithPrecisionOrZero(token, amount);
|
|
101
|
+
expect(result).toBe('0');
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
it('should return "0" if token is undefined', () => {
|
|
105
|
+
const token: ERC20Token | undefined = undefined;
|
|
106
|
+
const amount: bigint | undefined = 100n;
|
|
107
|
+
const result = getAmountWithPrecisionOrZero(token, amount);
|
|
108
|
+
expect(result).toBe('0');
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
it('should return "0" if amount is undefined', () => {
|
|
112
|
+
const amount: bigint | undefined = undefined;
|
|
113
|
+
const result = getAmountWithPrecisionOrZero(ethToken, amount);
|
|
114
|
+
expect(result).toBe('0');
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
it('should return the amount with the specified precision - 6 digits', () => {
|
|
118
|
+
const token: ERC20Token = {
|
|
119
|
+
decimals: 6,
|
|
120
|
+
chainId: 1,
|
|
121
|
+
symbol: 'abc',
|
|
122
|
+
name: 'abc token',
|
|
123
|
+
erc20TokenAddress: zeroAddress,
|
|
124
|
+
};
|
|
125
|
+
const amount = 123456789n;
|
|
126
|
+
const result = getAmountWithPrecisionOrZero(token, amount);
|
|
127
|
+
expect(result).toBe('123.456789');
|
|
128
|
+
});
|
|
129
|
+
});
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { BigNumber, ethers } from 'ethers';
|
|
2
|
+
import { transactionErrorCodes } from '../../error-handling/error-codes.constants';
|
|
3
|
+
import { ERC20Token } from '../../types/token.types';
|
|
4
|
+
|
|
5
|
+
export const ethToWei = (amount: string): bigint => ethers.utils.parseEther(amount).toBigInt();
|
|
6
|
+
|
|
7
|
+
export const randomBigInt = (numberfOfBytes: number) =>
|
|
8
|
+
ethers.BigNumber.from(ethers.utils.randomBytes(numberfOfBytes)).toBigInt();
|
|
9
|
+
|
|
10
|
+
export const getAmountInToken = (token: ERC20Token, amount: bigint): string =>
|
|
11
|
+
ethers.utils.formatUnits(amount, token.decimals);
|
|
12
|
+
|
|
13
|
+
export const getAmountInWei = (token: ERC20Token, amount: string): bigint => {
|
|
14
|
+
const decimalsToRemove = 10 ** (18 - token.decimals);
|
|
15
|
+
try {
|
|
16
|
+
return ethers.utils.parseUnits(amount).div(BigNumber.from(decimalsToRemove.toString())).toBigInt();
|
|
17
|
+
} catch (err) {
|
|
18
|
+
throw new Error(transactionErrorCodes.DECIMALS_LIMIT);
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Convert a decimal number into bigint through string method and return a bigint and number of decimal places.
|
|
24
|
+
* @param decimal
|
|
25
|
+
* @returns a tuple of [ theBigInt, numberOfDecimalPlaces]
|
|
26
|
+
*/
|
|
27
|
+
export const toBigIntWithDecimals = (decimal: number): [bigint, number] => {
|
|
28
|
+
// toFixed used here over toString
|
|
29
|
+
// since toString returns scientific notation when decimal < 10 ** -6
|
|
30
|
+
const decimalString = decimal.toFixed(30);
|
|
31
|
+
|
|
32
|
+
const [integerPart, decimalPart] = decimalString.split('.');
|
|
33
|
+
const decimalPlaces = decimalPart ? decimalPart.length : 0;
|
|
34
|
+
|
|
35
|
+
// Remove the decimal point so we get a string of integer equivalent;
|
|
36
|
+
// This method is used instead of multiplying by 10^decimalPlaces so we don't run into
|
|
37
|
+
// problem with very large number
|
|
38
|
+
const integerEquivalent = `${integerPart}${decimalPart || ''}`;
|
|
39
|
+
|
|
40
|
+
const bigintEquivalent = BigInt(integerEquivalent);
|
|
41
|
+
|
|
42
|
+
return [bigintEquivalent, decimalPlaces];
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
/** Return getAmountInWei or 0 if error */
|
|
46
|
+
export const getAmountInWeiOrZero = (token: ERC20Token, amount: string): bigint => {
|
|
47
|
+
try {
|
|
48
|
+
return getAmountInWei(token, amount);
|
|
49
|
+
} catch (err) {
|
|
50
|
+
return BigInt(0);
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
// Function below solves next problem if I have 12345678 USDC units and I want precision of 2, then it gives me 12.34 instead of 12.345678
|
|
55
|
+
export const getAmountWithPrecision = (balance: bigint, token: ERC20Token, precision: number): string => {
|
|
56
|
+
const amount = ethers.utils.formatUnits(balance, token.decimals);
|
|
57
|
+
const decimalsToRemove = BigInt(10 ** (18 - precision));
|
|
58
|
+
try {
|
|
59
|
+
const preciseBigInt = ethers.utils.parseUnits(amount).div(BigNumber.from(decimalsToRemove.toString())).toBigInt();
|
|
60
|
+
return ethers.utils.formatUnits(preciseBigInt, precision);
|
|
61
|
+
} catch (err) {
|
|
62
|
+
throw new Error(transactionErrorCodes.DECIMALS_LIMIT);
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
export const calculateDollarValue = (
|
|
67
|
+
token: ERC20Token,
|
|
68
|
+
tokenAmount: bigint,
|
|
69
|
+
tokenPriceDollar: number,
|
|
70
|
+
precision: number,
|
|
71
|
+
) => {
|
|
72
|
+
const [tokenPriceBigInt, tokenPriceDecimalPlaces] = toBigIntWithDecimals(tokenPriceDollar);
|
|
73
|
+
const totalValuePreDiv = (tokenAmount * tokenPriceBigInt) / BigInt(10 ** (token.decimals - precision));
|
|
74
|
+
const totalValueDollarsBigInt = totalValuePreDiv / BigInt(10 ** tokenPriceDecimalPlaces);
|
|
75
|
+
|
|
76
|
+
return { totalValueDollarsBigInt, precision };
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
/** Returns same as getAmountWithPrecision but '0' if empty */
|
|
80
|
+
export const getAmountWithPrecisionOrZero = (token: ERC20Token | undefined, amount: bigint | undefined) => {
|
|
81
|
+
if (!token || !amount) return '0';
|
|
82
|
+
const amountString = getAmountWithPrecision(amount ?? 0n, token, token.decimals).toString();
|
|
83
|
+
return amountString ?? '0';
|
|
84
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventType, PrivateBalanceUpdateEventType } from '../../../types';
|
|
2
|
+
|
|
3
|
+
export const balanceChangedCustomHandler = (detail: PrivateBalanceUpdateEventType) => {
|
|
4
|
+
const eventType = EventType.BalanceChange;
|
|
5
|
+
const balanceEvent = new CustomEvent<PrivateBalanceUpdateEventType>(eventType, {
|
|
6
|
+
detail,
|
|
7
|
+
});
|
|
8
|
+
if (typeof document !== 'undefined') {
|
|
9
|
+
document.dispatchEvent(balanceEvent);
|
|
10
|
+
} else {
|
|
11
|
+
process?.emit('message', balanceEvent, undefined);
|
|
12
|
+
}
|
|
13
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventType } from '../../../types';
|
|
2
|
+
|
|
3
|
+
export const balanceChangedHandler = () => {
|
|
4
|
+
const eventType = EventType.BalanceChange;
|
|
5
|
+
if (typeof document !== 'undefined') {
|
|
6
|
+
document.dispatchEvent(new Event(eventType));
|
|
7
|
+
} else {
|
|
8
|
+
process?.emit('message', eventType, undefined);
|
|
9
|
+
}
|
|
10
|
+
};
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import type { ApprovedUtxoWithInteractionAddress } from '../../../types/hinkal.types';
|
|
2
|
+
import { type IHinkal } from '../../../data-structures/Hinkal/IHinkal';
|
|
3
|
+
import type { TokenBalance } from '../../../types/token.types';
|
|
4
|
+
import { caseInsensitiveEqual } from '../../utils/caseInsensitive.utils';
|
|
5
|
+
import {
|
|
6
|
+
getInHinkalAddressesCache,
|
|
7
|
+
resetInHinkalAddressesCache,
|
|
8
|
+
setInHinkalAddressesCache,
|
|
9
|
+
} from '../../utils/cacheFunctions';
|
|
10
|
+
import { Mutex } from 'async-mutex';
|
|
11
|
+
import { ethers } from 'ethers';
|
|
12
|
+
import { getErc20TokensForChain } from '../../utils/erc20tokenFunctions';
|
|
13
|
+
import { privateTokensDB } from '../../../data-structures/TokenDBs/PrivateTokensDB';
|
|
14
|
+
import { isExtension } from '../../../constants/vite.constants';
|
|
15
|
+
|
|
16
|
+
const mutex = new Mutex();
|
|
17
|
+
|
|
18
|
+
const filterMyApprovedUtxos = (
|
|
19
|
+
approvedUtxos: ApprovedUtxoWithInteractionAddress[],
|
|
20
|
+
myApprovals: ApprovedUtxoWithInteractionAddress[],
|
|
21
|
+
inHinkalAddress: bigint,
|
|
22
|
+
) => {
|
|
23
|
+
approvedUtxos.forEach((approvedUtxo) => {
|
|
24
|
+
if (approvedUtxo.inHinkalAddress === inHinkalAddress) {
|
|
25
|
+
myApprovals.push(approvedUtxo);
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
return myApprovals;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
// this function gives all individual approved utxos
|
|
32
|
+
export const getApprovedUtxos = (hinkal: IHinkal, resetCacheBefore = false): ApprovedUtxoWithInteractionAddress[] => {
|
|
33
|
+
const { userKeys } = hinkal;
|
|
34
|
+
const chainId = hinkal.getCurrentChainId();
|
|
35
|
+
|
|
36
|
+
if (resetCacheBefore) {
|
|
37
|
+
resetInHinkalAddressesCache(hinkal, chainId, userKeys.getShieldedPublicKey());
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const { approvals } = hinkal;
|
|
41
|
+
|
|
42
|
+
// we use cache, because deriving inHinkalAddress requires Poseidon Hash
|
|
43
|
+
const approvalsCache = getInHinkalAddressesCache(hinkal, chainId, userKeys.getShieldedPublicKey());
|
|
44
|
+
|
|
45
|
+
let myApprovals: ApprovedUtxoWithInteractionAddress[] = [];
|
|
46
|
+
|
|
47
|
+
approvals.forEach((approvedUtxos, interactionAddress) => {
|
|
48
|
+
const cacheValue = approvalsCache[interactionAddress];
|
|
49
|
+
let inHinkalAddress: bigint | undefined;
|
|
50
|
+
if (!cacheValue) {
|
|
51
|
+
inHinkalAddress = userKeys.getInHinkalAddress(interactionAddress);
|
|
52
|
+
approvalsCache[interactionAddress] = inHinkalAddress.toString();
|
|
53
|
+
} else {
|
|
54
|
+
inHinkalAddress = BigInt(cacheValue);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
myApprovals = filterMyApprovedUtxos(
|
|
58
|
+
approvedUtxos.map(
|
|
59
|
+
(approvedUtxo): ApprovedUtxoWithInteractionAddress => ({ ...approvedUtxo, interactionAddress }),
|
|
60
|
+
),
|
|
61
|
+
myApprovals,
|
|
62
|
+
inHinkalAddress,
|
|
63
|
+
);
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
// saving cache
|
|
67
|
+
setInHinkalAddressesCache(approvalsCache, hinkal, chainId, userKeys.getShieldedPublicKey());
|
|
68
|
+
|
|
69
|
+
return myApprovals;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export const getApprovedUtxosForToken = (
|
|
73
|
+
hinkal: IHinkal,
|
|
74
|
+
erc20Address: string,
|
|
75
|
+
resetCacheBefore: boolean,
|
|
76
|
+
): ApprovedUtxoWithInteractionAddress[] => {
|
|
77
|
+
const allApprovedUtxos = getApprovedUtxos(hinkal, resetCacheBefore);
|
|
78
|
+
return allApprovedUtxos
|
|
79
|
+
.filter((utxo) => caseInsensitiveEqual(utxo.tokenAddress, erc20Address))
|
|
80
|
+
.sort((a, b) => {
|
|
81
|
+
if (a.amount === b.amount) return 0;
|
|
82
|
+
return a.amount > b.amount ? -1 : 1;
|
|
83
|
+
});
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
// get approved balances for all tokens
|
|
87
|
+
export const getApprovedBalance = async (
|
|
88
|
+
hinkal: IHinkal,
|
|
89
|
+
resetCacheBefore: boolean,
|
|
90
|
+
updateTokensListBefore: boolean,
|
|
91
|
+
): Promise<Map<string, TokenBalance>> => {
|
|
92
|
+
const chainId = hinkal.getCurrentChainId();
|
|
93
|
+
const ethereumAddress = await hinkal.getEthereumAddress();
|
|
94
|
+
let approvedBalances: TokenBalance[] = [];
|
|
95
|
+
const approvedBalancesMap = new Map<string, TokenBalance>();
|
|
96
|
+
|
|
97
|
+
await mutex.runExclusive(async () => {
|
|
98
|
+
const myApprovals = getApprovedUtxos(hinkal, resetCacheBefore);
|
|
99
|
+
|
|
100
|
+
if (updateTokensListBefore && isExtension) {
|
|
101
|
+
await privateTokensDB.fetchAndUpdatePrivateTokens(
|
|
102
|
+
myApprovals.map((utxo) => utxo.tokenAddress),
|
|
103
|
+
chainId,
|
|
104
|
+
ethereumAddress,
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const tokenRegistry = isExtension
|
|
109
|
+
? await privateTokensDB.getPrivateTokens(chainId, ethereumAddress)
|
|
110
|
+
: getErc20TokensForChain(chainId);
|
|
111
|
+
|
|
112
|
+
approvedBalances = tokenRegistry.map((token) => ({
|
|
113
|
+
token,
|
|
114
|
+
balance: myApprovals.reduce((prev, currentUtxo) => {
|
|
115
|
+
if (caseInsensitiveEqual(token.erc20TokenAddress, currentUtxo.tokenAddress)) {
|
|
116
|
+
return prev + currentUtxo.amount;
|
|
117
|
+
}
|
|
118
|
+
return prev;
|
|
119
|
+
}, 0n),
|
|
120
|
+
timestamp: '0',
|
|
121
|
+
nfts: [],
|
|
122
|
+
}));
|
|
123
|
+
|
|
124
|
+
// Create a map of token address to token balance for easier lookup
|
|
125
|
+
|
|
126
|
+
approvedBalances.forEach((balance) => {
|
|
127
|
+
approvedBalancesMap.set(balance.token.erc20TokenAddress.toLowerCase(), balance);
|
|
128
|
+
});
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
return approvedBalancesMap;
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
// this function gives individual approval amount to specific interaction address
|
|
135
|
+
export const getMyApprovalAmountForInteraction = (
|
|
136
|
+
hinkal: IHinkal,
|
|
137
|
+
interactionAddress: string,
|
|
138
|
+
tokenAddress: string,
|
|
139
|
+
): bigint => {
|
|
140
|
+
const { userKeys, approvals } = hinkal;
|
|
141
|
+
const normalizedInteractionAddress = ethers.utils.getAddress(interactionAddress);
|
|
142
|
+
|
|
143
|
+
const addressApprovals = approvals.get(normalizedInteractionAddress) ?? [];
|
|
144
|
+
|
|
145
|
+
const inHinkalAddress = userKeys.getInHinkalAddress(normalizedInteractionAddress);
|
|
146
|
+
|
|
147
|
+
const myApprovedAmount = addressApprovals.reduce((prev, cur) => {
|
|
148
|
+
return caseInsensitiveEqual(cur.tokenAddress, tokenAddress) && cur.inHinkalAddress === inHinkalAddress
|
|
149
|
+
? prev + cur.amount
|
|
150
|
+
: prev;
|
|
151
|
+
}, 0n);
|
|
152
|
+
|
|
153
|
+
return myApprovedAmount;
|
|
154
|
+
};
|