@sabaaa1/common 0.0.11 → 0.0.13

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.
Files changed (1509) hide show
  1. package/.env.example +5 -0
  2. package/.eslintrc.json +18 -0
  3. package/README.md +164 -0
  4. package/copyPackageJson.js +81 -0
  5. package/handleCDNWorkers.js +92 -0
  6. package/jest.config.ts +10 -0
  7. package/package.json +1 -1
  8. package/polyfillWorker.ts +15 -0
  9. package/project.json +32 -0
  10. package/src/API/API.ts +203 -0
  11. package/src/API/admin-calls.ts +8 -0
  12. package/src/API/ai-calls.ts +48 -0
  13. package/src/API/brotherhoodCalls.ts +184 -0
  14. package/src/API/callLifiAPI.ts +41 -0
  15. package/src/API/callMonitor.ts +9 -0
  16. package/src/API/callOdosAPI.ts +89 -0
  17. package/src/API/callOneInchAPI.ts +47 -0
  18. package/src/API/callRelayer.ts +23 -0
  19. package/src/API/checkRisk.ts +7 -0
  20. package/src/API/duneAPI.ts +26 -0
  21. package/src/API/enclaveCalls.ts +23 -0
  22. package/src/API/fetchCommitmentsCache.ts +63 -0
  23. package/src/API/generate-trading-points.ts +77 -0
  24. package/src/API/get-token-data.ts +12 -0
  25. package/src/API/getBridgeProtocols.ts +16 -0
  26. package/src/API/getCoingeckoPrice.ts +59 -0
  27. package/src/API/getGasEstimates.ts +30 -0
  28. package/src/API/getLifiStatus.ts +35 -0
  29. package/src/API/getRelayerURL.ts +27 -0
  30. package/src/API/getServerURL.ts +116 -0
  31. package/src/API/getTokenPrice.ts +39 -0
  32. package/src/API/getWebsiteURL.ts +58 -0
  33. package/src/API/is-tx-stateless.ts +32 -0
  34. package/src/API/kycCalls.ts +81 -0
  35. package/src/API/leaderboardCalls.ts +32 -0
  36. package/src/API/mysteryBoxesCalls.ts +141 -0
  37. package/src/API/passwordCalls.ts +34 -0
  38. package/src/API/proxyAccountsCalls.ts +40 -0
  39. package/src/API/referralsCalls.ts +52 -0
  40. package/src/API/relayCalls.ts +14 -0
  41. package/src/API/restoreSnapshots.ts +7 -0
  42. package/src/API/rewardsUserCalls.ts +124 -0
  43. package/src/API/send-telegram-callback.ts +17 -0
  44. package/src/API/simulate-batch-tx.ts +19 -0
  45. package/src/API/tenderly.api.ts +96 -0
  46. package/src/API/token-calls.ts +19 -0
  47. package/src/API/weeklyAnalyticCalls.ts +43 -0
  48. package/src/constants/activity.constants.ts +10 -0
  49. package/src/constants/addresses.constants.ts +74 -0
  50. package/src/constants/assets.constants.ts +15 -0
  51. package/src/constants/backend.constants.ts +16 -0
  52. package/src/constants/balance.constants.ts +1 -0
  53. package/src/constants/bridging.constants.ts +5 -0
  54. package/src/constants/chains.constants.ts +194 -0
  55. package/src/constants/coingecko.constants.ts +67 -0
  56. package/src/constants/contracts.constants.ts +106 -0
  57. package/src/constants/conversion.constants.ts +1 -0
  58. package/src/constants/deploy-data/deploy-data-arbMainnet.json +5685 -0
  59. package/src/constants/deploy-data/deploy-data-arcTestnet.json +6157 -0
  60. package/src/constants/deploy-data/deploy-data-avalanche.json +5921 -0
  61. package/src/constants/deploy-data/deploy-data-base.json +5695 -0
  62. package/src/constants/deploy-data/deploy-data-bnbMainnet.json +5921 -0
  63. package/src/constants/deploy-data/deploy-data-ethMainnet.json +5922 -0
  64. package/src/constants/deploy-data/deploy-data-localhost.json +5921 -0
  65. package/src/constants/deploy-data/deploy-data-optimism.json +5687 -0
  66. package/src/constants/deploy-data/deploy-data-polygon.json +5695 -0
  67. package/src/constants/deploy-data/index.ts +21 -0
  68. package/src/constants/events.constants.ts +10 -0
  69. package/src/constants/fees.constants.ts +4 -0
  70. package/src/constants/function-signatures.constants.ts +6 -0
  71. package/src/constants/kyc.constants.ts +202 -0
  72. package/src/constants/lifi.constants.ts +1 -0
  73. package/src/constants/mediaUrls.constants.ts +25 -0
  74. package/src/constants/mystery-boxes.constants.ts +402 -0
  75. package/src/constants/oauthUrls.constants.ts +7 -0
  76. package/src/constants/permit2.constants.ts +28 -0
  77. package/src/constants/presale.constants.ts +503 -0
  78. package/src/constants/protocol.constants.ts +65 -0
  79. package/src/constants/reorg-depths.constants.ts +13 -0
  80. package/src/constants/rewards.constants.ts +27 -0
  81. package/src/constants/save-depths.ts +13 -0
  82. package/src/constants/server.constants.ts +233 -0
  83. package/src/constants/tasks.constants.ts +205 -0
  84. package/src/constants/token-data/ERC20Registry.ts +90 -0
  85. package/src/constants/token-data/arbMainnetRegistry.json +1841 -0
  86. package/src/constants/token-data/arbMainnetRegistryFixed.json +1841 -0
  87. package/src/constants/token-data/arcTestnetRegistry.json +436 -0
  88. package/src/constants/token-data/avalancheRegistry.json +729 -0
  89. package/src/constants/token-data/avalancheRegistryFixed.json +729 -0
  90. package/src/constants/token-data/baseRegistry.json +1134 -0
  91. package/src/constants/token-data/baseRegistryFixed.json +1134 -0
  92. package/src/constants/token-data/bnbMainnetRegistry.json +900 -0
  93. package/src/constants/token-data/bnbMainnetRegistryFixed.json +900 -0
  94. package/src/constants/token-data/ethMainnetRegistry.json +4298 -0
  95. package/src/constants/token-data/ethMainnetRegistryFixed.json +4298 -0
  96. package/src/constants/token-data/index.ts +60 -0
  97. package/src/constants/token-data/localhostRegistry.json +2784 -0
  98. package/src/constants/token-data/optimismRegistry.json +701 -0
  99. package/src/constants/token-data/optimismRegistryFixed.json +701 -0
  100. package/src/constants/token-data/polygonRegistry.json +2309 -0
  101. package/src/constants/token-data/polygonRegistryFixed.json +2309 -0
  102. package/src/constants/token-data/popularTokens.constants.ts +11 -0
  103. package/src/constants/token-data/tokenPricing.consts.ts +2 -0
  104. package/src/constants/token.limits.constants.ts +31 -0
  105. package/src/constants/vite.constants.ts +74 -0
  106. package/src/constants/wallet.constants.ts +9 -0
  107. package/src/crypto/babyJub.ts +31 -0
  108. package/src/crypto/poseidon.ts +36 -0
  109. package/src/crypto/preProcessing.ts +20 -0
  110. package/src/data-structures/ApprovalDBs/EventsPublicApprovalsDB.ts +288 -0
  111. package/src/data-structures/Hinkal/Hinkal.ts +746 -0
  112. package/src/data-structures/Hinkal/IHinkal.ts +315 -0
  113. package/src/data-structures/Hinkal/handleAutoDepositBack.ts +138 -0
  114. package/src/data-structures/Hinkal/hinkalActionFundApproveAndTransact.ts +64 -0
  115. package/src/data-structures/Hinkal/hinkalActionReceive.ts +65 -0
  116. package/src/data-structures/Hinkal/hinkalActionStake.ts +152 -0
  117. package/src/data-structures/Hinkal/hinkalApprove.ts +170 -0
  118. package/src/data-structures/Hinkal/hinkalCheckTokenRegistry.ts +26 -0
  119. package/src/data-structures/Hinkal/hinkalDeposit.ts +199 -0
  120. package/src/data-structures/Hinkal/hinkalGetRecipientInfo.ts +12 -0
  121. package/src/data-structures/Hinkal/hinkalGetZkMeProvider.ts +31 -0
  122. package/src/data-structures/Hinkal/hinkalInsideTransact.ts +190 -0
  123. package/src/data-structures/Hinkal/hinkalMultiSend.ts +26 -0
  124. package/src/data-structures/Hinkal/hinkalPrivateWallet.ts +198 -0
  125. package/src/data-structures/Hinkal/hinkalProoflessDeposit.ts +91 -0
  126. package/src/data-structures/Hinkal/hinkalProxySwap.ts +91 -0
  127. package/src/data-structures/Hinkal/hinkalSignSubAccount.ts +28 -0
  128. package/src/data-structures/Hinkal/hinkalSwap.ts +157 -0
  129. package/src/data-structures/Hinkal/hinkalTransfer.ts +171 -0
  130. package/src/data-structures/Hinkal/hinkalWithdraw.ts +161 -0
  131. package/src/data-structures/Hinkal/resetMerkleTrees.ts +64 -0
  132. package/src/data-structures/IndexedDB/activity-db.ts +204 -0
  133. package/src/data-structures/IndexedDB/balances-db.ts +97 -0
  134. package/src/data-structures/IndexedDB/contact-db.ts +81 -0
  135. package/src/data-structures/IndexedDB/prices-db.ts +89 -0
  136. package/src/data-structures/IndexedDB/private-balances-db.ts +31 -0
  137. package/src/data-structures/IndexedDB/signatures-db.ts +62 -0
  138. package/src/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.ts +152 -0
  139. package/src/data-structures/TokenDBs/AlchemyPublicTokensDB.ts +224 -0
  140. package/src/data-structures/TokenDBs/ArcPublicTokensDB.ts +198 -0
  141. package/src/data-structures/TokenDBs/EventsPublicTokensDB.ts +216 -0
  142. package/src/data-structures/TokenDBs/IPublicTokensDB.ts +7 -0
  143. package/src/data-structures/TokenDBs/PrivateTokensDB.ts +96 -0
  144. package/src/data-structures/TokenDBs/PublicTokensDB.ts +49 -0
  145. package/src/data-structures/TokenDBs/token-visibility-db.ts +154 -0
  146. package/src/data-structures/ValueCache/ValueCache.ts +29 -0
  147. package/src/data-structures/cacheDevices/AttachableMemoryCacheDevice.ts +33 -0
  148. package/src/data-structures/cacheDevices/BaseCacheDevice.ts +30 -0
  149. package/src/data-structures/cacheDevices/FileCacheDevice.ts +59 -0
  150. package/src/data-structures/cacheDevices/LocalStorageCacheDevice.ts +36 -0
  151. package/src/data-structures/crypto-keys/decodeUTXO.ts +60 -0
  152. package/src/data-structures/crypto-keys/encryptDecryptUtxo.ts +74 -0
  153. package/src/data-structures/crypto-keys/keyUtils.ts +8 -0
  154. package/src/data-structures/crypto-keys/keys.ts +203 -0
  155. package/src/data-structures/custom-token-registry/CustomTokenRegistry.ts +49 -0
  156. package/src/data-structures/event-service/AbstractAccessTokenSnapshotService.ts +142 -0
  157. package/src/data-structures/event-service/AbstractApprovalsSnapshotService.ts +152 -0
  158. package/src/data-structures/event-service/AbstractCommitmentsSnapshotService.ts +116 -0
  159. package/src/data-structures/event-service/AbstractEventService.ts +44 -0
  160. package/src/data-structures/event-service/AbstractNullifierSnapshotService.ts +76 -0
  161. package/src/data-structures/event-service/AbstractSnapshotService.ts +63 -0
  162. package/src/data-structures/event-service/BlockchainEventEmitter.ts +132 -0
  163. package/src/data-structures/index.ts +18 -0
  164. package/src/data-structures/merkle-tree/MerkleTree.test.ts +77 -0
  165. package/src/data-structures/merkle-tree/MerkleTree.ts +253 -0
  166. package/src/data-structures/merkle-tree/MerkleTreeIncompleteError.ts +6 -0
  167. package/src/data-structures/merkle-tree/getPatchedAccessTokenMerkleTree.ts +24 -0
  168. package/src/data-structures/presale/PresaleContractWrapper.ts +80 -0
  169. package/src/data-structures/provider-adapter/IProviderAdapter.ts +43 -0
  170. package/src/data-structures/snapshot/ClientAccessTokenSnapshotService.ts +41 -0
  171. package/src/data-structures/snapshot/ClientApprovalsSnapshotService.ts +36 -0
  172. package/src/data-structures/snapshot/ClientCommitmentsSnapshotService.ts +30 -0
  173. package/src/data-structures/snapshot/ClientNullifierSnapshotService.ts +28 -0
  174. package/src/data-structures/snapshot/SnapshotFetcherService.ts +68 -0
  175. package/src/data-structures/token-price-fetcher/TokenChecker.ts +45 -0
  176. package/src/data-structures/tor/HttpClient.ts +118 -0
  177. package/src/data-structures/tor/TorAdapter.ts +94 -0
  178. package/src/data-structures/tor/TorClient.ts +283 -0
  179. package/src/data-structures/tor/WebSocketDuplex.ts +32 -0
  180. package/src/data-structures/transactions-manager/history/history.types.ts +14 -0
  181. package/src/data-structures/utxo/Utxo.ts +189 -0
  182. package/src/error-handling/customErrors/ErrorWithAmount.ts +8 -0
  183. package/src/error-handling/customErrors/ErrorWithTx.ts +10 -0
  184. package/src/error-handling/customErrors/FeeOverTransactionValueError.ts +16 -0
  185. package/src/error-handling/customErrors/SimulationFailureError.ts +9 -0
  186. package/src/error-handling/customErrors/customErrors.helpers.ts +39 -0
  187. package/src/error-handling/error-codes.constants.ts +214 -0
  188. package/src/error-handling/get-error.message.ts +149 -0
  189. package/src/error-handling/handleErrorRestore.ts +25 -0
  190. package/src/error-handling/logError.ts +8 -0
  191. package/src/error-handling/logger.ts +21 -0
  192. package/src/error-handling/types.ts +10 -0
  193. package/src/externalABIs/BUSD.ts +516 -0
  194. package/src/externalABIs/BabPassport.json +24 -0
  195. package/src/externalABIs/DAI.ts +331 -0
  196. package/src/externalABIs/ERC1155.json +316 -0
  197. package/src/externalABIs/ERC20.json +297 -0
  198. package/src/externalABIs/ERC721.json +205 -0
  199. package/src/externalABIs/GalxePassport.json +23 -0
  200. package/src/externalABIs/IQuoterV2.json +211 -0
  201. package/src/externalABIs/ISwapRouter.json +568 -0
  202. package/src/externalABIs/IUniswapV3Factory.json +207 -0
  203. package/src/externalABIs/IUniswapV3Pool.json +999 -0
  204. package/src/externalABIs/NodeInterfaceABI.json +1 -0
  205. package/src/externalABIs/OptimismGasPriceOracle.json +1 -0
  206. package/src/externalABIs/PoLidoNftAbi.json +307 -0
  207. package/src/externalABIs/SanctionsList.ts +86 -0
  208. package/src/externalABIs/USDC.ts +718 -0
  209. package/src/externalABIs/USDR.ts +343 -0
  210. package/src/externalABIs/USDR3CRV.ts +539 -0
  211. package/src/externalABIs/USDT.ts +390 -0
  212. package/src/externalABIs/UniswapV2PoolAbi.json +66 -0
  213. package/src/externalABIs/WETH.ts +153 -0
  214. package/src/externalABIs/amToken.ts +347 -0
  215. package/src/externalABIs/index.ts +53 -0
  216. package/src/externalABIs/swapAbi.ts +442 -0
  217. package/src/externalABIs/transactionsProver.json +45 -0
  218. package/src/functions/index.ts +16 -0
  219. package/src/functions/kyc/authentoHelper.ts +44 -0
  220. package/src/functions/kyc/openDefaultPassportWindow.ts +9 -0
  221. package/src/functions/kyc/passportHelper.ts +13 -0
  222. package/src/functions/kyc/zkMeHelper.ts +69 -0
  223. package/src/functions/pre-transaction/constructAdminData.ts +21 -0
  224. package/src/functions/pre-transaction/getExternalSwapAddress.ts +30 -0
  225. package/src/functions/pre-transaction/getFeeStructure.ts +44 -0
  226. package/src/functions/pre-transaction/getFlatFees.ts +88 -0
  227. package/src/functions/pre-transaction/getSignatureDataForTransact.ts +16 -0
  228. package/src/functions/pre-transaction/getVolatileTransferAmount.ts +56 -0
  229. package/src/functions/pre-transaction/interaction-to-action.ts +17 -0
  230. package/src/functions/pre-transaction/merge-with-fee-structure-emporium.ts +50 -0
  231. package/src/functions/pre-transaction/merge-with-fee-structure.ts +35 -0
  232. package/src/functions/pre-transaction/outputApprovalDataProcessing.ts +95 -0
  233. package/src/functions/pre-transaction/outputUtxoProcessing.ts +52 -0
  234. package/src/functions/pre-transaction/process-gas-estimates.ts +36 -0
  235. package/src/functions/pre-transaction/shouldPatchAccessTokenMerkleTree.ts +15 -0
  236. package/src/functions/private-wallet/emporium.helpers.ts +296 -0
  237. package/src/functions/private-wallet/emporium.swap.helpers.ts +284 -0
  238. package/src/functions/private-wallet/opProducer.ts +33 -0
  239. package/src/functions/snarkjs/common.snarkjs.ts +377 -0
  240. package/src/functions/snarkjs/constant.ts +490 -0
  241. package/src/functions/snarkjs/constructEmporiumProof.ts +301 -0
  242. package/src/functions/snarkjs/constructGeneralZkProof.ts +281 -0
  243. package/src/functions/snarkjs/generateCircomData.ts +81 -0
  244. package/src/functions/snarkjs/generateZkProof.ts +21 -0
  245. package/src/functions/snarkjs/generateZkProofEnclave.ts +45 -0
  246. package/src/functions/snarkjs/generateZkProofSelf.ts +29 -0
  247. package/src/functions/snarkjs/getOriginalSender.ts +4 -0
  248. package/src/functions/snarkjs/getZKFiles.ts +29 -0
  249. package/src/functions/staking/index.ts +78 -0
  250. package/src/functions/utils/addresses.ts +37 -0
  251. package/src/functions/utils/amounts.utils.test.ts +91 -0
  252. package/src/functions/utils/amounts.utils.ts +119 -0
  253. package/src/functions/utils/arraysMatch.ts +4 -0
  254. package/src/functions/utils/cacheDevice.utils.ts +21 -0
  255. package/src/functions/utils/cacheFunctions.ts +154 -0
  256. package/src/functions/utils/caseInsensitive.utils.ts +10 -0
  257. package/src/functions/utils/convertEmporiumOpToCallInfo.ts +19 -0
  258. package/src/functions/utils/convertIntegrationProviderToExternalActionId.ts +14 -0
  259. package/src/functions/utils/create-provider.ts +11 -0
  260. package/src/functions/utils/encodeTokenWithId.ts +4 -0
  261. package/src/functions/utils/encryptInputForEnclave.ts +119 -0
  262. package/src/functions/utils/enum.utils.ts +30 -0
  263. package/src/functions/utils/erc20tokenFunctions.ts +110 -0
  264. package/src/functions/utils/ethers-formatter.utils.ts +32 -0
  265. package/src/functions/utils/evmNetworkFunctions.ts +9 -0
  266. package/src/functions/utils/external-action.utils.ts +15 -0
  267. package/src/functions/utils/fees.utils.ts +26 -0
  268. package/src/functions/utils/get-hinkal-approvals.ts +36 -0
  269. package/src/functions/utils/get-signature-header.ts +5 -0
  270. package/src/functions/utils/getBlockExplorerUrl.ts +14 -0
  271. package/src/functions/utils/getDataFromTransaction.ts +79 -0
  272. package/src/functions/utils/getRecipientInfoFromUserKeys.ts +28 -0
  273. package/src/functions/utils/inLogicMetadata.ts +9 -0
  274. package/src/functions/utils/involves-permit2-op.ts +17 -0
  275. package/src/functions/utils/ipfs.ts +74 -0
  276. package/src/functions/utils/is-valid-url.ts +5 -0
  277. package/src/functions/utils/lifi.utils.ts +3 -0
  278. package/src/functions/utils/memoize.utils.ts +23 -0
  279. package/src/functions/utils/merkleTree.utils.ts +27 -0
  280. package/src/functions/utils/mutexes.utils.ts +3 -0
  281. package/src/functions/utils/mystery-box-auction.utils.ts +61 -0
  282. package/src/functions/utils/networks.utils.ts +6 -0
  283. package/src/functions/utils/nftTokenFunctions.ts +25 -0
  284. package/src/functions/utils/nickname.utils.ts +4 -0
  285. package/src/functions/utils/postToOffscreen.ts +6 -0
  286. package/src/functions/utils/prepareHinkal.ts +78 -0
  287. package/src/functions/utils/process.utils.ts +23 -0
  288. package/src/functions/utils/processUseApprovalUtxoData.ts +26 -0
  289. package/src/functions/utils/publicBalance.utils.ts +131 -0
  290. package/src/functions/utils/reloadPage.ts +1 -0
  291. package/src/functions/utils/replaceAddressInCalldata.ts +6 -0
  292. package/src/functions/utils/requireEnv.ts +10 -0
  293. package/src/functions/utils/resolve-sync.utils.ts +40 -0
  294. package/src/functions/utils/rpc-int-encode.ts +7 -0
  295. package/src/functions/utils/serialize.utils.ts +12 -0
  296. package/src/functions/utils/string.utils.ts +92 -0
  297. package/src/functions/utils/time.utils.ts +80 -0
  298. package/src/functions/utils/token-check.utils.ts +12 -0
  299. package/src/functions/utils/trimFieldValues.ts +24 -0
  300. package/src/functions/utils/upToDateState.ts +12 -0
  301. package/src/functions/utils/userAgent.ts +26 -0
  302. package/src/functions/utils/walletBalances.utils.ts +117 -0
  303. package/src/functions/web3/EIP-712.test.ts +302 -0
  304. package/src/functions/web3/EIP-712.ts +243 -0
  305. package/src/functions/web3/etherFunctions.test.ts +129 -0
  306. package/src/functions/web3/etherFunctions.ts +84 -0
  307. package/src/functions/web3/events/balanceChangedCustomHandler.ts +13 -0
  308. package/src/functions/web3/events/balanceChangedHandler.ts +10 -0
  309. package/src/functions/web3/events/getApprovedBalance.ts +154 -0
  310. package/src/functions/web3/events/getInputUtxoAndBalance.ts +305 -0
  311. package/src/functions/web3/events/getInputUtxosEnclave.ts +40 -0
  312. package/src/functions/web3/events/getShieldedBalance.ts +163 -0
  313. package/src/functions/web3/events/getTransactionLogEvents.ts +55 -0
  314. package/src/functions/web3/events/web3RetrieveEvents.ts +33 -0
  315. package/src/functions/web3/functionCalls/accessTokenCalls.ts +27 -0
  316. package/src/functions/web3/functionCalls/approveToken.ts +180 -0
  317. package/src/functions/web3/functionCalls/approveTokensToHinkal.ts +21 -0
  318. package/src/functions/web3/functionCalls/estimateGasRelayer.ts +40 -0
  319. package/src/functions/web3/functionCalls/getRootHash.ts +7 -0
  320. package/src/functions/web3/functionCalls/inHinkalApprovalCalls.ts +60 -0
  321. package/src/functions/web3/functionCalls/relayFunctions.ts +12 -0
  322. package/src/functions/web3/functionCalls/transactCallDirect.ts +71 -0
  323. package/src/functions/web3/functionCalls/transactCallRelayer.ts +57 -0
  324. package/src/functions/web3/getContractMetadata.ts +43 -0
  325. package/src/functions/web3/getPublicAddressBalance.ts +17 -0
  326. package/src/functions/web3/getTokenHolder.ts +53 -0
  327. package/src/functions/web3/lifiAPI.ts +41 -0
  328. package/src/functions/web3/odosAPI.ts +50 -0
  329. package/src/functions/web3/oneInchAPI.ts +47 -0
  330. package/src/functions/web3/runContractFunction.ts +116 -0
  331. package/src/functions/web3/uniswapAPI.ts +156 -0
  332. package/src/mutexes/mutex.ts +3 -0
  333. package/src/providers/EthersProviderAdapter.ts +230 -0
  334. package/src/providers/TorExternalProvider.ts +36 -0
  335. package/src/providers/WagmiProviderAdapter.ts +311 -0
  336. package/src/providers/exportProviers.ts +11 -0
  337. package/src/providers/prepareEthersHinkal.ts +18 -0
  338. package/src/providers/prepareWagmiHinkal.ts +16 -0
  339. package/src/types/API.types.ts +23 -0
  340. package/src/types/ICacheDevice.ts +5 -0
  341. package/src/types/IMultiThreadedUtxoUtils.ts +16 -0
  342. package/src/types/RewardUserEnums.ts +12 -0
  343. package/src/types/TransactionSimulator.types.ts +30 -0
  344. package/src/types/WeeklyAnalytics.types.ts +44 -0
  345. package/src/types/activities.types.ts +90 -0
  346. package/src/types/admin.types.ts +30 -0
  347. package/src/types/all-points.types.ts +8 -0
  348. package/src/types/approvals.types.ts +45 -0
  349. package/src/types/balances.types.ts +20 -0
  350. package/src/types/big-intable.types.ts +3 -0
  351. package/src/types/bridging.types.ts +30 -0
  352. package/src/types/brotherhood-user.types.ts +13 -0
  353. package/src/types/cache.types.ts +42 -0
  354. package/src/types/circom-data.types.ts +120 -0
  355. package/src/types/coingecko.types.ts +216 -0
  356. package/src/types/commitments.types.ts +39 -0
  357. package/src/types/confirmation-request.types.ts +10 -0
  358. package/src/types/contacts.types.ts +6 -0
  359. package/src/types/crypto.types.ts +8 -0
  360. package/src/types/duneAPI.types.ts +9 -0
  361. package/src/types/eip5792.types.ts +31 -0
  362. package/src/types/ethereum-network.types.ts +70 -0
  363. package/src/types/external-action.types.ts +19 -0
  364. package/src/types/fee.types.ts +11 -0
  365. package/src/types/generatePoints.ts +14 -0
  366. package/src/types/hinkal.stake.types.ts +12 -0
  367. package/src/types/hinkal.types.ts +150 -0
  368. package/src/types/kyc.types.ts +49 -0
  369. package/src/types/merch-order.types.ts +18 -0
  370. package/src/types/message.types.ts +6 -0
  371. package/src/types/mystery-boxes.types.ts +50 -0
  372. package/src/types/new-rewards.type.ts +181 -0
  373. package/src/types/offscreen.types.ts +8 -0
  374. package/src/types/presaleReferral.types.ts +4 -0
  375. package/src/types/proxy.types.ts +11 -0
  376. package/src/types/referral.types.ts +13 -0
  377. package/src/types/relayer.types.ts +16 -0
  378. package/src/types/remote-proof.types.ts +18 -0
  379. package/src/types/rewards.types.ts +53 -0
  380. package/src/types/routing.types.ts +7 -0
  381. package/src/types/sandbox.types.ts +246 -0
  382. package/src/types/session.types.ts +12 -0
  383. package/src/types/signature.types.ts +11 -0
  384. package/src/types/slippage.types.ts +3 -0
  385. package/src/types/snark.types.ts +43 -0
  386. package/src/types/tenderly.api.types.ts +200 -0
  387. package/src/types/token-prices.types.ts +8 -0
  388. package/src/types/token-with-id.types.ts +4 -0
  389. package/src/types/token.types.ts +86 -0
  390. package/src/types/transactions.types.ts +120 -0
  391. package/src/types/wc.types.ts +83 -0
  392. package/src/types/with-id.types.ts +1 -0
  393. package/src/webworker/performTaskWithWorker.ts +50 -0
  394. package/src/webworker/snarkjsWorker/snarkjs.d.ts +2 -0
  395. package/src/webworker/snarkjsWorker/snarkjsWorker.types.ts +18 -0
  396. package/src/webworker/snarkjsWorker/snarkjsWorkerLauncher.ts +19 -0
  397. package/src/webworker/snarkjsWorker/snarkjsWorkerLogic.ts +90 -0
  398. package/src/webworker/utxoWorker/utxoWorker.types.ts +41 -0
  399. package/src/webworker/utxoWorker/utxoWorkerLauncher.ts +19 -0
  400. package/src/webworker/utxoWorker/utxoWorkerLogic.ts +107 -0
  401. package/src/webworker/viteWorkerURL.constant.ts +25 -0
  402. package/src/webworker/worker.registry.ts +11 -0
  403. package/src/webworker/worker.types.ts +35 -0
  404. package/src/webworker/workerErrorHandler.ts +10 -0
  405. package/src/webworker/workerFactory.ts +47 -0
  406. package/src/webworker/workerProxy.ts +88 -0
  407. package/src/webworker/zkProofWorker/zkProofWorker.types.ts +52 -0
  408. package/src/webworker/zkProofWorker/zkProofWorkerLauncher.ts +19 -0
  409. package/src/webworker/zkProofWorker/zkProofWorkerLogic.ts +84 -0
  410. package/tsconfig.json +23 -0
  411. package/tsconfig.lib.json +10 -0
  412. package/tsconfig.spec.json +15 -0
  413. package/vite.config.ts +82 -0
  414. package/vite.config.workers.ts +51 -0
  415. package/API/API.cjs +0 -1
  416. package/API/API.d.ts +0 -84
  417. package/API/API.mjs +0 -111
  418. package/API/admin-calls.cjs +0 -1
  419. package/API/admin-calls.d.ts +0 -2
  420. package/API/admin-calls.mjs +0 -10
  421. package/API/ai-calls.cjs +0 -1
  422. package/API/ai-calls.d.ts +0 -17
  423. package/API/ai-calls.mjs +0 -23
  424. package/API/brotherhoodCalls.cjs +0 -1
  425. package/API/brotherhoodCalls.d.ts +0 -82
  426. package/API/brotherhoodCalls.mjs +0 -61
  427. package/API/callLifiAPI.cjs +0 -1
  428. package/API/callLifiAPI.d.ts +0 -33
  429. package/API/callLifiAPI.mjs +0 -13
  430. package/API/callMonitor.cjs +0 -1
  431. package/API/callMonitor.d.ts +0 -1
  432. package/API/callMonitor.mjs +0 -10
  433. package/API/callOdosAPI.cjs +0 -1
  434. package/API/callOdosAPI.d.ts +0 -63
  435. package/API/callOdosAPI.mjs +0 -25
  436. package/API/callOneInchAPI.cjs +0 -1
  437. package/API/callOneInchAPI.d.ts +0 -18
  438. package/API/callOneInchAPI.mjs +0 -18
  439. package/API/callRelayer.cjs +0 -1
  440. package/API/callRelayer.d.ts +0 -15
  441. package/API/callRelayer.mjs +0 -12
  442. package/API/checkRisk.cjs +0 -1
  443. package/API/checkRisk.d.ts +0 -1
  444. package/API/checkRisk.mjs +0 -10
  445. package/API/duneAPI.cjs +0 -1
  446. package/API/duneAPI.d.ts +0 -11
  447. package/API/duneAPI.mjs +0 -26
  448. package/API/enclaveCalls.cjs +0 -1
  449. package/API/enclaveCalls.d.ts +0 -9
  450. package/API/enclaveCalls.mjs +0 -13
  451. package/API/fetchCommitmentsCache.cjs +0 -1
  452. package/API/fetchCommitmentsCache.d.ts +0 -36
  453. package/API/fetchCommitmentsCache.mjs +0 -25
  454. package/API/generate-trading-points.cjs +0 -1
  455. package/API/generate-trading-points.d.ts +0 -27
  456. package/API/generate-trading-points.mjs +0 -47
  457. package/API/get-token-data.cjs +0 -1
  458. package/API/get-token-data.d.ts +0 -6
  459. package/API/get-token-data.mjs +0 -10
  460. package/API/getBridgeProtocols.cjs +0 -1
  461. package/API/getBridgeProtocols.d.ts +0 -7
  462. package/API/getBridgeProtocols.mjs +0 -10
  463. package/API/getCoingeckoPrice.cjs +0 -1
  464. package/API/getCoingeckoPrice.d.ts +0 -22
  465. package/API/getCoingeckoPrice.mjs +0 -27
  466. package/API/getGasEstimates.cjs +0 -1
  467. package/API/getGasEstimates.d.ts +0 -9
  468. package/API/getGasEstimates.mjs +0 -18
  469. package/API/getLifiStatus.cjs +0 -1
  470. package/API/getLifiStatus.d.ts +0 -24
  471. package/API/getLifiStatus.mjs +0 -17
  472. package/API/getRelayerURL.cjs +0 -1
  473. package/API/getRelayerURL.d.ts +0 -1
  474. package/API/getRelayerURL.mjs +0 -10
  475. package/API/getServerURL.cjs +0 -1
  476. package/API/getServerURL.d.ts +0 -4
  477. package/API/getServerURL.mjs +0 -70
  478. package/API/getTokenPrice.cjs +0 -1
  479. package/API/getTokenPrice.d.ts +0 -16
  480. package/API/getTokenPrice.mjs +0 -23
  481. package/API/getWebsiteURL.cjs +0 -1
  482. package/API/getWebsiteURL.d.ts +0 -3
  483. package/API/getWebsiteURL.mjs +0 -57
  484. package/API/is-tx-stateless.cjs +0 -1
  485. package/API/is-tx-stateless.d.ts +0 -5
  486. package/API/is-tx-stateless.mjs +0 -22
  487. package/API/kycCalls.cjs +0 -1
  488. package/API/kycCalls.d.ts +0 -23
  489. package/API/kycCalls.mjs +0 -44
  490. package/API/leaderboardCalls.cjs +0 -1
  491. package/API/leaderboardCalls.d.ts +0 -14
  492. package/API/leaderboardCalls.mjs +0 -18
  493. package/API/mysteryBoxesCalls.cjs +0 -1
  494. package/API/mysteryBoxesCalls.d.ts +0 -60
  495. package/API/mysteryBoxesCalls.mjs +0 -45
  496. package/API/passwordCalls.cjs +0 -1
  497. package/API/passwordCalls.d.ts +0 -9
  498. package/API/passwordCalls.mjs +0 -13
  499. package/API/proxyAccountsCalls.cjs +0 -1
  500. package/API/proxyAccountsCalls.d.ts +0 -4
  501. package/API/proxyAccountsCalls.mjs +0 -28
  502. package/API/referralsCalls.cjs +0 -1
  503. package/API/referralsCalls.d.ts +0 -22
  504. package/API/referralsCalls.mjs +0 -24
  505. package/API/relayCalls.cjs +0 -1
  506. package/API/relayCalls.d.ts +0 -5
  507. package/API/relayCalls.mjs +0 -12
  508. package/API/restoreSnapshots.cjs +0 -1
  509. package/API/restoreSnapshots.d.ts +0 -1
  510. package/API/restoreSnapshots.mjs +0 -12
  511. package/API/rewardsUserCalls.cjs +0 -1
  512. package/API/rewardsUserCalls.d.ts +0 -51
  513. package/API/rewardsUserCalls.mjs +0 -46
  514. package/API/send-telegram-callback.cjs +0 -1
  515. package/API/send-telegram-callback.d.ts +0 -7
  516. package/API/send-telegram-callback.mjs +0 -13
  517. package/API/simulate-batch-tx.cjs +0 -1
  518. package/API/simulate-batch-tx.d.ts +0 -3
  519. package/API/simulate-batch-tx.mjs +0 -15
  520. package/API/tenderly.api.cjs +0 -1
  521. package/API/tenderly.api.d.ts +0 -14
  522. package/API/tenderly.api.mjs +0 -59
  523. package/API/token-calls.cjs +0 -1
  524. package/API/token-calls.d.ts +0 -2
  525. package/API/token-calls.mjs +0 -16
  526. package/API/weeklyAnalyticCalls.cjs +0 -1
  527. package/API/weeklyAnalyticCalls.d.ts +0 -22
  528. package/API/weeklyAnalyticCalls.mjs +0 -18
  529. package/assets/snarkjsWorkerLauncher-C7k0eivz.js +0 -1204
  530. package/assets/snarkjsWorkerLogic-BO6Ynqjj.js +0 -30691
  531. package/assets/utxoWorkerLauncher-CEvVVrNi.js +0 -1205
  532. package/assets/utxoWorkerLogic-mwtuZoYE.js +0 -119181
  533. package/assets/zkProofWorkerLauncher-DqyUe_-v.js +0 -1205
  534. package/assets/zkProofWorkerLogic-6exMzAHW.js +0 -119315
  535. package/constants/activity.constants.cjs +0 -1
  536. package/constants/activity.constants.d.ts +0 -2
  537. package/constants/activity.constants.mjs +0 -14
  538. package/constants/addresses.constants.cjs +0 -1
  539. package/constants/addresses.constants.d.ts +0 -25
  540. package/constants/addresses.constants.mjs +0 -80
  541. package/constants/assets.constants.cjs +0 -1
  542. package/constants/assets.constants.d.ts +0 -13
  543. package/constants/assets.constants.mjs +0 -16
  544. package/constants/backend.constants.cjs +0 -1
  545. package/constants/backend.constants.d.ts +0 -12
  546. package/constants/backend.constants.mjs +0 -18
  547. package/constants/balance.constants.cjs +0 -1
  548. package/constants/balance.constants.d.ts +0 -1
  549. package/constants/balance.constants.mjs +0 -4
  550. package/constants/bridging.constants.cjs +0 -1
  551. package/constants/bridging.constants.d.ts +0 -5
  552. package/constants/bridging.constants.mjs +0 -8
  553. package/constants/chains.constants.cjs +0 -1
  554. package/constants/chains.constants.d.ts +0 -36
  555. package/constants/chains.constants.mjs +0 -164
  556. package/constants/coingecko.constants.cjs +0 -1
  557. package/constants/coingecko.constants.d.ts +0 -16
  558. package/constants/coingecko.constants.mjs +0 -52
  559. package/constants/contracts.constants.cjs +0 -1
  560. package/constants/contracts.constants.d.ts +0 -119
  561. package/constants/contracts.constants.mjs +0 -95
  562. package/constants/conversion.constants.cjs +0 -1
  563. package/constants/conversion.constants.d.ts +0 -1
  564. package/constants/conversion.constants.mjs +0 -4
  565. package/constants/deploy-data/deploy-data-arbMainnet.json.cjs +0 -1
  566. package/constants/deploy-data/deploy-data-arbMainnet.json.mjs +0 -5702
  567. package/constants/deploy-data/deploy-data-arcTestnet.json.cjs +0 -1
  568. package/constants/deploy-data/deploy-data-arcTestnet.json.mjs +0 -6171
  569. package/constants/deploy-data/deploy-data-avalanche.json.cjs +0 -1
  570. package/constants/deploy-data/deploy-data-avalanche.json.mjs +0 -5940
  571. package/constants/deploy-data/deploy-data-base.json.cjs +0 -1
  572. package/constants/deploy-data/deploy-data-base.json.mjs +0 -5712
  573. package/constants/deploy-data/deploy-data-bnbMainnet.json.cjs +0 -1
  574. package/constants/deploy-data/deploy-data-bnbMainnet.json.mjs +0 -5940
  575. package/constants/deploy-data/deploy-data-ethMainnet.json.cjs +0 -1
  576. package/constants/deploy-data/deploy-data-ethMainnet.json.mjs +0 -5942
  577. package/constants/deploy-data/deploy-data-localhost.json.cjs +0 -1
  578. package/constants/deploy-data/deploy-data-localhost.json.mjs +0 -5940
  579. package/constants/deploy-data/deploy-data-optimism.json.cjs +0 -1
  580. package/constants/deploy-data/deploy-data-optimism.json.mjs +0 -5712
  581. package/constants/deploy-data/deploy-data-polygon.json.cjs +0 -1
  582. package/constants/deploy-data/deploy-data-polygon.json.mjs +0 -5712
  583. package/constants/deploy-data/index.d.ts +0 -10
  584. package/constants/events.constants.cjs +0 -1
  585. package/constants/events.constants.d.ts +0 -1
  586. package/constants/events.constants.mjs +0 -12
  587. package/constants/fees.constants.cjs +0 -1
  588. package/constants/fees.constants.d.ts +0 -2
  589. package/constants/fees.constants.mjs +0 -6
  590. package/constants/function-signatures.constants.cjs +0 -1
  591. package/constants/function-signatures.constants.d.ts +0 -5
  592. package/constants/function-signatures.constants.mjs +0 -8
  593. package/constants/kyc.constants.cjs +0 -1
  594. package/constants/kyc.constants.d.ts +0 -28
  595. package/constants/kyc.constants.mjs +0 -179
  596. package/constants/lifi.constants.cjs +0 -1
  597. package/constants/lifi.constants.d.ts +0 -1
  598. package/constants/lifi.constants.mjs +0 -4
  599. package/constants/mediaUrls.constants.cjs +0 -1
  600. package/constants/mediaUrls.constants.d.ts +0 -24
  601. package/constants/mediaUrls.constants.mjs +0 -27
  602. package/constants/mystery-boxes.constants.cjs +0 -1
  603. package/constants/mystery-boxes.constants.d.ts +0 -63
  604. package/constants/mystery-boxes.constants.mjs +0 -355
  605. package/constants/oauthUrls.constants.cjs +0 -1
  606. package/constants/oauthUrls.constants.d.ts +0 -7
  607. package/constants/oauthUrls.constants.mjs +0 -10
  608. package/constants/permit2.constants.cjs +0 -1
  609. package/constants/permit2.constants.d.ts +0 -8
  610. package/constants/permit2.constants.mjs +0 -17
  611. package/constants/presale.constants.cjs +0 -1
  612. package/constants/presale.constants.d.ts +0 -78
  613. package/constants/presale.constants.mjs +0 -504
  614. package/constants/protocol.constants.cjs +0 -1
  615. package/constants/protocol.constants.d.ts +0 -36
  616. package/constants/protocol.constants.mjs +0 -39
  617. package/constants/reorg-depths.constants.cjs +0 -1
  618. package/constants/reorg-depths.constants.d.ts +0 -3
  619. package/constants/reorg-depths.constants.mjs +0 -17
  620. package/constants/rewards.constants.cjs +0 -1
  621. package/constants/rewards.constants.d.ts +0 -17
  622. package/constants/rewards.constants.mjs +0 -22
  623. package/constants/save-depths.cjs +0 -1
  624. package/constants/save-depths.d.ts +0 -3
  625. package/constants/save-depths.mjs +0 -16
  626. package/constants/server.constants.cjs +0 -1
  627. package/constants/server.constants.d.ts +0 -186
  628. package/constants/server.constants.mjs +0 -211
  629. package/constants/tasks.constants.cjs +0 -1
  630. package/constants/tasks.constants.d.ts +0 -8
  631. package/constants/tasks.constants.mjs +0 -204
  632. package/constants/token-data/ERC20Registry.cjs +0 -1
  633. package/constants/token-data/ERC20Registry.d.ts +0 -3
  634. package/constants/token-data/ERC20Registry.mjs +0 -81
  635. package/constants/token-data/arbMainnetRegistry.json.cjs +0 -1
  636. package/constants/token-data/arbMainnetRegistry.json.mjs +0 -1845
  637. package/constants/token-data/arbMainnetRegistryFixed.json.cjs +0 -1
  638. package/constants/token-data/arbMainnetRegistryFixed.json.mjs +0 -1845
  639. package/constants/token-data/arcTestnetRegistry.json.cjs +0 -1
  640. package/constants/token-data/arcTestnetRegistry.json.mjs +0 -439
  641. package/constants/token-data/avalancheRegistry.json.cjs +0 -1
  642. package/constants/token-data/avalancheRegistry.json.mjs +0 -733
  643. package/constants/token-data/avalancheRegistryFixed.json.cjs +0 -1
  644. package/constants/token-data/avalancheRegistryFixed.json.mjs +0 -733
  645. package/constants/token-data/baseRegistry.json.cjs +0 -1
  646. package/constants/token-data/baseRegistry.json.mjs +0 -1138
  647. package/constants/token-data/baseRegistryFixed.json.cjs +0 -1
  648. package/constants/token-data/baseRegistryFixed.json.mjs +0 -1138
  649. package/constants/token-data/bnbMainnetRegistry.json.cjs +0 -1
  650. package/constants/token-data/bnbMainnetRegistry.json.mjs +0 -904
  651. package/constants/token-data/bnbMainnetRegistryFixed.json.cjs +0 -1
  652. package/constants/token-data/bnbMainnetRegistryFixed.json.mjs +0 -904
  653. package/constants/token-data/ethMainnetRegistry.json.cjs +0 -1
  654. package/constants/token-data/ethMainnetRegistry.json.mjs +0 -4302
  655. package/constants/token-data/ethMainnetRegistryFixed.json.cjs +0 -1
  656. package/constants/token-data/ethMainnetRegistryFixed.json.mjs +0 -4302
  657. package/constants/token-data/index.cjs +0 -1
  658. package/constants/token-data/index.d.ts +0 -1421
  659. package/constants/token-data/index.mjs +0 -36
  660. package/constants/token-data/localhostRegistry.json.cjs +0 -1
  661. package/constants/token-data/localhostRegistry.json.mjs +0 -2788
  662. package/constants/token-data/optimismRegistry.json.cjs +0 -1
  663. package/constants/token-data/optimismRegistry.json.mjs +0 -705
  664. package/constants/token-data/optimismRegistryFixed.json.cjs +0 -1
  665. package/constants/token-data/optimismRegistryFixed.json.mjs +0 -705
  666. package/constants/token-data/polygonRegistry.json.cjs +0 -1
  667. package/constants/token-data/polygonRegistry.json.mjs +0 -2313
  668. package/constants/token-data/polygonRegistryFixed.json.cjs +0 -1
  669. package/constants/token-data/polygonRegistryFixed.json.mjs +0 -2313
  670. package/constants/token-data/popularTokens.constants.cjs +0 -1
  671. package/constants/token-data/popularTokens.constants.d.ts +0 -3
  672. package/constants/token-data/popularTokens.constants.mjs +0 -14
  673. package/constants/token-data/tokenPricing.consts.d.ts +0 -2
  674. package/constants/token.limits.constants.cjs +0 -1
  675. package/constants/token.limits.constants.d.ts +0 -5
  676. package/constants/token.limits.constants.mjs +0 -30
  677. package/constants/vite.constants.cjs +0 -1
  678. package/constants/vite.constants.d.ts +0 -16
  679. package/constants/vite.constants.mjs +0 -38
  680. package/constants/wallet.constants.cjs +0 -1
  681. package/constants/wallet.constants.d.ts +0 -7
  682. package/constants/wallet.constants.mjs +0 -10
  683. package/crypto/babyJub.cjs +0 -1
  684. package/crypto/babyJub.d.ts +0 -16
  685. package/crypto/babyJub.mjs +0 -15
  686. package/crypto/poseidon.cjs +0 -1
  687. package/crypto/poseidon.d.ts +0 -15
  688. package/crypto/poseidon.mjs +0 -26
  689. package/crypto/preProcessing.cjs +0 -1
  690. package/crypto/preProcessing.d.ts +0 -1
  691. package/crypto/preProcessing.mjs +0 -11
  692. package/data-structures/ApprovalDBs/EventsPublicApprovalsDB.cjs +0 -1
  693. package/data-structures/ApprovalDBs/EventsPublicApprovalsDB.d.ts +0 -18
  694. package/data-structures/ApprovalDBs/EventsPublicApprovalsDB.mjs +0 -175
  695. package/data-structures/Hinkal/Hinkal.cjs +0 -1
  696. package/data-structures/Hinkal/Hinkal.d.ts +0 -108
  697. package/data-structures/Hinkal/Hinkal.mjs +0 -460
  698. package/data-structures/Hinkal/IHinkal.d.ts +0 -100
  699. package/data-structures/Hinkal/handleAutoDepositBack.cjs +0 -1
  700. package/data-structures/Hinkal/handleAutoDepositBack.d.ts +0 -5
  701. package/data-structures/Hinkal/handleAutoDepositBack.mjs +0 -108
  702. package/data-structures/Hinkal/hinkalActionFundApproveAndTransact.cjs +0 -1
  703. package/data-structures/Hinkal/hinkalActionFundApproveAndTransact.d.ts +0 -7
  704. package/data-structures/Hinkal/hinkalActionFundApproveAndTransact.mjs +0 -41
  705. package/data-structures/Hinkal/hinkalActionReceive.cjs +0 -1
  706. package/data-structures/Hinkal/hinkalActionReceive.d.ts +0 -7
  707. package/data-structures/Hinkal/hinkalActionReceive.mjs +0 -40
  708. package/data-structures/Hinkal/hinkalActionStake.d.ts +0 -3
  709. package/data-structures/Hinkal/hinkalApprove.cjs +0 -1
  710. package/data-structures/Hinkal/hinkalApprove.d.ts +0 -3
  711. package/data-structures/Hinkal/hinkalApprove.mjs +0 -115
  712. package/data-structures/Hinkal/hinkalCheckTokenRegistry.cjs +0 -1
  713. package/data-structures/Hinkal/hinkalCheckTokenRegistry.d.ts +0 -3
  714. package/data-structures/Hinkal/hinkalCheckTokenRegistry.mjs +0 -52
  715. package/data-structures/Hinkal/hinkalDeposit.cjs +0 -1
  716. package/data-structures/Hinkal/hinkalDeposit.d.ts +0 -4
  717. package/data-structures/Hinkal/hinkalDeposit.mjs +0 -149
  718. package/data-structures/Hinkal/hinkalGetRecipientInfo.cjs +0 -1
  719. package/data-structures/Hinkal/hinkalGetRecipientInfo.d.ts +0 -2
  720. package/data-structures/Hinkal/hinkalGetRecipientInfo.mjs +0 -10
  721. package/data-structures/Hinkal/hinkalGetZkMeProvider.cjs +0 -1
  722. package/data-structures/Hinkal/hinkalGetZkMeProvider.d.ts +0 -3
  723. package/data-structures/Hinkal/hinkalGetZkMeProvider.mjs +0 -23
  724. package/data-structures/Hinkal/hinkalInsideTransact.cjs +0 -1
  725. package/data-structures/Hinkal/hinkalInsideTransact.d.ts +0 -4
  726. package/data-structures/Hinkal/hinkalInsideTransact.mjs +0 -121
  727. package/data-structures/Hinkal/hinkalMultiSend.cjs +0 -1
  728. package/data-structures/Hinkal/hinkalMultiSend.d.ts +0 -3
  729. package/data-structures/Hinkal/hinkalMultiSend.mjs +0 -13
  730. package/data-structures/Hinkal/hinkalPrivateWallet.cjs +0 -1
  731. package/data-structures/Hinkal/hinkalPrivateWallet.d.ts +0 -6
  732. package/data-structures/Hinkal/hinkalPrivateWallet.mjs +0 -148
  733. package/data-structures/Hinkal/hinkalProoflessDeposit.cjs +0 -1
  734. package/data-structures/Hinkal/hinkalProoflessDeposit.d.ts +0 -4
  735. package/data-structures/Hinkal/hinkalProoflessDeposit.mjs +0 -46
  736. package/data-structures/Hinkal/hinkalProxySwap.cjs +0 -1
  737. package/data-structures/Hinkal/hinkalProxySwap.d.ts +0 -8
  738. package/data-structures/Hinkal/hinkalProxySwap.mjs +0 -59
  739. package/data-structures/Hinkal/hinkalSignSubAccount.cjs +0 -1
  740. package/data-structures/Hinkal/hinkalSignSubAccount.d.ts +0 -4
  741. package/data-structures/Hinkal/hinkalSignSubAccount.mjs +0 -20
  742. package/data-structures/Hinkal/hinkalSwap.cjs +0 -1
  743. package/data-structures/Hinkal/hinkalSwap.d.ts +0 -6
  744. package/data-structures/Hinkal/hinkalSwap.mjs +0 -127
  745. package/data-structures/Hinkal/hinkalTransfer.cjs +0 -1
  746. package/data-structures/Hinkal/hinkalTransfer.d.ts +0 -4
  747. package/data-structures/Hinkal/hinkalTransfer.mjs +0 -127
  748. package/data-structures/Hinkal/hinkalWithdraw.cjs +0 -1
  749. package/data-structures/Hinkal/hinkalWithdraw.d.ts +0 -4
  750. package/data-structures/Hinkal/hinkalWithdraw.mjs +0 -126
  751. package/data-structures/Hinkal/resetMerkleTrees.cjs +0 -1
  752. package/data-structures/Hinkal/resetMerkleTrees.d.ts +0 -2
  753. package/data-structures/Hinkal/resetMerkleTrees.mjs +0 -35
  754. package/data-structures/IndexedDB/activity-db.cjs +0 -1
  755. package/data-structures/IndexedDB/activity-db.d.ts +0 -16
  756. package/data-structures/IndexedDB/activity-db.mjs +0 -191
  757. package/data-structures/IndexedDB/balances-db.cjs +0 -1
  758. package/data-structures/IndexedDB/balances-db.d.ts +0 -13
  759. package/data-structures/IndexedDB/balances-db.mjs +0 -94
  760. package/data-structures/IndexedDB/contact-db.cjs +0 -1
  761. package/data-structures/IndexedDB/contact-db.d.ts +0 -11
  762. package/data-structures/IndexedDB/contact-db.mjs +0 -99
  763. package/data-structures/IndexedDB/prices-db.cjs +0 -1
  764. package/data-structures/IndexedDB/prices-db.d.ts +0 -9
  765. package/data-structures/IndexedDB/prices-db.mjs +0 -62
  766. package/data-structures/IndexedDB/private-balances-db.cjs +0 -1
  767. package/data-structures/IndexedDB/private-balances-db.d.ts +0 -9
  768. package/data-structures/IndexedDB/private-balances-db.mjs +0 -28
  769. package/data-structures/IndexedDB/signatures-db.cjs +0 -1
  770. package/data-structures/IndexedDB/signatures-db.d.ts +0 -10
  771. package/data-structures/IndexedDB/signatures-db.mjs +0 -62
  772. package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.cjs +0 -1
  773. package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.d.ts +0 -20
  774. package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.mjs +0 -80
  775. package/data-structures/TokenDBs/AlchemyPublicTokensDB.cjs +0 -1
  776. package/data-structures/TokenDBs/AlchemyPublicTokensDB.d.ts +0 -14
  777. package/data-structures/TokenDBs/AlchemyPublicTokensDB.mjs +0 -132
  778. package/data-structures/TokenDBs/ArcPublicTokensDB.cjs +0 -1
  779. package/data-structures/TokenDBs/ArcPublicTokensDB.d.ts +0 -11
  780. package/data-structures/TokenDBs/ArcPublicTokensDB.mjs +0 -112
  781. package/data-structures/TokenDBs/EventsPublicTokensDB.cjs +0 -1
  782. package/data-structures/TokenDBs/EventsPublicTokensDB.d.ts +0 -17
  783. package/data-structures/TokenDBs/EventsPublicTokensDB.mjs +0 -174
  784. package/data-structures/TokenDBs/IPublicTokensDB.d.ts +0 -6
  785. package/data-structures/TokenDBs/PrivateTokensDB.cjs +0 -1
  786. package/data-structures/TokenDBs/PrivateTokensDB.d.ts +0 -11
  787. package/data-structures/TokenDBs/PrivateTokensDB.mjs +0 -60
  788. package/data-structures/TokenDBs/PublicTokensDB.cjs +0 -1
  789. package/data-structures/TokenDBs/PublicTokensDB.d.ts +0 -9
  790. package/data-structures/TokenDBs/PublicTokensDB.mjs +0 -32
  791. package/data-structures/TokenDBs/token-visibility-db.cjs +0 -1
  792. package/data-structures/TokenDBs/token-visibility-db.d.ts +0 -17
  793. package/data-structures/TokenDBs/token-visibility-db.mjs +0 -96
  794. package/data-structures/ValueCache/ValueCache.cjs +0 -1
  795. package/data-structures/ValueCache/ValueCache.d.ts +0 -10
  796. package/data-structures/ValueCache/ValueCache.mjs +0 -25
  797. package/data-structures/cacheDevices/AttachableMemoryCacheDevice.cjs +0 -1
  798. package/data-structures/cacheDevices/AttachableMemoryCacheDevice.d.ts +0 -8
  799. package/data-structures/cacheDevices/AttachableMemoryCacheDevice.mjs +0 -28
  800. package/data-structures/cacheDevices/BaseCacheDevice.cjs +0 -1
  801. package/data-structures/cacheDevices/BaseCacheDevice.d.ts +0 -11
  802. package/data-structures/cacheDevices/BaseCacheDevice.mjs +0 -21
  803. package/data-structures/cacheDevices/FileCacheDevice.cjs +0 -1
  804. package/data-structures/cacheDevices/FileCacheDevice.d.ts +0 -10
  805. package/data-structures/cacheDevices/FileCacheDevice.mjs +0 -41
  806. package/data-structures/cacheDevices/LocalStorageCacheDevice.cjs +0 -1
  807. package/data-structures/cacheDevices/LocalStorageCacheDevice.d.ts +0 -8
  808. package/data-structures/cacheDevices/LocalStorageCacheDevice.mjs +0 -21
  809. package/data-structures/crypto-keys/decodeUTXO.cjs +0 -1
  810. package/data-structures/crypto-keys/decodeUTXO.d.ts +0 -14
  811. package/data-structures/crypto-keys/decodeUTXO.mjs +0 -41
  812. package/data-structures/crypto-keys/encryptDecryptUtxo.cjs +0 -1
  813. package/data-structures/crypto-keys/encryptDecryptUtxo.d.ts +0 -18
  814. package/data-structures/crypto-keys/encryptDecryptUtxo.mjs +0 -40
  815. package/data-structures/crypto-keys/keyUtils.cjs +0 -1
  816. package/data-structures/crypto-keys/keyUtils.d.ts +0 -2
  817. package/data-structures/crypto-keys/keyUtils.mjs +0 -10
  818. package/data-structures/crypto-keys/keys.cjs +0 -1
  819. package/data-structures/crypto-keys/keys.d.ts +0 -75
  820. package/data-structures/crypto-keys/keys.mjs +0 -124
  821. package/data-structures/custom-token-registry/CustomTokenRegistry.cjs +0 -1
  822. package/data-structures/custom-token-registry/CustomTokenRegistry.d.ts +0 -12
  823. package/data-structures/custom-token-registry/CustomTokenRegistry.mjs +0 -29
  824. package/data-structures/event-service/AbstractAccessTokenSnapshotService.cjs +0 -1
  825. package/data-structures/event-service/AbstractAccessTokenSnapshotService.d.ts +0 -34
  826. package/data-structures/event-service/AbstractAccessTokenSnapshotService.mjs +0 -86
  827. package/data-structures/event-service/AbstractApprovalsSnapshotService.cjs +0 -1
  828. package/data-structures/event-service/AbstractApprovalsSnapshotService.d.ts +0 -29
  829. package/data-structures/event-service/AbstractApprovalsSnapshotService.mjs +0 -92
  830. package/data-structures/event-service/AbstractCommitmentsSnapshotService.cjs +0 -1
  831. package/data-structures/event-service/AbstractCommitmentsSnapshotService.d.ts +0 -29
  832. package/data-structures/event-service/AbstractCommitmentsSnapshotService.mjs +0 -83
  833. package/data-structures/event-service/AbstractEventService.cjs +0 -1
  834. package/data-structures/event-service/AbstractEventService.d.ts +0 -12
  835. package/data-structures/event-service/AbstractEventService.mjs +0 -33
  836. package/data-structures/event-service/AbstractNullifierSnapshotService.cjs +0 -1
  837. package/data-structures/event-service/AbstractNullifierSnapshotService.d.ts +0 -22
  838. package/data-structures/event-service/AbstractNullifierSnapshotService.mjs +0 -48
  839. package/data-structures/event-service/AbstractSnapshotService.cjs +0 -1
  840. package/data-structures/event-service/AbstractSnapshotService.d.ts +0 -22
  841. package/data-structures/event-service/AbstractSnapshotService.mjs +0 -33
  842. package/data-structures/event-service/BlockchainEventEmitter.cjs +0 -1
  843. package/data-structures/event-service/BlockchainEventEmitter.d.ts +0 -23
  844. package/data-structures/event-service/BlockchainEventEmitter.mjs +0 -80
  845. package/data-structures/index.d.ts +0 -18
  846. package/data-structures/merkle-tree/MerkleTree.cjs +0 -1
  847. package/data-structures/merkle-tree/MerkleTree.d.ts +0 -81
  848. package/data-structures/merkle-tree/MerkleTree.mjs +0 -168
  849. package/data-structures/merkle-tree/MerkleTreeIncompleteError.cjs +0 -1
  850. package/data-structures/merkle-tree/MerkleTreeIncompleteError.d.ts +0 -3
  851. package/data-structures/merkle-tree/MerkleTreeIncompleteError.mjs +0 -8
  852. package/data-structures/merkle-tree/getPatchedAccessTokenMerkleTree.cjs +0 -1
  853. package/data-structures/merkle-tree/getPatchedAccessTokenMerkleTree.d.ts +0 -3
  854. package/data-structures/merkle-tree/getPatchedAccessTokenMerkleTree.mjs +0 -13
  855. package/data-structures/presale/PresaleContractWrapper.cjs +0 -1
  856. package/data-structures/presale/PresaleContractWrapper.d.ts +0 -23
  857. package/data-structures/presale/PresaleContractWrapper.mjs +0 -54
  858. package/data-structures/provider-adapter/IProviderAdapter.d.ts +0 -37
  859. package/data-structures/snapshot/ClientAccessTokenSnapshotService.cjs +0 -1
  860. package/data-structures/snapshot/ClientAccessTokenSnapshotService.d.ts +0 -8
  861. package/data-structures/snapshot/ClientAccessTokenSnapshotService.mjs +0 -37
  862. package/data-structures/snapshot/ClientApprovalsSnapshotService.cjs +0 -1
  863. package/data-structures/snapshot/ClientApprovalsSnapshotService.d.ts +0 -9
  864. package/data-structures/snapshot/ClientApprovalsSnapshotService.mjs +0 -23
  865. package/data-structures/snapshot/ClientCommitmentsSnapshotService.cjs +0 -1
  866. package/data-structures/snapshot/ClientCommitmentsSnapshotService.d.ts +0 -8
  867. package/data-structures/snapshot/ClientCommitmentsSnapshotService.mjs +0 -31
  868. package/data-structures/snapshot/ClientNullifierSnapshotService.cjs +0 -1
  869. package/data-structures/snapshot/ClientNullifierSnapshotService.d.ts +0 -8
  870. package/data-structures/snapshot/ClientNullifierSnapshotService.mjs +0 -30
  871. package/data-structures/snapshot/SnapshotFetcherService.cjs +0 -1
  872. package/data-structures/snapshot/SnapshotFetcherService.d.ts +0 -16
  873. package/data-structures/snapshot/SnapshotFetcherService.mjs +0 -42
  874. package/data-structures/token-price-fetcher/TokenChecker.cjs +0 -1
  875. package/data-structures/token-price-fetcher/TokenChecker.d.ts +0 -9
  876. package/data-structures/token-price-fetcher/TokenChecker.mjs +0 -15
  877. package/data-structures/tor/HttpClient.cjs +0 -1
  878. package/data-structures/tor/HttpClient.d.ts +0 -22
  879. package/data-structures/tor/HttpClient.mjs +0 -57
  880. package/data-structures/tor/TorAdapter.cjs +0 -1
  881. package/data-structures/tor/TorAdapter.d.ts +0 -3
  882. package/data-structures/tor/TorAdapter.mjs +0 -59
  883. package/data-structures/tor/TorClient.cjs +0 -1
  884. package/data-structures/tor/TorClient.d.ts +0 -25
  885. package/data-structures/tor/TorClient.mjs +0 -147
  886. package/data-structures/tor/WebSocketDuplex.cjs +0 -1
  887. package/data-structures/tor/WebSocketDuplex.d.ts +0 -7
  888. package/data-structures/tor/WebSocketDuplex.mjs +0 -25
  889. package/data-structures/transactions-manager/history/history.types.cjs +0 -1
  890. package/data-structures/transactions-manager/history/history.types.d.ts +0 -16
  891. package/data-structures/transactions-manager/history/history.types.mjs +0 -4
  892. package/data-structures/utxo/Utxo.cjs +0 -1
  893. package/data-structures/utxo/Utxo.d.ts +0 -63
  894. package/data-structures/utxo/Utxo.mjs +0 -135
  895. package/error-handling/customErrors/ErrorWithAmount.cjs +0 -1
  896. package/error-handling/customErrors/ErrorWithAmount.d.ts +0 -4
  897. package/error-handling/customErrors/ErrorWithAmount.mjs +0 -9
  898. package/error-handling/customErrors/ErrorWithTx.cjs +0 -1
  899. package/error-handling/customErrors/ErrorWithTx.d.ts +0 -5
  900. package/error-handling/customErrors/ErrorWithTx.mjs +0 -9
  901. package/error-handling/customErrors/FeeOverTransactionValueError.cjs +0 -1
  902. package/error-handling/customErrors/FeeOverTransactionValueError.d.ts +0 -9
  903. package/error-handling/customErrors/FeeOverTransactionValueError.mjs +0 -9
  904. package/error-handling/customErrors/SimulationFailureError.cjs +0 -1
  905. package/error-handling/customErrors/SimulationFailureError.d.ts +0 -10
  906. package/error-handling/customErrors/SimulationFailureError.mjs +0 -9
  907. package/error-handling/customErrors/customErrors.helpers.cjs +0 -1
  908. package/error-handling/customErrors/customErrors.helpers.d.ts +0 -5
  909. package/error-handling/customErrors/customErrors.helpers.mjs +0 -21
  910. package/error-handling/error-codes.constants.cjs +0 -2
  911. package/error-handling/error-codes.constants.d.ts +0 -195
  912. package/error-handling/error-codes.constants.mjs +0 -200
  913. package/error-handling/get-error.message.cjs +0 -1
  914. package/error-handling/get-error.message.d.ts +0 -5
  915. package/error-handling/get-error.message.mjs +0 -102
  916. package/error-handling/handleErrorRestore.cjs +0 -1
  917. package/error-handling/handleErrorRestore.d.ts +0 -2
  918. package/error-handling/handleErrorRestore.mjs +0 -11
  919. package/error-handling/logError.cjs +0 -1
  920. package/error-handling/logError.d.ts +0 -1
  921. package/error-handling/logError.mjs +0 -7
  922. package/error-handling/logger.cjs +0 -1
  923. package/error-handling/logger.d.ts +0 -5
  924. package/error-handling/logger.mjs +0 -16
  925. package/error-handling/types.cjs +0 -1
  926. package/error-handling/types.d.ts +0 -10
  927. package/error-handling/types.mjs +0 -4
  928. package/externalABIs/BUSD.cjs +0 -1
  929. package/externalABIs/BUSD.d.ts +0 -38
  930. package/externalABIs/BUSD.mjs +0 -519
  931. package/externalABIs/BabPassport.json.cjs +0 -1
  932. package/externalABIs/BabPassport.json.mjs +0 -29
  933. package/externalABIs/DAI.cjs +0 -1
  934. package/externalABIs/DAI.d.ts +0 -45
  935. package/externalABIs/DAI.mjs +0 -334
  936. package/externalABIs/ERC1155.json.cjs +0 -1
  937. package/externalABIs/ERC1155.json.mjs +0 -320
  938. package/externalABIs/ERC20.json.cjs +0 -1
  939. package/externalABIs/ERC20.json.mjs +0 -308
  940. package/externalABIs/ERC721.json.cjs +0 -1
  941. package/externalABIs/ERC721.json.mjs +0 -338
  942. package/externalABIs/GalxePassport.json.cjs +0 -1
  943. package/externalABIs/GalxePassport.json.mjs +0 -46
  944. package/externalABIs/IQuoterV2.json.cjs +0 -1
  945. package/externalABIs/IQuoterV2.json.mjs +0 -222
  946. package/externalABIs/ISwapRouter.json.cjs +0 -1
  947. package/externalABIs/ISwapRouter.json.mjs +0 -571
  948. package/externalABIs/IUniswapV3Factory.json.cjs +0 -1
  949. package/externalABIs/IUniswapV3Factory.json.mjs +0 -218
  950. package/externalABIs/IUniswapV3Pool.json.cjs +0 -1
  951. package/externalABIs/IUniswapV3Pool.json.mjs +0 -1016
  952. package/externalABIs/NodeInterfaceABI.json.cjs +0 -1
  953. package/externalABIs/NodeInterfaceABI.json.mjs +0 -280
  954. package/externalABIs/OptimismGasPriceOracle.json.cjs +0 -1
  955. package/externalABIs/OptimismGasPriceOracle.json.mjs +0 -206
  956. package/externalABIs/SanctionsList.cjs +0 -1
  957. package/externalABIs/SanctionsList.d.ts +0 -35
  958. package/externalABIs/SanctionsList.mjs +0 -89
  959. package/externalABIs/USDC.cjs +0 -1
  960. package/externalABIs/USDC.d.ts +0 -28
  961. package/externalABIs/USDC.mjs +0 -721
  962. package/externalABIs/USDR.cjs +0 -1
  963. package/externalABIs/USDR.d.ts +0 -28
  964. package/externalABIs/USDR.mjs +0 -346
  965. package/externalABIs/USDR3CRV.cjs +0 -1
  966. package/externalABIs/USDR3CRV.d.ts +0 -49
  967. package/externalABIs/USDR3CRV.mjs +0 -542
  968. package/externalABIs/USDT.cjs +0 -1
  969. package/externalABIs/USDT.d.ts +0 -41
  970. package/externalABIs/USDT.mjs +0 -393
  971. package/externalABIs/UniswapV2PoolAbi.json.cjs +0 -1
  972. package/externalABIs/UniswapV2PoolAbi.json.mjs +0 -93
  973. package/externalABIs/WETH.cjs +0 -1
  974. package/externalABIs/WETH.d.ts +0 -38
  975. package/externalABIs/WETH.mjs +0 -156
  976. package/externalABIs/amToken.cjs +0 -1
  977. package/externalABIs/amToken.d.ts +0 -28
  978. package/externalABIs/amToken.mjs +0 -350
  979. package/externalABIs/index.cjs +0 -1
  980. package/externalABIs/index.d.ts +0 -269
  981. package/externalABIs/index.mjs +0 -21
  982. package/externalABIs/swapAbi.cjs +0 -1
  983. package/externalABIs/swapAbi.d.ts +0 -77
  984. package/externalABIs/swapAbi.mjs +0 -291
  985. package/externalABIs/transactionsProver.json.cjs +0 -1
  986. package/externalABIs/transactionsProver.json.mjs +0 -56
  987. package/functions/index.d.ts +0 -13
  988. package/functions/kyc/authentoHelper.cjs +0 -1
  989. package/functions/kyc/authentoHelper.d.ts +0 -12
  990. package/functions/kyc/authentoHelper.mjs +0 -30
  991. package/functions/kyc/openDefaultPassportWindow.cjs +0 -1
  992. package/functions/kyc/openDefaultPassportWindow.d.ts +0 -1
  993. package/functions/kyc/openDefaultPassportWindow.mjs +0 -11
  994. package/functions/kyc/passportHelper.cjs +0 -1
  995. package/functions/kyc/passportHelper.d.ts +0 -3
  996. package/functions/kyc/passportHelper.mjs +0 -9
  997. package/functions/kyc/zkMeHelper.cjs +0 -1
  998. package/functions/kyc/zkMeHelper.d.ts +0 -4
  999. package/functions/kyc/zkMeHelper.mjs +0 -52
  1000. package/functions/pre-transaction/constructAdminData.cjs +0 -1
  1001. package/functions/pre-transaction/constructAdminData.d.ts +0 -2
  1002. package/functions/pre-transaction/constructAdminData.mjs +0 -15
  1003. package/functions/pre-transaction/getExternalSwapAddress.cjs +0 -1
  1004. package/functions/pre-transaction/getExternalSwapAddress.d.ts +0 -3
  1005. package/functions/pre-transaction/getExternalSwapAddress.mjs +0 -29
  1006. package/functions/pre-transaction/getFeeStructure.cjs +0 -1
  1007. package/functions/pre-transaction/getFeeStructure.d.ts +0 -4
  1008. package/functions/pre-transaction/getFeeStructure.mjs +0 -29
  1009. package/functions/pre-transaction/getFlatFees.cjs +0 -1
  1010. package/functions/pre-transaction/getFlatFees.d.ts +0 -8
  1011. package/functions/pre-transaction/getFlatFees.mjs +0 -65
  1012. package/functions/pre-transaction/getSignatureDataForTransact.cjs +0 -1
  1013. package/functions/pre-transaction/getSignatureDataForTransact.d.ts +0 -3
  1014. package/functions/pre-transaction/getSignatureDataForTransact.mjs +0 -6
  1015. package/functions/pre-transaction/getVolatileTransferAmount.cjs +0 -1
  1016. package/functions/pre-transaction/getVolatileTransferAmount.d.ts +0 -9
  1017. package/functions/pre-transaction/getVolatileTransferAmount.mjs +0 -52
  1018. package/functions/pre-transaction/interaction-to-action.cjs +0 -1
  1019. package/functions/pre-transaction/interaction-to-action.d.ts +0 -2
  1020. package/functions/pre-transaction/interaction-to-action.mjs +0 -11
  1021. package/functions/pre-transaction/merge-with-fee-structure-emporium.cjs +0 -1
  1022. package/functions/pre-transaction/merge-with-fee-structure-emporium.d.ts +0 -3
  1023. package/functions/pre-transaction/merge-with-fee-structure-emporium.mjs +0 -24
  1024. package/functions/pre-transaction/merge-with-fee-structure.cjs +0 -1
  1025. package/functions/pre-transaction/merge-with-fee-structure.d.ts +0 -2
  1026. package/functions/pre-transaction/merge-with-fee-structure.mjs +0 -23
  1027. package/functions/pre-transaction/outputApprovalDataProcessing.cjs +0 -1
  1028. package/functions/pre-transaction/outputApprovalDataProcessing.d.ts +0 -17
  1029. package/functions/pre-transaction/outputApprovalDataProcessing.mjs +0 -39
  1030. package/functions/pre-transaction/outputUtxoProcessing.cjs +0 -1
  1031. package/functions/pre-transaction/outputUtxoProcessing.d.ts +0 -5
  1032. package/functions/pre-transaction/outputUtxoProcessing.mjs +0 -34
  1033. package/functions/pre-transaction/process-gas-estimates.cjs +0 -1
  1034. package/functions/pre-transaction/process-gas-estimates.d.ts +0 -5
  1035. package/functions/pre-transaction/process-gas-estimates.mjs +0 -24
  1036. package/functions/pre-transaction/shouldPatchAccessTokenMerkleTree.cjs +0 -1
  1037. package/functions/pre-transaction/shouldPatchAccessTokenMerkleTree.d.ts +0 -6
  1038. package/functions/pre-transaction/shouldPatchAccessTokenMerkleTree.mjs +0 -7
  1039. package/functions/private-wallet/emporium.helpers.cjs +0 -1
  1040. package/functions/private-wallet/emporium.helpers.d.ts +0 -31
  1041. package/functions/private-wallet/emporium.helpers.mjs +0 -202
  1042. package/functions/private-wallet/emporium.swap.helpers.cjs +0 -1
  1043. package/functions/private-wallet/emporium.swap.helpers.d.ts +0 -7
  1044. package/functions/private-wallet/emporium.swap.helpers.mjs +0 -147
  1045. package/functions/private-wallet/opProducer.cjs +0 -1
  1046. package/functions/private-wallet/opProducer.d.ts +0 -5
  1047. package/functions/private-wallet/opProducer.mjs +0 -23
  1048. package/functions/snarkjs/common.snarkjs.cjs +0 -1
  1049. package/functions/snarkjs/common.snarkjs.d.ts +0 -25
  1050. package/functions/snarkjs/common.snarkjs.mjs +0 -186
  1051. package/functions/snarkjs/constant.cjs +0 -1
  1052. package/functions/snarkjs/constant.d.ts +0 -390
  1053. package/functions/snarkjs/constant.mjs +0 -427
  1054. package/functions/snarkjs/constructEmporiumProof.cjs +0 -1
  1055. package/functions/snarkjs/constructEmporiumProof.d.ts +0 -14
  1056. package/functions/snarkjs/constructEmporiumProof.mjs +0 -173
  1057. package/functions/snarkjs/constructGeneralZkProof.cjs +0 -1
  1058. package/functions/snarkjs/constructGeneralZkProof.d.ts +0 -14
  1059. package/functions/snarkjs/constructGeneralZkProof.mjs +0 -160
  1060. package/functions/snarkjs/generateCircomData.cjs +0 -1
  1061. package/functions/snarkjs/generateCircomData.d.ts +0 -5
  1062. package/functions/snarkjs/generateCircomData.mjs +0 -37
  1063. package/functions/snarkjs/generateZkProof.cjs +0 -1
  1064. package/functions/snarkjs/generateZkProof.d.ts +0 -5
  1065. package/functions/snarkjs/generateZkProof.mjs +0 -15
  1066. package/functions/snarkjs/generateZkProofEnclave.cjs +0 -1
  1067. package/functions/snarkjs/generateZkProofEnclave.d.ts +0 -6
  1068. package/functions/snarkjs/generateZkProofEnclave.mjs +0 -29
  1069. package/functions/snarkjs/generateZkProofSelf.cjs +0 -1
  1070. package/functions/snarkjs/generateZkProofSelf.d.ts +0 -5
  1071. package/functions/snarkjs/generateZkProofSelf.mjs +0 -17
  1072. package/functions/snarkjs/getOriginalSender.cjs +0 -1
  1073. package/functions/snarkjs/getOriginalSender.d.ts +0 -1
  1074. package/functions/snarkjs/getOriginalSender.mjs +0 -5
  1075. package/functions/snarkjs/getZKFiles.cjs +0 -1
  1076. package/functions/snarkjs/getZKFiles.d.ts +0 -3
  1077. package/functions/snarkjs/getZKFiles.mjs +0 -16
  1078. package/functions/staking/index.cjs +0 -1
  1079. package/functions/staking/index.d.ts +0 -11
  1080. package/functions/staking/index.mjs +0 -42
  1081. package/functions/utils/addresses.cjs +0 -1
  1082. package/functions/utils/addresses.d.ts +0 -5
  1083. package/functions/utils/addresses.mjs +0 -22
  1084. package/functions/utils/amounts.utils.cjs +0 -1
  1085. package/functions/utils/amounts.utils.d.ts +0 -25
  1086. package/functions/utils/amounts.utils.mjs +0 -73
  1087. package/functions/utils/arraysMatch.cjs +0 -1
  1088. package/functions/utils/arraysMatch.d.ts +0 -1
  1089. package/functions/utils/arraysMatch.mjs +0 -4
  1090. package/functions/utils/cacheDevice.utils.cjs +0 -1
  1091. package/functions/utils/cacheDevice.utils.d.ts +0 -3
  1092. package/functions/utils/cacheDevice.utils.mjs +0 -29
  1093. package/functions/utils/cacheFunctions.cjs +0 -1
  1094. package/functions/utils/cacheFunctions.d.ts +0 -20
  1095. package/functions/utils/cacheFunctions.mjs +0 -81
  1096. package/functions/utils/caseInsensitive.utils.cjs +0 -1
  1097. package/functions/utils/caseInsensitive.utils.d.ts +0 -3
  1098. package/functions/utils/caseInsensitive.utils.mjs +0 -6
  1099. package/functions/utils/convertEmporiumOpToCallInfo.cjs +0 -1
  1100. package/functions/utils/convertEmporiumOpToCallInfo.d.ts +0 -2
  1101. package/functions/utils/convertEmporiumOpToCallInfo.mjs +0 -11
  1102. package/functions/utils/convertIntegrationProviderToExternalActionId.cjs +0 -1
  1103. package/functions/utils/convertIntegrationProviderToExternalActionId.d.ts +0 -3
  1104. package/functions/utils/convertIntegrationProviderToExternalActionId.mjs +0 -13
  1105. package/functions/utils/create-provider.cjs +0 -1
  1106. package/functions/utils/create-provider.d.ts +0 -3
  1107. package/functions/utils/create-provider.mjs +0 -10
  1108. package/functions/utils/encodeTokenWithId.cjs +0 -1
  1109. package/functions/utils/encodeTokenWithId.d.ts +0 -2
  1110. package/functions/utils/encodeTokenWithId.mjs +0 -4
  1111. package/functions/utils/encryptInputForEnclave.cjs +0 -1
  1112. package/functions/utils/encryptInputForEnclave.d.ts +0 -8
  1113. package/functions/utils/encryptInputForEnclave.mjs +0 -46
  1114. package/functions/utils/enum.utils.cjs +0 -1
  1115. package/functions/utils/enum.utils.d.ts +0 -9
  1116. package/functions/utils/enum.utils.mjs +0 -14
  1117. package/functions/utils/erc20tokenFunctions.cjs +0 -1
  1118. package/functions/utils/erc20tokenFunctions.d.ts +0 -15
  1119. package/functions/utils/erc20tokenFunctions.mjs +0 -62
  1120. package/functions/utils/ethers-formatter.utils.cjs +0 -1
  1121. package/functions/utils/ethers-formatter.utils.d.ts +0 -3
  1122. package/functions/utils/ethers-formatter.utils.mjs +0 -29
  1123. package/functions/utils/evmNetworkFunctions.cjs +0 -1
  1124. package/functions/utils/evmNetworkFunctions.d.ts +0 -4
  1125. package/functions/utils/evmNetworkFunctions.mjs +0 -20
  1126. package/functions/utils/external-action.utils.cjs +0 -1
  1127. package/functions/utils/external-action.utils.d.ts +0 -3
  1128. package/functions/utils/external-action.utils.mjs +0 -10
  1129. package/functions/utils/fees.utils.cjs +0 -1
  1130. package/functions/utils/fees.utils.d.ts +0 -3
  1131. package/functions/utils/fees.utils.mjs +0 -18
  1132. package/functions/utils/get-hinkal-approvals.cjs +0 -1
  1133. package/functions/utils/get-hinkal-approvals.d.ts +0 -3
  1134. package/functions/utils/get-hinkal-approvals.mjs +0 -42
  1135. package/functions/utils/get-signature-header.cjs +0 -1
  1136. package/functions/utils/get-signature-header.d.ts +0 -5
  1137. package/functions/utils/get-signature-header.mjs +0 -8
  1138. package/functions/utils/getBlockExplorerUrl.cjs +0 -1
  1139. package/functions/utils/getBlockExplorerUrl.d.ts +0 -1
  1140. package/functions/utils/getBlockExplorerUrl.mjs +0 -6
  1141. package/functions/utils/getDataFromTransaction.cjs +0 -1
  1142. package/functions/utils/getDataFromTransaction.d.ts +0 -44
  1143. package/functions/utils/getDataFromTransaction.mjs +0 -64
  1144. package/functions/utils/getRecipientInfoFromUserKeys.cjs +0 -1
  1145. package/functions/utils/getRecipientInfoFromUserKeys.d.ts +0 -3
  1146. package/functions/utils/getRecipientInfoFromUserKeys.mjs +0 -18
  1147. package/functions/utils/inLogicMetadata.cjs +0 -1
  1148. package/functions/utils/inLogicMetadata.d.ts +0 -2
  1149. package/functions/utils/inLogicMetadata.mjs +0 -8
  1150. package/functions/utils/involves-permit2-op.cjs +0 -1
  1151. package/functions/utils/involves-permit2-op.d.ts +0 -8
  1152. package/functions/utils/involves-permit2-op.mjs +0 -9
  1153. package/functions/utils/ipfs.cjs +0 -1
  1154. package/functions/utils/ipfs.d.ts +0 -8
  1155. package/functions/utils/ipfs.mjs +0 -25
  1156. package/functions/utils/is-valid-url.cjs +0 -1
  1157. package/functions/utils/is-valid-url.d.ts +0 -1
  1158. package/functions/utils/is-valid-url.mjs +0 -4
  1159. package/functions/utils/lifi.utils.d.ts +0 -1
  1160. package/functions/utils/memoize.utils.d.ts +0 -1
  1161. package/functions/utils/merkleTree.utils.cjs +0 -1
  1162. package/functions/utils/merkleTree.utils.d.ts +0 -2
  1163. package/functions/utils/merkleTree.utils.mjs +0 -20
  1164. package/functions/utils/mutexes.utils.cjs +0 -1
  1165. package/functions/utils/mutexes.utils.d.ts +0 -2
  1166. package/functions/utils/mutexes.utils.mjs +0 -5
  1167. package/functions/utils/mystery-box-auction.utils.cjs +0 -1
  1168. package/functions/utils/mystery-box-auction.utils.d.ts +0 -8
  1169. package/functions/utils/mystery-box-auction.utils.mjs +0 -51
  1170. package/functions/utils/networks.utils.cjs +0 -1
  1171. package/functions/utils/networks.utils.d.ts +0 -1
  1172. package/functions/utils/networks.utils.mjs +0 -22
  1173. package/functions/utils/nftTokenFunctions.cjs +0 -1
  1174. package/functions/utils/nftTokenFunctions.d.ts +0 -2
  1175. package/functions/utils/nftTokenFunctions.mjs +0 -39
  1176. package/functions/utils/nickname.utils.cjs +0 -1
  1177. package/functions/utils/nickname.utils.d.ts +0 -1
  1178. package/functions/utils/nickname.utils.mjs +0 -7
  1179. package/functions/utils/postToOffscreen.cjs +0 -1
  1180. package/functions/utils/postToOffscreen.d.ts +0 -2
  1181. package/functions/utils/postToOffscreen.mjs +0 -6
  1182. package/functions/utils/prepareHinkal.d.ts +0 -12
  1183. package/functions/utils/process.utils.cjs +0 -1
  1184. package/functions/utils/process.utils.d.ts +0 -7
  1185. package/functions/utils/process.utils.mjs +0 -16
  1186. package/functions/utils/processUseApprovalUtxoData.cjs +0 -1
  1187. package/functions/utils/processUseApprovalUtxoData.d.ts +0 -3
  1188. package/functions/utils/processUseApprovalUtxoData.mjs +0 -19
  1189. package/functions/utils/publicBalance.utils.cjs +0 -1
  1190. package/functions/utils/publicBalance.utils.d.ts +0 -6
  1191. package/functions/utils/publicBalance.utils.mjs +0 -78
  1192. package/functions/utils/reloadPage.cjs +0 -1
  1193. package/functions/utils/reloadPage.d.ts +0 -1
  1194. package/functions/utils/reloadPage.mjs +0 -4
  1195. package/functions/utils/replaceAddressInCalldata.cjs +0 -1
  1196. package/functions/utils/replaceAddressInCalldata.d.ts +0 -1
  1197. package/functions/utils/replaceAddressInCalldata.mjs +0 -7
  1198. package/functions/utils/requireEnv.cjs +0 -1
  1199. package/functions/utils/requireEnv.d.ts +0 -1
  1200. package/functions/utils/requireEnv.mjs +0 -7
  1201. package/functions/utils/resolve-sync.utils.cjs +0 -1
  1202. package/functions/utils/resolve-sync.utils.d.ts +0 -6
  1203. package/functions/utils/resolve-sync.utils.mjs +0 -31
  1204. package/functions/utils/rpc-int-encode.cjs +0 -1
  1205. package/functions/utils/rpc-int-encode.d.ts +0 -2
  1206. package/functions/utils/rpc-int-encode.mjs +0 -8
  1207. package/functions/utils/serialize.utils.cjs +0 -1
  1208. package/functions/utils/serialize.utils.d.ts +0 -2
  1209. package/functions/utils/serialize.utils.mjs +0 -5
  1210. package/functions/utils/string.utils.cjs +0 -1
  1211. package/functions/utils/string.utils.d.ts +0 -14
  1212. package/functions/utils/string.utils.mjs +0 -44
  1213. package/functions/utils/time.utils.cjs +0 -1
  1214. package/functions/utils/time.utils.d.ts +0 -12
  1215. package/functions/utils/time.utils.mjs +0 -46
  1216. package/functions/utils/token-check.utils.cjs +0 -1
  1217. package/functions/utils/token-check.utils.d.ts +0 -1
  1218. package/functions/utils/token-check.utils.mjs +0 -10
  1219. package/functions/utils/trimFieldValues.cjs +0 -1
  1220. package/functions/utils/trimFieldValues.d.ts +0 -4
  1221. package/functions/utils/trimFieldValues.mjs +0 -17
  1222. package/functions/utils/upToDateState.cjs +0 -1
  1223. package/functions/utils/upToDateState.d.ts +0 -2
  1224. package/functions/utils/upToDateState.mjs +0 -11
  1225. package/functions/utils/userAgent.cjs +0 -1
  1226. package/functions/utils/userAgent.d.ts +0 -3
  1227. package/functions/utils/userAgent.mjs +0 -28
  1228. package/functions/utils/walletBalances.utils.cjs +0 -1
  1229. package/functions/utils/walletBalances.utils.d.ts +0 -16
  1230. package/functions/utils/walletBalances.utils.mjs +0 -41
  1231. package/functions/web3/EIP-712.cjs +0 -1
  1232. package/functions/web3/EIP-712.d.ts +0 -23
  1233. package/functions/web3/EIP-712.mjs +0 -113
  1234. package/functions/web3/etherFunctions.cjs +0 -1
  1235. package/functions/web3/etherFunctions.d.ts +0 -20
  1236. package/functions/web3/etherFunctions.mjs +0 -41
  1237. package/functions/web3/events/balanceChangedCustomHandler.cjs +0 -1
  1238. package/functions/web3/events/balanceChangedCustomHandler.d.ts +0 -2
  1239. package/functions/web3/events/balanceChangedCustomHandler.mjs +0 -13
  1240. package/functions/web3/events/balanceChangedHandler.cjs +0 -1
  1241. package/functions/web3/events/balanceChangedHandler.d.ts +0 -1
  1242. package/functions/web3/events/balanceChangedHandler.mjs +0 -11
  1243. package/functions/web3/events/getApprovedBalance.cjs +0 -1
  1244. package/functions/web3/events/getApprovedBalance.d.ts +0 -7
  1245. package/functions/web3/events/getApprovedBalance.mjs +0 -54
  1246. package/functions/web3/events/getInputUtxoAndBalance.cjs +0 -1
  1247. package/functions/web3/events/getInputUtxoAndBalance.d.ts +0 -34
  1248. package/functions/web3/events/getInputUtxoAndBalance.mjs +0 -150
  1249. package/functions/web3/events/getInputUtxosEnclave.cjs +0 -1
  1250. package/functions/web3/events/getInputUtxosEnclave.d.ts +0 -8
  1251. package/functions/web3/events/getInputUtxosEnclave.mjs +0 -25
  1252. package/functions/web3/events/getShieldedBalance.cjs +0 -2
  1253. package/functions/web3/events/getShieldedBalance.d.ts +0 -18
  1254. package/functions/web3/events/getShieldedBalance.mjs +0 -88
  1255. package/functions/web3/events/getTransactionLogEvents.cjs +0 -1
  1256. package/functions/web3/events/getTransactionLogEvents.d.ts +0 -12
  1257. package/functions/web3/events/getTransactionLogEvents.mjs +0 -76
  1258. package/functions/web3/events/web3RetrieveEvents.cjs +0 -1
  1259. package/functions/web3/events/web3RetrieveEvents.d.ts +0 -14
  1260. package/functions/web3/events/web3RetrieveEvents.mjs +0 -9
  1261. package/functions/web3/functionCalls/accessTokenCalls.cjs +0 -1
  1262. package/functions/web3/functionCalls/accessTokenCalls.d.ts +0 -5
  1263. package/functions/web3/functionCalls/accessTokenCalls.mjs +0 -15
  1264. package/functions/web3/functionCalls/approveToken.cjs +0 -1
  1265. package/functions/web3/functionCalls/approveToken.d.ts +0 -4
  1266. package/functions/web3/functionCalls/approveToken.mjs +0 -131
  1267. package/functions/web3/functionCalls/approveTokensToHinkal.cjs +0 -1
  1268. package/functions/web3/functionCalls/approveTokensToHinkal.d.ts +0 -4
  1269. package/functions/web3/functionCalls/approveTokensToHinkal.mjs +0 -11
  1270. package/functions/web3/functionCalls/estimateGasRelayer.cjs +0 -1
  1271. package/functions/web3/functionCalls/estimateGasRelayer.d.ts +0 -5
  1272. package/functions/web3/functionCalls/estimateGasRelayer.mjs +0 -22
  1273. package/functions/web3/functionCalls/getRootHash.d.ts +0 -2
  1274. package/functions/web3/functionCalls/inHinkalApprovalCalls.cjs +0 -1
  1275. package/functions/web3/functionCalls/inHinkalApprovalCalls.d.ts +0 -5
  1276. package/functions/web3/functionCalls/inHinkalApprovalCalls.mjs +0 -32
  1277. package/functions/web3/functionCalls/relayFunctions.d.ts +0 -3
  1278. package/functions/web3/functionCalls/transactCallDirect.cjs +0 -1
  1279. package/functions/web3/functionCalls/transactCallDirect.d.ts +0 -6
  1280. package/functions/web3/functionCalls/transactCallDirect.mjs +0 -37
  1281. package/functions/web3/functionCalls/transactCallRelayer.cjs +0 -1
  1282. package/functions/web3/functionCalls/transactCallRelayer.d.ts +0 -7
  1283. package/functions/web3/functionCalls/transactCallRelayer.mjs +0 -62
  1284. package/functions/web3/getContractMetadata.cjs +0 -1
  1285. package/functions/web3/getContractMetadata.d.ts +0 -5
  1286. package/functions/web3/getContractMetadata.mjs +0 -68
  1287. package/functions/web3/getPublicAddressBalance.cjs +0 -1
  1288. package/functions/web3/getPublicAddressBalance.d.ts +0 -2
  1289. package/functions/web3/getPublicAddressBalance.mjs +0 -9
  1290. package/functions/web3/getTokenHolder.cjs +0 -1
  1291. package/functions/web3/getTokenHolder.d.ts +0 -1
  1292. package/functions/web3/getTokenHolder.mjs +0 -74
  1293. package/functions/web3/lifiAPI.cjs +0 -1
  1294. package/functions/web3/lifiAPI.d.ts +0 -6
  1295. package/functions/web3/lifiAPI.mjs +0 -30
  1296. package/functions/web3/odosAPI.cjs +0 -1
  1297. package/functions/web3/odosAPI.d.ts +0 -5
  1298. package/functions/web3/odosAPI.mjs +0 -71
  1299. package/functions/web3/oneInchAPI.cjs +0 -1
  1300. package/functions/web3/oneInchAPI.d.ts +0 -5
  1301. package/functions/web3/oneInchAPI.mjs +0 -69
  1302. package/functions/web3/runContractFunction.cjs +0 -1
  1303. package/functions/web3/runContractFunction.d.ts +0 -15
  1304. package/functions/web3/runContractFunction.mjs +0 -90
  1305. package/functions/web3/uniswapAPI.cjs +0 -1
  1306. package/functions/web3/uniswapAPI.d.ts +0 -16
  1307. package/functions/web3/uniswapAPI.mjs +0 -110
  1308. package/index.cjs +0 -1
  1309. package/index.mjs +0 -848
  1310. package/mutexes/mutex.cjs +0 -1
  1311. package/mutexes/mutex.d.ts +0 -2
  1312. package/mutexes/mutex.mjs +0 -5
  1313. package/providers/EthersProviderAdapter.cjs +0 -1
  1314. package/providers/EthersProviderAdapter.d.ts +0 -43
  1315. package/providers/EthersProviderAdapter.mjs +0 -190
  1316. package/providers/TorExternalProvider.cjs +0 -1
  1317. package/providers/TorExternalProvider.d.ts +0 -10
  1318. package/providers/TorExternalProvider.mjs +0 -29
  1319. package/providers/WagmiProviderAdapter.cjs +0 -1
  1320. package/providers/WagmiProviderAdapter.d.ts +0 -48
  1321. package/providers/WagmiProviderAdapter.mjs +0 -203
  1322. package/providers/exportProviers.d.ts +0 -3
  1323. package/providers/prepareEthersHinkal.cjs +0 -1
  1324. package/providers/prepareEthersHinkal.d.ts +0 -4
  1325. package/providers/prepareEthersHinkal.mjs +0 -52
  1326. package/providers/prepareWagmiHinkal.cjs +0 -1
  1327. package/providers/prepareWagmiHinkal.d.ts +0 -3
  1328. package/providers/prepareWagmiHinkal.mjs +0 -52
  1329. package/types/API.types.d.ts +0 -25
  1330. package/types/ICacheDevice.d.ts +0 -5
  1331. package/types/IMultiThreadedUtxoUtils.d.ts +0 -8
  1332. package/types/RewardUserEnums.cjs +0 -1
  1333. package/types/RewardUserEnums.d.ts +0 -11
  1334. package/types/RewardUserEnums.mjs +0 -5
  1335. package/types/TransactionSimulator.types.d.ts +0 -22
  1336. package/types/WeeklyAnalytics.types.d.ts +0 -37
  1337. package/types/activities.types.cjs +0 -1
  1338. package/types/activities.types.d.ts +0 -71
  1339. package/types/activities.types.mjs +0 -23
  1340. package/types/admin.types.cjs +0 -1
  1341. package/types/admin.types.d.ts +0 -28
  1342. package/types/admin.types.mjs +0 -4
  1343. package/types/all-points.types.d.ts +0 -8
  1344. package/types/approvals.types.cjs +0 -1
  1345. package/types/approvals.types.d.ts +0 -41
  1346. package/types/approvals.types.mjs +0 -4
  1347. package/types/balances.types.cjs +0 -1
  1348. package/types/balances.types.d.ts +0 -17
  1349. package/types/balances.types.mjs +0 -4
  1350. package/types/big-intable.types.d.ts +0 -2
  1351. package/types/bridging.types.d.ts +0 -29
  1352. package/types/brotherhood-user.types.d.ts +0 -11
  1353. package/types/cache.types.cjs +0 -1
  1354. package/types/cache.types.d.ts +0 -42
  1355. package/types/cache.types.mjs +0 -4
  1356. package/types/circom-data.types.cjs +0 -1
  1357. package/types/circom-data.types.d.ts +0 -96
  1358. package/types/circom-data.types.mjs +0 -22
  1359. package/types/coingecko.types.d.ts +0 -215
  1360. package/types/commitments.types.d.ts +0 -32
  1361. package/types/confirmation-request.types.cjs +0 -1
  1362. package/types/confirmation-request.types.d.ts +0 -10
  1363. package/types/confirmation-request.types.mjs +0 -4
  1364. package/types/contacts.types.d.ts +0 -6
  1365. package/types/crypto.types.d.ts +0 -8
  1366. package/types/duneAPI.types.d.ts +0 -9
  1367. package/types/eip5792.types.cjs +0 -1
  1368. package/types/eip5792.types.d.ts +0 -26
  1369. package/types/eip5792.types.mjs +0 -4
  1370. package/types/ethereum-network.types.cjs +0 -1
  1371. package/types/ethereum-network.types.d.ts +0 -66
  1372. package/types/ethereum-network.types.mjs +0 -4
  1373. package/types/external-action.types.cjs +0 -1
  1374. package/types/external-action.types.d.ts +0 -15
  1375. package/types/external-action.types.mjs +0 -4
  1376. package/types/fee.types.d.ts +0 -9
  1377. package/types/generatePoints.cjs +0 -1
  1378. package/types/generatePoints.d.ts +0 -13
  1379. package/types/generatePoints.mjs +0 -5
  1380. package/types/hinkal.stake.types.cjs +0 -1
  1381. package/types/hinkal.stake.types.d.ts +0 -11
  1382. package/types/hinkal.stake.types.mjs +0 -4
  1383. package/types/hinkal.types.cjs +0 -1
  1384. package/types/hinkal.types.d.ts +0 -115
  1385. package/types/hinkal.types.mjs +0 -34
  1386. package/types/kyc.types.cjs +0 -1
  1387. package/types/kyc.types.d.ts +0 -41
  1388. package/types/kyc.types.mjs +0 -14
  1389. package/types/merch-order.types.cjs +0 -1
  1390. package/types/merch-order.types.d.ts +0 -16
  1391. package/types/merch-order.types.mjs +0 -4
  1392. package/types/message.types.d.ts +0 -5
  1393. package/types/mystery-boxes.types.cjs +0 -1
  1394. package/types/mystery-boxes.types.d.ts +0 -43
  1395. package/types/mystery-boxes.types.mjs +0 -6
  1396. package/types/new-rewards.type.cjs +0 -1
  1397. package/types/new-rewards.type.d.ts +0 -161
  1398. package/types/new-rewards.type.mjs +0 -7
  1399. package/types/offscreen.types.cjs +0 -1
  1400. package/types/offscreen.types.d.ts +0 -8
  1401. package/types/offscreen.types.mjs +0 -4
  1402. package/types/presaleReferral.types.d.ts +0 -4
  1403. package/types/proxy.types.d.ts +0 -10
  1404. package/types/referral.types.d.ts +0 -12
  1405. package/types/relayer.types.d.ts +0 -25
  1406. package/types/remote-proof.types.d.ts +0 -15
  1407. package/types/rewards.types.cjs +0 -1
  1408. package/types/rewards.types.d.ts +0 -45
  1409. package/types/rewards.types.mjs +0 -5
  1410. package/types/routing.types.cjs +0 -1
  1411. package/types/routing.types.d.ts +0 -7
  1412. package/types/routing.types.mjs +0 -4
  1413. package/types/sandbox.types.cjs +0 -1
  1414. package/types/sandbox.types.d.ts +0 -205
  1415. package/types/sandbox.types.mjs +0 -4
  1416. package/types/session.types.d.ts +0 -11
  1417. package/types/signature.types.d.ts +0 -10
  1418. package/types/slippage.types.cjs +0 -1
  1419. package/types/slippage.types.d.ts +0 -3
  1420. package/types/slippage.types.mjs +0 -4
  1421. package/types/snark.types.d.ts +0 -40
  1422. package/types/tenderly.api.types.d.ts +0 -196
  1423. package/types/token-prices.types.cjs +0 -1
  1424. package/types/token-prices.types.d.ts +0 -7
  1425. package/types/token-prices.types.mjs +0 -9
  1426. package/types/token-with-id.types.d.ts +0 -4
  1427. package/types/token.types.cjs +0 -1
  1428. package/types/token.types.d.ts +0 -77
  1429. package/types/token.types.mjs +0 -4
  1430. package/types/transactions.types.cjs +0 -1
  1431. package/types/transactions.types.d.ts +0 -78
  1432. package/types/transactions.types.mjs +0 -39
  1433. package/types/wc.types.d.ts +0 -78
  1434. package/types/with-id.types.d.ts +0 -3
  1435. package/webworker/performTaskWithWorker.cjs +0 -1
  1436. package/webworker/performTaskWithWorker.d.ts +0 -5
  1437. package/webworker/performTaskWithWorker.mjs +0 -41
  1438. package/webworker/snarkjsWorker/snarkjsWorker.types.cjs +0 -1
  1439. package/webworker/snarkjsWorker/snarkjsWorker.types.d.ts +0 -14
  1440. package/webworker/snarkjsWorker/snarkjsWorker.types.mjs +0 -4
  1441. package/webworker/snarkjsWorker/snarkjsWorkerLauncher.cjs +0 -1
  1442. package/webworker/snarkjsWorker/snarkjsWorkerLauncher.d.ts +0 -1
  1443. package/webworker/snarkjsWorker/snarkjsWorkerLauncher.mjs +0 -4
  1444. package/webworker/snarkjsWorker/snarkjsWorkerLogic.cjs +0 -1
  1445. package/webworker/snarkjsWorker/snarkjsWorkerLogic.d.ts +0 -10
  1446. package/webworker/snarkjsWorker/snarkjsWorkerLogic.mjs +0 -39
  1447. package/webworker/utxoWorker/utxoWorker.types.cjs +0 -1
  1448. package/webworker/utxoWorker/utxoWorker.types.d.ts +0 -29
  1449. package/webworker/utxoWorker/utxoWorker.types.mjs +0 -4
  1450. package/webworker/utxoWorker/utxoWorkerLauncher.cjs +0 -1
  1451. package/webworker/utxoWorker/utxoWorkerLauncher.d.ts +0 -1
  1452. package/webworker/utxoWorker/utxoWorkerLauncher.mjs +0 -4
  1453. package/webworker/utxoWorker/utxoWorkerLogic.cjs +0 -1
  1454. package/webworker/utxoWorker/utxoWorkerLogic.d.ts +0 -8
  1455. package/webworker/utxoWorker/utxoWorkerLogic.mjs +0 -76
  1456. package/webworker/viteWorkerURL.constant.cjs +0 -1
  1457. package/webworker/viteWorkerURL.constant.d.ts +0 -9
  1458. package/webworker/viteWorkerURL.constant.mjs +0 -12
  1459. package/webworker/worker.registry.cjs +0 -1
  1460. package/webworker/worker.registry.d.ts +0 -10
  1461. package/webworker/worker.registry.mjs +0 -4
  1462. package/webworker/worker.types.d.ts +0 -33
  1463. package/webworker/workerErrorHandler.d.ts +0 -1
  1464. package/webworker/workerFactory.cjs +0 -1
  1465. package/webworker/workerFactory.d.ts +0 -7
  1466. package/webworker/workerFactory.mjs +0 -42
  1467. package/webworker/workerProxy.cjs +0 -1
  1468. package/webworker/workerProxy.d.ts +0 -40
  1469. package/webworker/workerProxy.mjs +0 -54
  1470. package/webworker/zkProofWorker/zkProofWorker.types.cjs +0 -1
  1471. package/webworker/zkProofWorker/zkProofWorker.types.d.ts +0 -40
  1472. package/webworker/zkProofWorker/zkProofWorker.types.mjs +0 -4
  1473. package/webworker/zkProofWorker/zkProofWorkerLauncher.cjs +0 -1
  1474. package/webworker/zkProofWorker/zkProofWorkerLauncher.d.ts +0 -1
  1475. package/webworker/zkProofWorker/zkProofWorkerLauncher.mjs +0 -4
  1476. package/webworker/zkProofWorker/zkProofWorkerLogic.cjs +0 -1
  1477. package/webworker/zkProofWorker/zkProofWorkerLogic.d.ts +0 -8
  1478. package/webworker/zkProofWorker/zkProofWorkerLogic.mjs +0 -52
  1479. /package/{API/index.d.ts → src/API/index.ts} +0 -0
  1480. /package/{constants/index.d.ts → src/constants/index.ts} +0 -0
  1481. /package/{crypto/index.d.ts → src/crypto/index.ts} +0 -0
  1482. /package/{data-structures/ApprovalDBs/index.d.ts → src/data-structures/ApprovalDBs/index.ts} +0 -0
  1483. /package/{data-structures/Hinkal/index.d.ts → src/data-structures/Hinkal/index.ts} +0 -0
  1484. /package/{data-structures/IndexedDB/index.d.ts → src/data-structures/IndexedDB/index.ts} +0 -0
  1485. /package/{data-structures/TokenDBs/index.d.ts → src/data-structures/TokenDBs/index.ts} +0 -0
  1486. /package/{data-structures/ValueCache/index.d.ts → src/data-structures/ValueCache/index.ts} +0 -0
  1487. /package/{data-structures/cacheDevices/index.d.ts → src/data-structures/cacheDevices/index.ts} +0 -0
  1488. /package/{data-structures/crypto-keys/index.d.ts → src/data-structures/crypto-keys/index.ts} +0 -0
  1489. /package/{data-structures/event-service/index.d.ts → src/data-structures/event-service/index.ts} +0 -0
  1490. /package/{data-structures/merkle-tree/index.d.ts → src/data-structures/merkle-tree/index.ts} +0 -0
  1491. /package/{data-structures/presale/index.d.ts → src/data-structures/presale/index.ts} +0 -0
  1492. /package/{data-structures/snapshot/index.d.ts → src/data-structures/snapshot/index.ts} +0 -0
  1493. /package/{data-structures/token-price-fetcher/index.d.ts → src/data-structures/token-price-fetcher/index.ts} +0 -0
  1494. /package/{data-structures/tor/index.d.ts → src/data-structures/tor/index.ts} +0 -0
  1495. /package/{data-structures/transactions-manager/index.d.ts → src/data-structures/transactions-manager/index.ts} +0 -0
  1496. /package/{error-handling/customErrors/index.d.ts → src/error-handling/customErrors/index.ts} +0 -0
  1497. /package/{error-handling/index.d.ts → src/error-handling/index.ts} +0 -0
  1498. /package/{externalABIs/ERC20.d.ts → src/externalABIs/ERC20.ts} +0 -0
  1499. /package/{functions/kyc/aiPriseHelper.d.ts → src/functions/kyc/aiPriseHelper.ts} +0 -0
  1500. /package/{functions/kyc/index.d.ts → src/functions/kyc/index.ts} +0 -0
  1501. /package/{functions/pre-transaction/index.d.ts → src/functions/pre-transaction/index.ts} +0 -0
  1502. /package/{functions/private-wallet/index.d.ts → src/functions/private-wallet/index.ts} +0 -0
  1503. /package/{functions/snarkjs/index.d.ts → src/functions/snarkjs/index.ts} +0 -0
  1504. /package/{functions/utils/index.d.ts → src/functions/utils/index.ts} +0 -0
  1505. /package/{functions/web3/events/index.d.ts → src/functions/web3/events/index.ts} +0 -0
  1506. /package/{functions/web3/index.d.ts → src/functions/web3/index.ts} +0 -0
  1507. /package/{index.d.ts → src/index.ts} +0 -0
  1508. /package/{mutexes/index.d.ts → src/mutexes/index.ts} +0 -0
  1509. /package/{types/index.d.ts → src/types/index.ts} +0 -0
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=[{symbol:"hETH"},{symbol:"BNB"},{symbol:"DAI"},{symbol:"ETH"},{symbol:"MATIC"},{symbol:"USDC"},{symbol:"USDT"},{symbol:"WETH"},{symbol:"stETH"}];exports.PopularTokenSymbols=o;
@@ -1,3 +0,0 @@
1
- export declare const PopularTokenSymbols: {
2
- symbol: string;
3
- }[];
@@ -1,14 +0,0 @@
1
- const o = [
2
- { symbol: "hETH" },
3
- { symbol: "BNB" },
4
- { symbol: "DAI" },
5
- { symbol: "ETH" },
6
- { symbol: "MATIC" },
7
- { symbol: "USDC" },
8
- { symbol: "USDT" },
9
- { symbol: "WETH" },
10
- { symbol: "stETH" }
11
- ];
12
- export {
13
- o as PopularTokenSymbols
14
- };
@@ -1,2 +0,0 @@
1
- export declare const urlForBeefyVaultTokens = "https://api.beefy.finance/vaults";
2
- export declare const urlForBeefyVaultLpTokens = "https://api.beefy.finance/lps";
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const m=require("../functions/web3/etherFunctions.cjs"),u=require("../functions/utils/erc20tokenFunctions.cjs"),l=require("./chains.constants.cjs"),n={[l.chainIds.optimism]:{ETH:"0.5",WETH:"0.5",rETH:"0.5",USDC:"1000","USDC.e":"1000",USDT:"1000",DAI:"1000",WBTC:"0.0125"}},g=e=>{if(!(e in n))return{erc20Addresses:[],limits:[]};const o=Object.entries(n[e]),i=[],r=[];for(let t=0;t<o.length;t+=1){const[c,T]=o[t],s=u.getERC20TokenBySymbol(c,e);if(!s)throw Error("no token in getTokenLimit");i.push(s.erc20TokenAddress),r.push(m.getAmountInWei(s,T))}return{erc20Addresses:i,limits:r}};exports.TOKEN_LIMITS=n;exports.getTokensLimits=g;
@@ -1,5 +0,0 @@
1
- export declare const TOKEN_LIMITS: Record<number, Record<string, string>>;
2
- export declare const getTokensLimits: (chainId: number) => {
3
- erc20Addresses: string[];
4
- limits: bigint[];
5
- };
@@ -1,30 +0,0 @@
1
- import { getAmountInWei as T } from "../functions/web3/etherFunctions.mjs";
2
- import { getERC20TokenBySymbol as l } from "../functions/utils/erc20tokenFunctions.mjs";
3
- import { chainIds as p } from "./chains.constants.mjs";
4
- const n = {
5
- [p.optimism]: {
6
- ETH: "0.5",
7
- WETH: "0.5",
8
- rETH: "0.5",
9
- USDC: "1000",
10
- "USDC.e": "1000",
11
- USDT: "1000",
12
- DAI: "1000",
13
- WBTC: "0.0125"
14
- }
15
- }, d = (t) => {
16
- if (!(t in n))
17
- return { erc20Addresses: [], limits: [] };
18
- const s = Object.entries(n[t]), r = [], i = [];
19
- for (let e = 0; e < s.length; e += 1) {
20
- const [m, c] = s[e], o = l(m, t);
21
- if (!o)
22
- throw Error("no token in getTokenLimit");
23
- r.push(o.erc20TokenAddress), i.push(T(o, c));
24
- }
25
- return { erc20Addresses: r, limits: i };
26
- };
27
- export {
28
- n as TOKEN_LIMITS,
29
- d as getTokensLimits
30
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const d=require("../functions/utils/enum.utils.cjs");var t=(e=>(e.DEVELOPMENT="development",e.PLAYGROUND="playground",e.PRODUCTION="production",e.STAGING="staging",e))(t||{});const i={development:["localhost","192.","127."],playground:["playground"],staging:["working","staging"]},r=typeof process<"u"&&process?.release?.name==="node",u=typeof process<"u"&&process.versions!=null&&process.versions.node!=null,y=!u&&typeof window<"u"&&window.origin==="null",m=typeof __webpack_require__<"u",f=typeof window<"u"&&window?.location?.protocol==="chrome-extension:";function s(e,o){return o.some(g=>e.includes(g))}const v=()=>(require("dotenv").config({path:"DOTENV_OVERRIDE"in process.env?process.env.DOTENV_OVERRIDE:void 0}),d.toEnumValue(t,process.env.DEPLOYMENT_MODE)||"development"),w=()=>{if(!r&&typeof window>"u")return;if(r)return v();if(window?.location?.protocol==="chrome-extension:"){const o=d.toEnumValue(t,WALLET_DEPLOYMENT_MODE);return o||"staging"}const e=window?.location?.host;return s(e,i.development)?"development":s(e,i.playground)?"playground":s(e,i.staging)?"staging":"production"},n=w(),c=n==="development",l=n==="playground",p=n==="staging",a=p||c||l,E=a||r&&n==="production";exports.DEPLOYMENT_MODE=t;exports.deploymentMode=n;exports.isDevelopment=c;exports.isExtension=f;exports.isNode=u;exports.isNotClientProduction=E;exports.isNotProduction=a;exports.isPlayground=l;exports.isSandbox=y;exports.isStaging=p;exports.isWebpack=m;
@@ -1,16 +0,0 @@
1
- export declare enum DEPLOYMENT_MODE {
2
- DEVELOPMENT = "development",
3
- PLAYGROUND = "playground",
4
- PRODUCTION = "production",
5
- STAGING = "staging"
6
- }
7
- export declare const isNode: boolean;
8
- export declare const isSandbox: boolean;
9
- export declare const isWebpack: boolean;
10
- export declare const isExtension: boolean;
11
- export declare const deploymentMode: DEPLOYMENT_MODE | undefined;
12
- export declare const isDevelopment: boolean;
13
- export declare const isPlayground: boolean;
14
- export declare const isStaging: boolean;
15
- export declare const isNotProduction: boolean;
16
- export declare const isNotClientProduction: boolean;
@@ -1,38 +0,0 @@
1
- import { toEnumValue as d } from "../functions/utils/enum.utils.mjs";
2
- var s = /* @__PURE__ */ ((e) => (e.DEVELOPMENT = "development", e.PLAYGROUND = "playground", e.PRODUCTION = "production", e.STAGING = "staging", e))(s || {});
3
- const t = {
4
- development: ["localhost", "192.", "127."],
5
- playground: ["playground"],
6
- staging: ["working", "staging"]
7
- }, r = typeof process < "u" && process?.release?.name === "node", p = typeof process < "u" && process.versions != null && process.versions.node != null, v = !p && typeof window < "u" && window.origin === "null", w = typeof __webpack_require__ < "u", D = typeof window < "u" && window?.location?.protocol === "chrome-extension:";
8
- function i(e, n) {
9
- return n.some((c) => e.includes(c));
10
- }
11
- const u = () => (require("dotenv").config({
12
- // allow overriding .env file path, see startServer.sh script for explenation on why it is needed
13
- path: "DOTENV_OVERRIDE" in process.env ? process.env.DOTENV_OVERRIDE : void 0
14
- }), d(s, process.env.DEPLOYMENT_MODE) || "development"), l = () => {
15
- if (!r && typeof window > "u")
16
- return;
17
- if (r)
18
- return u();
19
- if (window?.location?.protocol === "chrome-extension:") {
20
- const n = d(s, WALLET_DEPLOYMENT_MODE);
21
- return n || "staging";
22
- }
23
- const e = window?.location?.host;
24
- return i(e, t.development) ? "development" : i(e, t.playground) ? "playground" : i(e, t.staging) ? "staging" : "production";
25
- }, o = l(), g = o === "development", a = o === "playground", f = o === "staging", m = f || g || a, E = m || r && o === "production";
26
- export {
27
- s as DEPLOYMENT_MODE,
28
- o as deploymentMode,
29
- g as isDevelopment,
30
- D as isExtension,
31
- p as isNode,
32
- E as isNotClientProduction,
33
- m as isNotProduction,
34
- a as isPlayground,
35
- v as isSandbox,
36
- f as isStaging,
37
- w as isWebpack
38
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t={mpcVault:"MPCVault - Multisig Wallet",utila:"UtilaWallet"},l={mpcVault:"com.mpcvault.console"};exports.UNSUPPORTED_WALLETS_WALLETCONNECT_NAMES=t;exports.UNSUPPORTED_WALLET_IDS=l;
@@ -1,7 +0,0 @@
1
- export declare const UNSUPPORTED_WALLETS_WALLETCONNECT_NAMES: {
2
- mpcVault: string;
3
- utila: string;
4
- };
5
- export declare const UNSUPPORTED_WALLET_IDS: {
6
- mpcVault: string;
7
- };
@@ -1,10 +0,0 @@
1
- const l = {
2
- mpcVault: "MPCVault - Multisig Wallet",
3
- utila: "UtilaWallet"
4
- }, t = {
5
- mpcVault: "com.mpcvault.console"
6
- };
7
- export {
8
- l as UNSUPPORTED_WALLETS_WALLETCONNECT_NAMES,
9
- t as UNSUPPORTED_WALLET_IDS
10
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("circomlibjs-hinkal-fork");class e{babyjub=void 0;async init(){this.babyjub||(this.babyjub=await t.buildBabyjub())}getJub(){return this.babyjub}}const b=new e,u=()=>b.getJub();exports.babyJubInstance=u;exports.jubHolder=b;
@@ -1,16 +0,0 @@
1
- declare class JubHolder {
2
- private babyjub;
3
- init(): Promise<void>;
4
- getJub(): any;
5
- }
6
- export declare const jubHolder: JubHolder;
7
- export declare const babyJubInstance: () => any;
8
- export type JubPoint = [bigint, bigint];
9
- export interface BabyJubType {
10
- mulPointEscalar: (point: [Uint8Array, Uint8Array], s: bigint) => [Uint8Array, Uint8Array];
11
- F: {
12
- toString: (arr: Uint8Array) => string;
13
- };
14
- Base8: [Uint8Array, Uint8Array];
15
- }
16
- export {};
@@ -1,15 +0,0 @@
1
- import { buildBabyjub as b } from "circomlibjs-hinkal-fork";
2
- class t {
3
- babyjub = void 0;
4
- async init() {
5
- this.babyjub || (this.babyjub = await b());
6
- }
7
- getJub() {
8
- return this.babyjub;
9
- }
10
- }
11
- const u = new t(), e = () => u.getJub();
12
- export {
13
- e as babyJubInstance,
14
- u as jubHolder
15
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("ethers"),t=require("../functions/utils/amounts.utils.cjs"),s=require("circomlibjs-hinkal-fork");class r{poseidon=void 0;async init(){this.poseidon||(this.poseidon=await s.buildPoseidon())}getPoseidon(){return this.poseidon}}const n=new r;function d(...e){const o=n.getPoseidon();return t.toBigInt(o.F.toString(o(e)))}const u=(...e)=>{const o=n.getPoseidon();return i.BigNumber.from(o.F.toString(o([...e]))).toHexString()};exports.poseidonFunction=d;exports.poseidonHash=u;exports.poseidonHolder=n;
@@ -1,15 +0,0 @@
1
- declare class PoseidonHolder {
2
- private poseidon;
3
- init(): Promise<void>;
4
- getPoseidon(): any;
5
- }
6
- export declare const poseidonHolder: PoseidonHolder;
7
- export declare function poseidonFunction<T = any>(...args: T[]): bigint;
8
- /**
9
- * hashing algorithm implementation
10
- * @param args rest parameter to take unlimited number of arguments
11
- * @returns poseidon hash in base 16
12
- */
13
- export declare const poseidonHash: (...args: unknown[]) => string;
14
- export type PoseidonHasher = (...args: unknown[]) => string;
15
- export {};
@@ -1,26 +0,0 @@
1
- import { BigNumber as t } from "ethers";
2
- import { toBigInt as e } from "../functions/utils/amounts.utils.mjs";
3
- import { buildPoseidon as s } from "circomlibjs-hinkal-fork";
4
- class r {
5
- poseidon = void 0;
6
- async init() {
7
- this.poseidon || (this.poseidon = await s());
8
- }
9
- getPoseidon() {
10
- return this.poseidon;
11
- }
12
- }
13
- const n = new r();
14
- function g(...i) {
15
- const o = n.getPoseidon();
16
- return e(o.F.toString(o(i)));
17
- }
18
- const m = (...i) => {
19
- const o = n.getPoseidon();
20
- return t.from(o.F.toString(o([...i]))).toHexString();
21
- };
22
- export {
23
- g as poseidonFunction,
24
- m as poseidonHash,
25
- n as poseidonHolder
26
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./babyJub.cjs"),o=require("./poseidon.cjs"),i=require("libsodium-wrappers"),r=require("process"),n=require("buffer"),s=async()=>{(typeof window<"u"||typeof self<"u")&&(typeof window<"u"&&(window.global=window),globalThis.Buffer=n.Buffer,globalThis.process=r),await Promise.all([i.ready,o.poseidonHolder.init(),e.jubHolder.init()])};exports.preProcessing=s;
@@ -1 +0,0 @@
1
- export declare const preProcessing: () => Promise<void>;
@@ -1,11 +0,0 @@
1
- import { jubHolder as o } from "./babyJub.mjs";
2
- import { poseidonHolder as i } from "./poseidon.mjs";
3
- import e from "libsodium-wrappers";
4
- import r from "process";
5
- import { Buffer as f } from "buffer";
6
- const m = async () => {
7
- (typeof window < "u" || typeof self < "u") && (typeof window < "u" && (window.global = window), globalThis.Buffer = f, globalThis.process = r), await Promise.all([e.ready, i.init(), o.init()]);
8
- };
9
- export {
10
- m as preProcessing
11
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const S=require("ethers"),w=require("idb-keyval"),T=require("async-mutex"),h=require("../../constants/chains.constants.cjs"),P=require("../../error-handling/logger.cjs"),L=require("../../functions/utils/string.utils.cjs"),I=require("../../types/cache.types.cjs"),q=require("../tor/HttpClient.cjs"),x=require("../../API/API.cjs"),f=require("../../types/approvals.types.cjs"),R=require("../../functions/utils/erc20tokenFunctions.cjs"),M=require("../../functions/utils/create-provider.cjs"),$=require("../../constants/events.constants.cjs"),m=require("../../functions/utils/caseInsensitive.utils.cjs"),_=require("../../constants/protocol.constants.cjs");class B{updateMutexes={};approvalTopic=S.ethers.utils.id("Approval(address,address,uint256)");approvalForAllTopic=S.ethers.utils.id("ApprovalForAll(address,address,bool)");getApprovedSelector=S.ethers.utils.id("getApproved(uint256)").substring(0,10);isApprovedForAllSelector=S.ethers.utils.id("isApprovedForAll(address,address)").substring(0,10);ALCHEMY_URLS={[h.chainIds.ethMainnet]:"eth-mainnet",[h.chainIds.polygon]:"polygon-mainnet",[h.chainIds.arbMainnet]:"arb-mainnet",[h.chainIds.optimism]:"opt-mainnet",[h.chainIds.base]:"base-mainnet",[h.chainIds.arcTestnet]:"arc-testnet",[h.chainIds.avalanche]:"avax-mainnet"};getMutex(t){return this.updateMutexes[t]||(this.updateMutexes[t]=new T.Mutex),this.updateMutexes[t]}getAlchemyUrl(t){const s=this.ALCHEMY_URLS[t];if(!s)throw new Error(`Unsupported chainId for Alchemy: ${t}`);return`https://${s}.g.alchemy.com/v2/${h.ALCHEMY_API_KEY}`}async getApprovals(t,s){const r=L.getStateKey(s,t);return(await w.get(I.StorageKeys.EVENTS_PUBLIC_APPROVALS))?.[r]||[]}async getLastProcessedBlock(t,s){const r=await w.get(I.StorageKeys.PUBLIC_APPROVALS_LAST_PROCESSED_BLOCKS)||{},d=L.getStateKey(s,t);return r[d]||$.EVENTS_INITIAL_BLOCKS[t]}async updateLastProcessedBlock(t,s,r){await w.update(I.StorageKeys.PUBLIC_APPROVALS_LAST_PROCESSED_BLOCKS,(d={})=>{const p=L.getStateKey(s,t);return{...d,[p]:r}})}async getApprovalEvents(t,s){try{const{fetchRpcUrl:r}=h.networkRegistry[s];if(!r)throw Error("No fetchRpcUrl in EventsPublicApprovalsDB");const d=M.createTorRpcProvider(r),p=await this.getLastProcessedBlock(s,t)+1,l=await d.getBlockNumber();if(p>l)return{approvalEvents:[],latestBlock:l};const E=S.ethers.utils.hexZeroPad(t.toLowerCase(),32),c={topics:[[this.approvalTopic,this.approvalForAllTopic],E],fromBlock:p,toBlock:l};return{approvalEvents:await d.getLogs(c),latestBlock:l}}catch(r){return P.Logger.error("Failed to fetch approval events",r),{approvalEvents:[],latestBlock:void 0}}}async checkCurrentAllowances(t,s,r){const d=this.getAlchemyUrl(t),p=`0x${s.substring(2).padStart(64,"0")}`,l=[...new Set(r.map(e=>e.contractAddress))],E=(await x.API.tokensInfoCall(t,l)).filter(e=>!!e),c=new Map(E.map(e=>[e.erc20TokenAddress.toLowerCase(),e])),i=[],k=[];if(r.forEach((e,o)=>{const a=c.get(e.contractAddress.toLowerCase());if(a)if(!R.isNFTToken(a))i.push({jsonrpc:"2.0",id:i.length,method:"alchemy_getTokenAllowance",params:[{contract:e.contractAddress,owner:s,spender:e.spenderAddress}]}),k.push({pairIndex:o,type:f.RevokeType.ERC20});else{const v=`0x${e.spenderAddress.substring(2).padStart(64,"0")}`,y=`${this.isApprovedForAllSelector}${p.substring(2)}${v.substring(2)}`;i.push({jsonrpc:"2.0",id:i.length,method:"eth_call",params:[{to:e.contractAddress,data:y},"latest"]}),k.push({pairIndex:o,type:f.RevokeType.approvedForAll}),e.tokenIds&&e.tokenIds.size>0&&e.tokenIds.forEach(g=>{const C=S.ethers.BigNumber.from(g).toHexString().substring(2).padStart(64,"0"),b=`${this.getApprovedSelector}${C}`;i.push({jsonrpc:"2.0",id:i.length,method:"eth_call",params:[{to:e.contractAddress,data:b},"latest"]}),k.push({pairIndex:o,type:f.RevokeType.tokenId,tokenId:g})})}}),i.length===0)return[];const n=await q.httpClient.post(d,i),u=[],A=new Set;return n.forEach((e,o)=>{const a=k[o];if(!a)return;const v=r[a.pairIndex],y=c.get(v.contractAddress.toLowerCase());if(!(!y||m.caseInsensitiveEqual(v.spenderAddress,_.zeroAddress))&&!e?.error&&e?.result&&e.result!=="0x")try{if(a.type===f.RevokeType.ERC20&&BigInt(e.result)>0n)u.push({token:y,spenderAddress:v.spenderAddress,allowance:BigInt(e.result)});else if(a.type===f.RevokeType.approvedForAll&&BigInt(e.result)===1n)A.add(a.pairIndex),u.push({token:y,spenderAddress:v.spenderAddress,allowance:1n});else if(a.type===f.RevokeType.tokenId&&!A.has(a.pairIndex)){const g=`0x${e.result.substring(26)}`.toLowerCase();!m.caseInsensitiveEqual(g,_.zeroAddress)&&m.caseInsensitiveEqual(g,v.spenderAddress)&&u.push({token:y,spenderAddress:v.spenderAddress,allowance:1n,tokenId:a.tokenId})}}catch(g){P.Logger.error("Error processing approval response",g)}}),u}async fetchAndUpdatePublicApprovals(t,s){const r=L.getStateKey(t,s);await this.getMutex(r).runExclusive(async()=>{try{const{approvalEvents:p,latestBlock:l}=await this.getApprovalEvents(t,s);if(!l)return;const E=await this.getApprovals(s,t),c=new Map;if(E.forEach(n=>{const u=n.token.erc20TokenAddress.toLowerCase(),A=n.spenderAddress.toLowerCase(),e=`${u}_${A}`;let o=c.get(e);o||(o={contractAddress:u,spenderAddress:A,tokenIds:new Set},c.set(e,o)),n.tokenId&&o.tokenIds&&o.tokenIds.add(n.tokenId)}),p.forEach(n=>{if(!n.topics[2])return;const u=n.address.toLowerCase(),A=`0x${n.topics[2].substring(26)}`.toLowerCase();if(m.caseInsensitiveEqual(A,_.zeroAddress))return;const e=`${u}_${A}`;let o=c.get(e);if(o||(o={contractAddress:u,spenderAddress:A,tokenIds:new Set},c.set(e,o)),n.topics.length===4&&o.tokenIds){const a=BigInt(n.topics[3]).toString();o.tokenIds.add(a)}}),c.size===0){await this.updateLastProcessedBlock(s,t,l);return}const i=Array.from(c.values()),k=await this.checkCurrentAllowances(s,t,i);await w.update(I.StorageKeys.EVENTS_PUBLIC_APPROVALS,(n={})=>({...n,[r]:k})),await this.updateLastProcessedBlock(s,t,l)}catch(p){P.Logger.error("Failed to sync approvals",p)}})}}const K=new B;exports.EventsPublicApprovalsDB=B;exports.eventsPublicApprovalsDB=K;
@@ -1,18 +0,0 @@
1
- import { TokenApproval } from '../../types/approvals.types';
2
- export declare class EventsPublicApprovalsDB {
3
- private updateMutexes;
4
- private readonly approvalTopic;
5
- private readonly approvalForAllTopic;
6
- private readonly getApprovedSelector;
7
- private readonly isApprovedForAllSelector;
8
- private readonly ALCHEMY_URLS;
9
- private getMutex;
10
- private getAlchemyUrl;
11
- getApprovals(chainId: number, walletAddress: string): Promise<TokenApproval[]>;
12
- private getLastProcessedBlock;
13
- private updateLastProcessedBlock;
14
- private getApprovalEvents;
15
- private checkCurrentAllowances;
16
- fetchAndUpdatePublicApprovals(walletAddress: string, chainId: number): Promise<void>;
17
- }
18
- export declare const eventsPublicApprovalsDB: EventsPublicApprovalsDB;
@@ -1,175 +0,0 @@
1
- import { ethers as k } from "ethers";
2
- import { get as P, update as I } from "idb-keyval";
3
- import { Mutex as b } from "async-mutex";
4
- import { chainIds as f, ALCHEMY_API_KEY as T, networkRegistry as M } from "../../constants/chains.constants.mjs";
5
- import { Logger as B } from "../../error-handling/logger.mjs";
6
- import { getStateKey as L } from "../../functions/utils/string.utils.mjs";
7
- import { StorageKeys as S } from "../../types/cache.types.mjs";
8
- import { httpClient as R } from "../tor/HttpClient.mjs";
9
- import { API as $ } from "../../API/API.mjs";
10
- import { RevokeType as w } from "../../types/approvals.types.mjs";
11
- import { isNFTToken as U } from "../../functions/utils/erc20tokenFunctions.mjs";
12
- import { createTorRpcProvider as F } from "../../functions/utils/create-provider.mjs";
13
- import { EVENTS_INITIAL_BLOCKS as O } from "../../constants/events.constants.mjs";
14
- import { caseInsensitiveEqual as y } from "../../functions/utils/caseInsensitive.utils.mjs";
15
- import { zeroAddress as C } from "../../constants/protocol.constants.mjs";
16
- class N {
17
- updateMutexes = {};
18
- approvalTopic = k.utils.id("Approval(address,address,uint256)");
19
- approvalForAllTopic = k.utils.id("ApprovalForAll(address,address,bool)");
20
- getApprovedSelector = k.utils.id("getApproved(uint256)").substring(0, 10);
21
- isApprovedForAllSelector = k.utils.id("isApprovedForAll(address,address)").substring(0, 10);
22
- ALCHEMY_URLS = {
23
- [f.ethMainnet]: "eth-mainnet",
24
- [f.polygon]: "polygon-mainnet",
25
- [f.arbMainnet]: "arb-mainnet",
26
- [f.optimism]: "opt-mainnet",
27
- [f.base]: "base-mainnet",
28
- [f.arcTestnet]: "arc-testnet",
29
- [f.avalanche]: "avax-mainnet"
30
- };
31
- getMutex(e) {
32
- return this.updateMutexes[e] || (this.updateMutexes[e] = new b()), this.updateMutexes[e];
33
- }
34
- getAlchemyUrl(e) {
35
- const s = this.ALCHEMY_URLS[e];
36
- if (!s)
37
- throw new Error(`Unsupported chainId for Alchemy: ${e}`);
38
- return `https://${s}.g.alchemy.com/v2/${T}`;
39
- }
40
- async getApprovals(e, s) {
41
- const r = L(s, e);
42
- return (await P(S.EVENTS_PUBLIC_APPROVALS))?.[r] || [];
43
- }
44
- async getLastProcessedBlock(e, s) {
45
- const r = await P(S.PUBLIC_APPROVALS_LAST_PROCESSED_BLOCKS) || {}, d = L(s, e);
46
- return r[d] || O[e];
47
- }
48
- async updateLastProcessedBlock(e, s, r) {
49
- await I(S.PUBLIC_APPROVALS_LAST_PROCESSED_BLOCKS, (d = {}) => {
50
- const i = L(s, e);
51
- return {
52
- ...d,
53
- [i]: r
54
- };
55
- });
56
- }
57
- async getApprovalEvents(e, s) {
58
- try {
59
- const { fetchRpcUrl: r } = M[s];
60
- if (!r)
61
- throw Error("No fetchRpcUrl in EventsPublicApprovalsDB");
62
- const d = F(r), i = await this.getLastProcessedBlock(s, e) + 1, l = await d.getBlockNumber();
63
- if (i > l)
64
- return { approvalEvents: [], latestBlock: l };
65
- const E = k.utils.hexZeroPad(e.toLowerCase(), 32), p = {
66
- topics: [[this.approvalTopic, this.approvalForAllTopic], E],
67
- fromBlock: i,
68
- toBlock: l
69
- };
70
- return { approvalEvents: await d.getLogs(p), latestBlock: l };
71
- } catch (r) {
72
- return B.error("Failed to fetch approval events", r), { approvalEvents: [], latestBlock: void 0 };
73
- }
74
- }
75
- async checkCurrentAllowances(e, s, r) {
76
- const d = this.getAlchemyUrl(e), i = `0x${s.substring(2).padStart(64, "0")}`, l = [...new Set(r.map((t) => t.contractAddress))], E = (await $.tokensInfoCall(e, l)).filter((t) => !!t), p = new Map(E.map((t) => [t.erc20TokenAddress.toLowerCase(), t])), c = [], v = [];
77
- if (r.forEach((t, o) => {
78
- const a = p.get(t.contractAddress.toLowerCase());
79
- if (a)
80
- if (!U(a))
81
- c.push({
82
- jsonrpc: "2.0",
83
- id: c.length,
84
- method: "alchemy_getTokenAllowance",
85
- params: [{ contract: t.contractAddress, owner: s, spender: t.spenderAddress }]
86
- }), v.push({ pairIndex: o, type: w.ERC20 });
87
- else {
88
- const m = `0x${t.spenderAddress.substring(2).padStart(64, "0")}`, g = `${this.isApprovedForAllSelector}${i.substring(2)}${m.substring(2)}`;
89
- c.push({
90
- jsonrpc: "2.0",
91
- id: c.length,
92
- method: "eth_call",
93
- params: [{ to: t.contractAddress, data: g }, "latest"]
94
- }), v.push({ pairIndex: o, type: w.approvedForAll }), t.tokenIds && t.tokenIds.size > 0 && t.tokenIds.forEach((h) => {
95
- const _ = k.BigNumber.from(h).toHexString().substring(2).padStart(64, "0"), x = `${this.getApprovedSelector}${_}`;
96
- c.push({
97
- jsonrpc: "2.0",
98
- id: c.length,
99
- method: "eth_call",
100
- params: [{ to: t.contractAddress, data: x }, "latest"]
101
- }), v.push({ pairIndex: o, type: w.tokenId, tokenId: h });
102
- });
103
- }
104
- }), c.length === 0)
105
- return [];
106
- const n = await R.post(d, c), u = [], A = /* @__PURE__ */ new Set();
107
- return n.forEach((t, o) => {
108
- const a = v[o];
109
- if (!a)
110
- return;
111
- const m = r[a.pairIndex], g = p.get(m.contractAddress.toLowerCase());
112
- if (!(!g || y(m.spenderAddress, C)) && !t?.error && t?.result && t.result !== "0x")
113
- try {
114
- if (a.type === w.ERC20 && BigInt(t.result) > 0n)
115
- u.push({ token: g, spenderAddress: m.spenderAddress, allowance: BigInt(t.result) });
116
- else if (a.type === w.approvedForAll && BigInt(t.result) === 1n)
117
- A.add(a.pairIndex), u.push({ token: g, spenderAddress: m.spenderAddress, allowance: 1n });
118
- else if (a.type === w.tokenId && !A.has(a.pairIndex)) {
119
- const h = `0x${t.result.substring(26)}`.toLowerCase();
120
- !y(h, C) && y(h, m.spenderAddress) && u.push({
121
- token: g,
122
- spenderAddress: m.spenderAddress,
123
- allowance: 1n,
124
- tokenId: a.tokenId
125
- });
126
- }
127
- } catch (h) {
128
- B.error("Error processing approval response", h);
129
- }
130
- }), u;
131
- }
132
- async fetchAndUpdatePublicApprovals(e, s) {
133
- const r = L(e, s);
134
- await this.getMutex(r).runExclusive(async () => {
135
- try {
136
- const { approvalEvents: i, latestBlock: l } = await this.getApprovalEvents(e, s);
137
- if (!l)
138
- return;
139
- const E = await this.getApprovals(s, e), p = /* @__PURE__ */ new Map();
140
- if (E.forEach((n) => {
141
- const u = n.token.erc20TokenAddress.toLowerCase(), A = n.spenderAddress.toLowerCase(), t = `${u}_${A}`;
142
- let o = p.get(t);
143
- o || (o = { contractAddress: u, spenderAddress: A, tokenIds: /* @__PURE__ */ new Set() }, p.set(t, o)), n.tokenId && o.tokenIds && o.tokenIds.add(n.tokenId);
144
- }), i.forEach((n) => {
145
- if (!n.topics[2])
146
- return;
147
- const u = n.address.toLowerCase(), A = `0x${n.topics[2].substring(26)}`.toLowerCase();
148
- if (y(A, C))
149
- return;
150
- const t = `${u}_${A}`;
151
- let o = p.get(t);
152
- if (o || (o = { contractAddress: u, spenderAddress: A, tokenIds: /* @__PURE__ */ new Set() }, p.set(t, o)), n.topics.length === 4 && o.tokenIds) {
153
- const a = BigInt(n.topics[3]).toString();
154
- o.tokenIds.add(a);
155
- }
156
- }), p.size === 0) {
157
- await this.updateLastProcessedBlock(s, e, l);
158
- return;
159
- }
160
- const c = Array.from(p.values()), v = await this.checkCurrentAllowances(s, e, c);
161
- await I(S.EVENTS_PUBLIC_APPROVALS, (n = {}) => ({
162
- ...n,
163
- [r]: v
164
- })), await this.updateLastProcessedBlock(s, e, l);
165
- } catch (i) {
166
- B.error("Failed to sync approvals", i);
167
- }
168
- });
169
- }
170
- }
171
- const st = new N();
172
- export {
173
- N as EventsPublicApprovalsDB,
174
- st as eventsPublicApprovalsDB
175
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const q=require("../../types/hinkal.types.cjs"),v=require("../../types/ethereum-network.types.cjs"),C=require("../../functions/web3/functionCalls/accessTokenCalls.cjs"),F=require("../../functions/web3/events/getShieldedBalance.cjs"),k=require("../crypto-keys/keys.cjs"),m=require("./hinkalDeposit.cjs"),E=require("./hinkalSwap.cjs"),M=require("./hinkalWithdraw.cjs"),R=require("./resetMerkleTrees.cjs"),P=require("../merkle-tree/MerkleTree.cjs");require("ethers");const f=require("../../error-handling/error-codes.constants.cjs"),S=require("../../crypto/poseidon.cjs");require("circomlibjs-hinkal-fork");require("libsodium-wrappers");require("process");require("buffer");const H=require("../../constants/chains.constants.cjs");require("../../API/getServerURL.cjs");require("axios");require("../../constants/coingecko.constants.cjs");require("../../constants/server.constants.cjs");require("../tor/TorClient.cjs");require("@hazae41/binary");require("@hazae41/cascade");require("../tor/HttpClient.cjs");const U=require("../../constants/vite.constants.cjs"),A=require("../../API/API.cjs");require("../../constants/token-data/index.cjs");require("../../constants/contracts.constants.cjs");const B=require("../../constants/kyc.constants.cjs");require("../../constants/reorg-depths.constants.cjs");require("../../constants/addresses.constants.cjs");require("../../constants/token.limits.constants.cjs");require("../../constants/presale.constants.cjs");require("../../constants/mystery-boxes.constants.cjs");require("../../constants/activity.constants.cjs");require("../../constants/tasks.constants.cjs");require("../../constants/events.constants.cjs");require("../../API/tenderly.api.cjs");const b=require("../../functions/utils/reloadPage.cjs"),W=require("../MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.cjs"),D=require("./hinkalPrivateWallet.cjs"),K=require("../../functions/utils/cacheFunctions.cjs"),x=require("../../functions/utils/cacheDevice.utils.cjs"),N=require("../../functions/web3/getContractMetadata.cjs"),L=require("./hinkalGetRecipientInfo.cjs"),O=require("./hinkalApprove.cjs"),_=require("./hinkalInsideTransact.cjs"),p=require("../../functions/web3/events/getApprovedBalance.cjs"),y=require("../../functions/web3/functionCalls/inHinkalApprovalCalls.cjs"),j=require("./hinkalSignSubAccount.cjs"),G=require("./hinkalCheckTokenRegistry.cjs"),z=require("./hinkalActionReceive.cjs"),J=require("./hinkalActionFundApproveAndTransact.cjs"),Q=require("../TokenDBs/PrivateTokensDB.cjs");require("idb-keyval");const V=require("../../functions/utils/erc20tokenFunctions.cjs");require("multiformats");require("async-mutex");require("../../functions/utils/convertIntegrationProviderToExternalActionId.cjs");require("../../types/circom-data.types.cjs");require("../../types/transactions.types.cjs");require("../../types/activities.types.cjs");require("../../functions/utils/userAgent.cjs");require("../../functions/utils/mutexes.utils.cjs");require("node-forge");require("../../functions/web3/getTokenHolder.cjs");require("ethers-v6h");const X=require("./hinkalProoflessDeposit.cjs"),Y=require("./hinkalProxySwap.cjs"),Z=require("./hinkalMultiSend.cjs"),$=require("./hinkalTransfer.cjs");class ee{providerAdapter;userKeys;signingMessage="Login to Hinkal Protocol";merkleTreeHinkal;merkleTreeAccessToken;nullifiers;encryptedOutputs;approvals;commitmentsSnapshotService;nullifierSnapshotService;accessTokenSnapshotService;approvalsSnapshotService;utxoUtils;cacheDevice;generateProofRemotely;disableMerkleTreeUpdates;constructor(e){this.userKeys=new k.UserKeys(void 0),this.merkleTreeHinkal=P.MerkleTree.create(S.poseidonFunction,0n),this.merkleTreeAccessToken=P.MerkleTree.create(S.poseidonFunction,0n),this.nullifiers=new Set,this.encryptedOutputs=[],this.approvals=new Map,this.generateProofRemotely=e?.generateProofRemotely??!1,this.utxoUtils=new W.MultiThreadedUtxoUtils,this.cacheDevice=x.createCacheDevice(e),this.disableMerkleTreeUpdates=e?.disableMerkleTreeUpdates??!1}async initProviderAdapter(e,t){await this.updateProviderAdapter(t),this.providerAdapter?.initConnector(e);const r=await this.connectAndPatchProvider(e);await t.init(r),await this.setListeners()}async initUserKeys(){this.userKeys=new k.UserKeys(await this.getProviderAdapter().signMessage(this.signingMessage))}async initUserKeysWithPassword(e){this.userKeys=new k.UserKeys(e)}async resetMerkle(){this.disableMerkleTreeUpdates||this.isSelectedNetworkSupported()&&await R.resetMerkleTrees(this)}getProviderAdapter(){if(!this.providerAdapter)throw new Error("ProviderAdapter is not initialized");return this.providerAdapter}async waitForTransaction(e,t=1){return!!await this.providerAdapter?.waitForTransaction(e,t)}getContractMetadata(e,t){return this.getProviderAdapter().getContractMetadata(e,t)}getContract(e,t=void 0,r){return this.getProviderAdapter().getContract(e,t,r)}getContractWithFetcherByChainId(e,t,r=void 0){return N.getContractWithFetcherByChainId(e,t,r)}async signMessage(e){return await this.getProviderAdapter().signMessage(e)}async signTypedData(e,t,r){return await this.getProviderAdapter().signTypedData(e,t,r)}async signWithSubAccount(e,t,r){return j.hinkalSignSubAccount(this,e,t,r)}getContractWithSigner(e,t=""){return this.getProviderAdapter().getContractWithSigner(e,t)}getContractWithFetcher(e,t=""){return this.getProviderAdapter().getContractWithFetcher(e,t)}getContractWithFetcherForEthereum(e,t){return this.getProviderAdapter().getContractWithFetcherForEthereum(e,t)}isSelectedNetworkSupported(){return!!H.networkRegistry[this.getCurrentChainId()]}async switchNetwork(e){try{await this.getProviderAdapter().switchNetwork(e)}catch{throw new Error(f.transactionErrorCodes.FAILED_TO_SWITCH_NETWORKS)}}async switchAccount(e){await this.getProviderAdapter().switchAccount(e)}getCurrentChainId(){const{chainId:e}=this.getProviderAdapter();if(!e)throw new Error("Illegal State: no chainId");return e}getSelectedNetwork(){return this.providerAdapter?.getSelectedNetwork()}isPermitterAvailable(){return this.getProviderAdapter().isPermitterAvailable()}async connectAndPatchProvider(e){return await this.getProviderAdapter().connectAndPatchProvider(e)}async disconnectFromConnector(){await this.getProviderAdapter().disconnectFromConnector()}async updateProviderAdapter(e){try{this.providerAdapter&&this.providerAdapter.release(),this.providerAdapter=e}catch(t){throw console.error(t),Error("updateProviderAdapter failed, please try again.")}}async setListeners(){this.providerAdapter?.setChainEventListener({onAccountChanged:()=>{this.onAccountChanged()},onChainChanged:e=>{this.onChainChanged(e)}})}async onAccountChanged(){await this.getProviderAdapter().onAccountChanged();const e=q.EventType.AccountChanged;typeof document<"u"?document?.dispatchEvent(new Event(e)):process?.emit("message",e,void 0)}async onChainChanged(e){if(e){await this.getProviderAdapter().onChainChanged(e);const t=q.EventType.NetworkChange;typeof document<"u"?document.dispatchEvent(new Event(t)):process?.emit("message",t,void 0)}else await this.disconnectFromConnector(),b.reloadPage()}async monitorConnectedAddress(){await A.API.monitor(await this.getEthereumAddress(),this.getCurrentChainId())}async getBalances(e,t,r,i,s=!1,n){return F.getShieldedBalance(this,e,t,r,i,s,this.generateProofRemotely,n)}async getApprovedBalances(e=!1,t=!1){return p.getApprovedBalance(this,e,t)}async getTotalBalance(e,t,r,i=!1,s){const n=e??this.getCurrentChainId(),a=r??await this.getEthereumAddress(),o=t??this.userKeys,c=await this.getBalances(n,o.getShieldedPrivateKey(),o.getShieldedPublicKey(),a,i,s),h=await this.getApprovedBalances(i,s),d=U.isExtension?await Q.privateTokensDB.getPrivateTokens(n,a):V.getErc20TokensForChain(n),l=[];return d.forEach(u=>{const T=u.erc20TokenAddress.toLowerCase(),g=c.get(T),w=h.get(T),I={token:u,balance:(g?.balance??0n)+(w?.balance??0n),timestamp:g?.timestamp||w?.timestamp||"0",nfts:g?.nfts||[]};l.push(I)}),l}getSupportedPassportLinks(){return B.supportedPassportLinks}checkAccessToken(){return C.checkHinkalAccessToken(this)}async mintHinkalAccessToken(e,t){return C.mintAccessToken(this,e,t)}async getHinkalTreeRootHash(){return this.getContractWithFetcher(v.ContractType.HinkalContract).getRootHash()}async getAccessTokenTreeRootHash(){return this.getContractWithFetcher(v.ContractType.AccessTokenContract).getRootHash()}async resetMerkleTreesIfNecessary(){if(!this.isSelectedNetworkSupported())throw new Error(f.transactionErrorCodes.UNSUPPORTED_NETWORK);const[e,t]=await Promise.all([this.getHinkalTreeRootHash(),this.getAccessTokenTreeRootHash()]);(e.toBigInt()!==this.merkleTreeHinkal.getRootHash()||t.toBigInt()!==this.merkleTreeAccessToken.getRootHash())&&(console.log("resetting merkle tree in resetMerkleTreesIfNecessary"),await this.resetMerkle())}async getEventsFromHinkal(){await Promise.all([this.accessTokenSnapshotService?.retrieveEventsFromLatestBlock(),this.commitmentsSnapshotService?.retrieveEventsFromLatestBlock(),this.nullifierSnapshotService?.retrieveEventsFromLatestBlock(),this.approvalsSnapshotService?.retrieveEventsFromLatestBlock()])}getEthereumAddress(){return this.getProviderAdapter().getAddress()}async getRandomRelay(e=!1){return(await A.API.getIdleRelay(this.getCurrentChainId(),e)).relay}getGasPrice(){if(!this.providerAdapter?.chainId)throw new Error("Illegal State of providerAdapter in Hinkal: no chainId");return this.providerAdapter.getGasPrice()}getAPI(){return A.API}resetCache(){K.resetCache(this,this.getCurrentChainId(),this.userKeys.getShieldedPublicKey())}snapshotsClearInterval(){this.commitmentsSnapshotService?.intervalClear(),this.accessTokenSnapshotService?.intervalClear(),this.nullifierSnapshotService?.intervalClear(),this.approvalsSnapshotService?.intervalClear()}checkTokenRegistry(e,t){const r=this.getContractWithFetcher(v.ContractType.HinkalHelperContract);return G.hinkalCheckTokenRegistry(r,e,t)}getRecipientInfo(e=!1){return L.getRecipientInfo(this,e)}async getInteractionApprovals(e){return await y.getInteractionApprovals(this,e)}getApprovedUtxos(e=!1){return p.getApprovedUtxos(this,e)}getApprovedUtxosForToken(e,t=!1){return p.getApprovedUtxosForToken(this,e,t)}getMyApprovalAmountForInteraction(e,t){return p.getMyApprovalAmountForInteraction(this,e,t)}async checkExistingApprovalFromHinkal(e,t){return await y.checkExistingApprovalFromHinkal(this,e,t)}async getBufferEntry(e,t,r){return y.getBufferEntry(this,e,t,r)}async deposit(e,t){return m.hinkalDeposit(this,e,t)}async depositForOther(e,t,r){return m.hinkalDepositForOther(this,e,t,r)}async prooflessDeposit(e,t,r){return X.hinkalProoflessDeposit(this,e,t,r)}async transfer(e,t,r,i,s,n,a=!1){return $.hinkalTransfer(this,e,t,r,i,s,n,a)}async withdraw(e,t,r,i,s,n,a,o=!1){return M.hinkalWithdraw(this,e,t,r,i,s,n,a,o)}async swap(e,t,r,i,s,n,a,o=!1,c=!1){return E.hinkalSwap(this,e,t,r,i,s,n,a,o,c)}async actionReceive(e,t,r,i,s,n,a=!1){return z.hinkalActionReceive(this,e,t,r,i,s,n,a)}async actionFundApproveAndTransact(e,t,r,i,s,n,a,o,c=!1,h,d,l){return J.hinkalActionFundApproveAndTransact(this,e,t,r,i,s,n,a,o,c,h,d,l)}async actionPrivateWallet(e,t,r,i,s,n,a,o,c,h=!1,d,l,u=!1){return D.hinkalPrivateWallet(this,e,t,r,i,s,n,a,o,c,h,d,l,u)}async approve(e,t,r,i,s,n=!1){return O.hinkalApprove(this,e,t,r,i,s,n)}async hinkalInsideTransact(e,t,r,i,s,n,a,o,c,h=!1){return _.hinkalInsideTransact(this,e,t,r,i,s,n,a,o,c,h)}async proxySwap(e,t,r,i,s,n,a,o,c=!1,h,d,l=!1){return Y.hinkalProxySwap(this,e,t,r,i,s,n,a,o,c,h,d,l)}async multiSendPrivateRecipients(e,t,r){return Z.hinkalMultiSendPrivateRecipients(this,e,t,r)}areMerkleTreeUpdatesDisabled(){return this.disableMerkleTreeUpdates}updateMerkleTreeUpdates(e){this.disableMerkleTreeUpdates=e}}exports.Hinkal=ee;
@@ -1,108 +0,0 @@
1
- import { ethers } from 'ethers';
2
- import { type ApprovedUtxo, ApprovedUtxoWithInteractionAddress, FeeStructure, HinkalConfig, type ParsedInLogicMetadata } from '../../types/hinkal.types';
3
- import { type ContractMetadata, ContractType, EthereumNetwork } from '../../types/ethereum-network.types';
4
- import type { EncryptedOutputWithSign } from '../../types/commitments.types';
5
- import { ExternalActionId } from '../../types/external-action.types';
6
- import { type IMultiThreadedUtxoUtils } from '../../types/IMultiThreadedUtxoUtils';
7
- import { type RelayerTransaction } from '../../types/relayer.types';
8
- import { type SignatureData } from '../../types/crypto.types';
9
- import type { ERC20Token, TokenBalance, TokenChanges } from '../../types/token.types';
10
- import { UserKeys } from '../crypto-keys/keys';
11
- import { type ClientAccessTokenSnapshotService } from '../snapshot/ClientAccessTokenSnapshotService';
12
- import { type ClientCommitmentsSnapshotService } from '../snapshot/ClientCommitmentsSnapshotService';
13
- import { type ClientNullifierSnapshotService } from '../snapshot/ClientNullifierSnapshotService';
14
- import { type ClientApprovalsSnapshotService } from '../snapshot/ClientApprovalsSnapshotService';
15
- import { type IProviderAdapter } from '../provider-adapter/IProviderAdapter';
16
- import { type IHinkal } from './IHinkal';
17
- import { MerkleTree } from '../merkle-tree';
18
- import { IAPI } from '../../API';
19
- import { type ICacheDevice } from '../../types/ICacheDevice';
20
- import type { StealthAddressStructure, TypedData } from '../../types/circom-data.types';
21
- import { SubAccount } from '../../types/proxy.types';
22
- import { AdminTransactionType } from '../../types/admin.types';
23
- export declare class Hinkal<ConnectorType> implements IHinkal {
24
- private providerAdapter?;
25
- userKeys: UserKeys;
26
- readonly signingMessage: string;
27
- merkleTreeHinkal: MerkleTree<bigint>;
28
- merkleTreeAccessToken: MerkleTree<bigint>;
29
- nullifiers: Set<string>;
30
- encryptedOutputs: EncryptedOutputWithSign[];
31
- approvals: Map<string, ApprovedUtxo[]>;
32
- commitmentsSnapshotService?: ClientCommitmentsSnapshotService;
33
- nullifierSnapshotService?: ClientNullifierSnapshotService;
34
- accessTokenSnapshotService?: ClientAccessTokenSnapshotService;
35
- approvalsSnapshotService?: ClientApprovalsSnapshotService;
36
- utxoUtils: IMultiThreadedUtxoUtils;
37
- cacheDevice: ICacheDevice;
38
- generateProofRemotely: boolean;
39
- private disableMerkleTreeUpdates;
40
- constructor(hinkalConfig?: HinkalConfig);
41
- initProviderAdapter(connector: ConnectorType, providerAdapter: IProviderAdapter<ConnectorType>): Promise<void>;
42
- initUserKeys(): Promise<void>;
43
- initUserKeysWithPassword(password: string): Promise<void>;
44
- resetMerkle(): Promise<void>;
45
- getProviderAdapter(): IProviderAdapter<ConnectorType>;
46
- waitForTransaction(transactionHash: string, confirmations?: number): Promise<boolean>;
47
- getContractMetadata(contractType: ContractType, chainId?: number): ContractMetadata;
48
- getContract(contractType: ContractType, contractAddress?: undefined, chainId?: number): ethers.Contract;
49
- getContractWithFetcherByChainId(chainId: number, contractType: ContractType, contractAddress?: undefined): ethers.Contract;
50
- signMessage(message: string): Promise<string>;
51
- signTypedData(domain: ethers.TypedDataDomain, types: Record<string, ethers.TypedDataField[]>, value: Record<string, unknown>): Promise<string>;
52
- signWithSubAccount(messageToSign: string | undefined, typedData: TypedData | undefined, subAccount: SubAccount): Promise<string>;
53
- getContractWithSigner(contract: ContractType, contractAddress?: string): ethers.Contract;
54
- getContractWithFetcher(contract: ContractType, contractAddress?: string): ethers.Contract;
55
- getContractWithFetcherForEthereum(contract: ContractType, address: string): ethers.Contract;
56
- isSelectedNetworkSupported(): boolean;
57
- switchNetwork(network: EthereumNetwork): Promise<void>;
58
- switchAccount(signer: ethers.Signer): Promise<void>;
59
- getCurrentChainId(): number;
60
- getSelectedNetwork(): EthereumNetwork | undefined;
61
- isPermitterAvailable(): boolean;
62
- connectAndPatchProvider(connector: ConnectorType): Promise<number>;
63
- disconnectFromConnector(): Promise<void>;
64
- updateProviderAdapter(providerAdapter: IProviderAdapter): Promise<void>;
65
- setListeners(): Promise<void>;
66
- private onAccountChanged;
67
- private onChainChanged;
68
- monitorConnectedAddress(): Promise<void>;
69
- getBalances(chainId: number, passedShieldedPrivateKey: string, passedShieldedPublicKey: string, ethAddress: string, resetCacheBefore?: boolean, updateTokensListBefore?: boolean): Promise<Map<string, TokenBalance>>;
70
- getApprovedBalances(resetCacheBefore?: boolean, updateTokensListBefore?: boolean): Promise<Map<string, TokenBalance>>;
71
- getTotalBalance(_chainId?: number, _userKeys?: UserKeys, _ethAddress?: string, resetCacheBefore?: boolean, updateTokensListBefore?: boolean): Promise<TokenBalance[]>;
72
- getSupportedPassportLinks(): string[];
73
- checkAccessToken(): Promise<boolean>;
74
- mintHinkalAccessToken(signatureData: SignatureData, fromWallet?: boolean): Promise<ethers.ContractTransaction>;
75
- getHinkalTreeRootHash(): Promise<any>;
76
- getAccessTokenTreeRootHash(): Promise<any>;
77
- resetMerkleTreesIfNecessary(): Promise<void>;
78
- getEventsFromHinkal(): Promise<void>;
79
- getEthereumAddress(): Promise<string>;
80
- getRandomRelay(markAsPending?: boolean): Promise<string | undefined>;
81
- getGasPrice(): Promise<bigint>;
82
- getAPI(): IAPI;
83
- resetCache(): void;
84
- snapshotsClearInterval(): void;
85
- checkTokenRegistry(erc20Addresses: string[], amountChanges: bigint[]): Promise<boolean>;
86
- getRecipientInfo(extendedInfo?: boolean): string;
87
- getInteractionApprovals(interactionAddress: string): Promise<ApprovedUtxo[]>;
88
- getApprovedUtxos(resetCacheBefore?: boolean): ApprovedUtxoWithInteractionAddress[];
89
- getApprovedUtxosForToken(erc20Address: string, resetCacheBefore?: boolean): ApprovedUtxoWithInteractionAddress[];
90
- getMyApprovalAmountForInteraction(interactionAddress: string, tokenAddress: string): bigint;
91
- checkExistingApprovalFromHinkal(erc20Address: string, interactionAddress: string): Promise<bigint>;
92
- getBufferEntry(approveTo: string, tokenAddress: string, inHinkalAddress: bigint): Promise<bigint>;
93
- deposit(erc20Tokens: ERC20Token[], amountChanges: bigint[]): Promise<ethers.ContractTransaction>;
94
- depositForOther(erc20Tokens: ERC20Token[], amountChanges: bigint[], recipientInfo: string): Promise<ethers.ContractTransaction>;
95
- prooflessDeposit(erc20Tokens: ERC20Token[], amountChanges: bigint[], stealthAddressStructures?: StealthAddressStructure[]): Promise<ethers.ContractTransaction>;
96
- transfer(erc20Tokens: ERC20Token[], amountChanges: bigint[], recipientAddress: string, feeToken?: string, feeStructureOverride?: FeeStructure, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
97
- withdraw(erc20Tokens: ERC20Token[], deltaAmounts: bigint[], recipientAddress: string, isRelayerOff: boolean, feeToken?: string, feeStructureOverride?: FeeStructure, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<ethers.ContractTransaction | RelayerTransaction | bigint>;
98
- swap(erc20Tokens: ERC20Token[], deltaAmounts: bigint[], externalActionId: ExternalActionId, swapData: string, feeToken?: string, feeStructureOverride?: FeeStructure, action?: AdminTransactionType, onlyGasEstimate?: boolean, withPrivateMempool?: boolean): Promise<RelayerTransaction | bigint>;
99
- actionReceive(erc20Tokens: ERC20Token[], deltaAmounts: bigint[], feeToken?: string, feeStructureOverride?: FeeStructure, subAccount?: SubAccount, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
100
- actionFundApproveAndTransact(tokenChanges: TokenChanges<bigint>[], subAccount: SubAccount, spenderAddress?: string, to?: string, callDataString?: string, value?: bigint, feeToken?: string, feeStructureOverride?: FeeStructure, autoDepositBack?: boolean, maxGasInDollar?: string, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
101
- actionPrivateWallet(erc20Addresses: string[], deltaAmounts: bigint[], onChainCreation: boolean[], ops: string[], emporiumTokenChanges: TokenChanges<bigint>[], subAccount: SubAccount, feeToken?: string, feeStructureOverride?: FeeStructure, relayOverride?: string, autoDepositBack?: boolean, maxGasInDollar?: string, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
102
- approve(erc20Addresses: string[], amount: bigint, approveTo: string, feeToken?: string, feeStructureOverride?: FeeStructure, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
103
- hinkalInsideTransact(erc20Addresses: string[], deltaChanges: bigint[], approvalChanges: bigint[], externalAddress: string, externalActionMetadata: string, parsedInLogicMetadata: ParsedInLogicMetadata, feeToken?: string, feeStructureOverride?: FeeStructure, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
104
- proxySwap(erc20Tokens: ERC20Token[], deltaAmounts: bigint[], externalActionId: ExternalActionId, swapData: string, isTheSameChainSwap: boolean, subAccount: SubAccount, feeToken?: string, feeStructureOverride?: FeeStructure, autoDepositBack?: boolean, maxGasInDollar?: string, action?: AdminTransactionType, onlyGasEstimate?: boolean): Promise<RelayerTransaction | bigint>;
105
- multiSendPrivateRecipients(erc20Tokens: ERC20Token[], amounts: bigint[], extendedRecipientInfos?: string[]): Promise<ethers.ContractTransaction>;
106
- areMerkleTreeUpdatesDisabled(): boolean;
107
- updateMerkleTreeUpdates(value: boolean): void;
108
- }