@hinkal/common 0.2.3 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/deploy-data/deploy-data-optimism.json.cjs +1 -1
- package/constants/deploy-data/deploy-data-optimism.json.mjs +12 -8
- package/constants/token-data/bnbMainnetRegistry.json.cjs +1 -1
- package/constants/token-data/bnbMainnetRegistry.json.mjs +8 -8
- package/constants/token-data/bnbMainnetRegistryFixed.json.cjs +1 -1
- package/constants/token-data/bnbMainnetRegistryFixed.json.mjs +8 -8
- package/constants/token-data/ethMainnetRegistry.json.cjs +1 -1
- package/constants/token-data/ethMainnetRegistry.json.mjs +11 -11
- package/constants/token-data/ethMainnetRegistryFixed.json.cjs +1 -1
- package/constants/token-data/ethMainnetRegistryFixed.json.mjs +11 -11
- package/constants/token-data/localhostRegistry.json.cjs +1 -1
- package/constants/token-data/localhostRegistry.json.mjs +11 -11
- package/functions/private-wallet/emporium.helpers.cjs +1 -1
- package/functions/private-wallet/emporium.helpers.d.ts +8 -3
- package/functions/private-wallet/emporium.helpers.mjs +23 -11
- package/functions/private-wallet/index.d.ts +1 -0
- package/functions/private-wallet/opProducer.cjs +1 -1
- package/functions/private-wallet/opProducer.mjs +1 -1
- package/functions/private-wallet/smartContractWalletCalculator.cjs +1 -0
- package/functions/private-wallet/smartContractWalletCalculator.d.ts +1 -0
- package/functions/private-wallet/smartContractWalletCalculator.mjs +20 -0
- package/functions/utils/string.utils.cjs +1 -1
- package/functions/utils/string.utils.d.ts +1 -0
- package/functions/utils/string.utils.mjs +16 -6
- package/index.cjs +1 -1
- package/index.mjs +208 -205
- package/package.json +1 -1
- package/types/ethereum-network.types.d.ts +2 -0
package/index.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import { checkRisk as C } from "./API/checkRisk.mjs";
|
|
|
10
10
|
import { getIdleRelay as E } from "./API/relayCalls.mjs";
|
|
11
11
|
import { API as b } from "./API/API.mjs";
|
|
12
12
|
import { getCurvePools as v, getCurvePoolsforPriceFetching as L, getExtendedPoolInfo as w, lpTokens as _, lpTokensToBasePool as F } from "./API/callCurveAPI.mjs";
|
|
13
|
-
import { getRelayerURL as
|
|
13
|
+
import { getRelayerURL as M } from "./API/getRelayerURL.mjs";
|
|
14
14
|
import { getPublicWalletBalance as N } from "./API/duneAPI.mjs";
|
|
15
15
|
import { IMAGE_PATHS as V } from "./constants/assets.constants.mjs";
|
|
16
16
|
import { urlForBeefyVaultTokens as H, urlForBeefyVaultTotalInUSD as G, urlForRegularTokenPricesInBeefy as K } from "./constants/token-data/tokenPricing.consts.mjs";
|
|
@@ -35,7 +35,7 @@ import { default as he } from "./constants/deploy-data/deploy-data-bnbMainnet.js
|
|
|
35
35
|
import { default as De } from "./constants/deploy-data/deploy-data-arbMainnet.json.mjs";
|
|
36
36
|
import { default as Le } from "./constants/deploy-data/deploy-data-ethMainnet.json.mjs";
|
|
37
37
|
import { default as _e } from "./constants/deploy-data/deploy-data-optimism.json.mjs";
|
|
38
|
-
import { default as
|
|
38
|
+
import { default as Ue } from "./constants/deploy-data/deploy-data-polygon.json.mjs";
|
|
39
39
|
import { default as Be } from "./constants/deploy-data/deploy-data-avalanche.json.mjs";
|
|
40
40
|
import { default as Oe } from "./constants/deploy-data/deploy-data-base.json.mjs";
|
|
41
41
|
import { default as We } from "./constants/deploy-data/deploy-data-localhost.json.mjs";
|
|
@@ -45,13 +45,13 @@ import { EthereumNetworkType as Ze, chainIds as qe, chainIdsByType as Qe, crossC
|
|
|
45
45
|
import { HINKAL_EXTERNAL_ACTION_FEE as ir, HINKAL_UNIVERSAL_FEE as sr, getAmountAfterRelayAndFlatFees as nr, getAmountAfterRelayAndFlatFeesAndSlippage as pr, getAmountAfterRelayFee as mr, getAmountAfterSlippage as lr, getAmountWithoutFee as fr, getHinkalFeeRateInBeeps as cr, getRelayFee as dr, getSlippageFee as xr } from "./constants/fees.constants.mjs";
|
|
46
46
|
import { contractMetadataMapping as Ar, getHinkalParameters as ur, uniswapV2PoolData as yr, uniswapV3FactoryData as Rr, uniswapV3PoolData as Tr, uniswapV3QuoterData as Pr } from "./constants/contracts.constants.mjs";
|
|
47
47
|
import { AIPRISE_KYB_TEMPLATE_ID_PROD as Sr, AIPRISE_KYC_TEMPLATE_ID_PROD as Cr, RECLAIM_MESSAGE_TO_SIGN as Ir, ReclaimPassports as Er, StandardPassports as hr, SupportedPassports as br, aipriseBaseOnboardingProductionUrl as Dr, aipriseBaseOnboardingSandboxUrl as vr, supportedPassportLinks as Lr } from "./constants/kyc.constants.mjs";
|
|
48
|
-
import { API_CONFIG as _r, DATA_SERVER_CONFIG as Fr, DATA_SERVER_PORT as
|
|
48
|
+
import { API_CONFIG as _r, DATA_SERVER_CONFIG as Fr, DATA_SERVER_PORT as Ur, DATA_SERVER_URL_LOCAL as Mr, DATA_SERVER_URL_PRODUCTION as Br, PLAYGROUND_RELAYER_URLS as Nr, PLAYGROUND_SERVER_URLS as Or, PLAYGROUND_URL as Vr, RELAYER_CONFIG as Wr, RELAYER_URLS as Hr, SERVER_URLS as Gr, STAGING_RELAYER_URLS as Kr, STAGING_SERVER_URLS as Yr, STAGING_URL as zr } from "./constants/server.constants.mjs";
|
|
49
49
|
import { DEPLOYMENT_MODE as qr, deploymentMode as Qr, isDevelopment as jr, isNode as Xr, isNotClientProduction as Jr, isNotProduction as $r, isPlayground as eo, isStaging as ro, isWebpack as oo } from "./constants/vite.constants.mjs";
|
|
50
50
|
import { CIRCOM_P as ao, CIRCOM_P_HALF as io, beefyChainIds as so, crvSymbol as no, curveWithdrawGasTokenAddress as po, curveZeroAddress as mo, cvxSymbol as lo, ethVolatileAddress as fo, oneInchZeroAddress as co, ownerPublicKey as xo, permitSignatureValidFor as go, signaturePhrase as Ao, threePoolSymbol as uo, zeroAddress as yo } from "./constants/protocol.constants.mjs";
|
|
51
51
|
import { COINGECKO_API_KEY as To, CoinGeckoChainLabels as Po, coingeckoPriceUrl as ko, coingeckoPriceUrl2 as So, coingeckoTokenListUrl as Co, getCoingeckoIdForNativeTokens as Io, getCoingeckoPlatform as Eo, proCoingeckoUrl as ho, proHeader as bo } from "./constants/coingecko.constants.mjs";
|
|
52
52
|
import { AxelarRegistry as vo } from "./constants/axelar.constants.mjs";
|
|
53
53
|
import { NETWORKS as wo, getGasStationUrl as _o } from "./constants/backend.constants.mjs";
|
|
54
|
-
import { arbMainnetCrvCvxRegistry as
|
|
54
|
+
import { arbMainnetCrvCvxRegistry as Uo, avalancheCrvCvxRegistry as Mo, baseCrvCvxRegistry as Bo, ethCrvCvxRegistry as No, getCrvCvxWithChainId as Oo, optimismCrvCvxRegistry as Vo, polygonCrvCvxRegistry as Wo } from "./constants/crvCvx.registry.mjs";
|
|
55
55
|
import { getCalcTokenAmountWithDynamicArray as Go } from "./constants/crvDynamic.registry.mjs";
|
|
56
56
|
import { ethSymbol as Yo, lidoStEthContractAddress as zo, lidoStMaticAddress as Zo, lidoStakeManagerAddress as qo, lidoWithdrawalQueueERC721Address as Qo, lidoWstEthContractAddress as jo, maticSymbol as Xo, poLidoNftAddress as Jo, stMaticSymbol as $o, wstEthSymbol as et } from "./constants/lido.constants.mjs";
|
|
57
57
|
import { ACCESS_TOKEN_MINTING_POINTS as ot, CERTIFICATION_DISABLE_WEEK as tt, REWARD_RECEIVABLE_TOKEN_SYMBOLS as at, RafflePrizePoints as it, boostAmounts as st, lpLink as nt, lpProgramStartWeek as pt, pointsLink as mt, raffleProgramStartWeek as lt, referralLink as ft } from "./constants/rewards.constants.mjs";
|
|
@@ -61,7 +61,7 @@ import { arbPendleRegistry as yt, bnbPendleRegistry as Rt, ethPendleRegistry as
|
|
|
61
61
|
import { poseidonFunction as ht, poseidonHash as bt, poseidonHolder as Dt } from "./crypto/poseidon.mjs";
|
|
62
62
|
import { babyJubInstance as Lt, jubHolder as wt } from "./crypto/babyJub.mjs";
|
|
63
63
|
import { preProcessing as Ft } from "./crypto/preProcessing.mjs";
|
|
64
|
-
import { ValueCache as
|
|
64
|
+
import { ValueCache as Mt } from "./data-structures/ValueCache/ValueCache.mjs";
|
|
65
65
|
import { abiDecodeUtxo as Nt, checkUtxoSignature as Ot, decodeUtxo as Vt, decodeUtxoConstructorArgs as Wt } from "./data-structures/crypto-keys/decodeUTXO.mjs";
|
|
66
66
|
import { decryptUtxo as Gt, decryptUtxoConstructorArgs as Kt, encryptUtxo as Yt } from "./data-structures/crypto-keys/encryptDecryptUtxo.mjs";
|
|
67
67
|
import { EncryptionKeyPairDefaultValue as Zt, UserKeys as qt } from "./data-structures/crypto-keys/keys.mjs";
|
|
@@ -84,7 +84,7 @@ import { AbstractCommitmentsSnapshotService as ba } from "./data-structures/even
|
|
|
84
84
|
import { AbstractNullifierSnapshotService as va } from "./data-structures/event-service/AbstractNullifierSnapshotService.mjs";
|
|
85
85
|
import { AbstractSnapshotService as wa } from "./data-structures/event-service/AbstractSnapshotService.mjs";
|
|
86
86
|
import { AbstractEventService as Fa } from "./data-structures/event-service/AbstractEventService.mjs";
|
|
87
|
-
import { Utxo as
|
|
87
|
+
import { Utxo as Ma } from "./data-structures/utxo/Utxo.mjs";
|
|
88
88
|
import { customTokenRegistry as Na } from "./data-structures/custom-token-registry/CustomTokenRegistry.mjs";
|
|
89
89
|
import { TokenChecker as Va } from "./data-structures/token-price-fetcher/TokenChecker.mjs";
|
|
90
90
|
import { TransactionsManager as Ha } from "./data-structures/transactions-manager/TransactionsManager.mjs";
|
|
@@ -109,7 +109,7 @@ import { abi as bi } from "./externalABIs/DAI.mjs";
|
|
|
109
109
|
import { abi as vi } from "./externalABIs/ERC20.json.mjs";
|
|
110
110
|
import { abi as wi } from "./externalABIs/IQuoterV2.json.mjs";
|
|
111
111
|
import { abi as Fi } from "./externalABIs/IUniswapV3Factory.json.mjs";
|
|
112
|
-
import { abi as
|
|
112
|
+
import { abi as Mi } from "./externalABIs/SanctionsList.mjs";
|
|
113
113
|
import { abi as Ni } from "./externalABIs/USDC.mjs";
|
|
114
114
|
import { abi as Vi } from "./externalABIs/USDR.mjs";
|
|
115
115
|
import { abi as Hi } from "./externalABIs/USDR3CRV.mjs";
|
|
@@ -129,7 +129,7 @@ import { default as xs } from "./externalABIs/OptimismGasPriceOracle.json.mjs";
|
|
|
129
129
|
import { checkHinkalAccessToken as As, mintAccessToken as us, mintTokenCrossChain as ys } from "./functions/web3/functionCalls/accessTokenCalls.mjs";
|
|
130
130
|
import { openPassportWindow as Ts } from "./functions/kyc/passportHelper.mjs";
|
|
131
131
|
import { openDefaultPassportWindow as ks } from "./functions/kyc/openDefaultPassportWindow.mjs";
|
|
132
|
-
import { absBigInt as Cs, beepsToPercentage as Is, bigintApplySugar as Es, bigintMax as hs, calculateAmountUsingBeeps as bs, calculateSum as Ds, fixDecimalsAmount as vs, getValueFirstNDigit as Ls, minBigInt as ws, toBigInt as _s, toBigIntOrUndefined as Fs, toCommaSeparatedNumberString as
|
|
132
|
+
import { absBigInt as Cs, beepsToPercentage as Is, bigintApplySugar as Es, bigintMax as hs, calculateAmountUsingBeeps as bs, calculateSum as Ds, fixDecimalsAmount as vs, getValueFirstNDigit as Ls, minBigInt as ws, toBigInt as _s, toBigIntOrUndefined as Fs, toCommaSeparatedNumberString as Us, toInt as Ms, toNumberOrUndefined as Bs, trimLeadingZeros as Ns, truncateTo18DecimalPlaces as Os } from "./functions/utils/amounts.utils.mjs";
|
|
133
133
|
import { getFilePath as Ws, getHinkalCache as Hs, loadTxsCache as Gs, resetCache as Ks, saveTxsCache as Ys, setHinkalCache as zs } from "./functions/utils/cacheFunctions.mjs";
|
|
134
134
|
import { createProvider as qs } from "./functions/utils/create-provider.mjs";
|
|
135
135
|
import { decodeMetadata as js, getActionFromMetadata as Xs, getExternalActionIdFromNumber as Js, getExternalActionIdHash as $s, getExternalMetadataHash as en } from "./functions/utils/external-action.utils.mjs";
|
|
@@ -145,49 +145,50 @@ import { getFlatFees as Sn } from "./functions/pre-transaction/getFlatFees.mjs";
|
|
|
145
145
|
import { getNetworkObject as In, getNetworkType as En } from "./functions/utils/evmNetworkFunctions.mjs";
|
|
146
146
|
import { getAxelarMigrationInfo as bn } from "./functions/utils/axelar.utils.mjs";
|
|
147
147
|
import { browserSupported as vn, walletSupported as Ln } from "./functions/utils/userAgent.mjs";
|
|
148
|
-
import { decodeTxInput as _n, decodeTxLogs as Fn, deserializeDecodedTxs as
|
|
148
|
+
import { decodeTxInput as _n, decodeTxLogs as Fn, deserializeDecodedTxs as Un, serializeDecodedTxs as Mn } from "./functions/utils/getDataFromTransaction.mjs";
|
|
149
149
|
import { reloadPage as Nn } from "./functions/utils/reloadPage.mjs";
|
|
150
|
-
import { capitalizeFirstLetter as Vn,
|
|
151
|
-
import { isNicknameValid as
|
|
152
|
-
import { caseInsensitiveEqual as
|
|
153
|
-
import { waitLittle as
|
|
154
|
-
import { patchRegistry as
|
|
155
|
-
import { createCacheDevice as
|
|
156
|
-
import { debounce as
|
|
157
|
-
import { calculateDollarValue as
|
|
158
|
-
import { getInputUtxoAndBalance as
|
|
159
|
-
import { addPaddingToUtxos as
|
|
160
|
-
import { getDepositEvents as
|
|
161
|
-
import { balanceChangedHandler as
|
|
162
|
-
import { getUniswapFee as
|
|
163
|
-
import { getOdosPrice as
|
|
164
|
-
import { getOneInchPrice as
|
|
150
|
+
import { capitalizeFirstLetter as Vn, hexToUtf8 as Wn, isNullOrEmpty as Hn, toTitleCase as Gn } from "./functions/utils/string.utils.mjs";
|
|
151
|
+
import { isNicknameValid as Yn } from "./functions/utils/nickname.utils.mjs";
|
|
152
|
+
import { caseInsensitiveEqual as Zn, lowerCaseIncludes as qn, lowerCaseStartsWith as Qn } from "./functions/utils/caseInsensitive.utils.mjs";
|
|
153
|
+
import { waitLittle as Xn } from "./functions/utils/time.utils.mjs";
|
|
154
|
+
import { patchRegistry as $n } from "./functions/utils/volatile-patcher.utils.mjs";
|
|
155
|
+
import { createCacheDevice as rp } from "./functions/utils/cacheDevice.utils.mjs";
|
|
156
|
+
import { debounce as tp, wait as ap } from "./functions/utils/process.utils.mjs";
|
|
157
|
+
import { calculateDollarValue as sp, ethToWei as np, getAmountInToken as pp, getAmountInWei as mp, getAmountInWeiOrZero as lp, getAmountWithPrecision as fp, getAmountWithPrecisionOrZero as cp, randomBigInt as dp, toBigIntWithDecimals as xp } from "./functions/web3/etherFunctions.mjs";
|
|
158
|
+
import { getInputUtxoAndBalance as Ap, getInputUtxosFromEncryptedOutputs as up } from "./functions/web3/events/getInputUtxoAndBalance.mjs";
|
|
159
|
+
import { addPaddingToUtxos as Rp, getShieldedBalance as Tp } from "./functions/web3/events/getShieldedBalance.mjs";
|
|
160
|
+
import { getDepositEvents as kp, retrieveEvents as Sp } from "./functions/web3/events/web3RetrieveEvents.mjs";
|
|
161
|
+
import { balanceChangedHandler as Ip } from "./functions/web3/events/balanceChangedHandler.mjs";
|
|
162
|
+
import { getUniswapFee as hp, getUniswapPrice as bp, getUniswapPriceHelper as Dp, searchPoolAndFee as vp } from "./functions/web3/uniswapAPI.mjs";
|
|
163
|
+
import { getOdosPrice as wp } from "./functions/web3/odosAPI.mjs";
|
|
164
|
+
import { getOneInchPrice as Fp } from "./functions/web3/oneInchAPI.mjs";
|
|
165
165
|
import { runContractFunction as Mp } from "./functions/web3/runContractFunction.mjs";
|
|
166
|
-
import { constructZkProof as
|
|
167
|
-
import { constructEmporiumProof as
|
|
168
|
-
import { buildInNullifiers as
|
|
169
|
-
import { generateZkProof as
|
|
170
|
-
import { getCRV as
|
|
171
|
-
import { getCVX as
|
|
172
|
-
import { determinePendleSwapType as
|
|
173
|
-
import { calculateStakeNullifier as
|
|
174
|
-
import { emporiumOp as
|
|
175
|
-
import { OpType as
|
|
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 {
|
|
166
|
+
import { constructZkProof as Np } from "./functions/snarkjs/constructGeneralZkProof.mjs";
|
|
167
|
+
import { constructEmporiumProof as Vp } from "./functions/snarkjs/constructEmporiumProof.mjs";
|
|
168
|
+
import { buildInNullifiers as Hp, buildOutCommitments as Gp, calcAccessTokenSiblingsAndSides as Kp, calcAmountChanges as Yp, calcCommitmentsSiblingAndSides as zp, calcEncryptedOutputs as Zp, calcPublicSignalCount as qp, calcStealthAddressStructure as Qp, createCallDataHash as jp, deserializeCircomData as Xp, serializeCircomData as Jp } from "./functions/snarkjs/common.snarkjs.mjs";
|
|
169
|
+
import { generateZkProof as em } from "./functions/snarkjs/generateZkProof.mjs";
|
|
170
|
+
import { getCRV as om } from "./functions/protocols/curve.protocols.mjs";
|
|
171
|
+
import { getCVX as am } from "./functions/protocols/convex.protocols.mjs";
|
|
172
|
+
import { determinePendleSwapType as sm, determinePendleSwapTypeApiRoute as nm, erc20TokenFromPendleAsset as pm, getAssetTypeFromPendleMarket as mm, getTokenIndexForPendleFlatFee as lm } from "./functions/protocols/pendle.helpers.mjs";
|
|
173
|
+
import { calculateStakeNullifier as cm, createStakeCommitment as dm, decryptStake as xm, encodeHStakeMetadata as gm, encryptStake as Am } from "./functions/staking/index.mjs";
|
|
174
|
+
import { emporiumOp as ym, encodeEmporiumMetadata as Rm } from "./functions/private-wallet/emporium.helpers.mjs";
|
|
175
|
+
import { OpType as Pm, produceOp as km } from "./functions/private-wallet/opProducer.mjs";
|
|
176
|
+
import { calculateSmartContractWalletAddress as Cm } from "./functions/private-wallet/smartContractWalletCalculator.mjs";
|
|
177
|
+
import { dataBeefyApiConfig as Em, isBeefyDeposit as hm } from "./types/beefy.types.mjs";
|
|
178
|
+
import { defaultHookData as Dm, defaultHookDataArray as vm, defaultStealthAddressStructure as Lm, emptyStealthAddressStructure as wm } from "./types/circom-data.types.mjs";
|
|
179
|
+
import { ContractType as Fm } from "./types/ethereum-network.types.mjs";
|
|
180
|
+
import { ExternalActionId as Mm } from "./types/external-action.types.mjs";
|
|
181
|
+
import { BeefyAction as Nm, ConvexAction as Om, CurveAction as Vm, EventType as Wm, HinkalStakeAction as Hm, INTERACTION as Gm, IntegrationProvider as Km, LidoAction as Ym, LidoVariant as zm, PendleAction as Zm, PendleLPAction as qm, StakeProvider as Qm, VolatileAction as jm } from "./types/hinkal.types.mjs";
|
|
182
|
+
import { KycVerificationResult as Jm, KycVerificationStatus as $m, Passports as el, VERIFICATION_TYPE as rl, VerificationTypes as ol } from "./types/kyc.types.mjs";
|
|
183
|
+
import { ApprovalType as al } from "./types/token.types.mjs";
|
|
184
|
+
import { SlippageType as sl, slippageLevels as nl } from "./types/slippage.types.mjs";
|
|
185
|
+
import { emptyDecodedTx as ml } from "./types/transactions.types.mjs";
|
|
186
|
+
import { MONTHS as fl, dayInMilliseconds as cl, divideMonthOnIntervals as dl, getCurrentWeek as xl, getDateFromWeek as gl, getNextDay as Al, getWeekTimestamps as ul, hasCertificationPeriodExpired as yl, hourInMilliseconds as Rl, isWeekCurrent as Tl, minuteInMilliseconds as Pl, parseWeek as kl, secondInMilliseconds as Sl, toDateString as Cl, weekInMilliseconds as Il } from "./types/time.types.mjs";
|
|
187
|
+
import { BonusType as hl, CertifyType as bl, LP_TIER as Dl, PaymentStatus as vl, PointType as Ll, RafflePrizeType as wl, RewardPage as _l, RewardsHistoryDistribution as Fl, RewardsHistoryEligibility as Ul, RewardsHistorySnapshots as Ml, RewardsHistoryStatuses as Bl, RewardsPageTabs as Nl, TIER_LEVEL as Ol, Timeline as Vl, emptyUserPointsBreakdown as Wl, emptyUserPointsResponse as Hl } from "./types/rewards.types.mjs";
|
|
188
|
+
import { PendleAssetType as Kl, PendleChains as Yl, PendleDashboardTabs as zl, PendleEarnTabs as Zl, PendleMarketTransactionTypes as ql, PendlePoolManualTabs as Ql, PendlePoolTabs as jl, PendlePoolZapTabs as Xl, PendleSwapType as Jl, PendleTabs as $l, PendleTradeGeneralTabs as ef, PendleTradeTabs as rf } from "./types/pendle.types.mjs";
|
|
189
|
+
import { StatType as tf, UpperTabPossibleValues as af, curveNetworkNames as sf, curvePools as nf } from "./types/curve.types.mjs";
|
|
190
|
+
import { HinkalStakeMode as mf } from "./types/hinkal.stake.types.mjs";
|
|
191
|
+
import { AdminActionType as ff, AdminDetailedActionType as cf } from "./types/admin.types.mjs";
|
|
191
192
|
export {
|
|
192
193
|
ot as ACCESS_TOKEN_MINTING_POINTS,
|
|
193
194
|
Sr as AIPRISE_KYB_TEMPLATE_ID_PROD,
|
|
@@ -199,107 +200,107 @@ export {
|
|
|
199
200
|
Fa as AbstractEventService,
|
|
200
201
|
va as AbstractNullifierSnapshotService,
|
|
201
202
|
wa as AbstractSnapshotService,
|
|
202
|
-
|
|
203
|
-
|
|
203
|
+
ff as AdminActionType,
|
|
204
|
+
cf as AdminDetailedActionType,
|
|
204
205
|
yi as AmTokenABI,
|
|
205
|
-
|
|
206
|
+
al as ApprovalType,
|
|
206
207
|
vo as AxelarRegistry,
|
|
207
208
|
ki as BUSDABI,
|
|
208
209
|
ls as BabABI,
|
|
209
|
-
|
|
210
|
+
Nm as BeefyAction,
|
|
210
211
|
Ti as BeefyVaultABI,
|
|
211
|
-
|
|
212
|
+
hl as BonusType,
|
|
212
213
|
tt as CERTIFICATION_DISABLE_WEEK,
|
|
213
214
|
ao as CIRCOM_P,
|
|
214
215
|
io as CIRCOM_P_HALF,
|
|
215
216
|
To as COINGECKO_API_KEY,
|
|
216
|
-
|
|
217
|
+
bl as CertifyType,
|
|
217
218
|
Po as CoinGeckoChainLabels,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
Fm as ContractType,
|
|
220
|
+
Om as ConvexAction,
|
|
221
|
+
Vm as CurveAction,
|
|
221
222
|
Ci as CurveReadingWrapperABI,
|
|
222
223
|
Ei as CurveWrappedMainPoolABI,
|
|
223
224
|
Fr as DATA_SERVER_CONFIG,
|
|
224
|
-
|
|
225
|
-
|
|
225
|
+
Ur as DATA_SERVER_PORT,
|
|
226
|
+
Mr as DATA_SERVER_URL_LOCAL,
|
|
226
227
|
Br as DATA_SERVER_URL_PRODUCTION,
|
|
227
228
|
qr as DEPLOYMENT_MODE,
|
|
228
229
|
vi as ERC20ABI,
|
|
229
230
|
Zt as EncryptionKeyPairDefaultValue,
|
|
230
231
|
Ai as ErrorCategory,
|
|
231
232
|
Ze as EthereumNetworkType,
|
|
232
|
-
|
|
233
|
-
|
|
233
|
+
Wm as EventType,
|
|
234
|
+
Mm as ExternalActionId,
|
|
234
235
|
ri as FeeOverTransactionValueError,
|
|
235
236
|
Xa as FileCacheDevice,
|
|
236
237
|
cs as GalxeABI,
|
|
237
238
|
ir as HINKAL_EXTERNAL_ACTION_FEE,
|
|
238
239
|
sr as HINKAL_UNIVERSAL_FEE,
|
|
239
240
|
$t as Hinkal,
|
|
240
|
-
|
|
241
|
-
|
|
241
|
+
Hm as HinkalStakeAction,
|
|
242
|
+
mf as HinkalStakeMode,
|
|
242
243
|
V as IMAGE_PATHS,
|
|
243
|
-
|
|
244
|
+
Gm as INTERACTION,
|
|
244
245
|
qi as ISwapRouterABI,
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
246
|
+
Km as IntegrationProvider,
|
|
247
|
+
Jm as KycVerificationResult,
|
|
248
|
+
$m as KycVerificationStatus,
|
|
249
|
+
Dl as LP_TIER,
|
|
250
|
+
Ym as LidoAction,
|
|
251
|
+
zm as LidoVariant,
|
|
251
252
|
$a as LocalStorageCacheDevice,
|
|
252
|
-
|
|
253
|
+
fl as MONTHS,
|
|
253
254
|
ka as MerkleTree,
|
|
254
255
|
Ca as MerkleTreeIncompleteError,
|
|
255
256
|
Qa as MultiThreadedUtxoUtils,
|
|
256
257
|
wo as NETWORKS,
|
|
257
|
-
|
|
258
|
+
Pm as OpType,
|
|
258
259
|
Nr as PLAYGROUND_RELAYER_URLS,
|
|
259
260
|
Or as PLAYGROUND_SERVER_URLS,
|
|
260
261
|
Vr as PLAYGROUND_URL,
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
262
|
+
el as Passports,
|
|
263
|
+
vl as PaymentStatus,
|
|
264
|
+
Zm as PendleAction,
|
|
265
|
+
Kl as PendleAssetType,
|
|
266
|
+
Yl as PendleChains,
|
|
267
|
+
zl as PendleDashboardTabs,
|
|
268
|
+
Zl as PendleEarnTabs,
|
|
269
|
+
qm as PendleLPAction,
|
|
270
|
+
ql as PendleMarketTransactionTypes,
|
|
271
|
+
Ql as PendlePoolManualTabs,
|
|
272
|
+
jl as PendlePoolTabs,
|
|
273
|
+
Xl as PendlePoolZapTabs,
|
|
274
|
+
Jl as PendleSwapType,
|
|
275
|
+
$l as PendleTabs,
|
|
276
|
+
ef as PendleTradeGeneralTabs,
|
|
277
|
+
rf as PendleTradeTabs,
|
|
278
|
+
Ll as PointType,
|
|
278
279
|
ke as PopularTokenSymbols,
|
|
279
280
|
Ir as RECLAIM_MESSAGE_TO_SIGN,
|
|
280
281
|
Wr as RELAYER_CONFIG,
|
|
281
282
|
Hr as RELAYER_URLS,
|
|
282
283
|
at as REWARD_RECEIVABLE_TOKEN_SYMBOLS,
|
|
283
284
|
it as RafflePrizePoints,
|
|
284
|
-
|
|
285
|
+
wl as RafflePrizeType,
|
|
285
286
|
Er as ReclaimPassports,
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
287
|
+
_l as RewardPage,
|
|
288
|
+
Fl as RewardsHistoryDistribution,
|
|
289
|
+
Ul as RewardsHistoryEligibility,
|
|
290
|
+
Ml as RewardsHistorySnapshots,
|
|
291
|
+
Bl as RewardsHistoryStatuses,
|
|
292
|
+
Nl as RewardsPageTabs,
|
|
292
293
|
Gr as SERVER_URLS,
|
|
293
294
|
Kr as STAGING_RELAYER_URLS,
|
|
294
295
|
Yr as STAGING_SERVER_URLS,
|
|
295
296
|
zr as STAGING_URL,
|
|
296
|
-
|
|
297
|
-
|
|
297
|
+
sl as SlippageType,
|
|
298
|
+
Qm as StakeProvider,
|
|
298
299
|
hr as StandardPassports,
|
|
299
|
-
|
|
300
|
+
tf as StatType,
|
|
300
301
|
br as SupportedPassports,
|
|
301
|
-
|
|
302
|
-
|
|
302
|
+
Ol as TIER_LEVEL,
|
|
303
|
+
Vl as Timeline,
|
|
303
304
|
Va as TokenChecker,
|
|
304
305
|
Ka as TransactionType,
|
|
305
306
|
Ha as TransactionsManager,
|
|
@@ -307,34 +308,34 @@ export {
|
|
|
307
308
|
Hi as USDR3CRVABI,
|
|
308
309
|
Vi as USDRABI,
|
|
309
310
|
Ki as USDTABI,
|
|
310
|
-
|
|
311
|
+
af as UpperTabPossibleValues,
|
|
311
312
|
si as UserFriendlyErrorCodes,
|
|
312
313
|
qt as UserKeys,
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
314
|
+
Ma as Utxo,
|
|
315
|
+
rl as VERIFICATION_TYPE,
|
|
316
|
+
Mt as ValueCache,
|
|
317
|
+
ol as VerificationTypes,
|
|
318
|
+
jm as VolatileAction,
|
|
318
319
|
Za as VolatileHelper,
|
|
319
320
|
zi as WETHABI,
|
|
320
321
|
Nt as abiDecodeUtxo,
|
|
321
322
|
Cs as absBigInt,
|
|
322
|
-
|
|
323
|
+
Rp as addPaddingToUtxos,
|
|
323
324
|
Dr as aipriseBaseOnboardingProductionUrl,
|
|
324
325
|
vr as aipriseBaseOnboardingSandboxUrl,
|
|
325
|
-
|
|
326
|
+
Uo as arbMainnetCrvCvxRegistry,
|
|
326
327
|
De as arbMainnetData,
|
|
327
328
|
pe as arbMainnetRegistry,
|
|
328
329
|
q as arbMainnetRegistryFixed,
|
|
329
330
|
yt as arbPendleRegistry,
|
|
330
|
-
|
|
331
|
+
Mo as avalancheCrvCvxRegistry,
|
|
331
332
|
Be as avalancheData,
|
|
332
333
|
xe as avalancheRegistry,
|
|
333
334
|
ee as avalancheRegistryFixed,
|
|
334
335
|
Ge as axelar1Data,
|
|
335
336
|
Ye as axelar2Data,
|
|
336
337
|
Lt as babyJubInstance,
|
|
337
|
-
|
|
338
|
+
Ip as balanceChangedHandler,
|
|
338
339
|
Bo as baseCrvCvxRegistry,
|
|
339
340
|
Oe as baseData,
|
|
340
341
|
ye as baseRegistry,
|
|
@@ -350,22 +351,23 @@ export {
|
|
|
350
351
|
Rt as bnbPendleRegistry,
|
|
351
352
|
st as boostAmounts,
|
|
352
353
|
vn as browserSupported,
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
354
|
+
Hp as buildInNullifiers,
|
|
355
|
+
Gp as buildOutCommitments,
|
|
356
|
+
Kp as calcAccessTokenSiblingsAndSides,
|
|
357
|
+
Yp as calcAmountChanges,
|
|
358
|
+
zp as calcCommitmentsSiblingAndSides,
|
|
359
|
+
Zp as calcEncryptedOutputs,
|
|
360
|
+
qp as calcPublicSignalCount,
|
|
361
|
+
Qp as calcStealthAddressStructure,
|
|
361
362
|
bs as calculateAmountUsingBeeps,
|
|
362
|
-
|
|
363
|
-
|
|
363
|
+
sp as calculateDollarValue,
|
|
364
|
+
Cm as calculateSmartContractWalletAddress,
|
|
365
|
+
cm as calculateStakeNullifier,
|
|
364
366
|
Ds as calculateSum,
|
|
365
367
|
l as callOneInchAPI,
|
|
366
368
|
x as callRelayerTransactAPI,
|
|
367
369
|
Vn as capitalizeFirstLetter,
|
|
368
|
-
|
|
370
|
+
Zn as caseInsensitiveEqual,
|
|
369
371
|
qe as chainIds,
|
|
370
372
|
Qe as chainIdsByType,
|
|
371
373
|
ci as checkErrorForSnapshotRestore,
|
|
@@ -375,53 +377,53 @@ export {
|
|
|
375
377
|
ko as coingeckoPriceUrl,
|
|
376
378
|
So as coingeckoPriceUrl2,
|
|
377
379
|
Co as coingeckoTokenListUrl,
|
|
378
|
-
|
|
379
|
-
|
|
380
|
+
Vp as constructEmporiumProof,
|
|
381
|
+
Np as constructZkProof,
|
|
380
382
|
Ar as contractMetadataMapping,
|
|
381
383
|
dn as convertIntegrationProviderToExternalActionId,
|
|
382
|
-
|
|
383
|
-
|
|
384
|
+
rp as createCacheDevice,
|
|
385
|
+
jp as createCallDataHash,
|
|
384
386
|
qs as createProvider,
|
|
385
|
-
|
|
387
|
+
dm as createStakeCommitment,
|
|
386
388
|
je as crossChainAccessTokenNetworks,
|
|
387
389
|
no as crvSymbol,
|
|
388
|
-
|
|
389
|
-
|
|
390
|
+
sf as curveNetworkNames,
|
|
391
|
+
nf as curvePools,
|
|
390
392
|
po as curveWithdrawGasTokenAddress,
|
|
391
393
|
mo as curveZeroAddress,
|
|
392
394
|
Na as customTokenRegistry,
|
|
393
395
|
lo as cvxSymbol,
|
|
394
396
|
bi as daiABI,
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
397
|
+
Em as dataBeefyApiConfig,
|
|
398
|
+
cl as dayInMilliseconds,
|
|
399
|
+
tp as debounce,
|
|
398
400
|
js as decodeMetadata,
|
|
399
401
|
_n as decodeTxInput,
|
|
400
402
|
Fn as decodeTxLogs,
|
|
401
403
|
Vt as decodeUtxo,
|
|
402
404
|
Wt as decodeUtxoConstructorArgs,
|
|
403
|
-
|
|
405
|
+
xm as decryptStake,
|
|
404
406
|
Gt as decryptUtxo,
|
|
405
407
|
Kt as decryptUtxoConstructorArgs,
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
408
|
+
Dm as defaultHookData,
|
|
409
|
+
vm as defaultHookDataArray,
|
|
410
|
+
Lm as defaultStealthAddressStructure,
|
|
409
411
|
Qr as deploymentMode,
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
412
|
+
Xp as deserializeCircomData,
|
|
413
|
+
Un as deserializeDecodedTxs,
|
|
414
|
+
sm as determinePendleSwapType,
|
|
415
|
+
nm as determinePendleSwapTypeApiRoute,
|
|
416
|
+
dl as divideMonthOnIntervals,
|
|
417
|
+
ym as emporiumOp,
|
|
418
|
+
ml as emptyDecodedTx,
|
|
419
|
+
wm as emptyStealthAddressStructure,
|
|
420
|
+
Wl as emptyUserPointsBreakdown,
|
|
421
|
+
Hl as emptyUserPointsResponse,
|
|
422
|
+
Rm as encodeEmporiumMetadata,
|
|
423
|
+
gm as encodeHStakeMetadata,
|
|
424
|
+
Am as encryptStake,
|
|
423
425
|
Yt as encryptUtxo,
|
|
424
|
-
|
|
426
|
+
pm as erc20TokenFromPendleAsset,
|
|
425
427
|
gt as ethBeefyRegistry,
|
|
426
428
|
No as ethCrvCvxRegistry,
|
|
427
429
|
Le as ethMainnetData,
|
|
@@ -429,32 +431,32 @@ export {
|
|
|
429
431
|
z as ethMainnetRegistryFixed,
|
|
430
432
|
Tt as ethPendleRegistry,
|
|
431
433
|
Yo as ethSymbol,
|
|
432
|
-
|
|
434
|
+
np as ethToWei,
|
|
433
435
|
fo as ethVolatileAddress,
|
|
434
436
|
Ya as externalActionToTransactionType,
|
|
435
437
|
mi as extractMessage,
|
|
436
438
|
Fi as factoryABI,
|
|
437
439
|
Pt as findSyAddress,
|
|
438
440
|
vs as fixDecimalsAmount,
|
|
439
|
-
|
|
441
|
+
em as generateZkProof,
|
|
440
442
|
Xs as getActionFromMetadata,
|
|
441
443
|
nr as getAmountAfterRelayAndFlatFees,
|
|
442
444
|
pr as getAmountAfterRelayAndFlatFeesAndSlippage,
|
|
443
445
|
mr as getAmountAfterRelayFee,
|
|
444
446
|
lr as getAmountAfterSlippage,
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
447
|
+
pp as getAmountInToken,
|
|
448
|
+
mp as getAmountInWei,
|
|
449
|
+
lp as getAmountInWeiOrZero,
|
|
450
|
+
fp as getAmountWithPrecision,
|
|
451
|
+
cp as getAmountWithPrecisionOrZero,
|
|
450
452
|
fr as getAmountWithoutFee,
|
|
451
|
-
|
|
453
|
+
mm as getAssetTypeFromPendleMarket,
|
|
452
454
|
A as getAxelarGasEstimate,
|
|
453
455
|
bn as getAxelarMigrationInfo,
|
|
454
456
|
c as getBeefyHistoricalChartData,
|
|
455
457
|
At as getBeefyRegistryWithChainId,
|
|
456
|
-
|
|
457
|
-
|
|
458
|
+
om as getCRV,
|
|
459
|
+
am as getCVX,
|
|
458
460
|
Go as getCalcTokenAmountWithDynamicArray,
|
|
459
461
|
jt as getCircomSign,
|
|
460
462
|
Io as getCoingeckoIdForNativeTokens,
|
|
@@ -464,12 +466,12 @@ export {
|
|
|
464
466
|
n as getCoingeckoPrices,
|
|
465
467
|
p as getCoingeckoTokenList,
|
|
466
468
|
Oo as getCrvCvxWithChainId,
|
|
467
|
-
|
|
469
|
+
xl as getCurrentWeek,
|
|
468
470
|
v as getCurvePools,
|
|
469
471
|
L as getCurvePoolsforPriceFetching,
|
|
470
472
|
o as getDataServerURL,
|
|
471
|
-
|
|
472
|
-
|
|
473
|
+
gl as getDateFromWeek,
|
|
474
|
+
kp as getDepositEvents,
|
|
473
475
|
Ce as getERC20Registry,
|
|
474
476
|
on as getERC20Token,
|
|
475
477
|
tn as getERC20TokenBySymbol,
|
|
@@ -489,34 +491,35 @@ export {
|
|
|
489
491
|
cr as getHinkalFeeRateInBeeps,
|
|
490
492
|
ur as getHinkalParameters,
|
|
491
493
|
E as getIdleRelay,
|
|
492
|
-
|
|
493
|
-
|
|
494
|
+
Ap as getInputUtxoAndBalance,
|
|
495
|
+
up as getInputUtxosFromEncryptedOutputs,
|
|
494
496
|
gn as getInteractionFromAction,
|
|
495
497
|
In as getNetworkObject,
|
|
496
498
|
En as getNetworkType,
|
|
497
|
-
|
|
499
|
+
Al as getNextDay,
|
|
498
500
|
Xe as getNonLocalhostChainId,
|
|
499
|
-
|
|
500
|
-
|
|
501
|
+
wp as getOdosPrice,
|
|
502
|
+
Fp as getOneInchPrice,
|
|
501
503
|
kt as getPendleRegistryWithChainId,
|
|
502
504
|
N as getPublicWalletBalance,
|
|
503
505
|
dr as getRelayFee,
|
|
504
|
-
|
|
506
|
+
M as getRelayerURL,
|
|
505
507
|
mn as getSequence,
|
|
506
508
|
t as getServerURL,
|
|
507
|
-
|
|
509
|
+
Tp as getShieldedBalance,
|
|
508
510
|
xr as getSlippageFee,
|
|
509
|
-
|
|
511
|
+
lm as getTokenIndexForPendleFlatFee,
|
|
510
512
|
T as getTokenPrice,
|
|
511
513
|
P as getTokenPriceEth,
|
|
512
514
|
k as getTokenPrices,
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
515
|
+
hp as getUniswapFee,
|
|
516
|
+
bp as getUniswapPrice,
|
|
517
|
+
Dp as getUniswapPriceHelper,
|
|
516
518
|
Ls as getValueFirstNDigit,
|
|
517
|
-
|
|
519
|
+
ul as getWeekTimestamps,
|
|
518
520
|
St as getYtTokensWithChainId,
|
|
519
|
-
|
|
521
|
+
yl as hasCertificationPeriodExpired,
|
|
522
|
+
Wn as hexToUtf8,
|
|
520
523
|
ra as hinkalActionBeefy,
|
|
521
524
|
ta as hinkalActionConvex,
|
|
522
525
|
ia as hinkalActionCurve,
|
|
@@ -527,23 +530,23 @@ export {
|
|
|
527
530
|
ca as hinkalSwap,
|
|
528
531
|
xa as hinkalTransfer,
|
|
529
532
|
Aa as hinkalWithdraw,
|
|
530
|
-
|
|
531
|
-
|
|
533
|
+
Rl as hourInMilliseconds,
|
|
534
|
+
hm as isBeefyDeposit,
|
|
532
535
|
Xt as isCircomNegative,
|
|
533
536
|
jr as isDevelopment,
|
|
534
537
|
Je as isLocalNetwork,
|
|
535
|
-
|
|
538
|
+
Yn as isNicknameValid,
|
|
536
539
|
Xr as isNode,
|
|
537
540
|
Jr as isNotClientProduction,
|
|
538
541
|
$r as isNotProduction,
|
|
539
|
-
|
|
542
|
+
Hn as isNullOrEmpty,
|
|
540
543
|
$e as isOptimismBedrockLike,
|
|
541
544
|
er as isOptimismEcotoneLike,
|
|
542
545
|
rr as isOptimismLike,
|
|
543
546
|
eo as isPlayground,
|
|
544
547
|
ro as isStaging,
|
|
545
548
|
oo as isWebpack,
|
|
546
|
-
|
|
549
|
+
Tl as isWeekCurrent,
|
|
547
550
|
Ct as isYtToken,
|
|
548
551
|
wt as jubHolder,
|
|
549
552
|
ji as lidoStEthAbi,
|
|
@@ -561,8 +564,8 @@ export {
|
|
|
561
564
|
or as localhostNetwork,
|
|
562
565
|
Te as localhostRegistry,
|
|
563
566
|
xi as logError,
|
|
564
|
-
|
|
565
|
-
|
|
567
|
+
qn as lowerCaseIncludes,
|
|
568
|
+
Qn as lowerCaseStartsWith,
|
|
566
569
|
nt as lpLink,
|
|
567
570
|
pt as lpProgramStartWeek,
|
|
568
571
|
_ as lpTokens,
|
|
@@ -571,7 +574,7 @@ export {
|
|
|
571
574
|
ws as minBigInt,
|
|
572
575
|
us as mintAccessToken,
|
|
573
576
|
ys as mintTokenCrossChain,
|
|
574
|
-
|
|
577
|
+
Pl as minuteInMilliseconds,
|
|
575
578
|
tr as networkRegistry,
|
|
576
579
|
co as oneInchZeroAddress,
|
|
577
580
|
ks as openDefaultPassportWindow,
|
|
@@ -584,14 +587,14 @@ export {
|
|
|
584
587
|
oe as optimismRegistryFixed,
|
|
585
588
|
un as outputUtxoProcessing,
|
|
586
589
|
xo as ownerPublicKey,
|
|
587
|
-
|
|
588
|
-
|
|
590
|
+
kl as parseWeek,
|
|
591
|
+
$n as patchRegistry,
|
|
589
592
|
go as permitSignatureValidFor,
|
|
590
593
|
os as poLidoNftAbi,
|
|
591
594
|
Jo as poLidoNftAddress,
|
|
592
595
|
mt as pointsLink,
|
|
593
596
|
Wo as polygonCrvCvxRegistry,
|
|
594
|
-
|
|
597
|
+
Ue as polygonData,
|
|
595
598
|
ce as polygonRegistry,
|
|
596
599
|
J as polygonRegistryFixed,
|
|
597
600
|
ht as poseidonFunction,
|
|
@@ -602,11 +605,11 @@ export {
|
|
|
602
605
|
bo as proHeader,
|
|
603
606
|
Pn as processAmountChanges,
|
|
604
607
|
Rn as processGasEstimates,
|
|
605
|
-
|
|
608
|
+
km as produceOp,
|
|
606
609
|
ln as promisify,
|
|
607
610
|
wi as quoterV2ABI,
|
|
608
611
|
lt as raffleProgramStartWeek,
|
|
609
|
-
|
|
612
|
+
dp as randomBigInt,
|
|
610
613
|
ft as referralLink,
|
|
611
614
|
Nn as reloadPage,
|
|
612
615
|
nn as requireEnv,
|
|
@@ -614,28 +617,28 @@ export {
|
|
|
614
617
|
Ta as resetMerkleTrees,
|
|
615
618
|
fn as resolveSync,
|
|
616
619
|
ai as rethrowKnownGasErrorIfPossible,
|
|
617
|
-
|
|
620
|
+
Sp as retrieveEvents,
|
|
618
621
|
Mp as runContractFunction,
|
|
619
|
-
|
|
622
|
+
Mi as sanctionsListABI,
|
|
620
623
|
Ys as saveTxsCache,
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
624
|
+
vp as searchPoolAndFee,
|
|
625
|
+
Sl as secondInMilliseconds,
|
|
626
|
+
Jp as serializeCircomData,
|
|
627
|
+
Mn as serializeDecodedTxs,
|
|
625
628
|
zs as setHinkalCache,
|
|
626
629
|
Ao as signaturePhrase,
|
|
627
|
-
|
|
630
|
+
nl as slippageLevels,
|
|
628
631
|
$o as stMaticSymbol,
|
|
629
632
|
Lr as supportedPassportLinks,
|
|
630
633
|
uo as threePoolSymbol,
|
|
631
634
|
_s as toBigInt,
|
|
632
635
|
Fs as toBigIntOrUndefined,
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
636
|
+
xp as toBigIntWithDecimals,
|
|
637
|
+
Us as toCommaSeparatedNumberString,
|
|
638
|
+
Cl as toDateString,
|
|
639
|
+
Ms as toInt,
|
|
637
640
|
Bs as toNumberOrUndefined,
|
|
638
|
-
|
|
641
|
+
Gn as toTitleCase,
|
|
639
642
|
ni as transactionErrorCodes,
|
|
640
643
|
ps as transactionProverABI,
|
|
641
644
|
Ns as trimLeadingZeros,
|
|
@@ -647,10 +650,10 @@ export {
|
|
|
647
650
|
H as urlForBeefyVaultTokens,
|
|
648
651
|
G as urlForBeefyVaultTotalInUSD,
|
|
649
652
|
K as urlForRegularTokenPricesInBeefy,
|
|
650
|
-
|
|
651
|
-
|
|
653
|
+
ap as wait,
|
|
654
|
+
Xn as waitLittle,
|
|
652
655
|
Ln as walletSupported,
|
|
653
|
-
|
|
656
|
+
Il as weekInMilliseconds,
|
|
654
657
|
et as wstEthSymbol,
|
|
655
658
|
yo as zeroAddress
|
|
656
659
|
};
|