@hinkal/common 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/API/API.cjs +1 -1
- package/API/API.d.ts +6 -1
- package/API/API.mjs +48 -41
- package/API/enclaveCalls.cjs +1 -1
- package/API/enclaveCalls.mjs +5 -4
- package/API/index.d.ts +1 -0
- package/API/proxyAccountsCalls.cjs +1 -1
- package/API/proxyAccountsCalls.d.ts +7 -2
- package/API/proxyAccountsCalls.mjs +26 -20
- package/API/temporaryWalletCalls.cjs +1 -0
- package/API/temporaryWalletCalls.d.ts +13 -0
- package/API/temporaryWalletCalls.mjs +20 -0
- package/API/unspent-utxos-calls.cjs +1 -1
- package/API/unspent-utxos-calls.d.ts +1 -1
- package/API/unspent-utxos-calls.mjs +16 -14
- package/README.md +36 -13
- package/constants/chains.constants.cjs +1 -1
- package/constants/chains.constants.d.ts +1 -1
- package/constants/chains.constants.mjs +69 -51
- package/constants/deploy-data/deploy-data-solana.json.cjs +1 -1
- package/constants/deploy-data/deploy-data-solana.json.mjs +28 -2
- package/constants/kyc.constants.cjs +1 -1
- package/constants/kyc.constants.mjs +39 -40
- package/constants/mediaUrls.constants.cjs +1 -1
- package/constants/mediaUrls.constants.d.ts +1 -0
- package/constants/mediaUrls.constants.mjs +2 -1
- package/constants/server.constants.cjs +1 -1
- package/constants/server.constants.d.ts +6 -1
- package/constants/server.constants.mjs +37 -32
- package/constants/token-data/polygonRegistry.json.cjs +1 -1
- package/constants/token-data/polygonRegistry.json.mjs +4 -4
- package/constants/token-data/polygonRegistryFixed.json.cjs +1 -1
- package/constants/token-data/polygonRegistryFixed.json.mjs +4 -4
- package/data-structures/AccountActions/AccountActions.cjs +1 -0
- package/data-structures/AccountActions/AccountActions.d.ts +18 -0
- package/data-structures/AccountActions/AccountActions.mjs +78 -0
- package/data-structures/AccountActions/index.d.ts +1 -0
- package/data-structures/ApprovalDBs/EventsPublicApprovalsDB.cjs +1 -1
- package/data-structures/ApprovalDBs/EventsPublicApprovalsDB.mjs +68 -71
- package/data-structures/BlockchainEvent/BlockchainEvent.cjs +1 -0
- package/data-structures/BlockchainEvent/BlockchainEvent.d.ts +14 -0
- package/data-structures/BlockchainEvent/BlockchainEvent.mjs +41 -0
- package/data-structures/Hinkal/Hinkal.cjs +1 -1
- package/data-structures/Hinkal/Hinkal.d.ts +14 -8
- package/data-structures/Hinkal/Hinkal.mjs +215 -179
- package/data-structures/Hinkal/IHinkal.d.ts +9 -6
- package/data-structures/Hinkal/handleAutoDepositBack.cjs +1 -1
- package/data-structures/Hinkal/handleAutoDepositBack.mjs +47 -48
- package/data-structures/Hinkal/hinkalActionReceive.cjs +1 -1
- package/data-structures/Hinkal/hinkalActionReceive.mjs +25 -22
- package/data-structures/Hinkal/hinkalCheckTokenRegistry.cjs +1 -1
- package/data-structures/Hinkal/hinkalCheckTokenRegistry.mjs +12 -12
- package/data-structures/Hinkal/hinkalDeposit.cjs +1 -1
- package/data-structures/Hinkal/hinkalDeposit.mjs +63 -63
- package/data-structures/Hinkal/hinkalDepositAndWithdraw.cjs +1 -1
- package/data-structures/Hinkal/hinkalDepositAndWithdraw.mjs +60 -147
- package/data-structures/Hinkal/hinkalDepositOnChainUtxos.cjs +1 -0
- package/data-structures/Hinkal/hinkalDepositOnChainUtxos.d.ts +4 -0
- package/data-structures/Hinkal/hinkalDepositOnChainUtxos.mjs +103 -0
- package/data-structures/Hinkal/hinkalDepostAndBridge.cjs +1 -0
- package/data-structures/Hinkal/hinkalDepostAndBridge.d.ts +4 -0
- package/data-structures/Hinkal/hinkalDepostAndBridge.mjs +214 -0
- package/data-structures/Hinkal/hinkalGetZkMeProvider.cjs +1 -1
- package/data-structures/Hinkal/hinkalGetZkMeProvider.mjs +4 -4
- package/data-structures/Hinkal/hinkalPrivateWallet.cjs +1 -1
- package/data-structures/Hinkal/hinkalPrivateWallet.d.ts +2 -2
- package/data-structures/Hinkal/hinkalPrivateWallet.mjs +103 -99
- package/data-structures/Hinkal/hinkalProxySwap.cjs +1 -1
- package/data-structures/Hinkal/hinkalProxySwap.mjs +44 -41
- package/data-structures/Hinkal/hinkalProxyToPrivate.cjs +1 -1
- package/data-structures/Hinkal/hinkalProxyToPrivate.mjs +31 -28
- package/data-structures/Hinkal/hinkalSignSubAccount.cjs +1 -1
- package/data-structures/Hinkal/hinkalSignSubAccount.mjs +16 -13
- package/data-structures/Hinkal/hinkalSolanaDeposit.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaDeposit.mjs +34 -34
- package/data-structures/Hinkal/hinkalSolanaDepositAndWithdraw.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaDepositAndWithdraw.mjs +67 -65
- package/data-structures/Hinkal/hinkalSolanaProxySend.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaProxySend.mjs +35 -32
- package/data-structures/Hinkal/hinkalSolanaProxyShield.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaProxyShield.mjs +59 -56
- package/data-structures/Hinkal/hinkalSolanaProxySwap.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaProxySwap.mjs +35 -32
- package/data-structures/Hinkal/hinkalSolanaSwap.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaSwap.mjs +10 -10
- package/data-structures/Hinkal/hinkalSolanaWithdraw.cjs +1 -1
- package/data-structures/Hinkal/hinkalSolanaWithdraw.mjs +25 -25
- package/data-structures/Hinkal/hinkalSwap.cjs +1 -1
- package/data-structures/Hinkal/hinkalSwap.mjs +34 -30
- package/data-structures/Hinkal/hinkalTransfer.cjs +1 -1
- package/data-structures/Hinkal/hinkalTransfer.mjs +43 -39
- package/data-structures/Hinkal/hinkalWithdraw.cjs +1 -1
- package/data-structures/Hinkal/hinkalWithdraw.mjs +47 -43
- package/data-structures/Hinkal/hinkalWithdrawStuckUtxos.cjs +1 -1
- package/data-structures/Hinkal/hinkalWithdrawStuckUtxos.mjs +50 -46
- package/data-structures/Hinkal/resetMerkleTrees.cjs +1 -1
- package/data-structures/Hinkal/resetMerkleTrees.mjs +36 -34
- package/data-structures/IndexedDB/activity-db.cjs +1 -1
- package/data-structures/IndexedDB/activity-db.d.ts +1 -0
- package/data-structures/IndexedDB/activity-db.mjs +86 -70
- package/data-structures/IndexedDB/balances-db.cjs +1 -1
- package/data-structures/IndexedDB/balances-db.mjs +33 -30
- package/data-structures/IndexedDB/contact-db.cjs +1 -1
- package/data-structures/IndexedDB/contact-db.mjs +9 -6
- package/data-structures/PublicBalance/PublicBalanceWatcher.cjs +1 -0
- package/data-structures/PublicBalance/PublicBalanceWatcher.d.ts +20 -0
- package/data-structures/PublicBalance/PublicBalanceWatcher.mjs +124 -0
- package/data-structures/PublicBalance/SolanaPublicBalancerWatcher.cjs +1 -0
- package/data-structures/PublicBalance/SolanaPublicBalancerWatcher.d.ts +15 -0
- package/data-structures/PublicBalance/SolanaPublicBalancerWatcher.mjs +64 -0
- package/data-structures/PublicBalance/index.d.ts +2 -0
- package/data-structures/TokenDBs/EventsPublicTokensDB.cjs +1 -1
- package/data-structures/TokenDBs/EventsPublicTokensDB.mjs +77 -78
- package/data-structures/crypto-keys/keys.cjs +1 -1
- package/data-structures/crypto-keys/keys.d.ts +0 -11
- package/data-structures/crypto-keys/keys.mjs +47 -107
- package/data-structures/event-service/evm/AbstractAccessTokenSnapshotService.cjs +1 -1
- package/data-structures/event-service/evm/AbstractAccessTokenSnapshotService.d.ts +3 -2
- package/data-structures/event-service/evm/AbstractAccessTokenSnapshotService.mjs +9 -9
- package/data-structures/event-service/evm/AbstractApprovalsSnapshotService.cjs +1 -1
- package/data-structures/event-service/evm/AbstractApprovalsSnapshotService.d.ts +3 -2
- package/data-structures/event-service/evm/AbstractApprovalsSnapshotService.mjs +5 -5
- package/data-structures/event-service/evm/AbstractCommitmentsSnapshotService.cjs +1 -1
- package/data-structures/event-service/evm/AbstractCommitmentsSnapshotService.d.ts +3 -2
- package/data-structures/event-service/evm/AbstractCommitmentsSnapshotService.mjs +6 -6
- package/data-structures/event-service/evm/AbstractEventService.cjs +1 -1
- package/data-structures/event-service/evm/AbstractEventService.d.ts +3 -2
- package/data-structures/event-service/evm/AbstractEventService.mjs +16 -19
- package/data-structures/event-service/evm/AbstractNullifierSnapshotService.cjs +1 -1
- package/data-structures/event-service/evm/AbstractNullifierSnapshotService.d.ts +3 -3
- package/data-structures/event-service/evm/AbstractNullifierSnapshotService.mjs +6 -5
- package/data-structures/event-service/evm/AbstractSnapshotService.d.ts +1 -1
- package/data-structures/event-service/evm/BlockchainEventEmitter.cjs +1 -1
- package/data-structures/event-service/evm/BlockchainEventEmitter.d.ts +7 -4
- package/data-structures/event-service/evm/BlockchainEventEmitter.mjs +35 -34
- package/data-structures/event-service/evm/ClientBlockchainEventEmitter.cjs +1 -0
- package/data-structures/event-service/evm/ClientBlockchainEventEmitter.d.ts +11 -0
- package/data-structures/event-service/evm/ClientBlockchainEventEmitter.mjs +21 -0
- package/data-structures/event-service/evm/PollingBlockchainEventEmitter.cjs +1 -0
- package/data-structures/event-service/evm/PollingBlockchainEventEmitter.d.ts +6 -0
- package/data-structures/event-service/evm/PollingBlockchainEventEmitter.mjs +16 -0
- package/data-structures/event-service/helpers/ClientEventHelper.cjs +1 -0
- package/data-structures/event-service/helpers/ClientEventHelper.d.ts +11 -0
- package/data-structures/event-service/helpers/ClientEventHelper.mjs +26 -0
- package/data-structures/event-service/helpers/PollingEventHelper.cjs +1 -0
- package/data-structures/event-service/helpers/PollingEventHelper.d.ts +5 -0
- package/data-structures/event-service/helpers/PollingEventHelper.mjs +14 -0
- package/data-structures/event-service/index.d.ts +4 -0
- package/data-structures/event-service/solana/AbstractSolanaAccessTokenSnapshotService.cjs +1 -1
- package/data-structures/event-service/solana/AbstractSolanaAccessTokenSnapshotService.d.ts +3 -2
- package/data-structures/event-service/solana/AbstractSolanaAccessTokenSnapshotService.mjs +6 -6
- package/data-structures/event-service/solana/AbstractSolanaCommitmentsSnapshotService.cjs +1 -1
- package/data-structures/event-service/solana/AbstractSolanaCommitmentsSnapshotService.d.ts +4 -3
- package/data-structures/event-service/solana/AbstractSolanaCommitmentsSnapshotService.mjs +8 -8
- package/data-structures/event-service/solana/AbstractSolanaEventService.cjs +1 -1
- package/data-structures/event-service/solana/AbstractSolanaEventService.d.ts +3 -10
- package/data-structures/event-service/solana/AbstractSolanaEventService.mjs +5 -5
- package/data-structures/event-service/solana/AbstractSolanaNullifierSnapshotService.cjs +1 -1
- package/data-structures/event-service/solana/AbstractSolanaNullifierSnapshotService.d.ts +3 -2
- package/data-structures/event-service/solana/AbstractSolanaNullifierSnapshotService.mjs +1 -1
- package/data-structures/event-service/solana/AbstractSolanaSnapshotService.d.ts +1 -1
- package/data-structures/event-service/solana/ClientSolanaBlockchainEventEmitter.cjs +1 -0
- package/data-structures/event-service/solana/ClientSolanaBlockchainEventEmitter.d.ts +11 -0
- package/data-structures/event-service/solana/ClientSolanaBlockchainEventEmitter.mjs +22 -0
- package/data-structures/event-service/solana/PollingSolanaBlockchainEventEmitter.cjs +1 -0
- package/data-structures/event-service/solana/PollingSolanaBlockchainEventEmitter.d.ts +6 -0
- package/data-structures/event-service/solana/PollingSolanaBlockchainEventEmitter.mjs +16 -0
- package/data-structures/event-service/solana/SolanaBlockchainEventEmitter.cjs +1 -1
- package/data-structures/event-service/solana/SolanaBlockchainEventEmitter.d.ts +8 -14
- package/data-structures/event-service/solana/SolanaBlockchainEventEmitter.mjs +68 -67
- package/data-structures/index.d.ts +3 -0
- package/data-structures/snapshot/evm-snapshots/ClientAccessTokenSnapshotService.cjs +1 -1
- package/data-structures/snapshot/evm-snapshots/ClientAccessTokenSnapshotService.mjs +5 -2
- package/data-structures/snapshot/evm-snapshots/ClientApprovalsSnapshotService.cjs +1 -1
- package/data-structures/snapshot/evm-snapshots/ClientApprovalsSnapshotService.mjs +5 -2
- package/data-structures/snapshot/evm-snapshots/ClientCommitmentsSnapshotService.cjs +1 -1
- package/data-structures/snapshot/evm-snapshots/ClientCommitmentsSnapshotService.mjs +5 -2
- package/data-structures/snapshot/evm-snapshots/ClientNullifierSnapshotService.cjs +1 -1
- package/data-structures/snapshot/evm-snapshots/ClientNullifierSnapshotService.mjs +5 -2
- package/data-structures/snapshot/solana-snapshots/ClientSolanaAccessTokenSnapshotService.cjs +1 -1
- package/data-structures/snapshot/solana-snapshots/ClientSolanaAccessTokenSnapshotService.mjs +5 -2
- package/data-structures/snapshot/solana-snapshots/ClientSolanaCommitmentsSnapshotService.cjs +1 -1
- package/data-structures/snapshot/solana-snapshots/ClientSolanaCommitmentsSnapshotService.mjs +5 -2
- package/data-structures/snapshot/solana-snapshots/ClientSolanaNullifierSnapshotService.cjs +1 -1
- package/data-structures/snapshot/solana-snapshots/ClientSolanaNullifierSnapshotService.mjs +5 -2
- package/data-structures/utxo/Utxo.cjs +1 -1
- package/data-structures/utxo/Utxo.d.ts +1 -0
- package/data-structures/utxo/Utxo.mjs +18 -4
- package/error-handling/error-codes.constants.cjs +1 -1
- package/error-handling/error-codes.constants.mjs +2 -2
- package/functions/pre-transaction/getSolanaCalldataHash.cjs +1 -1
- package/functions/pre-transaction/getSolanaCalldataHash.mjs +22 -22
- package/functions/pre-transaction/sendV0Transaction.cjs +1 -1
- package/functions/pre-transaction/sendV0Transaction.mjs +53 -50
- package/functions/pre-transaction/solana.cjs +1 -1
- package/functions/pre-transaction/solana.mjs +93 -93
- package/functions/private-wallet/emporium.helpers.cjs +1 -1
- package/functions/private-wallet/emporium.helpers.d.ts +3 -2
- package/functions/private-wallet/emporium.helpers.mjs +118 -93
- package/functions/snarkjs/constructEmporiumProof.cjs +1 -1
- package/functions/snarkjs/constructEmporiumProof.d.ts +1 -2
- package/functions/snarkjs/constructEmporiumProof.mjs +89 -89
- package/functions/snarkjs/constructSolanaZkProof.cjs +1 -1
- package/functions/snarkjs/constructSolanaZkProof.mjs +6 -2
- package/functions/utils/bytes32.utils.cjs +1 -1
- package/functions/utils/bytes32.utils.mjs +8 -7
- package/functions/utils/create-provider.cjs +1 -1
- package/functions/utils/create-provider.d.ts +1 -1
- package/functions/utils/create-provider.mjs +13 -9
- package/functions/utils/index.d.ts +0 -1
- package/functions/utils/prepareHinkal.cjs +1 -1
- package/functions/utils/prepareHinkal.d.ts +6 -7
- package/functions/utils/prepareHinkal.mjs +45 -53
- package/functions/utils/publicBalance.utils.cjs +1 -1
- package/functions/utils/publicBalance.utils.mjs +49 -54
- package/functions/utils/socket.utils.cjs +1 -0
- package/functions/utils/socket.utils.d.ts +1 -0
- package/functions/utils/socket.utils.mjs +12 -0
- package/functions/utils/string.utils.cjs +1 -1
- package/functions/utils/string.utils.d.ts +1 -0
- package/functions/utils/string.utils.mjs +18 -14
- package/functions/utils/walletBalances.utils.cjs +1 -1
- package/functions/utils/walletBalances.utils.d.ts +1 -1
- package/functions/utils/walletBalances.utils.mjs +4 -4
- package/functions/web3/crypto.cjs +1 -0
- package/functions/web3/crypto.d.ts +1 -0
- package/functions/web3/crypto.mjs +7 -0
- package/functions/web3/events/getApprovedBalance.cjs +1 -1
- package/functions/web3/events/getApprovedBalance.mjs +14 -14
- package/functions/web3/events/getInputUtxoAndBalance.cjs +1 -1
- package/functions/web3/events/getInputUtxoAndBalance.mjs +61 -59
- package/functions/web3/events/getTransactionLogEvents.cjs +1 -1
- package/functions/web3/events/getTransactionLogEvents.mjs +32 -32
- package/functions/web3/fetchSolanaMerkleTreeRootHash.cjs +1 -1
- package/functions/web3/fetchSolanaMerkleTreeRootHash.mjs +6 -3
- package/functions/web3/functionCalls/approveToken.cjs +1 -1
- package/functions/web3/functionCalls/approveToken.mjs +17 -17
- package/functions/web3/functionCalls/transactCallDirect.cjs +1 -1
- package/functions/web3/functionCalls/transactCallDirect.mjs +16 -16
- package/functions/web3/functionCalls/transactCallRelayer.cjs +1 -1
- package/functions/web3/functionCalls/transactCallRelayer.mjs +13 -11
- package/functions/web3/getContractMetadata.cjs +1 -1
- package/functions/web3/getContractMetadata.mjs +17 -22
- package/functions/web3/getTokenHolder.cjs +1 -1
- package/functions/web3/getTokenHolder.mjs +20 -20
- package/functions/web3/index.d.ts +1 -0
- package/index.cjs +1 -1
- package/index.mjs +913 -890
- package/package.json +3 -2
- package/providers/EthersProviderAdapter.cjs +1 -1
- package/providers/EthersProviderAdapter.mjs +2 -5
- package/providers/prepareEthersHinkal.cjs +1 -1
- package/providers/prepareEthersHinkal.mjs +11 -4
- package/providers/prepareWagmiHinkal.cjs +1 -1
- package/providers/prepareWagmiHinkal.mjs +11 -4
- package/types/activities.types.d.ts +2 -0
- package/types/bridging-tx.types.d.ts +17 -0
- package/types/cache.types.cjs +1 -1
- package/types/cache.types.d.ts +5 -1
- package/types/cache.types.mjs +1 -1
- package/types/ethereum-network.types.d.ts +1 -0
- package/types/events.types.cjs +1 -0
- package/types/events.types.d.ts +9 -0
- package/types/events.types.mjs +5 -0
- package/types/index.d.ts +2 -0
- package/types/proxy.types.d.ts +11 -4
- package/types/sandbox.types.d.ts +2 -0
- package/types/solana.types.d.ts +8 -0
- package/types/token.types.d.ts +5 -0
- package/webworker/snarkjsWorker/snarkjsWorkerLauncher.cjs +1 -1
- package/webworker/snarkjsWorker/snarkjsWorkerLauncher.mjs +1 -1
- package/webworker/utxoWorker/utxoWorkerLauncher.cjs +1 -1
- package/webworker/utxoWorker/utxoWorkerLauncher.mjs +1 -1
- package/webworker/zkProofWorker/zkProofWorkerLauncher.cjs +1 -1
- package/webworker/zkProofWorker/zkProofWorkerLauncher.mjs +1 -1
- package/functions/kyc/authentoHelper.cjs +0 -1
- package/functions/kyc/authentoHelper.d.ts +0 -12
- package/functions/kyc/authentoHelper.mjs +0 -30
- package/functions/utils/get-hinkal-approvals.cjs +0 -1
- package/functions/utils/get-hinkal-approvals.d.ts +0 -3
- package/functions/utils/get-hinkal-approvals.mjs +0 -38
package/index.mjs
CHANGED
|
@@ -2,949 +2,972 @@ import { DATA_SERVER_URL as r, RELAYER_URL as t, SERVER_URL as a, SNAPSHOT_SERVE
|
|
|
2
2
|
import { getCoingeckoPrice as s, getCoingeckoPrice2 as p, getCoingeckoPrices as c, getCoingeckoTokenList as m } from "./API/getCoingeckoPrice.mjs";
|
|
3
3
|
import { callOneInchAPI as f } from "./API/callOneInchAPI.mjs";
|
|
4
4
|
import { callRelayerSolanaTransactBatchAPI as S, callRelayerTransactAPI as A, callRelayerTransactBatchAPI as d } from "./API/callRelayer.mjs";
|
|
5
|
-
import { getGasEstimates as
|
|
5
|
+
import { getGasEstimates as E } from "./API/getGasEstimates.mjs";
|
|
6
6
|
import { getTokenPreviousDayPrices as u, getTokenPrices as I } from "./API/getTokenPrice.mjs";
|
|
7
7
|
import { checkRisk as R } from "./API/checkRisk.mjs";
|
|
8
8
|
import { getIdleRelay as C } from "./API/relayCalls.mjs";
|
|
9
|
-
import { API as
|
|
10
|
-
import { WALLET_API as
|
|
11
|
-
import { tokensInfoCall as
|
|
9
|
+
import { API as k } from "./API/API.mjs";
|
|
10
|
+
import { WALLET_API as y, rpcGetStorageChanges as O, rpcSimulateBundle as D, rpcSimulateTransaction as L, simulateTx as U, tenderlyRpcLinks as B } from "./API/tenderly.api.mjs";
|
|
11
|
+
import { tokensInfoCall as b } from "./API/token-calls.mjs";
|
|
12
12
|
import { callLifiAPI as F } from "./API/callLifiAPI.mjs";
|
|
13
|
-
import { generateAumPoints as V, generateTradingPoints as
|
|
13
|
+
import { generateAumPoints as V, generateTradingPoints as W } from "./API/generate-trading-points.mjs";
|
|
14
14
|
import { createBrotherhood as w, editBrotherhood as G, getBrotherhood as Y, getBrotherhoodUsers as z, getCurrentUserBrotherhood as X, getCurrentUserBrotherhoodUsers as q, getPublicBrotherhoods as Z, joinBrotherhood as j, leaveBrotherhood as J } from "./API/brotherhoodCalls.mjs";
|
|
15
15
|
import { getHinkalLandingURL as $, getRewardsURL as ee, getWalletOnboardingURL as oe } from "./API/getWebsiteURL.mjs";
|
|
16
16
|
import { resolveSns as te } from "./API/resolve-sns.mjs";
|
|
17
17
|
import { seedlessBackup as ne, seedlessCheckPassword as ie, seedlessInit as se, seedlessSalt as pe, seedlessStatus as ce } from "./API/seedless-calls.mjs";
|
|
18
18
|
import { getScheduledTransactions as le } from "./API/scheduled-transactions-calls.mjs";
|
|
19
19
|
import { deleteUnspentUtxos as xe, getUnspentUtxos as Se, storeUnspentUtxos as Ae } from "./API/unspent-utxos-calls.mjs";
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
233
|
-
import {
|
|
234
|
-
import {
|
|
235
|
-
import {
|
|
236
|
-
import {
|
|
237
|
-
import {
|
|
238
|
-
import {
|
|
239
|
-
import {
|
|
240
|
-
import {
|
|
241
|
-
import {
|
|
242
|
-
import {
|
|
243
|
-
import {
|
|
244
|
-
import {
|
|
245
|
-
import {
|
|
246
|
-
import {
|
|
247
|
-
import {
|
|
248
|
-
import {
|
|
249
|
-
import {
|
|
250
|
-
import {
|
|
251
|
-
import {
|
|
252
|
-
import {
|
|
253
|
-
import {
|
|
254
|
-
import {
|
|
255
|
-
import {
|
|
256
|
-
import {
|
|
257
|
-
import {
|
|
258
|
-
import {
|
|
259
|
-
import {
|
|
260
|
-
import {
|
|
261
|
-
import {
|
|
262
|
-
import {
|
|
263
|
-
import {
|
|
264
|
-
import {
|
|
265
|
-
import {
|
|
266
|
-
import {
|
|
267
|
-
import {
|
|
268
|
-
import {
|
|
20
|
+
import { addTemporaryWalletNonce as Te, getTemporaryWalletNonces as Ee, removeTemporaryWalletNonce as ge } from "./API/temporaryWalletCalls.mjs";
|
|
21
|
+
import { IMAGE_PATHS as Ie } from "./constants/assets.constants.mjs";
|
|
22
|
+
import { arbMainnetRegistry as Re, arbMainnetRegistryFixed as _e, arcTestnetRegistry as Ce, avalancheRegistry as he, avalancheRegistryFixed as ke, baseRegistry as Ne, baseRegistryFixed as ye, bnbMainnetRegistry as Oe, bnbMainnetRegistryFixed as De, ethMainnetRegistry as Le, ethMainnetRegistryFixed as Ue, localhostRegistry as Be, optimismRegistry as ve, optimismRegistryFixed as be, polygonRegistry as Me, polygonRegistryFixed as Fe, solanaLocalnetRegistry as Ke, solanaMainnetRegistry as Ve } from "./constants/token-data/index.mjs";
|
|
23
|
+
import { default as He } from "./constants/deploy-data/deploy-data-bnbMainnet.json.mjs";
|
|
24
|
+
import { default as Ge } from "./constants/deploy-data/deploy-data-arbMainnet.json.mjs";
|
|
25
|
+
import { default as ze } from "./constants/deploy-data/deploy-data-ethMainnet.json.mjs";
|
|
26
|
+
import { default as qe } from "./constants/deploy-data/deploy-data-optimism.json.mjs";
|
|
27
|
+
import { default as je } from "./constants/deploy-data/deploy-data-polygon.json.mjs";
|
|
28
|
+
import { default as Qe } from "./constants/deploy-data/deploy-data-avalanche.json.mjs";
|
|
29
|
+
import { default as eo } from "./constants/deploy-data/deploy-data-base.json.mjs";
|
|
30
|
+
import { default as ro } from "./constants/deploy-data/deploy-data-localhost.json.mjs";
|
|
31
|
+
import { default as ao } from "./constants/deploy-data/deploy-data-arcTestnet.json.mjs";
|
|
32
|
+
import { default as io } from "./constants/deploy-data/deploy-data-solana.json.mjs";
|
|
33
|
+
import { ALCHEMY_API_KEY as po, ALCHEMY_TEST_KEY as co, BRIDGE_SUPPORTED_CHAINS as mo, EthereumNetworkType as lo, HELIUS_RPC_URL as fo, WALLET_SUPPORTED_CHAINS as xo, chainIds as So, chainIdsByType as Ao, getNonLocalhostChainId as To, isLocalNetwork as Eo, isOptimismLike as go, isSolanaLike as uo, localhostNetwork as Io, networkRegistry as Po, solanaChainIdStr as Ro } from "./constants/chains.constants.mjs";
|
|
34
|
+
import { NON_NATIVE_GAS_COST_TOKEN_SYMBOL_OPTIONS as Co, defaultFeeToken as ho } from "./constants/fees.constants.mjs";
|
|
35
|
+
import { contractMetadataMapping as No, getHinkalParameters as yo, uniswapV2PoolData as Oo, uniswapV3FactoryData as Do, uniswapV3PoolData as Lo, uniswapV3QuoterData as Uo } from "./constants/contracts.constants.mjs";
|
|
36
|
+
import { AIPRISE_KYB_TEMPLATE_ID_PROD as vo, AIPRISE_KYC_TEMPLATE_ID_PROD as bo, RECLAIM_MESSAGE_TO_SIGN as Mo, ReclaimPassports as Fo, StandardPassports as Ko, SupportedPassports as Vo, aipriseBaseOnboardingProductionUrl as Wo, aipriseBaseOnboardingSandboxUrl as Ho, supportedPassportLinks as wo } from "./constants/kyc.constants.mjs";
|
|
37
|
+
import { API_CONFIG as Yo, DATA_SERVER_CONFIG as zo, DATA_SERVER_URL_ENDPOINT as Xo, DATA_SERVER_URL_LOCAL as qo, PLAYGROUND_URL as Zo, PRODUCTION_URL as jo, RELAYER_CONFIG as Jo, RELAYER_URL_ENDPOINT as Qo, RELAYER_URL_LOCAL as $o, SERVER_URL_ENDPOINT as er, SERVER_URL_LOCAL as or, SNAPSHOT_SERVER_URL_ENDPOINT as rr, SNAPSHOT_SERVER_URL_LOCAL as tr, STAGING_URL as ar, VERIFICATION_ROUTES as nr, WALLET_TASK_VERIFICATION_TYPES as ir } from "./constants/server.constants.mjs";
|
|
38
|
+
import { DEPLOYMENT_MODE as pr, deploymentMode as cr, isDevelopment as mr, isExtension as lr, isNode as fr, isNotClientProduction as xr, isNotProduction as Sr, isPlayground as Ar, isSandbox as dr, isStaging as Tr, isWebpack as Er } from "./constants/vite.constants.mjs";
|
|
39
|
+
import { ARC_TESTNET_USDC_ADDRESS as ur, AssetChangeType as Ir, CIRCOM_MERKLE_LENGTH as Pr, CIRCOM_P as Rr, CIRCOM_P_HALF as _r, COMPUTE_UNIT_PADDING_PERCENTAGE as Cr, EIP1271_FAILURE as hr, EIP1271_SUCCESS as kr, HINKAL_DEPOSIT_AND_WITHDRAW_VARIABLE_RATE as Nr, HINKAL_PRIVATE_SEND_VARIABLE_RATE as yr, HINKAL_SWAP_VARIABLE_RATE as Or, MAX_COMPUTE_UNIT_LIMIT as Dr, MERKLE_LEVELS as Lr, MICRO_LAMPORTS_PER_CU as Ur, MIN_COMPUTE_UNIT_LIMIT as Br, NFT_1155_TRANSACTION_TYPE as vr, NFT_721_TRANSACTION_TYPE as br, NFT_TRANSACTION_TYPES as Mr, RELAYERS_ARRAY as Fr, RELAYER_ADDRESS1 as Kr, RELAYER_ADDRESS2 as Vr, RELAYER_ADDRESS3 as Wr, SOLANA_NFT_INTERFACES as Hr, SOLANA_PUBLIC_INPUT_PART_ONE_LENGTH as wr, TOKEN_VALUE_UNLIMITED_THRESHOLD as Gr, TokenType as Yr, defaultSignatureData as zr, ethVolatileAddress as Xr, hinkalSimulationAddress as qr, oneInchZeroAddress as Zr, ownerPublicKey as jr, permitSignatureValidFor as Jr, signaturePhrase as Qr, solanaNativeAddress as $r, zeroAddress as et } from "./constants/protocol.constants.mjs";
|
|
40
|
+
import { COINGECKO_API_KEY as rt, CoinGeckoChainLabels as tt, coingeckoPriceUrl as at, coingeckoPriceUrl2 as nt, coingeckoTokenListUrl as it, getCoinByAddress as st, getCoinById as pt, getCoinMarketChartByTokenId as ct, getCoingeckoIdForNativeTokens as mt, getCoingeckoPlatform as lt, proCoingeckoUrl as ft, proHeader as xt, searchBySymbol as St } from "./constants/coingecko.constants.mjs";
|
|
41
|
+
import { NETWORKS as dt } from "./constants/backend.constants.mjs";
|
|
42
|
+
import { ACCESS_TOKEN_MINTING_POINTS as Et, ACCESS_TOKEN_RECLAIM_POINTS as gt, CERTIFICATION_DISABLE_WEEK as ut, REWARDS_ENCRYPTION_PASSWORD as It, REWARDS_MESSAGE_TO_SIGN as Pt, REWARD_RECEIVABLE_TOKEN_SYMBOLS as Rt, boostAmounts as _t, lpLink as Ct, lpProgramStartWeek as ht, pointsLink as kt, raffleProgramStartWeek as Nt, referralLink as yt } from "./constants/rewards.constants.mjs";
|
|
43
|
+
import { blockReorgDepth as Dt } from "./constants/reorg-depths.constants.mjs";
|
|
44
|
+
import { mediaUrls as Ut } from "./constants/mediaUrls.constants.mjs";
|
|
45
|
+
import { allowanceHolder as vt, pancaceSwapPermit2Address as bt, permit2Address as Mt, uniswap2Manager as Ft, uniswap3Manager as Kt, uniswapApprovalExtraCallData as Vt, uniswapWorkaroundAddresses as Wt } from "./constants/permit2.constants.mjs";
|
|
46
|
+
import { NATIVE_TOKEN_WRAPPER_ADDRESSES as wt, SWAP_FEE_TAKER_ADDRESSES as Gt, SWAP_ROUTER_ADDRESSES as Yt, WETH_ERC20_TOKEN_ADDRESS as zt, WRAPPER_TOKEN_EXCHANGE_ADDRESSES as Xt } from "./constants/addresses.constants.mjs";
|
|
47
|
+
import { APPROVED_UTXO_CONVERSION_COUNT as Zt } from "./constants/conversion.constants.mjs";
|
|
48
|
+
import { TOKEN_LIMITS as Jt, getTokensLimits as Qt } from "./constants/token.limits.constants.mjs";
|
|
49
|
+
import { MAX_DISPLAY_DECIMALS as ea } from "./constants/balance.constants.mjs";
|
|
50
|
+
import { BRIDGING_URLS as ra } from "./constants/bridging.constants.mjs";
|
|
51
|
+
import { UNSUPPORTED_WALLETS_WALLETCONNECT_NAMES as aa, UNSUPPORTED_WALLET_IDS as na } from "./constants/wallet.constants.mjs";
|
|
52
|
+
import { presaleABI as sa, presaleContractInfoByChain as pa } from "./constants/presale.constants.mjs";
|
|
53
|
+
import { LIFISCAN_URL as ma } from "./constants/lifi.constants.mjs";
|
|
54
|
+
import { oauthUrls as fa } from "./constants/oauthUrls.constants.mjs";
|
|
55
|
+
import { TVL_CHANGER_ACTIVITY_TYPES as Sa } from "./constants/activity.constants.mjs";
|
|
56
|
+
import { ACHIEVEMENTS as da, BROTHERHOOD_TASKS as Ta, DAILY_TASKS as Ea, POINTS_BOOST_TASKS as ga, REFERRAL_BONUS_TASK as ua, REWARDS_TASKS as Ia, WELCOME_TASKS as Pa } from "./constants/tasks.constants.mjs";
|
|
57
|
+
import { EVENTS_INITIAL_BLOCKS as _a } from "./constants/events.constants.mjs";
|
|
58
|
+
import { APPROVE_FUNCTION_SIGNATURE as ha, NFT_APPROVE_FUNCTION_SIGNATURE as ka, NFT_APPROVE_SINGLE_FUNCTION_SIGNATURE as Na, PERMIT2_APPROVE_FUNCTION_SIGNATURE as ya } from "./constants/function-signatures.constants.mjs";
|
|
59
|
+
import { OKX_BASE_URL as Da, OKX_SWAP_PATH as La } from "./constants/okx.constants.mjs";
|
|
60
|
+
import { BANNED_WALLET_IDS as Ba } from "./constants/link.constant.mjs";
|
|
61
|
+
import { poseidonFunction as ba, poseidonHash as Ma, poseidonHolder as Fa } from "./crypto/poseidon.mjs";
|
|
62
|
+
import { babyJubInstance as Va, jubHolder as Wa } from "./crypto/babyJub.mjs";
|
|
63
|
+
import { preProcessing as wa } from "./crypto/preProcessing.mjs";
|
|
64
|
+
import { ValueCache as Ya } from "./data-structures/ValueCache/ValueCache.mjs";
|
|
65
|
+
import { abiDecodeUtxo as Xa, checkUtxoSignature as qa, decodeSolanaOnChainUtxo as Za, decodeUtxo as ja, decodeUtxoConstructorArgs as Ja, encodeSolanaOnChainUtxo as Qa, isSolanaOnChainUtxo as $a } from "./data-structures/crypto-keys/decodeUTXO.mjs";
|
|
66
|
+
import { decryptUtxo as on, decryptUtxoConstructorArgs as rn, encryptUtxo as tn } from "./data-structures/crypto-keys/encryptDecryptUtxo.mjs";
|
|
67
|
+
import { EncryptionKeyPairDefaultValue as nn, UserKeys as sn, stealthAddressCacheDevice as pn, stealthPairCacheDevice as cn } from "./data-structures/crypto-keys/keys.mjs";
|
|
68
|
+
import { getCircomSign as ln, isCircomNegative as fn } from "./data-structures/crypto-keys/keyUtils.mjs";
|
|
69
|
+
import { Hinkal as Sn } from "./data-structures/Hinkal/Hinkal.mjs";
|
|
70
|
+
import { hinkalDeposit as dn, hinkalDepositForOther as Tn } from "./data-structures/Hinkal/hinkalDeposit.mjs";
|
|
71
|
+
import { hinkalSwap as gn } from "./data-structures/Hinkal/hinkalSwap.mjs";
|
|
72
|
+
import { hinkalTransfer as In } from "./data-structures/Hinkal/hinkalTransfer.mjs";
|
|
73
|
+
import { hinkalWithdraw as Rn } from "./data-structures/Hinkal/hinkalWithdraw.mjs";
|
|
74
|
+
import { hinkalPrivateWallet as Cn } from "./data-structures/Hinkal/hinkalPrivateWallet.mjs";
|
|
75
|
+
import { resetMerkleTrees as kn } from "./data-structures/Hinkal/resetMerkleTrees.mjs";
|
|
76
|
+
import { hinkalProxySwap as yn } from "./data-structures/Hinkal/hinkalProxySwap.mjs";
|
|
77
|
+
import { getSolanaProxySwapSerializedTransaction as Dn, hinkalSolanaProxySwap as Ln } from "./data-structures/Hinkal/hinkalSolanaProxySwap.mjs";
|
|
78
|
+
import { getSolanaProxySendSerializedTransaction as Bn, hinkalSolanaProxySend as vn } from "./data-structures/Hinkal/hinkalSolanaProxySend.mjs";
|
|
79
|
+
import { getSolanaProxyShieldSerializedTransaction as Mn, hinkalSolanaProxyShield as Fn } from "./data-structures/Hinkal/hinkalSolanaProxyShield.mjs";
|
|
80
|
+
import { hinkalDepositAndWithdraw as Vn } from "./data-structures/Hinkal/hinkalDepositAndWithdraw.mjs";
|
|
81
|
+
import { hinkalWithdrawStuckUtxos as Hn } from "./data-structures/Hinkal/hinkalWithdrawStuckUtxos.mjs";
|
|
82
|
+
import { MerkleTree as Gn } from "./data-structures/merkle-tree/MerkleTree.mjs";
|
|
83
|
+
import { getPatchedAccessTokenMerkleTree as zn } from "./data-structures/merkle-tree/getPatchedAccessTokenMerkleTree.mjs";
|
|
84
|
+
import { MerkleTreeIncompleteError as qn } from "./data-structures/merkle-tree/MerkleTreeIncompleteError.mjs";
|
|
85
|
+
import { AbstractAccessTokenSnapshotService as jn } from "./data-structures/event-service/evm/AbstractAccessTokenSnapshotService.mjs";
|
|
86
|
+
import { AbstractCommitmentsSnapshotService as Qn } from "./data-structures/event-service/evm/AbstractCommitmentsSnapshotService.mjs";
|
|
87
|
+
import { AbstractApprovalsSnapshotService as ei } from "./data-structures/event-service/evm/AbstractApprovalsSnapshotService.mjs";
|
|
88
|
+
import { AbstractNullifierSnapshotService as ri } from "./data-structures/event-service/evm/AbstractNullifierSnapshotService.mjs";
|
|
89
|
+
import { AbstractSnapshotService as ai } from "./data-structures/event-service/evm/AbstractSnapshotService.mjs";
|
|
90
|
+
import { AbstractEventService as ii } from "./data-structures/event-service/evm/AbstractEventService.mjs";
|
|
91
|
+
import { BlockchainEventEmitter as pi } from "./data-structures/event-service/evm/BlockchainEventEmitter.mjs";
|
|
92
|
+
import { PollingBlockchainEventEmitter as mi } from "./data-structures/event-service/evm/PollingBlockchainEventEmitter.mjs";
|
|
93
|
+
import { ClientBlockchainEventEmitter as fi } from "./data-structures/event-service/evm/ClientBlockchainEventEmitter.mjs";
|
|
94
|
+
import { SolanaBlockchainEventEmitter as Si } from "./data-structures/event-service/solana/SolanaBlockchainEventEmitter.mjs";
|
|
95
|
+
import { ClientSolanaBlockchainEventEmitter as di } from "./data-structures/event-service/solana/ClientSolanaBlockchainEventEmitter.mjs";
|
|
96
|
+
import { PollingSolanaBlockchainEventEmitter as Ei } from "./data-structures/event-service/solana/PollingSolanaBlockchainEventEmitter.mjs";
|
|
97
|
+
import { AbstractSolanaEventService as ui } from "./data-structures/event-service/solana/AbstractSolanaEventService.mjs";
|
|
98
|
+
import { AbstractSolanaSnapshotService as Pi } from "./data-structures/event-service/solana/AbstractSolanaSnapshotService.mjs";
|
|
99
|
+
import { AbstractSolanaNullifierSnapshotService as _i } from "./data-structures/event-service/solana/AbstractSolanaNullifierSnapshotService.mjs";
|
|
100
|
+
import { AbstractSolanaCommitmentsSnapshotService as hi } from "./data-structures/event-service/solana/AbstractSolanaCommitmentsSnapshotService.mjs";
|
|
101
|
+
import { AbstractSolanaAccessTokenSnapshotService as Ni } from "./data-structures/event-service/solana/AbstractSolanaAccessTokenSnapshotService.mjs";
|
|
102
|
+
import { Utxo as Oi } from "./data-structures/utxo/Utxo.mjs";
|
|
103
|
+
import { customTokenRegistry as Li } from "./data-structures/custom-token-registry/CustomTokenRegistry.mjs";
|
|
104
|
+
import { TokenChecker as Bi } from "./data-structures/token-price-fetcher/TokenChecker.mjs";
|
|
105
|
+
import { TransactionType as bi } from "./data-structures/transactions-manager/history/history.types.mjs";
|
|
106
|
+
import { MultiThreadedUtxoUtils as Fi } from "./data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.mjs";
|
|
107
|
+
import { FileCacheDevice as Vi } from "./data-structures/cacheDevices/FileCacheDevice.mjs";
|
|
108
|
+
import { LocalStorageCacheDevice as Hi } from "./data-structures/cacheDevices/LocalStorageCacheDevice.mjs";
|
|
109
|
+
import { activityStorage as Gi } from "./data-structures/IndexedDB/activity-db.mjs";
|
|
110
|
+
import { publicBalancesStorage as zi } from "./data-structures/IndexedDB/balances-db.mjs";
|
|
111
|
+
import { privateBalancesStorage as qi } from "./data-structures/IndexedDB/private-balances-db.mjs";
|
|
112
|
+
import { pricesStorage as ji } from "./data-structures/IndexedDB/prices-db.mjs";
|
|
113
|
+
import { contactStorage as Qi } from "./data-structures/IndexedDB/contact-db.mjs";
|
|
114
|
+
import { signedMessagesStorage as es } from "./data-structures/IndexedDB/signatures-db.mjs";
|
|
115
|
+
import { PrivateTokensDB as rs, privateTokensDB as ts } from "./data-structures/TokenDBs/PrivateTokensDB.mjs";
|
|
116
|
+
import { PublicTokensDB as ns, publicTokensDB as is } from "./data-structures/TokenDBs/PublicTokensDB.mjs";
|
|
117
|
+
import { tokenVisibilityStorage as ps } from "./data-structures/TokenDBs/token-visibility-db.mjs";
|
|
118
|
+
import { ArcPublicTokensDB as ms, arcPublicTokensDB as ls } from "./data-structures/TokenDBs/ArcPublicTokensDB.mjs";
|
|
119
|
+
import { PresaleContractWrapper as xs } from "./data-structures/presale/PresaleContractWrapper.mjs";
|
|
120
|
+
import { SnapshotFetcherService as As } from "./data-structures/snapshot/SnapshotFetcherService.mjs";
|
|
121
|
+
import { ClientSolanaCommitmentsSnapshotService as Ts } from "./data-structures/snapshot/solana-snapshots/ClientSolanaCommitmentsSnapshotService.mjs";
|
|
122
|
+
import { ClientSolanaNullifierSnapshotService as gs } from "./data-structures/snapshot/solana-snapshots/ClientSolanaNullifierSnapshotService.mjs";
|
|
123
|
+
import { ClientSolanaAccessTokenSnapshotService as Is } from "./data-structures/snapshot/solana-snapshots/ClientSolanaAccessTokenSnapshotService.mjs";
|
|
124
|
+
import { ClientAccessTokenSnapshotService as Rs } from "./data-structures/snapshot/evm-snapshots/ClientAccessTokenSnapshotService.mjs";
|
|
125
|
+
import { ClientCommitmentsSnapshotService as Cs } from "./data-structures/snapshot/evm-snapshots/ClientCommitmentsSnapshotService.mjs";
|
|
126
|
+
import { ClientNullifierSnapshotService as ks } from "./data-structures/snapshot/evm-snapshots/ClientNullifierSnapshotService.mjs";
|
|
127
|
+
import { ClientApprovalsSnapshotService as ys } from "./data-structures/snapshot/evm-snapshots/ClientApprovalsSnapshotService.mjs";
|
|
128
|
+
import { httpClient as Ds } from "./data-structures/http/HttpClient.mjs";
|
|
129
|
+
import { BasicHttpClient as Us } from "./data-structures/http/BasicHttpClient.mjs";
|
|
130
|
+
import { EventsPublicApprovalsDB as vs, eventsPublicApprovalsDB as bs } from "./data-structures/ApprovalDBs/EventsPublicApprovalsDB.mjs";
|
|
131
|
+
import { publicBalanceWatcher as Fs } from "./data-structures/PublicBalance/PublicBalanceWatcher.mjs";
|
|
132
|
+
import { solanaPublicBalanceWatcher as Vs } from "./data-structures/PublicBalance/SolanaPublicBalancerWatcher.mjs";
|
|
133
|
+
import { BlockchainEvent as Hs } from "./data-structures/BlockchainEvent/BlockchainEvent.mjs";
|
|
134
|
+
import { AccountActions as Gs } from "./data-structures/AccountActions/AccountActions.mjs";
|
|
135
|
+
import { ErrorWithAmount as zs } from "./error-handling/customErrors/ErrorWithAmount.mjs";
|
|
136
|
+
import { FeeOverTransactionValueError as qs } from "./error-handling/customErrors/FeeOverTransactionValueError.mjs";
|
|
137
|
+
import { getGenericFeeOverTransactionValueErrorMessage as js, rethrowKnownGasErrorIfPossible as Js } from "./error-handling/customErrors/customErrors.helpers.mjs";
|
|
138
|
+
import { SimulationFailureError as $s } from "./error-handling/customErrors/SimulationFailureError.mjs";
|
|
139
|
+
import { ErrorWithRelayerTransaction as op } from "./error-handling/customErrors/ErrorWithTx.mjs";
|
|
140
|
+
import { UserFriendlyErrorCodes as tp, gasErrorCodes as ap, insufficientResourcesErrorCodes as np, transactionErrorCodes as ip, walletConnectErrorCodes as sp } from "./error-handling/error-codes.constants.mjs";
|
|
141
|
+
import { extractMessage as cp, getErrorMessage as mp, getErrorMessageFromSandboxRequest as lp } from "./error-handling/get-error.message.mjs";
|
|
142
|
+
import { logError as xp } from "./error-handling/logError.mjs";
|
|
143
|
+
import { ErrorCategory as Ap } from "./error-handling/types.mjs";
|
|
144
|
+
import { Logger as Tp } from "./error-handling/logger.mjs";
|
|
145
|
+
import { BabABI as gp, ERC1155ABI as up, ERC20ABI as Ip, ERC721ABI as Pp, GalxeABI as Rp, ISwapRouterABI as _p, factoryABI as Cp, quoterV2ABI as hp, transactionProverABI as kp } from "./externalABIs/index.mjs";
|
|
146
|
+
import { checkHinkalAccessToken as yp } from "./functions/web3/functionCalls/accessTokenCalls.mjs";
|
|
147
|
+
import { openPassportWindow as Dp } from "./functions/kyc/passportHelper.mjs";
|
|
148
|
+
import { openDefaultPassportWindow as Up } from "./functions/kyc/openDefaultPassportWindow.mjs";
|
|
149
|
+
import { absBigInt as vp, advancedToBigInt as bp, beepsToPercentage as Mp, bigintApplySugar as Fp, bigintMax as Kp, calculateAmountUsingBeeps as Vp, calculateBigIntSum as Wp, calculateSum as Hp, countTotalAmountInUtxos as wp, fixDecimalsAmount as Gp, formatAmountInput as Yp, getValueFirstNDigit as zp, maxBigInt as Xp, minBigInt as qp, toBigInt as Zp, toBigIntOrUndefined as jp, toCommaSeparatedNumberString as Jp, toInt as Qp, toNumberOrUndefined as $p, trimLeadingZeros as ec, truncateToDecimalPlaces as oc } from "./functions/utils/amounts.utils.mjs";
|
|
150
|
+
import { getFilePath as tc, getHinkalCache as ac, getInHinkalAddressesCache as nc, getInHinkalAddressesFilePath as ic, loadTxsCache as sc, resetCache as pc, resetInHinkalAddressesCache as cc, saveTxsCache as mc, setHinkalCache as lc, setInHinkalAddressesCache as fc } from "./functions/utils/cacheFunctions.mjs";
|
|
151
|
+
import { createCustomRpcProvider as Sc, createCustomSolanaConnection as Ac, createProvider as dc } from "./functions/utils/create-provider.mjs";
|
|
152
|
+
import { getExternalActionIdFromNumber as Ec, getExternalActionIdHash as gc } from "./functions/utils/external-action.utils.mjs";
|
|
153
|
+
import { aggregateTokenChanges as Ic, formatTokenChangesList as Pc, getERC20Token as Rc, getERC20TokenBySymbol as _c, getErc20TokensForChain as Cc, isArcNativeToken as hc, isNFTToken as kc, searchCompareFunction as Nc, sortTokens as yc } from "./functions/utils/erc20tokenFunctions.mjs";
|
|
154
|
+
import { requireEnv as Dc } from "./functions/utils/requireEnv.mjs";
|
|
155
|
+
import { getSequence as Uc, promisify as Bc, resolveSync as vc } from "./functions/utils/resolve-sync.utils.mjs";
|
|
156
|
+
import { convertIntegrationProviderToExternalActionId as Mc } from "./functions/utils/convertIntegrationProviderToExternalActionId.mjs";
|
|
157
|
+
import { getInteractionFromAction as Kc } from "./functions/pre-transaction/interaction-to-action.mjs";
|
|
158
|
+
import { outputUtxoProcessing as Wc } from "./functions/pre-transaction/outputUtxoProcessing.mjs";
|
|
159
|
+
import { processGasEstimates as wc } from "./functions/pre-transaction/process-gas-estimates.mjs";
|
|
160
|
+
import { getFlatFees as Yc } from "./functions/pre-transaction/getFlatFees.mjs";
|
|
161
|
+
import { outputApprovalDataProcessing as Xc } from "./functions/pre-transaction/outputApprovalDataProcessing.mjs";
|
|
162
|
+
import { modifyVolatileTokenAmountChanges as Zc } from "./functions/pre-transaction/getVolatileTransferAmount.mjs";
|
|
163
|
+
import { constructAdminData as Jc } from "./functions/pre-transaction/constructAdminData.mjs";
|
|
164
|
+
import { buildAnchorStealthAddressStructure as $c, encodeToByte32Array as em, getAccessTokenAccountPublicKey as om, getAccessTokenMerkleAccountPublicKey as rm, getAccessTokenStorageAccountPublicKey as tm, getEncryptedOutputsAccountPublicKey as am, getInstructionsAccountPublicKey as nm, getMerkleAccountPublicKey as im, getNullifierAccount as sm, getProofAccountPart1PublicKey as pm, getProofAccountPart2PublicKey as cm, getStorageAccountPublicKey as mm, getStorageVaultPublicKey as lm, getSwapperAccountPublicKey as fm, getSwapperAccountPublicKeyFromSalt as xm, getTokenLimitStorageAccountPublicKey as Sm } from "./functions/pre-transaction/solana.mjs";
|
|
165
|
+
import { createAndExtendAddressLookupTable as dm, getAddressLookupTableAccounts as Tm } from "./functions/pre-transaction/addressTableLookup.mjs";
|
|
166
|
+
import { convertSolanaPublicSignals as gm } from "./functions/pre-transaction/solana-public-signals.mjs";
|
|
167
|
+
import { convertOKXToHinkalInstructions as Im } from "./functions/pre-transaction/convert-okx-instructions.mjs";
|
|
168
|
+
import { ensureAtaExists as Rm, estimateComputeUnitLimit as _m, sendProxyV0Transaction as Cm, sendV0Transaction as hm, serializeProxyV0Transaction as km } from "./functions/pre-transaction/sendV0Transaction.mjs";
|
|
169
|
+
import { storeProof as ym } from "./functions/pre-transaction/store-proof.mjs";
|
|
170
|
+
import { sendInitNullifiersTransaction as Dm } from "./functions/pre-transaction/sendInitNullifiersTransaction.mjs";
|
|
171
|
+
import { initTokenLimitIfNeeded as Um } from "./functions/pre-transaction/initTokenLimitIfNeeded.mjs";
|
|
172
|
+
import { recipientUtxoProcessing as vm } from "./functions/pre-transaction/recipientUtxoProcessing.mjs";
|
|
173
|
+
import { storeInstructions as Mm } from "./functions/pre-transaction/store-instructions.mjs";
|
|
174
|
+
import { getNetworkObject as Km, getNetworkType as Vm } from "./functions/utils/evmNetworkFunctions.mjs";
|
|
175
|
+
import { browserSupported as Hm, walletSupported as wm } from "./functions/utils/userAgent.mjs";
|
|
176
|
+
import { decodeTxInput as Ym, deserializeDecodedTxs as zm, serializeDecodedTxs as Xm } from "./functions/utils/getDataFromTransaction.mjs";
|
|
177
|
+
import { reloadPage as Zm } from "./functions/utils/reloadPage.mjs";
|
|
178
|
+
import { capitalizeFirstLetter as Jm, capitalizeName as Qm, getAddressFromStateKey as $m, getChainIdFromStateKey as el, getStateKey as ol, hexToUtf8 as rl, isNullOrEmpty as tl, replaceAllInstances as al, toTitleCase as nl, validateEmail as il } from "./functions/utils/string.utils.mjs";
|
|
179
|
+
import { isNicknameValid as pl } from "./functions/utils/nickname.utils.mjs";
|
|
180
|
+
import { caseInsensitiveEqual as ml, lowerCaseIncludes as ll, lowerCaseStartsWith as fl } from "./functions/utils/caseInsensitive.utils.mjs";
|
|
181
|
+
import { formatDate as Sl, formatTxTimestamp as Al, getCurrentDayStart as dl, getCurrentTimeInSeconds as Tl, getCurrentWeekStart as El, getDelayUntilUtc8 as gl, getEffectiveSevenDaysAgo as ul, getEffectiveToday as Il, getNextDayDelay as Pl, getNextDayISO as Rl, getPreviousWeekStart as _l, msToISOString as Cl, waitLittle as hl } from "./functions/utils/time.utils.mjs";
|
|
182
|
+
import { createCacheDevice as Nl } from "./functions/utils/cacheDevice.utils.mjs";
|
|
183
|
+
import { debounce as Ol, wait as Dl } from "./functions/utils/process.utils.mjs";
|
|
184
|
+
import { getBlockExplorerUrl as Ul } from "./functions/utils/getBlockExplorerUrl.mjs";
|
|
185
|
+
import { uniswapWorkaround as vl } from "./functions/utils/involves-permit2-op.mjs";
|
|
186
|
+
import { checkAddressNotUpdated as Ml } from "./functions/utils/upToDateState.mjs";
|
|
187
|
+
import { CustomJSONParse as Kl, CustomJSONStringify as Vl } from "./functions/utils/serialize.utils.mjs";
|
|
188
|
+
import { isUseApprovalDataEmpty as Hl, padUseApprovalUtxoData as wl } from "./functions/utils/processUseApprovalUtxoData.mjs";
|
|
189
|
+
import { convertEmporiumOpToCallInfo as Yl } from "./functions/utils/convertEmporiumOpToCallInfo.mjs";
|
|
190
|
+
import { getRecipientInfoFromUserKeys as Xl } from "./functions/utils/getRecipientInfoFromUserKeys.mjs";
|
|
191
|
+
import { getPublicBalance as Zl, getPublicBalanceByTokenAddress as jl, getPublicBalancesOfTokens as Jl, getPublicTransactionCount as Ql, getSolanaPublicBalances as $l } from "./functions/utils/publicBalance.utils.mjs";
|
|
192
|
+
import { rpcIntEncode as of } from "./functions/utils/rpc-int-encode.mjs";
|
|
193
|
+
import { checkTokensForShielding as tf, isSameERC20Token as af, validateAndGetChainId as nf } from "./functions/utils/token-check.utils.mjs";
|
|
194
|
+
import { arraysMatch as pf } from "./functions/utils/arraysMatch.mjs";
|
|
195
|
+
import { constructStealthAddressStructure as mf, formatAddress as lf, hashEthereumAddress as ff, isValidPrivateAddress as xf, isValidSolanaPublicKey as Sf } from "./functions/utils/addresses.mjs";
|
|
196
|
+
import { trimFieldValues as df } from "./functions/utils/trimFieldValues.mjs";
|
|
197
|
+
import { hasEnoughBalance as Ef } from "./functions/utils/walletBalances.utils.mjs";
|
|
198
|
+
import { getChainBalanceFetchingMutex as uf } from "./functions/utils/mutexes.utils.mjs";
|
|
199
|
+
import { convertSolanaTransactionToRelayer as Pf, convertV6ReceiptToRelayer as Rf } from "./functions/utils/ethers-formatter.utils.mjs";
|
|
200
|
+
import { extractTokenIdsFromAssetChanges as Cf } from "./functions/utils/nftTokenFunctions.mjs";
|
|
201
|
+
import { encodeParsedInLogicMetadata as kf } from "./functions/utils/inLogicMetadata.mjs";
|
|
202
|
+
import { getNetworkName as yf } from "./functions/utils/networks.utils.mjs";
|
|
203
|
+
import { isValidUrl as Df } from "./functions/utils/is-valid-url.mjs";
|
|
204
|
+
import { postToOffscreen as Uf } from "./functions/utils/postToOffscreen.mjs";
|
|
205
|
+
import { getSignatureHeader as vf } from "./functions/utils/get-signature-header.mjs";
|
|
206
|
+
import { convertPublicKeyToBigint as Mf, formatMintAddress as Ff } from "./functions/utils/solanaMint.utils.mjs";
|
|
207
|
+
import { createSigner as Vf, createVoidSigner as Wf, createVoidSolanaWallet as Hf, prepareEthersProviderAdapter as wf, prepareHinkal as Gf, prepareHinkalFromSeedPhrases as Yf, prepareHinkalWithSignature as zf, prepareSolanaProviderAdapter as Xf } from "./functions/utils/prepareHinkal.mjs";
|
|
208
|
+
import { convertBigIntToBytes32 as Zf, convertBytes32ToBigInt as jf } from "./functions/utils/bytes32.utils.mjs";
|
|
209
|
+
import { getUtxosFromReceipt as Qf } from "./functions/utils/getUtxosFromReceipt.utils.mjs";
|
|
210
|
+
import { calculateTotalFee as ex, calculateWithdrawalAmount as ox, generateFeeStructure as rx, getGasTokenSymbols as tx } from "./functions/utils/fees.utils.mjs";
|
|
211
|
+
import { calculateDollarValue as nx, ethToWei as ix, getAmountInToken as sx, getAmountInWei as px, getAmountInWeiOrZero as cx, getAmountWithPrecision as mx, getAmountWithPrecisionOrZero as lx, randomBigInt as fx, toBigIntWithDecimals as xx } from "./functions/web3/etherFunctions.mjs";
|
|
212
|
+
import { attemptGetInputUtxosRemotely as Ax, getInputUtxoAndBalance as dx, getInputUtxoAndBalanceOfStuckUtxos as Tx, getInputUtxoAndBalancePerToken as Ex, getInputUtxosRemotely as gx } from "./functions/web3/events/getInputUtxoAndBalance.mjs";
|
|
213
|
+
import { addPaddingToUtxos as Ix, getShieldedBalance as Px } from "./functions/web3/events/getShieldedBalance.mjs";
|
|
214
|
+
import { getDepositEvents as _x, retrieveEvents as Cx } from "./functions/web3/events/web3RetrieveEvents.mjs";
|
|
215
|
+
import { balanceChangedHandler as kx } from "./functions/web3/events/balanceChangedHandler.mjs";
|
|
216
|
+
import { balanceChangedCustomHandler as yx } from "./functions/web3/events/balanceChangedCustomHandler.mjs";
|
|
217
|
+
import { getApprovedBalance as Dx, getApprovedUtxos as Lx, getApprovedUtxosForToken as Ux } from "./functions/web3/events/getApprovedBalance.mjs";
|
|
218
|
+
import { getTransactionLogEvents as vx } from "./functions/web3/events/getTransactionLogEvents.mjs";
|
|
219
|
+
import { getUniswapFee as Mx, getUniswapPrice as Fx, getUniswapPriceHelper as Kx, searchPoolAndFee as Vx } from "./functions/web3/uniswapAPI.mjs";
|
|
220
|
+
import { getOdosPrice as Hx } from "./functions/web3/odosAPI.mjs";
|
|
221
|
+
import { getOneInchPrice as Gx } from "./functions/web3/oneInchAPI.mjs";
|
|
222
|
+
import { getLifiPrice as zx } from "./functions/web3/lifiAPI.mjs";
|
|
223
|
+
import { createOKXQuote as qx, getOKXPrice as Zx } from "./functions/web3/okxAPI.mjs";
|
|
224
|
+
import { runContractFunction as Jx } from "./functions/web3/runContractFunction.mjs";
|
|
225
|
+
import { getTokenHolder as $x } from "./functions/web3/getTokenHolder.mjs";
|
|
226
|
+
import { decodeMessage as oS, getDecodedMessage as rS, getPermitInfo as tS } from "./functions/web3/EIP-712.mjs";
|
|
227
|
+
import { signAndSendSerializedTransaction as nS } from "./functions/web3/signAndSendSerializedTransaction.mjs";
|
|
228
|
+
import { groupConnectorsByWallet as sS, isInjectedConnector as pS, isMockConnector as cS, isSolanaConnector as mS } from "./functions/web3/connectors.utils.mjs";
|
|
229
|
+
import { solanaWalletToConnector as fS } from "./functions/web3/solana-wagmi-adapter.mjs";
|
|
230
|
+
import { hmacSha512 as SS } from "./functions/web3/crypto.mjs";
|
|
231
|
+
import { constructZkProof as dS } from "./functions/snarkjs/constructGeneralZkProof.mjs";
|
|
232
|
+
import { constructEmporiumProof as ES } from "./functions/snarkjs/constructEmporiumProof.mjs";
|
|
233
|
+
import { buildInNullifiers as uS, buildOutCommitments as IS, calcAccessTokenSiblingAndSidesFromAccessKey as PS, calcAccessTokenSiblingsAndSides as RS, calcAmountChanges as _S, calcCommitmentsSiblingAndSides as CS, calcEncryptedOutputs as hS, calcPublicSignalCount as kS, calcStealthAddressStructure as NS, createCallDataHash as yS, deserializeCircomData as OS, getSlippageValues as DS, serializeCircomData as LS } from "./functions/snarkjs/common.snarkjs.mjs";
|
|
234
|
+
import { generateZkProof as BS } from "./functions/snarkjs/generateZkProof.mjs";
|
|
235
|
+
import { constructSolanaZkProof as bS } from "./functions/snarkjs/constructSolanaZkProof.mjs";
|
|
236
|
+
import { checkEOAWithDelegation as FS, createApproveEmporiumOp as KS, createLifiBridgeOps as VS, createTransaferEmporiumOpsBatch as WS, createTransferToEmporiumOp as HS, emporiumOp as wS, encodeEmporiumMetadata as GS, generateFundAndApproveOps as YS, getAuthorizationDataIfNeeded as zS, recoverAuthorizationData as XS } from "./functions/private-wallet/emporium.helpers.mjs";
|
|
237
|
+
import { OpType as ZS, produceOp as jS } from "./functions/private-wallet/opProducer.mjs";
|
|
238
|
+
import { createSwapToEmporiumOpForUniswap as QS, createSwapToEmporiumOps as $S } from "./functions/private-wallet/emporium.swap.helpers.mjs";
|
|
239
|
+
import { RevokeType as oA } from "./types/approvals.types.mjs";
|
|
240
|
+
import { defaultHookData as tA, defaultHookDataArray as aA, defaultStealthAddressStructure as nA, emptyStealthAddressStructure as iA } from "./types/circom-data.types.mjs";
|
|
241
|
+
import { ContractType as pA } from "./types/ethereum-network.types.mjs";
|
|
242
|
+
import { ExternalActionId as mA } from "./types/external-action.types.mjs";
|
|
243
|
+
import { EventType as fA, HinkalLogicAction as xA, INTERACTION as SA, IntegrationProvider as AA, UserProgress as dA, defaultFeeStructure as TA, defaultHinkalLogicArgs as EA, defaultUseApprovalUTXOData as gA } from "./types/hinkal.types.mjs";
|
|
244
|
+
import { KycVerificationResult as IA, KycVerificationStatus as PA, Passports as RA, VERIFICATION_TYPE as _A, VerificationTypes as CA } from "./types/kyc.types.mjs";
|
|
245
|
+
import { ApprovalType as kA } from "./types/token.types.mjs";
|
|
246
|
+
import { SlippageType as yA } from "./types/slippage.types.mjs";
|
|
247
|
+
import { TransactionAction as DA, TransactionReceiptStatus as LA, TransactionStatus as UA, emptyDecodedTx as BA } from "./types/transactions.types.mjs";
|
|
248
|
+
import { OldPointType as bA, RafflePrizeType as MA } from "./types/rewards.types.mjs";
|
|
249
|
+
import { AdminTransactionType as KA } from "./types/admin.types.mjs";
|
|
250
|
+
import { ActivityStatus as WA, ActivityTypes as HA, DexProviders as wA, IntegrationProviderNames as GA, TokenChangeType as YA } from "./types/activities.types.mjs";
|
|
251
|
+
import { SandboxRequestType as XA } from "./types/sandbox.types.mjs";
|
|
252
|
+
import { PrivateBalanceUpdateType as ZA } from "./types/balances.types.mjs";
|
|
253
|
+
import { StorageKeys as JA } from "./types/cache.types.mjs";
|
|
254
|
+
import { TOKEN_PRICE_STATUS as $A, TokenPriceTimeframe as ed } from "./types/token-prices.types.mjs";
|
|
255
|
+
import { AchievementTiers as rd, BrotherhoodTaskTypes as td, TaskCategory as ad, TaskTypes as nd } from "./types/new-rewards.type.mjs";
|
|
256
|
+
import { MemberStatus as sd, Rank as pd } from "./types/RewardUserEnums.mjs";
|
|
257
|
+
import { PointsType as md, TradingType as ld } from "./types/generatePoints.mjs";
|
|
258
|
+
import { CallsStatus as xd, GetCallsStatusCode as Sd } from "./types/eip5792.types.mjs";
|
|
259
|
+
import { HttpMethod as dd } from "./types/routing.types.mjs";
|
|
260
|
+
import { ConfirmationRequestType as Ed } from "./types/confirmation-request.types.mjs";
|
|
261
|
+
import { MessagesFromOffscreen as ud } from "./types/offscreen.types.mjs";
|
|
262
|
+
import { ScheduledTransactionStatus as Pd } from "./types/scheduled-transactions.types.mjs";
|
|
263
|
+
import { MoonPayCurrencyType as _d } from "./types/onramp.types.mjs";
|
|
264
|
+
import { EventCategory as hd, SocketIOEvents as kd } from "./types/events.types.mjs";
|
|
265
|
+
import { resetStateMutex as yd } from "./mutexes/mutex.mjs";
|
|
266
|
+
import { getERC20Registry as Dd, getFixedRegistry as Ld } from "./constants/token-data/ERC20Registry.mjs";
|
|
267
|
+
import { PopularTokenSymbols as Bd } from "./constants/token-data/popularTokens.constants.mjs";
|
|
268
|
+
import { abi as bd } from "./externalABIs/amToken.mjs";
|
|
269
|
+
import { abi as Fd } from "./externalABIs/USDC.mjs";
|
|
270
|
+
import { abi as Vd } from "./externalABIs/DAI.mjs";
|
|
271
|
+
import { abi as Hd } from "./externalABIs/USDR.mjs";
|
|
272
|
+
import { abi as Gd } from "./externalABIs/USDR3CRV.mjs";
|
|
273
|
+
import { abi as zd } from "./externalABIs/USDT.mjs";
|
|
274
|
+
import { abi as qd } from "./externalABIs/WETH.mjs";
|
|
275
|
+
import { abi as jd } from "./externalABIs/BUSD.mjs";
|
|
276
|
+
import { abi as Qd } from "./externalABIs/SanctionsList.mjs";
|
|
277
|
+
import { default as eT } from "./externalABIs/OptimismGasPriceOracle.json.mjs";
|
|
278
|
+
import { default as rT } from "./externalABIs/NodeInterfaceABI.json.mjs";
|
|
269
279
|
export {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
280
|
+
Et as ACCESS_TOKEN_MINTING_POINTS,
|
|
281
|
+
gt as ACCESS_TOKEN_RECLAIM_POINTS,
|
|
282
|
+
da as ACHIEVEMENTS,
|
|
283
|
+
vo as AIPRISE_KYB_TEMPLATE_ID_PROD,
|
|
284
|
+
bo as AIPRISE_KYC_TEMPLATE_ID_PROD,
|
|
285
|
+
po as ALCHEMY_API_KEY,
|
|
286
|
+
co as ALCHEMY_TEST_KEY,
|
|
287
|
+
k as API,
|
|
288
|
+
Yo as API_CONFIG,
|
|
289
|
+
Zt as APPROVED_UTXO_CONVERSION_COUNT,
|
|
290
|
+
ha as APPROVE_FUNCTION_SIGNATURE,
|
|
291
|
+
ur as ARC_TESTNET_USDC_ADDRESS,
|
|
292
|
+
jn as AbstractAccessTokenSnapshotService,
|
|
293
|
+
ei as AbstractApprovalsSnapshotService,
|
|
294
|
+
Qn as AbstractCommitmentsSnapshotService,
|
|
295
|
+
ii as AbstractEventService,
|
|
296
|
+
ri as AbstractNullifierSnapshotService,
|
|
297
|
+
ai as AbstractSnapshotService,
|
|
298
|
+
Ni as AbstractSolanaAccessTokenSnapshotService,
|
|
299
|
+
hi as AbstractSolanaCommitmentsSnapshotService,
|
|
300
|
+
ui as AbstractSolanaEventService,
|
|
301
|
+
_i as AbstractSolanaNullifierSnapshotService,
|
|
302
|
+
Pi as AbstractSolanaSnapshotService,
|
|
303
|
+
Gs as AccountActions,
|
|
304
|
+
rd as AchievementTiers,
|
|
305
|
+
WA as ActivityStatus,
|
|
306
|
+
HA as ActivityTypes,
|
|
307
|
+
KA as AdminTransactionType,
|
|
308
|
+
bd as AmTokenABI,
|
|
309
|
+
kA as ApprovalType,
|
|
310
|
+
ms as ArcPublicTokensDB,
|
|
311
|
+
Ir as AssetChangeType,
|
|
312
|
+
Ba as BANNED_WALLET_IDS,
|
|
313
|
+
mo as BRIDGE_SUPPORTED_CHAINS,
|
|
314
|
+
ra as BRIDGING_URLS,
|
|
315
|
+
Ta as BROTHERHOOD_TASKS,
|
|
316
|
+
jd as BUSDABI,
|
|
317
|
+
gp as BabABI,
|
|
318
|
+
Us as BasicHttpClient,
|
|
319
|
+
Hs as BlockchainEvent,
|
|
320
|
+
pi as BlockchainEventEmitter,
|
|
321
|
+
td as BrotherhoodTaskTypes,
|
|
322
|
+
ut as CERTIFICATION_DISABLE_WEEK,
|
|
323
|
+
Pr as CIRCOM_MERKLE_LENGTH,
|
|
324
|
+
Rr as CIRCOM_P,
|
|
325
|
+
_r as CIRCOM_P_HALF,
|
|
326
|
+
rt as COINGECKO_API_KEY,
|
|
327
|
+
Cr as COMPUTE_UNIT_PADDING_PERCENTAGE,
|
|
328
|
+
xd as CallsStatus,
|
|
329
|
+
Rs as ClientAccessTokenSnapshotService,
|
|
330
|
+
ys as ClientApprovalsSnapshotService,
|
|
331
|
+
fi as ClientBlockchainEventEmitter,
|
|
332
|
+
Cs as ClientCommitmentsSnapshotService,
|
|
333
|
+
ks as ClientNullifierSnapshotService,
|
|
334
|
+
Is as ClientSolanaAccessTokenSnapshotService,
|
|
335
|
+
di as ClientSolanaBlockchainEventEmitter,
|
|
336
|
+
Ts as ClientSolanaCommitmentsSnapshotService,
|
|
337
|
+
gs as ClientSolanaNullifierSnapshotService,
|
|
338
|
+
tt as CoinGeckoChainLabels,
|
|
339
|
+
Ed as ConfirmationRequestType,
|
|
340
|
+
pA as ContractType,
|
|
341
|
+
Kl as CustomJSONParse,
|
|
342
|
+
Vl as CustomJSONStringify,
|
|
343
|
+
Ea as DAILY_TASKS,
|
|
344
|
+
zo as DATA_SERVER_CONFIG,
|
|
330
345
|
r as DATA_SERVER_URL,
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
Gn as
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
346
|
+
Xo as DATA_SERVER_URL_ENDPOINT,
|
|
347
|
+
qo as DATA_SERVER_URL_LOCAL,
|
|
348
|
+
pr as DEPLOYMENT_MODE,
|
|
349
|
+
wA as DexProviders,
|
|
350
|
+
hr as EIP1271_FAILURE,
|
|
351
|
+
kr as EIP1271_SUCCESS,
|
|
352
|
+
up as ERC1155ABI,
|
|
353
|
+
Ip as ERC20ABI,
|
|
354
|
+
Pp as ERC721ABI,
|
|
355
|
+
_a as EVENTS_INITIAL_BLOCKS,
|
|
356
|
+
nn as EncryptionKeyPairDefaultValue,
|
|
357
|
+
Ap as ErrorCategory,
|
|
358
|
+
zs as ErrorWithAmount,
|
|
359
|
+
op as ErrorWithRelayerTransaction,
|
|
360
|
+
lo as EthereumNetworkType,
|
|
361
|
+
hd as EventCategory,
|
|
362
|
+
fA as EventType,
|
|
363
|
+
vs as EventsPublicApprovalsDB,
|
|
364
|
+
mA as ExternalActionId,
|
|
365
|
+
qs as FeeOverTransactionValueError,
|
|
366
|
+
Vi as FileCacheDevice,
|
|
367
|
+
Rp as GalxeABI,
|
|
368
|
+
Sd as GetCallsStatusCode,
|
|
369
|
+
fo as HELIUS_RPC_URL,
|
|
370
|
+
Nr as HINKAL_DEPOSIT_AND_WITHDRAW_VARIABLE_RATE,
|
|
371
|
+
yr as HINKAL_PRIVATE_SEND_VARIABLE_RATE,
|
|
372
|
+
Or as HINKAL_SWAP_VARIABLE_RATE,
|
|
373
|
+
Sn as Hinkal,
|
|
374
|
+
xA as HinkalLogicAction,
|
|
375
|
+
dd as HttpMethod,
|
|
376
|
+
Ie as IMAGE_PATHS,
|
|
377
|
+
SA as INTERACTION,
|
|
378
|
+
_p as ISwapRouterABI,
|
|
379
|
+
AA as IntegrationProvider,
|
|
380
|
+
GA as IntegrationProviderNames,
|
|
381
|
+
IA as KycVerificationResult,
|
|
382
|
+
PA as KycVerificationStatus,
|
|
383
|
+
ma as LIFISCAN_URL,
|
|
384
|
+
Hi as LocalStorageCacheDevice,
|
|
385
|
+
Tp as Logger,
|
|
386
|
+
Dr as MAX_COMPUTE_UNIT_LIMIT,
|
|
387
|
+
ea as MAX_DISPLAY_DECIMALS,
|
|
388
|
+
Lr as MERKLE_LEVELS,
|
|
389
|
+
Ur as MICRO_LAMPORTS_PER_CU,
|
|
390
|
+
Br as MIN_COMPUTE_UNIT_LIMIT,
|
|
391
|
+
sd as MemberStatus,
|
|
392
|
+
Gn as MerkleTree,
|
|
393
|
+
qn as MerkleTreeIncompleteError,
|
|
394
|
+
ud as MessagesFromOffscreen,
|
|
395
|
+
_d as MoonPayCurrencyType,
|
|
396
|
+
Fi as MultiThreadedUtxoUtils,
|
|
397
|
+
wt as NATIVE_TOKEN_WRAPPER_ADDRESSES,
|
|
398
|
+
dt as NETWORKS,
|
|
399
|
+
vr as NFT_1155_TRANSACTION_TYPE,
|
|
400
|
+
br as NFT_721_TRANSACTION_TYPE,
|
|
401
|
+
ka as NFT_APPROVE_FUNCTION_SIGNATURE,
|
|
402
|
+
Na as NFT_APPROVE_SINGLE_FUNCTION_SIGNATURE,
|
|
403
|
+
Mr as NFT_TRANSACTION_TYPES,
|
|
404
|
+
Co as NON_NATIVE_GAS_COST_TOKEN_SYMBOL_OPTIONS,
|
|
405
|
+
rT as NodeInterfaceABI,
|
|
406
|
+
Da as OKX_BASE_URL,
|
|
407
|
+
La as OKX_SWAP_PATH,
|
|
408
|
+
bA as OldPointType,
|
|
409
|
+
ZS as OpType,
|
|
410
|
+
ya as PERMIT2_APPROVE_FUNCTION_SIGNATURE,
|
|
411
|
+
Zo as PLAYGROUND_URL,
|
|
412
|
+
ga as POINTS_BOOST_TASKS,
|
|
413
|
+
jo as PRODUCTION_URL,
|
|
414
|
+
RA as Passports,
|
|
415
|
+
md as PointsType,
|
|
416
|
+
mi as PollingBlockchainEventEmitter,
|
|
417
|
+
Ei as PollingSolanaBlockchainEventEmitter,
|
|
418
|
+
Bd as PopularTokenSymbols,
|
|
419
|
+
xs as PresaleContractWrapper,
|
|
420
|
+
ZA as PrivateBalanceUpdateType,
|
|
421
|
+
rs as PrivateTokensDB,
|
|
422
|
+
ns as PublicTokensDB,
|
|
423
|
+
Mo as RECLAIM_MESSAGE_TO_SIGN,
|
|
424
|
+
ua as REFERRAL_BONUS_TASK,
|
|
425
|
+
Fr as RELAYERS_ARRAY,
|
|
426
|
+
Kr as RELAYER_ADDRESS1,
|
|
427
|
+
Vr as RELAYER_ADDRESS2,
|
|
428
|
+
Wr as RELAYER_ADDRESS3,
|
|
429
|
+
Jo as RELAYER_CONFIG,
|
|
412
430
|
t as RELAYER_URL,
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
431
|
+
Qo as RELAYER_URL_ENDPOINT,
|
|
432
|
+
$o as RELAYER_URL_LOCAL,
|
|
433
|
+
It as REWARDS_ENCRYPTION_PASSWORD,
|
|
434
|
+
Pt as REWARDS_MESSAGE_TO_SIGN,
|
|
435
|
+
Ia as REWARDS_TASKS,
|
|
436
|
+
Rt as REWARD_RECEIVABLE_TOKEN_SYMBOLS,
|
|
437
|
+
MA as RafflePrizeType,
|
|
438
|
+
pd as Rank,
|
|
439
|
+
Fo as ReclaimPassports,
|
|
440
|
+
oA as RevokeType,
|
|
423
441
|
a as SERVER_URL,
|
|
424
|
-
|
|
425
|
-
|
|
442
|
+
er as SERVER_URL_ENDPOINT,
|
|
443
|
+
or as SERVER_URL_LOCAL,
|
|
426
444
|
n as SNAPSHOT_SERVER_URL,
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
445
|
+
rr as SNAPSHOT_SERVER_URL_ENDPOINT,
|
|
446
|
+
tr as SNAPSHOT_SERVER_URL_LOCAL,
|
|
447
|
+
Hr as SOLANA_NFT_INTERFACES,
|
|
448
|
+
wr as SOLANA_PUBLIC_INPUT_PART_ONE_LENGTH,
|
|
449
|
+
ar as STAGING_URL,
|
|
450
|
+
Gt as SWAP_FEE_TAKER_ADDRESSES,
|
|
451
|
+
Yt as SWAP_ROUTER_ADDRESSES,
|
|
452
|
+
XA as SandboxRequestType,
|
|
453
|
+
Pd as ScheduledTransactionStatus,
|
|
454
|
+
$s as SimulationFailureError,
|
|
455
|
+
yA as SlippageType,
|
|
456
|
+
As as SnapshotFetcherService,
|
|
457
|
+
kd as SocketIOEvents,
|
|
458
|
+
Si as SolanaBlockchainEventEmitter,
|
|
459
|
+
Ko as StandardPassports,
|
|
460
|
+
JA as StorageKeys,
|
|
461
|
+
Vo as SupportedPassports,
|
|
462
|
+
Jt as TOKEN_LIMITS,
|
|
463
|
+
$A as TOKEN_PRICE_STATUS,
|
|
464
|
+
Gr as TOKEN_VALUE_UNLIMITED_THRESHOLD,
|
|
465
|
+
Sa as TVL_CHANGER_ACTIVITY_TYPES,
|
|
466
|
+
ad as TaskCategory,
|
|
467
|
+
nd as TaskTypes,
|
|
468
|
+
YA as TokenChangeType,
|
|
469
|
+
Bi as TokenChecker,
|
|
470
|
+
ed as TokenPriceTimeframe,
|
|
471
|
+
Yr as TokenType,
|
|
472
|
+
ld as TradingType,
|
|
473
|
+
DA as TransactionAction,
|
|
474
|
+
LA as TransactionReceiptStatus,
|
|
475
|
+
UA as TransactionStatus,
|
|
476
|
+
bi as TransactionType,
|
|
477
|
+
aa as UNSUPPORTED_WALLETS_WALLETCONNECT_NAMES,
|
|
478
|
+
na as UNSUPPORTED_WALLET_IDS,
|
|
479
|
+
Fd as USDCABI,
|
|
480
|
+
Gd as USDR3CRVABI,
|
|
481
|
+
Hd as USDRABI,
|
|
482
|
+
zd as USDTABI,
|
|
483
|
+
tp as UserFriendlyErrorCodes,
|
|
484
|
+
sn as UserKeys,
|
|
485
|
+
dA as UserProgress,
|
|
486
|
+
Oi as Utxo,
|
|
487
|
+
nr as VERIFICATION_ROUTES,
|
|
488
|
+
_A as VERIFICATION_TYPE,
|
|
489
|
+
Ya as ValueCache,
|
|
490
|
+
CA as VerificationTypes,
|
|
491
|
+
y as WALLET_API,
|
|
492
|
+
xo as WALLET_SUPPORTED_CHAINS,
|
|
493
|
+
ir as WALLET_TASK_VERIFICATION_TYPES,
|
|
494
|
+
Pa as WELCOME_TASKS,
|
|
495
|
+
qd as WETHABI,
|
|
496
|
+
zt as WETH_ERC20_TOKEN_ADDRESS,
|
|
497
|
+
Xt as WRAPPER_TOKEN_EXCHANGE_ADDRESSES,
|
|
498
|
+
Xa as abiDecodeUtxo,
|
|
499
|
+
vp as absBigInt,
|
|
500
|
+
Gi as activityStorage,
|
|
501
|
+
Ix as addPaddingToUtxos,
|
|
502
|
+
Te as addTemporaryWalletNonce,
|
|
503
|
+
bp as advancedToBigInt,
|
|
504
|
+
Ic as aggregateTokenChanges,
|
|
505
|
+
Wo as aipriseBaseOnboardingProductionUrl,
|
|
506
|
+
Ho as aipriseBaseOnboardingSandboxUrl,
|
|
507
|
+
vt as allowanceHolder,
|
|
508
|
+
Ge as arbMainnetData,
|
|
509
|
+
Re as arbMainnetRegistry,
|
|
510
|
+
_e as arbMainnetRegistryFixed,
|
|
511
|
+
ls as arcPublicTokensDB,
|
|
512
|
+
ao as arcTestnetData,
|
|
513
|
+
Ce as arcTestnetRegistry,
|
|
514
|
+
pf as arraysMatch,
|
|
515
|
+
Ax as attemptGetInputUtxosRemotely,
|
|
516
|
+
Qe as avalancheData,
|
|
517
|
+
he as avalancheRegistry,
|
|
518
|
+
ke as avalancheRegistryFixed,
|
|
519
|
+
Va as babyJubInstance,
|
|
520
|
+
yx as balanceChangedCustomHandler,
|
|
521
|
+
kx as balanceChangedHandler,
|
|
522
|
+
eo as baseData,
|
|
523
|
+
Ne as baseRegistry,
|
|
524
|
+
ye as baseRegistryFixed,
|
|
525
|
+
Mp as beepsToPercentage,
|
|
526
|
+
Fp as bigintApplySugar,
|
|
527
|
+
Kp as bigintMax,
|
|
528
|
+
Dt as blockReorgDepth,
|
|
529
|
+
He as bnbMainnetData,
|
|
530
|
+
Oe as bnbMainnetRegistry,
|
|
531
|
+
De as bnbMainnetRegistryFixed,
|
|
532
|
+
_t as boostAmounts,
|
|
533
|
+
Hm as browserSupported,
|
|
534
|
+
$c as buildAnchorStealthAddressStructure,
|
|
535
|
+
uS as buildInNullifiers,
|
|
536
|
+
IS as buildOutCommitments,
|
|
537
|
+
PS as calcAccessTokenSiblingAndSidesFromAccessKey,
|
|
538
|
+
RS as calcAccessTokenSiblingsAndSides,
|
|
539
|
+
_S as calcAmountChanges,
|
|
540
|
+
CS as calcCommitmentsSiblingAndSides,
|
|
541
|
+
hS as calcEncryptedOutputs,
|
|
542
|
+
kS as calcPublicSignalCount,
|
|
543
|
+
NS as calcStealthAddressStructure,
|
|
544
|
+
Vp as calculateAmountUsingBeeps,
|
|
545
|
+
Wp as calculateBigIntSum,
|
|
546
|
+
nx as calculateDollarValue,
|
|
547
|
+
Hp as calculateSum,
|
|
548
|
+
ex as calculateTotalFee,
|
|
549
|
+
ox as calculateWithdrawalAmount,
|
|
531
550
|
F as callLifiAPI,
|
|
532
551
|
f as callOneInchAPI,
|
|
533
552
|
S as callRelayerSolanaTransactBatchAPI,
|
|
534
553
|
A as callRelayerTransactAPI,
|
|
535
554
|
d as callRelayerTransactBatchAPI,
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
555
|
+
Jm as capitalizeFirstLetter,
|
|
556
|
+
Qm as capitalizeName,
|
|
557
|
+
ml as caseInsensitiveEqual,
|
|
558
|
+
So as chainIds,
|
|
559
|
+
Ao as chainIdsByType,
|
|
560
|
+
Ml as checkAddressNotUpdated,
|
|
561
|
+
FS as checkEOAWithDelegation,
|
|
562
|
+
yp as checkHinkalAccessToken,
|
|
544
563
|
R as checkRisk,
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
564
|
+
tf as checkTokensForShielding,
|
|
565
|
+
qa as checkUtxoSignature,
|
|
566
|
+
at as coingeckoPriceUrl,
|
|
567
|
+
nt as coingeckoPriceUrl2,
|
|
568
|
+
it as coingeckoTokenListUrl,
|
|
569
|
+
Jc as constructAdminData,
|
|
570
|
+
ES as constructEmporiumProof,
|
|
571
|
+
bS as constructSolanaZkProof,
|
|
572
|
+
mf as constructStealthAddressStructure,
|
|
573
|
+
dS as constructZkProof,
|
|
574
|
+
Qi as contactStorage,
|
|
575
|
+
No as contractMetadataMapping,
|
|
576
|
+
Zf as convertBigIntToBytes32,
|
|
577
|
+
jf as convertBytes32ToBigInt,
|
|
578
|
+
Yl as convertEmporiumOpToCallInfo,
|
|
579
|
+
Mc as convertIntegrationProviderToExternalActionId,
|
|
580
|
+
Im as convertOKXToHinkalInstructions,
|
|
581
|
+
Mf as convertPublicKeyToBigint,
|
|
582
|
+
gm as convertSolanaPublicSignals,
|
|
583
|
+
Pf as convertSolanaTransactionToRelayer,
|
|
584
|
+
Rf as convertV6ReceiptToRelayer,
|
|
585
|
+
wp as countTotalAmountInUtxos,
|
|
586
|
+
dm as createAndExtendAddressLookupTable,
|
|
587
|
+
KS as createApproveEmporiumOp,
|
|
569
588
|
w as createBrotherhood,
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
Ja as
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
589
|
+
Nl as createCacheDevice,
|
|
590
|
+
yS as createCallDataHash,
|
|
591
|
+
Sc as createCustomRpcProvider,
|
|
592
|
+
Ac as createCustomSolanaConnection,
|
|
593
|
+
VS as createLifiBridgeOps,
|
|
594
|
+
qx as createOKXQuote,
|
|
595
|
+
dc as createProvider,
|
|
596
|
+
Vf as createSigner,
|
|
597
|
+
QS as createSwapToEmporiumOpForUniswap,
|
|
598
|
+
$S as createSwapToEmporiumOps,
|
|
599
|
+
WS as createTransaferEmporiumOpsBatch,
|
|
600
|
+
HS as createTransferToEmporiumOp,
|
|
601
|
+
Wf as createVoidSigner,
|
|
602
|
+
Hf as createVoidSolanaWallet,
|
|
603
|
+
Li as customTokenRegistry,
|
|
604
|
+
Vd as daiABI,
|
|
605
|
+
Ol as debounce,
|
|
606
|
+
oS as decodeMessage,
|
|
607
|
+
Za as decodeSolanaOnChainUtxo,
|
|
608
|
+
Ym as decodeTxInput,
|
|
609
|
+
ja as decodeUtxo,
|
|
610
|
+
Ja as decodeUtxoConstructorArgs,
|
|
611
|
+
on as decryptUtxo,
|
|
612
|
+
rn as decryptUtxoConstructorArgs,
|
|
613
|
+
TA as defaultFeeStructure,
|
|
614
|
+
ho as defaultFeeToken,
|
|
615
|
+
EA as defaultHinkalLogicArgs,
|
|
616
|
+
tA as defaultHookData,
|
|
617
|
+
aA as defaultHookDataArray,
|
|
618
|
+
zr as defaultSignatureData,
|
|
619
|
+
nA as defaultStealthAddressStructure,
|
|
620
|
+
gA as defaultUseApprovalUTXOData,
|
|
601
621
|
xe as deleteUnspentUtxos,
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
622
|
+
cr as deploymentMode,
|
|
623
|
+
OS as deserializeCircomData,
|
|
624
|
+
zm as deserializeDecodedTxs,
|
|
605
625
|
G as editBrotherhood,
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
626
|
+
wS as emporiumOp,
|
|
627
|
+
BA as emptyDecodedTx,
|
|
628
|
+
iA as emptyStealthAddressStructure,
|
|
629
|
+
GS as encodeEmporiumMetadata,
|
|
630
|
+
kf as encodeParsedInLogicMetadata,
|
|
631
|
+
Qa as encodeSolanaOnChainUtxo,
|
|
632
|
+
em as encodeToByte32Array,
|
|
633
|
+
tn as encryptUtxo,
|
|
634
|
+
Rm as ensureAtaExists,
|
|
635
|
+
_m as estimateComputeUnitLimit,
|
|
636
|
+
ze as ethMainnetData,
|
|
637
|
+
Le as ethMainnetRegistry,
|
|
638
|
+
Ue as ethMainnetRegistryFixed,
|
|
639
|
+
ix as ethToWei,
|
|
640
|
+
Xr as ethVolatileAddress,
|
|
641
|
+
bs as eventsPublicApprovalsDB,
|
|
642
|
+
cp as extractMessage,
|
|
643
|
+
Cf as extractTokenIdsFromAssetChanges,
|
|
644
|
+
Cp as factoryABI,
|
|
645
|
+
Gp as fixDecimalsAmount,
|
|
646
|
+
lf as formatAddress,
|
|
647
|
+
Yp as formatAmountInput,
|
|
648
|
+
Sl as formatDate,
|
|
649
|
+
Ff as formatMintAddress,
|
|
650
|
+
Pc as formatTokenChangesList,
|
|
651
|
+
Al as formatTxTimestamp,
|
|
652
|
+
ap as gasErrorCodes,
|
|
633
653
|
V as generateAumPoints,
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
654
|
+
rx as generateFeeStructure,
|
|
655
|
+
YS as generateFundAndApproveOps,
|
|
656
|
+
W as generateTradingPoints,
|
|
657
|
+
BS as generateZkProof,
|
|
658
|
+
om as getAccessTokenAccountPublicKey,
|
|
659
|
+
rm as getAccessTokenMerkleAccountPublicKey,
|
|
660
|
+
tm as getAccessTokenStorageAccountPublicKey,
|
|
661
|
+
$m as getAddressFromStateKey,
|
|
662
|
+
Tm as getAddressLookupTableAccounts,
|
|
663
|
+
sx as getAmountInToken,
|
|
664
|
+
px as getAmountInWei,
|
|
665
|
+
cx as getAmountInWeiOrZero,
|
|
666
|
+
mx as getAmountWithPrecision,
|
|
667
|
+
lx as getAmountWithPrecisionOrZero,
|
|
668
|
+
Dx as getApprovedBalance,
|
|
669
|
+
Lx as getApprovedUtxos,
|
|
670
|
+
Ux as getApprovedUtxosForToken,
|
|
671
|
+
zS as getAuthorizationDataIfNeeded,
|
|
672
|
+
Ul as getBlockExplorerUrl,
|
|
651
673
|
Y as getBrotherhood,
|
|
652
674
|
z as getBrotherhoodUsers,
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
675
|
+
uf as getChainBalanceFetchingMutex,
|
|
676
|
+
el as getChainIdFromStateKey,
|
|
677
|
+
ln as getCircomSign,
|
|
678
|
+
st as getCoinByAddress,
|
|
679
|
+
pt as getCoinById,
|
|
680
|
+
ct as getCoinMarketChartByTokenId,
|
|
681
|
+
mt as getCoingeckoIdForNativeTokens,
|
|
682
|
+
lt as getCoingeckoPlatform,
|
|
661
683
|
s as getCoingeckoPrice,
|
|
662
684
|
p as getCoingeckoPrice2,
|
|
663
685
|
c as getCoingeckoPrices,
|
|
664
686
|
m as getCoingeckoTokenList,
|
|
665
|
-
|
|
666
|
-
|
|
687
|
+
dl as getCurrentDayStart,
|
|
688
|
+
Tl as getCurrentTimeInSeconds,
|
|
667
689
|
X as getCurrentUserBrotherhood,
|
|
668
690
|
q as getCurrentUserBrotherhoodUsers,
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
Fp as getHinkalCache,
|
|
691
|
+
El as getCurrentWeekStart,
|
|
692
|
+
rS as getDecodedMessage,
|
|
693
|
+
gl as getDelayUntilUtc8,
|
|
694
|
+
_x as getDepositEvents,
|
|
695
|
+
Dd as getERC20Registry,
|
|
696
|
+
Rc as getERC20Token,
|
|
697
|
+
_c as getERC20TokenBySymbol,
|
|
698
|
+
ul as getEffectiveSevenDaysAgo,
|
|
699
|
+
Il as getEffectiveToday,
|
|
700
|
+
am as getEncryptedOutputsAccountPublicKey,
|
|
701
|
+
Cc as getErc20TokensForChain,
|
|
702
|
+
mp as getErrorMessage,
|
|
703
|
+
lp as getErrorMessageFromSandboxRequest,
|
|
704
|
+
Ec as getExternalActionIdFromNumber,
|
|
705
|
+
gc as getExternalActionIdHash,
|
|
706
|
+
tc as getFilePath,
|
|
707
|
+
Ld as getFixedRegistry,
|
|
708
|
+
Yc as getFlatFees,
|
|
709
|
+
E as getGasEstimates,
|
|
710
|
+
tx as getGasTokenSymbols,
|
|
711
|
+
js as getGenericFeeOverTransactionValueErrorMessage,
|
|
712
|
+
ac as getHinkalCache,
|
|
692
713
|
$ as getHinkalLandingURL,
|
|
693
|
-
|
|
714
|
+
yo as getHinkalParameters,
|
|
694
715
|
C as getIdleRelay,
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
716
|
+
nc as getInHinkalAddressesCache,
|
|
717
|
+
ic as getInHinkalAddressesFilePath,
|
|
718
|
+
dx as getInputUtxoAndBalance,
|
|
719
|
+
Tx as getInputUtxoAndBalanceOfStuckUtxos,
|
|
720
|
+
Ex as getInputUtxoAndBalancePerToken,
|
|
721
|
+
gx as getInputUtxosRemotely,
|
|
722
|
+
nm as getInstructionsAccountPublicKey,
|
|
723
|
+
Kc as getInteractionFromAction,
|
|
724
|
+
zx as getLifiPrice,
|
|
725
|
+
im as getMerkleAccountPublicKey,
|
|
726
|
+
yf as getNetworkName,
|
|
727
|
+
Km as getNetworkObject,
|
|
728
|
+
Vm as getNetworkType,
|
|
729
|
+
Pl as getNextDayDelay,
|
|
730
|
+
Rl as getNextDayISO,
|
|
731
|
+
To as getNonLocalhostChainId,
|
|
732
|
+
sm as getNullifierAccount,
|
|
733
|
+
Zx as getOKXPrice,
|
|
734
|
+
Hx as getOdosPrice,
|
|
735
|
+
Gx as getOneInchPrice,
|
|
736
|
+
zn as getPatchedAccessTokenMerkleTree,
|
|
737
|
+
tS as getPermitInfo,
|
|
738
|
+
_l as getPreviousWeekStart,
|
|
739
|
+
pm as getProofAccountPart1PublicKey,
|
|
740
|
+
cm as getProofAccountPart2PublicKey,
|
|
741
|
+
Zl as getPublicBalance,
|
|
742
|
+
jl as getPublicBalanceByTokenAddress,
|
|
743
|
+
Jl as getPublicBalancesOfTokens,
|
|
723
744
|
Z as getPublicBrotherhoods,
|
|
724
|
-
|
|
725
|
-
|
|
745
|
+
Ql as getPublicTransactionCount,
|
|
746
|
+
Xl as getRecipientInfoFromUserKeys,
|
|
726
747
|
ee as getRewardsURL,
|
|
727
748
|
le as getScheduledTransactions,
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
749
|
+
Uc as getSequence,
|
|
750
|
+
Px as getShieldedBalance,
|
|
751
|
+
vf as getSignatureHeader,
|
|
752
|
+
DS as getSlippageValues,
|
|
753
|
+
Bn as getSolanaProxySendSerializedTransaction,
|
|
754
|
+
Mn as getSolanaProxyShieldSerializedTransaction,
|
|
755
|
+
Dn as getSolanaProxySwapSerializedTransaction,
|
|
756
|
+
$l as getSolanaPublicBalances,
|
|
757
|
+
ol as getStateKey,
|
|
758
|
+
mm as getStorageAccountPublicKey,
|
|
759
|
+
lm as getStorageVaultPublicKey,
|
|
760
|
+
fm as getSwapperAccountPublicKey,
|
|
761
|
+
xm as getSwapperAccountPublicKeyFromSalt,
|
|
762
|
+
Ee as getTemporaryWalletNonces,
|
|
763
|
+
$x as getTokenHolder,
|
|
764
|
+
Sm as getTokenLimitStorageAccountPublicKey,
|
|
743
765
|
u as getTokenPreviousDayPrices,
|
|
744
766
|
I as getTokenPrices,
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
767
|
+
Qt as getTokensLimits,
|
|
768
|
+
vx as getTransactionLogEvents,
|
|
769
|
+
Mx as getUniswapFee,
|
|
770
|
+
Fx as getUniswapPrice,
|
|
771
|
+
Kx as getUniswapPriceHelper,
|
|
750
772
|
Se as getUnspentUtxos,
|
|
751
|
-
|
|
752
|
-
|
|
773
|
+
Qf as getUtxosFromReceipt,
|
|
774
|
+
zp as getValueFirstNDigit,
|
|
753
775
|
oe as getWalletOnboardingURL,
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
776
|
+
sS as groupConnectorsByWallet,
|
|
777
|
+
Ef as hasEnoughBalance,
|
|
778
|
+
ff as hashEthereumAddress,
|
|
779
|
+
rl as hexToUtf8,
|
|
780
|
+
dn as hinkalDeposit,
|
|
781
|
+
Vn as hinkalDepositAndWithdraw,
|
|
782
|
+
Tn as hinkalDepositForOther,
|
|
783
|
+
Cn as hinkalPrivateWallet,
|
|
784
|
+
yn as hinkalProxySwap,
|
|
785
|
+
qr as hinkalSimulationAddress,
|
|
786
|
+
vn as hinkalSolanaProxySend,
|
|
787
|
+
Fn as hinkalSolanaProxyShield,
|
|
788
|
+
Ln as hinkalSolanaProxySwap,
|
|
789
|
+
gn as hinkalSwap,
|
|
790
|
+
In as hinkalTransfer,
|
|
791
|
+
Rn as hinkalWithdraw,
|
|
792
|
+
Hn as hinkalWithdrawStuckUtxos,
|
|
793
|
+
SS as hmacSha512,
|
|
794
|
+
Ds as httpClient,
|
|
795
|
+
Um as initTokenLimitIfNeeded,
|
|
796
|
+
np as insufficientResourcesErrorCodes,
|
|
797
|
+
hc as isArcNativeToken,
|
|
798
|
+
fn as isCircomNegative,
|
|
799
|
+
mr as isDevelopment,
|
|
800
|
+
lr as isExtension,
|
|
801
|
+
pS as isInjectedConnector,
|
|
802
|
+
Eo as isLocalNetwork,
|
|
803
|
+
cS as isMockConnector,
|
|
804
|
+
kc as isNFTToken,
|
|
805
|
+
pl as isNicknameValid,
|
|
806
|
+
fr as isNode,
|
|
807
|
+
xr as isNotClientProduction,
|
|
808
|
+
Sr as isNotProduction,
|
|
809
|
+
tl as isNullOrEmpty,
|
|
810
|
+
go as isOptimismLike,
|
|
811
|
+
Ar as isPlayground,
|
|
812
|
+
af as isSameERC20Token,
|
|
813
|
+
dr as isSandbox,
|
|
814
|
+
mS as isSolanaConnector,
|
|
815
|
+
uo as isSolanaLike,
|
|
816
|
+
$a as isSolanaOnChainUtxo,
|
|
817
|
+
Tr as isStaging,
|
|
818
|
+
Hl as isUseApprovalDataEmpty,
|
|
819
|
+
xf as isValidPrivateAddress,
|
|
820
|
+
Sf as isValidSolanaPublicKey,
|
|
821
|
+
Df as isValidUrl,
|
|
822
|
+
Er as isWebpack,
|
|
800
823
|
j as joinBrotherhood,
|
|
801
|
-
|
|
824
|
+
Wa as jubHolder,
|
|
802
825
|
J as leaveBrotherhood,
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
id as resetStateMutex,
|
|
826
|
+
sc as loadTxsCache,
|
|
827
|
+
ro as localhostData,
|
|
828
|
+
Io as localhostNetwork,
|
|
829
|
+
Be as localhostRegistry,
|
|
830
|
+
xp as logError,
|
|
831
|
+
ll as lowerCaseIncludes,
|
|
832
|
+
fl as lowerCaseStartsWith,
|
|
833
|
+
Ct as lpLink,
|
|
834
|
+
ht as lpProgramStartWeek,
|
|
835
|
+
Xp as maxBigInt,
|
|
836
|
+
Ut as mediaUrls,
|
|
837
|
+
qp as minBigInt,
|
|
838
|
+
Zc as modifyVolatileTokenAmountChanges,
|
|
839
|
+
Cl as msToISOString,
|
|
840
|
+
Po as networkRegistry,
|
|
841
|
+
fa as oauthUrls,
|
|
842
|
+
Zr as oneInchZeroAddress,
|
|
843
|
+
Up as openDefaultPassportWindow,
|
|
844
|
+
Dp as openPassportWindow,
|
|
845
|
+
qe as optimismData,
|
|
846
|
+
eT as optimismGasPriceOracleAbi,
|
|
847
|
+
ve as optimismRegistry,
|
|
848
|
+
be as optimismRegistryFixed,
|
|
849
|
+
Xc as outputApprovalDataProcessing,
|
|
850
|
+
Wc as outputUtxoProcessing,
|
|
851
|
+
jr as ownerPublicKey,
|
|
852
|
+
wl as padUseApprovalUtxoData,
|
|
853
|
+
bt as pancaceSwapPermit2Address,
|
|
854
|
+
Mt as permit2Address,
|
|
855
|
+
Jr as permitSignatureValidFor,
|
|
856
|
+
kt as pointsLink,
|
|
857
|
+
je as polygonData,
|
|
858
|
+
Me as polygonRegistry,
|
|
859
|
+
Fe as polygonRegistryFixed,
|
|
860
|
+
ba as poseidonFunction,
|
|
861
|
+
Ma as poseidonHash,
|
|
862
|
+
Fa as poseidonHolder,
|
|
863
|
+
Uf as postToOffscreen,
|
|
864
|
+
wa as preProcessing,
|
|
865
|
+
wf as prepareEthersProviderAdapter,
|
|
866
|
+
Gf as prepareHinkal,
|
|
867
|
+
Yf as prepareHinkalFromSeedPhrases,
|
|
868
|
+
zf as prepareHinkalWithSignature,
|
|
869
|
+
Xf as prepareSolanaProviderAdapter,
|
|
870
|
+
sa as presaleABI,
|
|
871
|
+
pa as presaleContractInfoByChain,
|
|
872
|
+
ji as pricesStorage,
|
|
873
|
+
qi as privateBalancesStorage,
|
|
874
|
+
ts as privateTokensDB,
|
|
875
|
+
ft as proCoingeckoUrl,
|
|
876
|
+
xt as proHeader,
|
|
877
|
+
wc as processGasEstimates,
|
|
878
|
+
jS as produceOp,
|
|
879
|
+
Bc as promisify,
|
|
880
|
+
Fs as publicBalanceWatcher,
|
|
881
|
+
zi as publicBalancesStorage,
|
|
882
|
+
is as publicTokensDB,
|
|
883
|
+
hp as quoterV2ABI,
|
|
884
|
+
Nt as raffleProgramStartWeek,
|
|
885
|
+
fx as randomBigInt,
|
|
886
|
+
vm as recipientUtxoProcessing,
|
|
887
|
+
XS as recoverAuthorizationData,
|
|
888
|
+
yt as referralLink,
|
|
889
|
+
Zm as reloadPage,
|
|
890
|
+
ge as removeTemporaryWalletNonce,
|
|
891
|
+
al as replaceAllInstances,
|
|
892
|
+
Dc as requireEnv,
|
|
893
|
+
pc as resetCache,
|
|
894
|
+
cc as resetInHinkalAddressesCache,
|
|
895
|
+
kn as resetMerkleTrees,
|
|
896
|
+
yd as resetStateMutex,
|
|
875
897
|
te as resolveSns,
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
898
|
+
vc as resolveSync,
|
|
899
|
+
Js as rethrowKnownGasErrorIfPossible,
|
|
900
|
+
Cx as retrieveEvents,
|
|
879
901
|
O as rpcGetStorageChanges,
|
|
880
|
-
|
|
902
|
+
of as rpcIntEncode,
|
|
881
903
|
D as rpcSimulateBundle,
|
|
882
904
|
L as rpcSimulateTransaction,
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
905
|
+
Jx as runContractFunction,
|
|
906
|
+
Qd as sanctionsListABI,
|
|
907
|
+
mc as saveTxsCache,
|
|
908
|
+
St as searchBySymbol,
|
|
909
|
+
Nc as searchCompareFunction,
|
|
910
|
+
Vx as searchPoolAndFee,
|
|
889
911
|
ne as seedlessBackup,
|
|
890
912
|
ie as seedlessCheckPassword,
|
|
891
913
|
se as seedlessInit,
|
|
892
914
|
pe as seedlessSalt,
|
|
893
915
|
ce as seedlessStatus,
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
916
|
+
Dm as sendInitNullifiersTransaction,
|
|
917
|
+
Cm as sendProxyV0Transaction,
|
|
918
|
+
hm as sendV0Transaction,
|
|
919
|
+
LS as serializeCircomData,
|
|
920
|
+
Xm as serializeDecodedTxs,
|
|
921
|
+
km as serializeProxyV0Transaction,
|
|
922
|
+
lc as setHinkalCache,
|
|
923
|
+
fc as setInHinkalAddressesCache,
|
|
924
|
+
nS as signAndSendSerializedTransaction,
|
|
925
|
+
Qr as signaturePhrase,
|
|
926
|
+
es as signedMessagesStorage,
|
|
905
927
|
U as simulateTx,
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
928
|
+
Ro as solanaChainIdStr,
|
|
929
|
+
io as solanaData,
|
|
930
|
+
Ke as solanaLocalnetRegistry,
|
|
931
|
+
Ve as solanaMainnetRegistry,
|
|
932
|
+
$r as solanaNativeAddress,
|
|
933
|
+
Vs as solanaPublicBalanceWatcher,
|
|
934
|
+
fS as solanaWalletToConnector,
|
|
935
|
+
yc as sortTokens,
|
|
936
|
+
pn as stealthAddressCacheDevice,
|
|
937
|
+
cn as stealthPairCacheDevice,
|
|
938
|
+
Mm as storeInstructions,
|
|
939
|
+
ym as storeProof,
|
|
917
940
|
Ae as storeUnspentUtxos,
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
941
|
+
wo as supportedPassportLinks,
|
|
942
|
+
B as tenderlyRpcLinks,
|
|
943
|
+
Zp as toBigInt,
|
|
944
|
+
jp as toBigIntOrUndefined,
|
|
945
|
+
xx as toBigIntWithDecimals,
|
|
946
|
+
Jp as toCommaSeparatedNumberString,
|
|
947
|
+
Qp as toInt,
|
|
948
|
+
$p as toNumberOrUndefined,
|
|
949
|
+
nl as toTitleCase,
|
|
950
|
+
ps as tokenVisibilityStorage,
|
|
951
|
+
b as tokensInfoCall,
|
|
952
|
+
ip as transactionErrorCodes,
|
|
953
|
+
kp as transactionProverABI,
|
|
954
|
+
df as trimFieldValues,
|
|
955
|
+
ec as trimLeadingZeros,
|
|
956
|
+
oc as truncateToDecimalPlaces,
|
|
957
|
+
Ft as uniswap2Manager,
|
|
958
|
+
Kt as uniswap3Manager,
|
|
959
|
+
Vt as uniswapApprovalExtraCallData,
|
|
960
|
+
Oo as uniswapV2PoolData,
|
|
961
|
+
Do as uniswapV3FactoryData,
|
|
962
|
+
Lo as uniswapV3PoolData,
|
|
963
|
+
Uo as uniswapV3QuoterData,
|
|
964
|
+
vl as uniswapWorkaround,
|
|
965
|
+
Wt as uniswapWorkaroundAddresses,
|
|
966
|
+
nf as validateAndGetChainId,
|
|
967
|
+
il as validateEmail,
|
|
968
|
+
Dl as wait,
|
|
969
|
+
hl as waitLittle,
|
|
970
|
+
sp as walletConnectErrorCodes,
|
|
971
|
+
wm as walletSupported,
|
|
972
|
+
et as zeroAddress
|
|
950
973
|
};
|