@hinkal/common 0.1.52 → 0.1.55
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/axelar.constants.cjs +1 -1
- package/constants/axelar.constants.mjs +27 -28
- package/constants/chains.constants.cjs +1 -1
- package/constants/chains.constants.mjs +49 -49
- package/constants/kyc.constants.cjs +1 -1
- package/constants/kyc.constants.mjs +27 -3
- package/crypto/babyJub.cjs +1 -1
- package/crypto/babyJub.mjs +4 -4
- package/crypto/poseidon.cjs +1 -1
- package/crypto/poseidon.mjs +12 -12
- package/crypto/preProcessing.cjs +1 -1
- package/crypto/preProcessing.mjs +7 -5
- package/data-structures/Hinkal/Hinkal.cjs +1 -1
- package/data-structures/Hinkal/Hinkal.mjs +6 -3
- package/data-structures/Hinkal/hinkalActionStake.cjs +1 -1
- package/data-structures/Hinkal/hinkalActionStake.mjs +1 -1
- package/data-structures/Hinkal/hinkalPrivateWallet.cjs +1 -1
- package/data-structures/Hinkal/hinkalPrivateWallet.mjs +11 -8
- package/data-structures/crypto-keys/encryptDecryptUtxo.cjs +1 -1
- package/data-structures/crypto-keys/encryptDecryptUtxo.mjs +8 -9
- package/data-structures/crypto-keys/keys.cjs +1 -1
- package/data-structures/crypto-keys/keys.mjs +6 -7
- package/data-structures/event-service/AbstractAccessTokenSnapshotService.cjs +1 -1
- package/data-structures/event-service/AbstractAccessTokenSnapshotService.mjs +9 -6
- package/data-structures/event-service/AbstractCommitmentsSnapshotService.cjs +1 -1
- package/data-structures/event-service/AbstractCommitmentsSnapshotService.mjs +11 -8
- package/data-structures/event-service/AbstractEventService.cjs +1 -1
- package/data-structures/event-service/AbstractEventService.mjs +24 -21
- package/data-structures/snapshot/ClientAccessTokenSnapshotService.cjs +1 -1
- package/data-structures/snapshot/ClientAccessTokenSnapshotService.mjs +6 -3
- package/data-structures/snapshot/ClientCommitmentsSnapshotService.cjs +1 -1
- package/data-structures/snapshot/ClientCommitmentsSnapshotService.mjs +6 -3
- package/data-structures/snapshot/ClientNullifierSnapshotService.cjs +1 -1
- package/data-structures/snapshot/ClientNullifierSnapshotService.mjs +7 -4
- package/data-structures/transactions-manager/TransactionsManager.cjs +1 -1
- package/data-structures/transactions-manager/TransactionsManager.mjs +1 -1
- package/functions/pre-transaction/outputUtxoProcessing.cjs +1 -1
- package/functions/pre-transaction/outputUtxoProcessing.mjs +8 -5
- package/functions/pre-transaction/processAmountChanges.cjs +1 -1
- package/functions/pre-transaction/processAmountChanges.mjs +13 -10
- package/functions/protocols/pendle.helpers.cjs +1 -1
- package/functions/protocols/pendle.helpers.mjs +18 -16
- package/functions/staking/index.cjs +1 -1
- package/functions/staking/index.mjs +24 -22
- package/functions/utils/resolve-sync.utils.cjs +1 -1
- package/functions/utils/resolve-sync.utils.d.ts +1 -0
- package/functions/utils/resolve-sync.utils.mjs +12 -3
- package/functions/web3/functionCalls/transactCallRelayer.cjs +1 -1
- package/functions/web3/functionCalls/transactCallRelayer.mjs +2 -2
- package/functions/web3/odosAPI.cjs +1 -1
- package/functions/web3/odosAPI.mjs +14 -11
- package/functions/web3/oneInchAPI.cjs +1 -1
- package/functions/web3/oneInchAPI.mjs +10 -7
- package/functions/web3/runContractFunction.cjs +1 -1
- package/functions/web3/runContractFunction.mjs +23 -20
- package/functions/web3/uniswapAPI.cjs +1 -1
- package/functions/web3/uniswapAPI.mjs +6 -3
- package/index.cjs +1 -1
- package/index.mjs +210 -209
- package/package.json +4 -3
- package/providers/prepareEthersHinkal.cjs +1 -1
- package/providers/prepareEthersHinkal.mjs +4 -5
- package/providers/prepareWagmiv1Hinkal.cjs +1 -1
- package/providers/prepareWagmiv1Hinkal.mjs +4 -5
- package/types/kyc.types.cjs +1 -1
- package/types/kyc.types.d.ts +3 -1
- package/types/kyc.types.mjs +3 -3
- 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/index.mjs
CHANGED
|
@@ -133,57 +133,57 @@ import { createProvider as Gs } from "./functions/utils/create-provider.mjs";
|
|
|
133
133
|
import { decodeMetadata as Ys, getActionFromMetadata as zs, getExternalActionIdFromNumber as Zs, getExternalActionIdHash as qs, getExternalMetadataHash as Qs } from "./functions/utils/external-action.utils.mjs";
|
|
134
134
|
import { getERC20Token as Xs, getERC20TokenBySymbol as Js, getHToken as $s } from "./functions/utils/erc20tokenFunctions.mjs";
|
|
135
135
|
import { requireEnv as rn } from "./functions/utils/requireEnv.mjs";
|
|
136
|
-
import { getSequence as tn,
|
|
137
|
-
import { convertIntegrationProviderToExternalActionId as
|
|
138
|
-
import { getInteractionFromAction as
|
|
139
|
-
import { outputUtxoProcessing as
|
|
140
|
-
import { processGasEstimates as
|
|
141
|
-
import { processAmountChanges as
|
|
142
|
-
import { getFlatFees as
|
|
143
|
-
import { getNetworkObject as
|
|
144
|
-
import { getAxelarMigrationInfo as
|
|
145
|
-
import { browserSupported as
|
|
146
|
-
import { decodeTxInput as
|
|
147
|
-
import { reloadPage as
|
|
148
|
-
import { capitalizeFirstLetter as
|
|
149
|
-
import { isNicknameValid as
|
|
150
|
-
import { caseInsensitiveEqual as
|
|
151
|
-
import { waitLittle as
|
|
152
|
-
import { patchRegistry as
|
|
153
|
-
import { debounce as
|
|
154
|
-
import { calculateDollarValue as
|
|
155
|
-
import { getInputUtxoAndBalance as
|
|
156
|
-
import { addPaddingToUtxos as
|
|
157
|
-
import { getDepositEvents as
|
|
158
|
-
import { balanceChangedHandler as
|
|
159
|
-
import { getUniswapFee as
|
|
160
|
-
import { getOdosPrice as
|
|
161
|
-
import { getOneInchPrice as
|
|
162
|
-
import { runContractFunction as
|
|
163
|
-
import { constructZkProof as
|
|
164
|
-
import { constructEmporiumProof as
|
|
165
|
-
import { buildInNullifiers as
|
|
166
|
-
import { generateZkProof as
|
|
167
|
-
import { getCRV as
|
|
168
|
-
import { getCVX as
|
|
169
|
-
import { determinePendleSwapType as
|
|
170
|
-
import { calculateStakeNullifier as
|
|
171
|
-
import { emporiumOp as
|
|
172
|
-
import { OpType as
|
|
173
|
-
import { dataBeefyApiConfig as
|
|
174
|
-
import { defaultHookData as
|
|
175
|
-
import { ContractType as
|
|
176
|
-
import { ExternalActionId as
|
|
177
|
-
import { BeefyAction as
|
|
178
|
-
import { KycVerificationResult as
|
|
179
|
-
import { ApprovalType as
|
|
180
|
-
import { SlippageType as
|
|
181
|
-
import { emptyDecodedTx as
|
|
182
|
-
import { MONTHS as
|
|
183
|
-
import { BonusType as
|
|
184
|
-
import { PendleAssetType as
|
|
185
|
-
import { StatType as
|
|
186
|
-
import { HinkalStakeMode as
|
|
136
|
+
import { getSequence as tn, promisify as an, resolveSync as sn } from "./functions/utils/resolve-sync.utils.mjs";
|
|
137
|
+
import { convertIntegrationProviderToExternalActionId as pn } from "./functions/utils/convertIntegrationProviderToExternalActionId.mjs";
|
|
138
|
+
import { getInteractionFromAction as ln } from "./functions/pre-transaction/interaction-to-action.mjs";
|
|
139
|
+
import { outputUtxoProcessing as cn } from "./functions/pre-transaction/outputUtxoProcessing.mjs";
|
|
140
|
+
import { processGasEstimates as xn } from "./functions/pre-transaction/process-gas-estimates.mjs";
|
|
141
|
+
import { processAmountChanges as An } from "./functions/pre-transaction/processAmountChanges.mjs";
|
|
142
|
+
import { getFlatFees as yn } from "./functions/pre-transaction/getFlatFees.mjs";
|
|
143
|
+
import { getNetworkObject as Tn, getNetworkType as Pn } from "./functions/utils/evmNetworkFunctions.mjs";
|
|
144
|
+
import { getAxelarMigrationInfo as Sn } from "./functions/utils/axelar.utils.mjs";
|
|
145
|
+
import { browserSupported as Cn, walletSupported as En } from "./functions/utils/userAgent.mjs";
|
|
146
|
+
import { decodeTxInput as bn, decodeTxLogs as Dn, deserializeDecodedTxs as vn, serializeDecodedTxs as Ln } from "./functions/utils/getDataFromTransaction.mjs";
|
|
147
|
+
import { reloadPage as _n } from "./functions/utils/reloadPage.mjs";
|
|
148
|
+
import { capitalizeFirstLetter as Un, isNullOrEmpty as Bn, toTitleCase as Fn } from "./functions/utils/string.utils.mjs";
|
|
149
|
+
import { isNicknameValid as On } from "./functions/utils/nickname.utils.mjs";
|
|
150
|
+
import { caseInsensitiveEqual as Wn, lowerCaseIncludes as Hn, lowerCaseStartsWith as Gn } from "./functions/utils/caseInsensitive.utils.mjs";
|
|
151
|
+
import { waitLittle as Yn } from "./functions/utils/time.utils.mjs";
|
|
152
|
+
import { patchRegistry as Zn } from "./functions/utils/volatile-patcher.utils.mjs";
|
|
153
|
+
import { debounce as Qn, wait as jn } from "./functions/utils/process.utils.mjs";
|
|
154
|
+
import { calculateDollarValue as Jn, ethToWei as $n, getAmountInToken as ep, getAmountInWei as rp, getAmountInWeiOrZero as op, getAmountWithPrecision as tp, getAmountWithPrecisionOrZero as ap, randomBigInt as ip, toBigIntWithDecimals as sp } from "./functions/web3/etherFunctions.mjs";
|
|
155
|
+
import { getInputUtxoAndBalance as pp, getInputUtxosFromEncryptedOutputs as mp } from "./functions/web3/events/getInputUtxoAndBalance.mjs";
|
|
156
|
+
import { addPaddingToUtxos as fp, getShieldedBalance as cp } from "./functions/web3/events/getShieldedBalance.mjs";
|
|
157
|
+
import { getDepositEvents as xp, retrieveEvents as gp } from "./functions/web3/events/web3RetrieveEvents.mjs";
|
|
158
|
+
import { balanceChangedHandler as up } from "./functions/web3/events/balanceChangedHandler.mjs";
|
|
159
|
+
import { getUniswapFee as Rp, getUniswapPrice as Tp, getUniswapPriceHelper as Pp, searchPoolAndFee as kp } from "./functions/web3/uniswapAPI.mjs";
|
|
160
|
+
import { getOdosPrice as Ip } from "./functions/web3/odosAPI.mjs";
|
|
161
|
+
import { getOneInchPrice as Ep } from "./functions/web3/oneInchAPI.mjs";
|
|
162
|
+
import { runContractFunction as bp } from "./functions/web3/runContractFunction.mjs";
|
|
163
|
+
import { constructZkProof as vp } from "./functions/snarkjs/constructGeneralZkProof.mjs";
|
|
164
|
+
import { constructEmporiumProof as wp } from "./functions/snarkjs/constructEmporiumProof.mjs";
|
|
165
|
+
import { buildInNullifiers as Mp, buildOutCommitments as Up, calcAccessTokenSiblingsAndSides as Bp, calcAmountChanges as Fp, calcCommitmentsSiblingAndSides as Np, calcEncryptedOutputs as Op, calcPublicSignalCount as Vp, calcStealthAddressStructure as Wp, createCallDataHash as Hp, deserializeCircomData as Gp, serializeCircomData as Kp } from "./functions/snarkjs/common.snarkjs.mjs";
|
|
166
|
+
import { generateZkProof as zp } from "./functions/snarkjs/generateZkProof.mjs";
|
|
167
|
+
import { getCRV as qp } from "./functions/protocols/curve.protocols.mjs";
|
|
168
|
+
import { getCVX as jp } from "./functions/protocols/convex.protocols.mjs";
|
|
169
|
+
import { determinePendleSwapType as Jp, determinePendleSwapTypeApiRoute as $p, erc20TokenFromPendleAsset as em, getAssetTypeFromPendleMarket as rm, getTokenIndexForPendleFlatFee as om } from "./functions/protocols/pendle.helpers.mjs";
|
|
170
|
+
import { calculateStakeNullifier as am, createStakeCommitment as im, decryptStake as sm, encodeHStakeMetadata as nm, encryptStake as pm } from "./functions/staking/index.mjs";
|
|
171
|
+
import { emporiumOp as lm, encodeEmporiumMetadata as fm } from "./functions/private-wallet/emporium.helpers.mjs";
|
|
172
|
+
import { OpType as dm, produceOp as xm } from "./functions/private-wallet/opProducer.mjs";
|
|
173
|
+
import { dataBeefyApiConfig as Am, isBeefyDeposit as um } from "./types/beefy.types.mjs";
|
|
174
|
+
import { defaultHookData as Rm, defaultHookDataArray as Tm, defaultStealthAddressStructure as Pm, emptyStealthAddressStructure as km } from "./types/circom-data.types.mjs";
|
|
175
|
+
import { ContractType as Im } from "./types/ethereum-network.types.mjs";
|
|
176
|
+
import { ExternalActionId as Em } from "./types/external-action.types.mjs";
|
|
177
|
+
import { BeefyAction as bm, ConvexAction as Dm, CurveAction as vm, EventType as Lm, INTERACTION as wm, IntegrationProvider as _m, LidoAction as Mm, LidoVariant as Um, PendleAction as Bm, PendleLPAction as Fm, StakeProvider as Nm, VolatileAction as Om } from "./types/hinkal.types.mjs";
|
|
178
|
+
import { KycVerificationResult as Wm, KycVerificationStatus as Hm, Passports as Gm, VERIFICATION_TYPE as Km, VerificationTypes as Ym } from "./types/kyc.types.mjs";
|
|
179
|
+
import { ApprovalType as Zm } from "./types/token.types.mjs";
|
|
180
|
+
import { SlippageType as Qm, slippageLevels as jm } from "./types/slippage.types.mjs";
|
|
181
|
+
import { emptyDecodedTx as Jm } from "./types/transactions.types.mjs";
|
|
182
|
+
import { MONTHS as el, dayInMilliseconds as rl, divideMonthOnIntervals as ol, getCurrentWeek as tl, getDateFromWeek as al, getNextDay as il, getWeekTimestamps as sl, hasCertificationPeriodExpired as nl, hourInMilliseconds as pl, isWeekCurrent as ml, minuteInMilliseconds as ll, parseWeek as fl, secondInMilliseconds as cl, toDateString as dl, weekInMilliseconds as xl } from "./types/time.types.mjs";
|
|
183
|
+
import { BonusType as Al, CertifyType as ul, LP_TIER as yl, PaymentStatus as Rl, PointType as Tl, RafflePrizeType as Pl, RewardPage as kl, RewardsHistoryDistribution as Sl, RewardsHistoryEligibility as Il, RewardsHistorySnapshots as Cl, RewardsHistoryStatuses as El, RewardsPageTabs as hl, TIER_LEVEL as bl, Timeline as Dl, emptyUserPointsBreakdown as vl, emptyUserPointsResponse as Ll } from "./types/rewards.types.mjs";
|
|
184
|
+
import { PendleAssetType as _l, PendleChains as Ml, PendleDashboardTabs as Ul, PendleEarnTabs as Bl, PendleMarketTransactionTypes as Fl, PendlePoolManualTabs as Nl, PendlePoolTabs as Ol, PendlePoolZapTabs as Vl, PendleSwapType as Wl, PendleTabs as Hl, PendleTradeGeneralTabs as Gl, PendleTradeTabs as Kl } from "./types/pendle.types.mjs";
|
|
185
|
+
import { StatType as zl, UpperTabPossibleValues as Zl, curveNetworkNames as ql, curvePools as Ql } from "./types/curve.types.mjs";
|
|
186
|
+
import { HinkalStakeMode as Xl } from "./types/hinkal.stake.types.mjs";
|
|
187
187
|
export {
|
|
188
188
|
ot as ACCESS_TOKEN_MINTING_POINTS,
|
|
189
189
|
Sr as AIPRISE_KYB_TEMPLATE_ID_PROD,
|
|
@@ -196,22 +196,22 @@ export {
|
|
|
196
196
|
va as AbstractNullifierSnapshotService,
|
|
197
197
|
wa as AbstractSnapshotService,
|
|
198
198
|
xi as AmTokenABI,
|
|
199
|
-
|
|
199
|
+
Zm as ApprovalType,
|
|
200
200
|
vo as AxelarRegistry,
|
|
201
201
|
yi as BUSDABI,
|
|
202
202
|
ss as BabABI,
|
|
203
|
-
|
|
203
|
+
bm as BeefyAction,
|
|
204
204
|
Ai as BeefyVaultABI,
|
|
205
|
-
|
|
205
|
+
Al as BonusType,
|
|
206
206
|
tt as CERTIFICATION_DISABLE_WEEK,
|
|
207
207
|
ao as CIRCOM_P,
|
|
208
208
|
io as CIRCOM_P_HALF,
|
|
209
209
|
To as COINGECKO_API_KEY,
|
|
210
|
-
|
|
210
|
+
ul as CertifyType,
|
|
211
211
|
Po as CoinGeckoChainLabels,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
212
|
+
Im as ContractType,
|
|
213
|
+
Dm as ConvexAction,
|
|
214
|
+
vm as CurveAction,
|
|
215
215
|
Ti as CurveReadingWrapperABI,
|
|
216
216
|
ki as CurveWrappedMainPoolABI,
|
|
217
217
|
Mr as DATA_SERVER_CONFIG,
|
|
@@ -223,74 +223,74 @@ export {
|
|
|
223
223
|
Zt as EncryptionKeyPairDefaultValue,
|
|
224
224
|
ci as ErrorCategory,
|
|
225
225
|
Ze as EthereumNetworkType,
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
Lm as EventType,
|
|
227
|
+
Em as ExternalActionId,
|
|
228
228
|
Xa as FeeOverTransactionValueError,
|
|
229
229
|
ps as GalxeABI,
|
|
230
230
|
ir as HINKAL_EXTERNAL_ACTION_FEE,
|
|
231
231
|
sr as HINKAL_UNIVERSAL_FEE,
|
|
232
232
|
$t as Hinkal,
|
|
233
|
-
|
|
233
|
+
Xl as HinkalStakeMode,
|
|
234
234
|
V as IMAGE_PATHS,
|
|
235
|
-
|
|
235
|
+
wm as INTERACTION,
|
|
236
236
|
Ki as ISwapRouterABI,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
237
|
+
_m as IntegrationProvider,
|
|
238
|
+
Wm as KycVerificationResult,
|
|
239
|
+
Hm as KycVerificationStatus,
|
|
240
|
+
yl as LP_TIER,
|
|
241
|
+
Mm as LidoAction,
|
|
242
|
+
Um as LidoVariant,
|
|
243
|
+
el as MONTHS,
|
|
244
244
|
ka as MerkleTree,
|
|
245
245
|
Ia as MerkleTreeIncompleteError,
|
|
246
246
|
Qa as MultiThreadedUtxoUtils,
|
|
247
247
|
wo as NETWORKS,
|
|
248
|
-
|
|
248
|
+
dm as OpType,
|
|
249
249
|
Nr as PLAYGROUND_RELAYER_URLS,
|
|
250
250
|
Or as PLAYGROUND_SERVER_URLS,
|
|
251
251
|
Vr as PLAYGROUND_URL,
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
252
|
+
Gm as Passports,
|
|
253
|
+
Rl as PaymentStatus,
|
|
254
|
+
Bm as PendleAction,
|
|
255
|
+
_l as PendleAssetType,
|
|
256
|
+
Ml as PendleChains,
|
|
257
|
+
Ul as PendleDashboardTabs,
|
|
258
|
+
Bl as PendleEarnTabs,
|
|
259
|
+
Fm as PendleLPAction,
|
|
260
|
+
Fl as PendleMarketTransactionTypes,
|
|
261
|
+
Nl as PendlePoolManualTabs,
|
|
262
|
+
Ol as PendlePoolTabs,
|
|
263
|
+
Vl as PendlePoolZapTabs,
|
|
264
|
+
Wl as PendleSwapType,
|
|
265
|
+
Hl as PendleTabs,
|
|
266
|
+
Gl as PendleTradeGeneralTabs,
|
|
267
|
+
Kl as PendleTradeTabs,
|
|
268
|
+
Tl as PointType,
|
|
269
269
|
ke as PopularTokenSymbols,
|
|
270
270
|
Cr as RECLAIM_MESSAGE_TO_SIGN,
|
|
271
271
|
Wr as RELAYER_CONFIG,
|
|
272
272
|
Hr as RELAYER_URLS,
|
|
273
273
|
at as REWARD_RECEIVABLE_TOKEN_SYMBOLS,
|
|
274
274
|
it as RafflePrizePoints,
|
|
275
|
-
|
|
275
|
+
Pl as RafflePrizeType,
|
|
276
276
|
Er as ReclaimPassports,
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
277
|
+
kl as RewardPage,
|
|
278
|
+
Sl as RewardsHistoryDistribution,
|
|
279
|
+
Il as RewardsHistoryEligibility,
|
|
280
|
+
Cl as RewardsHistorySnapshots,
|
|
281
|
+
El as RewardsHistoryStatuses,
|
|
282
|
+
hl as RewardsPageTabs,
|
|
283
283
|
Gr as SERVER_URLS,
|
|
284
284
|
Kr as STAGING_RELAYER_URLS,
|
|
285
285
|
Yr as STAGING_SERVER_URLS,
|
|
286
286
|
zr as STAGING_URL,
|
|
287
|
-
|
|
288
|
-
|
|
287
|
+
Qm as SlippageType,
|
|
288
|
+
Nm as StakeProvider,
|
|
289
289
|
hr as StandardPassports,
|
|
290
|
-
|
|
290
|
+
zl as StatType,
|
|
291
291
|
br as SupportedPassports,
|
|
292
|
-
|
|
293
|
-
|
|
292
|
+
bl as TIER_LEVEL,
|
|
293
|
+
Dl as Timeline,
|
|
294
294
|
Va as TokenChecker,
|
|
295
295
|
Ka as TransactionType,
|
|
296
296
|
Ha as TransactionsManager,
|
|
@@ -298,19 +298,19 @@ export {
|
|
|
298
298
|
Ni as USDR3CRVABI,
|
|
299
299
|
Bi as USDRABI,
|
|
300
300
|
Vi as USDTABI,
|
|
301
|
-
|
|
301
|
+
Zl as UpperTabPossibleValues,
|
|
302
302
|
oi as UserFriendlyErrorCodes,
|
|
303
303
|
qt as UserKeys,
|
|
304
304
|
Ba as Utxo,
|
|
305
|
-
|
|
305
|
+
Km as VERIFICATION_TYPE,
|
|
306
306
|
Bt as ValueCache,
|
|
307
|
-
|
|
308
|
-
|
|
307
|
+
Ym as VerificationTypes,
|
|
308
|
+
Om as VolatileAction,
|
|
309
309
|
Za as VolatileHelper,
|
|
310
310
|
Hi as WETHABI,
|
|
311
311
|
Nt as abiDecodeUtxo,
|
|
312
312
|
Ts as absBigInt,
|
|
313
|
-
|
|
313
|
+
fp as addPaddingToUtxos,
|
|
314
314
|
Dr as aipriseBaseOnboardingProductionUrl,
|
|
315
315
|
vr as aipriseBaseOnboardingSandboxUrl,
|
|
316
316
|
Uo as arbMainnetCrvCvxRegistry,
|
|
@@ -325,7 +325,7 @@ export {
|
|
|
325
325
|
Ge as axelar1Data,
|
|
326
326
|
Ye as axelar2Data,
|
|
327
327
|
Lt as babyJubInstance,
|
|
328
|
-
|
|
328
|
+
up as balanceChangedHandler,
|
|
329
329
|
Fo as baseCrvCvxRegistry,
|
|
330
330
|
Oe as baseData,
|
|
331
331
|
ye as baseRegistry,
|
|
@@ -340,23 +340,23 @@ export {
|
|
|
340
340
|
j as bnbMainnetRegistryFixed,
|
|
341
341
|
Rt as bnbPendleRegistry,
|
|
342
342
|
st as boostAmounts,
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
343
|
+
Cn as browserSupported,
|
|
344
|
+
Mp as buildInNullifiers,
|
|
345
|
+
Up as buildOutCommitments,
|
|
346
|
+
Bp as calcAccessTokenSiblingsAndSides,
|
|
347
|
+
Fp as calcAmountChanges,
|
|
348
|
+
Np as calcCommitmentsSiblingAndSides,
|
|
349
|
+
Op as calcEncryptedOutputs,
|
|
350
|
+
Vp as calcPublicSignalCount,
|
|
351
|
+
Wp as calcStealthAddressStructure,
|
|
352
352
|
Is as calculateAmountUsingBeeps,
|
|
353
|
-
|
|
354
|
-
|
|
353
|
+
Jn as calculateDollarValue,
|
|
354
|
+
am as calculateStakeNullifier,
|
|
355
355
|
Cs as calculateSum,
|
|
356
356
|
l as callOneInchAPI,
|
|
357
357
|
x as callRelayerTransactAPI,
|
|
358
|
-
|
|
359
|
-
|
|
358
|
+
Un as capitalizeFirstLetter,
|
|
359
|
+
Wn as caseInsensitiveEqual,
|
|
360
360
|
qe as chainIds,
|
|
361
361
|
Qe as chainIdsByType,
|
|
362
362
|
pi as checkErrorForSnapshotRestore,
|
|
@@ -366,52 +366,52 @@ export {
|
|
|
366
366
|
ko as coingeckoPriceUrl,
|
|
367
367
|
So as coingeckoPriceUrl2,
|
|
368
368
|
Io as coingeckoTokenListUrl,
|
|
369
|
-
|
|
370
|
-
|
|
369
|
+
wp as constructEmporiumProof,
|
|
370
|
+
vp as constructZkProof,
|
|
371
371
|
Ar as contractMetadataMapping,
|
|
372
|
-
|
|
373
|
-
|
|
372
|
+
pn as convertIntegrationProviderToExternalActionId,
|
|
373
|
+
Hp as createCallDataHash,
|
|
374
374
|
Gs as createProvider,
|
|
375
|
-
|
|
375
|
+
im as createStakeCommitment,
|
|
376
376
|
je as crossChainAccessTokenNetworks,
|
|
377
377
|
no as crvSymbol,
|
|
378
|
-
|
|
379
|
-
|
|
378
|
+
ql as curveNetworkNames,
|
|
379
|
+
Ql as curvePools,
|
|
380
380
|
po as curveWithdrawGasTokenAddress,
|
|
381
381
|
mo as curveZeroAddress,
|
|
382
382
|
Na as customTokenRegistry,
|
|
383
383
|
lo as cvxSymbol,
|
|
384
384
|
Ii as daiABI,
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
385
|
+
Am as dataBeefyApiConfig,
|
|
386
|
+
rl as dayInMilliseconds,
|
|
387
|
+
Qn as debounce,
|
|
388
388
|
Ys as decodeMetadata,
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
bn as decodeTxInput,
|
|
390
|
+
Dn as decodeTxLogs,
|
|
391
391
|
Vt as decodeUtxo,
|
|
392
392
|
Wt as decodeUtxoConstructorArgs,
|
|
393
|
-
|
|
393
|
+
sm as decryptStake,
|
|
394
394
|
Gt as decryptUtxo,
|
|
395
395
|
Kt as decryptUtxoConstructorArgs,
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
396
|
+
Rm as defaultHookData,
|
|
397
|
+
Tm as defaultHookDataArray,
|
|
398
|
+
Pm as defaultStealthAddressStructure,
|
|
399
399
|
Qr as deploymentMode,
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
400
|
+
Gp as deserializeCircomData,
|
|
401
|
+
vn as deserializeDecodedTxs,
|
|
402
|
+
Jp as determinePendleSwapType,
|
|
403
|
+
$p as determinePendleSwapTypeApiRoute,
|
|
404
|
+
ol as divideMonthOnIntervals,
|
|
405
|
+
lm as emporiumOp,
|
|
406
|
+
Jm as emptyDecodedTx,
|
|
407
|
+
km as emptyStealthAddressStructure,
|
|
408
|
+
vl as emptyUserPointsBreakdown,
|
|
409
|
+
Ll as emptyUserPointsResponse,
|
|
410
|
+
fm as encodeEmporiumMetadata,
|
|
411
|
+
nm as encodeHStakeMetadata,
|
|
412
|
+
pm as encryptStake,
|
|
413
413
|
Yt as encryptUtxo,
|
|
414
|
-
|
|
414
|
+
em as erc20TokenFromPendleAsset,
|
|
415
415
|
gt as ethBeefyRegistry,
|
|
416
416
|
No as ethCrvCvxRegistry,
|
|
417
417
|
Le as ethMainnetData,
|
|
@@ -419,32 +419,32 @@ export {
|
|
|
419
419
|
z as ethMainnetRegistryFixed,
|
|
420
420
|
Tt as ethPendleRegistry,
|
|
421
421
|
Yo as ethSymbol,
|
|
422
|
-
|
|
422
|
+
$n as ethToWei,
|
|
423
423
|
fo as ethVolatileAddress,
|
|
424
424
|
Ya as externalActionToTransactionType,
|
|
425
425
|
ii as extractMessage,
|
|
426
426
|
vi as factoryABI,
|
|
427
427
|
Pt as findSyAddress,
|
|
428
428
|
Es as fixDecimalsAmount,
|
|
429
|
-
|
|
429
|
+
zp as generateZkProof,
|
|
430
430
|
zs as getActionFromMetadata,
|
|
431
431
|
nr as getAmountAfterRelayAndFlatFees,
|
|
432
432
|
pr as getAmountAfterRelayAndFlatFeesAndSlippage,
|
|
433
433
|
mr as getAmountAfterRelayFee,
|
|
434
434
|
lr as getAmountAfterSlippage,
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
435
|
+
ep as getAmountInToken,
|
|
436
|
+
rp as getAmountInWei,
|
|
437
|
+
op as getAmountInWeiOrZero,
|
|
438
|
+
tp as getAmountWithPrecision,
|
|
439
|
+
ap as getAmountWithPrecisionOrZero,
|
|
440
440
|
fr as getAmountWithoutFee,
|
|
441
|
-
|
|
441
|
+
rm as getAssetTypeFromPendleMarket,
|
|
442
442
|
A as getAxelarGasEstimate,
|
|
443
|
-
|
|
443
|
+
Sn as getAxelarMigrationInfo,
|
|
444
444
|
c as getBeefyHistoricalChartData,
|
|
445
445
|
At as getBeefyRegistryWithChainId,
|
|
446
|
-
|
|
447
|
-
|
|
446
|
+
qp as getCRV,
|
|
447
|
+
jp as getCVX,
|
|
448
448
|
Go as getCalcTokenAmountWithDynamicArray,
|
|
449
449
|
jt as getCircomSign,
|
|
450
450
|
Co as getCoingeckoIdForNativeTokens,
|
|
@@ -454,12 +454,12 @@ export {
|
|
|
454
454
|
n as getCoingeckoPrices,
|
|
455
455
|
p as getCoingeckoTokenList,
|
|
456
456
|
Oo as getCrvCvxWithChainId,
|
|
457
|
-
|
|
457
|
+
tl as getCurrentWeek,
|
|
458
458
|
v as getCurvePools,
|
|
459
459
|
L as getCurvePoolsforPriceFetching,
|
|
460
460
|
o as getDataServerURL,
|
|
461
|
-
|
|
462
|
-
|
|
461
|
+
al as getDateFromWeek,
|
|
462
|
+
xp as getDepositEvents,
|
|
463
463
|
Ie as getERC20Registry,
|
|
464
464
|
Xs as getERC20Token,
|
|
465
465
|
Js as getERC20TokenBySymbol,
|
|
@@ -469,7 +469,7 @@ export {
|
|
|
469
469
|
qs as getExternalActionIdHash,
|
|
470
470
|
Qs as getExternalMetadataHash,
|
|
471
471
|
Ce as getFixedRegistry,
|
|
472
|
-
|
|
472
|
+
yn as getFlatFees,
|
|
473
473
|
y as getGasEstimates,
|
|
474
474
|
_o as getGasStationUrl,
|
|
475
475
|
$a as getGenericFeeOverTransactionValueErrorMessage,
|
|
@@ -478,34 +478,34 @@ export {
|
|
|
478
478
|
cr as getHinkalFeeRateInBeeps,
|
|
479
479
|
ur as getHinkalParameters,
|
|
480
480
|
E as getIdleRelay,
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
481
|
+
pp as getInputUtxoAndBalance,
|
|
482
|
+
mp as getInputUtxosFromEncryptedOutputs,
|
|
483
|
+
ln as getInteractionFromAction,
|
|
484
|
+
Tn as getNetworkObject,
|
|
485
|
+
Pn as getNetworkType,
|
|
486
|
+
il as getNextDay,
|
|
487
487
|
Xe as getNonLocalhostChainId,
|
|
488
|
-
|
|
489
|
-
|
|
488
|
+
Ip as getOdosPrice,
|
|
489
|
+
Ep as getOneInchPrice,
|
|
490
490
|
kt as getPendleRegistryWithChainId,
|
|
491
491
|
N as getPublicWalletBalance,
|
|
492
492
|
dr as getRelayFee,
|
|
493
493
|
B as getRelayerURL,
|
|
494
494
|
tn as getSequence,
|
|
495
495
|
t as getServerURL,
|
|
496
|
-
|
|
496
|
+
cp as getShieldedBalance,
|
|
497
497
|
xr as getSlippageFee,
|
|
498
|
-
|
|
498
|
+
om as getTokenIndexForPendleFlatFee,
|
|
499
499
|
T as getTokenPrice,
|
|
500
500
|
P as getTokenPriceEth,
|
|
501
501
|
k as getTokenPrices,
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
502
|
+
Rp as getUniswapFee,
|
|
503
|
+
Tp as getUniswapPrice,
|
|
504
|
+
Pp as getUniswapPriceHelper,
|
|
505
505
|
hs as getValueFirstNDigit,
|
|
506
|
-
|
|
506
|
+
sl as getWeekTimestamps,
|
|
507
507
|
St as getYtTokensWithChainId,
|
|
508
|
-
|
|
508
|
+
nl as hasCertificationPeriodExpired,
|
|
509
509
|
ra as hinkalActionBeefy,
|
|
510
510
|
ta as hinkalActionConvex,
|
|
511
511
|
ia as hinkalActionCurve,
|
|
@@ -516,23 +516,23 @@ export {
|
|
|
516
516
|
ca as hinkalSwap,
|
|
517
517
|
xa as hinkalTransfer,
|
|
518
518
|
Aa as hinkalWithdraw,
|
|
519
|
-
|
|
520
|
-
|
|
519
|
+
pl as hourInMilliseconds,
|
|
520
|
+
um as isBeefyDeposit,
|
|
521
521
|
Xt as isCircomNegative,
|
|
522
522
|
jr as isDevelopment,
|
|
523
523
|
Je as isLocalNetwork,
|
|
524
|
-
|
|
524
|
+
On as isNicknameValid,
|
|
525
525
|
Xr as isNode,
|
|
526
526
|
Jr as isNotClientProduction,
|
|
527
527
|
$r as isNotProduction,
|
|
528
|
-
|
|
528
|
+
Bn as isNullOrEmpty,
|
|
529
529
|
$e as isOptimismBedrockLike,
|
|
530
530
|
er as isOptimismEcotoneLike,
|
|
531
531
|
rr as isOptimismLike,
|
|
532
532
|
eo as isPlayground,
|
|
533
533
|
ro as isStaging,
|
|
534
534
|
oo as isWebpack,
|
|
535
|
-
|
|
535
|
+
ml as isWeekCurrent,
|
|
536
536
|
It as isYtToken,
|
|
537
537
|
wt as jubHolder,
|
|
538
538
|
zi as lidoStEthAbi,
|
|
@@ -550,8 +550,8 @@ export {
|
|
|
550
550
|
or as localhostNetwork,
|
|
551
551
|
Te as localhostRegistry,
|
|
552
552
|
li as logError,
|
|
553
|
-
|
|
554
|
-
|
|
553
|
+
Hn as lowerCaseIncludes,
|
|
554
|
+
Gn as lowerCaseStartsWith,
|
|
555
555
|
nt as lpLink,
|
|
556
556
|
pt as lpProgramStartWeek,
|
|
557
557
|
_ as lpTokens,
|
|
@@ -560,7 +560,7 @@ export {
|
|
|
560
560
|
bs as minBigInt,
|
|
561
561
|
ds as mintAccessToken,
|
|
562
562
|
xs as mintTokenCrossChain,
|
|
563
|
-
|
|
563
|
+
ll as minuteInMilliseconds,
|
|
564
564
|
tr as networkRegistry,
|
|
565
565
|
co as oneInchZeroAddress,
|
|
566
566
|
ys as openDefaultPassportWindow,
|
|
@@ -571,10 +571,10 @@ export {
|
|
|
571
571
|
Ct as optimismPendleRegistry,
|
|
572
572
|
Ae as optimismRegistry,
|
|
573
573
|
oe as optimismRegistryFixed,
|
|
574
|
-
|
|
574
|
+
cn as outputUtxoProcessing,
|
|
575
575
|
xo as ownerPublicKey,
|
|
576
|
-
|
|
577
|
-
|
|
576
|
+
fl as parseWeek,
|
|
577
|
+
Zn as patchRegistry,
|
|
578
578
|
go as permitSignatureValidFor,
|
|
579
579
|
Ji as poLidoNftAbi,
|
|
580
580
|
Jo as poLidoNftAddress,
|
|
@@ -589,41 +589,42 @@ export {
|
|
|
589
589
|
Mt as preProcessing,
|
|
590
590
|
ho as proCoingeckoUrl,
|
|
591
591
|
bo as proHeader,
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
592
|
+
An as processAmountChanges,
|
|
593
|
+
xn as processGasEstimates,
|
|
594
|
+
xm as produceOp,
|
|
595
|
+
an as promisify,
|
|
595
596
|
bi as quoterV2ABI,
|
|
596
597
|
lt as raffleProgramStartWeek,
|
|
597
|
-
|
|
598
|
+
ip as randomBigInt,
|
|
598
599
|
ft as referralLink,
|
|
599
|
-
|
|
600
|
+
_n as reloadPage,
|
|
600
601
|
rn as requireEnv,
|
|
601
602
|
Os as resetCache,
|
|
602
603
|
Ta as resetMerkleTrees,
|
|
603
|
-
|
|
604
|
+
sn as resolveSync,
|
|
604
605
|
ei as rethrowKnownGasErrorIfPossible,
|
|
605
|
-
|
|
606
|
-
|
|
606
|
+
gp as retrieveEvents,
|
|
607
|
+
bp as runContractFunction,
|
|
607
608
|
wi as sanctionsListABI,
|
|
608
609
|
Vs as saveTxsCache,
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
610
|
+
kp as searchPoolAndFee,
|
|
611
|
+
cl as secondInMilliseconds,
|
|
612
|
+
Kp as serializeCircomData,
|
|
613
|
+
Ln as serializeDecodedTxs,
|
|
613
614
|
Ws as setHinkalCache,
|
|
614
615
|
Ao as signaturePhrase,
|
|
615
|
-
|
|
616
|
+
jm as slippageLevels,
|
|
616
617
|
$o as stMaticSymbol,
|
|
617
618
|
Lr as supportedPassportLinks,
|
|
618
619
|
uo as threePoolSymbol,
|
|
619
620
|
Ds as toBigInt,
|
|
620
621
|
vs as toBigIntOrUndefined,
|
|
621
|
-
|
|
622
|
+
sp as toBigIntWithDecimals,
|
|
622
623
|
Ls as toCommaSeparatedNumberString,
|
|
623
|
-
|
|
624
|
+
dl as toDateString,
|
|
624
625
|
ws as toInt,
|
|
625
626
|
_s as toNumberOrUndefined,
|
|
626
|
-
|
|
627
|
+
Fn as toTitleCase,
|
|
627
628
|
ti as transactionErrorCodes,
|
|
628
629
|
as as transactionProverABI,
|
|
629
630
|
Ms as trimLeadingZeros,
|
|
@@ -635,10 +636,10 @@ export {
|
|
|
635
636
|
H as urlForBeefyVaultTokens,
|
|
636
637
|
G as urlForBeefyVaultTotalInUSD,
|
|
637
638
|
K as urlForRegularTokenPricesInBeefy,
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
639
|
+
jn as wait,
|
|
640
|
+
Yn as waitLittle,
|
|
641
|
+
En as walletSupported,
|
|
642
|
+
xl as weekInMilliseconds,
|
|
642
643
|
et as wstEthSymbol,
|
|
643
644
|
yo as zeroAddress
|
|
644
645
|
};
|