@sip-protocol/sdk 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/LICENSE +21 -0
  2. package/dist/{TransportWebUSB-YQMAGJAJ.mjs → TransportWebUSB-2KITI5HD.mjs} +24 -12
  3. package/dist/browser.d.mts +4 -4
  4. package/dist/browser.d.ts +4 -4
  5. package/dist/browser.js +1346 -838
  6. package/dist/browser.mjs +13 -3
  7. package/dist/{chunk-64AYA5F5.mjs → chunk-G3TBBG2K.mjs} +221 -146
  8. package/dist/{chunk-4GRJ5MAW.mjs → chunk-KXETSSKP.mjs} +4 -0
  9. package/dist/{chunk-6EU6WQFK.mjs → chunk-PT2DNA7E.mjs} +257 -235
  10. package/dist/{constants-LHAAUC2T.mjs → constants-DCJYTIU3.mjs} +5 -1
  11. package/dist/{dist-2OGQ7FED.mjs → dist-PYEXZNFD.mjs} +609 -221
  12. package/dist/{index-DeE1ZzA4.d.mts → index-B1d8pihL.d.mts} +117 -33
  13. package/dist/{index-DXh2IGkz.d.ts → index-UQhQJZbM.d.ts} +117 -33
  14. package/dist/index.d.mts +3 -3
  15. package/dist/index.d.ts +3 -3
  16. package/dist/index.js +1339 -831
  17. package/dist/index.mjs +13 -3
  18. package/dist/{interface-Bf7w1PLW.d.mts → interface-CQi0-WfS.d.mts} +2 -2
  19. package/dist/{interface-Bf7w1PLW.d.ts → interface-CQi0-WfS.d.ts} +2 -2
  20. package/dist/{noir-kzbLVTei.d.mts → noir-CwPIyBLj.d.mts} +1 -1
  21. package/dist/{noir-kzbLVTei.d.ts → noir-CwPIyBLj.d.ts} +1 -1
  22. package/dist/proofs/halo2.d.mts +1 -1
  23. package/dist/proofs/halo2.d.ts +1 -1
  24. package/dist/proofs/kimchi.d.mts +1 -1
  25. package/dist/proofs/kimchi.d.ts +1 -1
  26. package/dist/proofs/noir.d.mts +1 -1
  27. package/dist/proofs/noir.d.ts +1 -1
  28. package/dist/{solana-U3MEGU7W.mjs → solana-ZWNIQTSU.mjs} +6 -6
  29. package/package.json +32 -32
  30. package/src/adapters/gelato-relay.ts +386 -0
  31. package/src/adapters/index.ts +28 -0
  32. package/src/adapters/oneinch.ts +126 -0
  33. package/src/chains/ethereum/privacy-adapter.ts +8 -5
  34. package/src/chains/ethereum/stealth.ts +17 -14
  35. package/src/chains/near/privacy-adapter.ts +8 -5
  36. package/src/chains/near/resolver.ts +22 -8
  37. package/src/chains/near/stealth.ts +9 -9
  38. package/src/chains/solana/constants.ts +13 -1
  39. package/src/chains/solana/ephemeral-keys.ts +3 -257
  40. package/src/chains/solana/index.ts +2 -3
  41. package/src/chains/solana/providers/helius-enhanced.ts +6 -6
  42. package/src/chains/solana/providers/webhook.ts +2 -2
  43. package/src/chains/solana/scan.ts +9 -8
  44. package/src/chains/solana/stealth-scanner.ts +3 -3
  45. package/src/chains/solana/types.ts +18 -4
  46. package/src/cosmos/ibc-stealth.ts +6 -6
  47. package/src/index.ts +6 -0
  48. package/src/move/aptos.ts +15 -9
  49. package/src/move/sui.ts +15 -9
  50. package/src/nft/private-nft.ts +10 -6
  51. package/src/privacy-backends/shadowwire.ts +13 -0
  52. package/src/stealth/ed25519.ts +173 -12
  53. package/src/stealth/index.ts +47 -4
  54. package/src/stealth/secp256k1.ts +144 -7
  55. package/src/stealth.ts +7 -0
  56. package/src/wallet/ethereum/privacy-adapter.ts +1 -1
  57. package/src/wallet/hardware/ledger-privacy.ts +2 -2
  58. package/src/wallet/near/adapter.ts +2 -2
  59. package/src/wallet/near/meteor-wallet.ts +2 -2
  60. package/src/wallet/near/my-near-wallet.ts +2 -2
  61. package/src/wallet/near/wallet-selector.ts +2 -2
  62. package/src/wallet/solana/privacy-adapter.ts +9 -9
  63. package/dist/chunk-5EKF243P.mjs +0 -33809
  64. package/dist/chunk-YWGJ77A2.mjs +0 -33806
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 RECTOR Labs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1933,10 +1933,10 @@ var require_semver2 = __commonJS({
1933
1933
  }
1934
1934
  });
1935
1935
 
1936
- // ../../node_modules/.pnpm/@ledgerhq+hw-transport@6.31.16/node_modules/@ledgerhq/hw-transport/lib-es/Transport.js
1936
+ // ../../node_modules/.pnpm/@ledgerhq+hw-transport@6.35.2/node_modules/@ledgerhq/hw-transport/lib-es/Transport.js
1937
1937
  import EventEmitter from "events";
1938
1938
 
1939
- // ../../node_modules/.pnpm/@ledgerhq+errors@6.28.0/node_modules/@ledgerhq/errors/lib-es/helpers.js
1939
+ // ../../node_modules/.pnpm/@ledgerhq+errors@6.35.0/node_modules/@ledgerhq/errors/lib-es/helpers.js
1940
1940
  var errorClasses = {};
1941
1941
  var deserializers = {};
1942
1942
  var addCustomErrorDeserializer = (name, deserializer) => {
@@ -1970,7 +1970,7 @@ function isObject(value) {
1970
1970
  return typeof value === "object";
1971
1971
  }
1972
1972
 
1973
- // ../../node_modules/.pnpm/@ledgerhq+errors@6.28.0/node_modules/@ledgerhq/errors/lib-es/index.js
1973
+ // ../../node_modules/.pnpm/@ledgerhq+errors@6.35.0/node_modules/@ledgerhq/errors/lib-es/index.js
1974
1974
  var AccountNameRequiredError = createCustomErrorClass("AccountNameRequired");
1975
1975
  var AccountNotSupported = createCustomErrorClass("AccountNotSupported");
1976
1976
  var AccountAwaitingSendPendingOperations = createCustomErrorClass("AccountAwaitingSendPendingOperations");
@@ -2006,6 +2006,7 @@ var FirmwareNotRecognized = createCustomErrorClass("FirmwareNotRecognized");
2006
2006
  var HardResetFail = createCustomErrorClass("HardResetFail");
2007
2007
  var InvalidXRPTag = createCustomErrorClass("InvalidXRPTag");
2008
2008
  var InvalidAddress = createCustomErrorClass("InvalidAddress");
2009
+ var InvalidTransactionError = createCustomErrorClass("InvalidTransactionError");
2009
2010
  var InvalidNonce = createCustomErrorClass("InvalidNonce");
2010
2011
  var InvalidAddressBecauseDestinationIsAlsoSource = createCustomErrorClass("InvalidAddressBecauseDestinationIsAlsoSource");
2011
2012
  var LatestMCUInstalledError = createCustomErrorClass("LatestMCUInstalledError");
@@ -2091,6 +2092,8 @@ var FeeNotLoaded = createCustomErrorClass("FeeNotLoaded");
2091
2092
  var FeeNotLoadedSwap = createCustomErrorClass("FeeNotLoadedSwap");
2092
2093
  var FeeRequired = createCustomErrorClass("FeeRequired");
2093
2094
  var FeeTooHigh = createCustomErrorClass("FeeTooHigh");
2095
+ var ValAddressRequired = createCustomErrorClass("ValAddressRequired");
2096
+ var RedelegateDstValAddressRequired = createCustomErrorClass("RedelegateDstValAddressRequired");
2094
2097
  var PendingOperation = createCustomErrorClass("PendingOperation");
2095
2098
  var SyncError = createCustomErrorClass("SyncError");
2096
2099
  var PairingFailed = createCustomErrorClass("PairingFailed");
@@ -2102,12 +2105,19 @@ var FirmwareOrAppUpdateRequired = createCustomErrorClass("FirmwareOrAppUpdateReq
2102
2105
  var ReplacementTransactionUnderpriced = createCustomErrorClass("ReplacementTransactionUnderpriced");
2103
2106
  var OpReturnDataSizeLimit = createCustomErrorClass("OpReturnSizeLimit");
2104
2107
  var DustLimit = createCustomErrorClass("DustLimit");
2108
+ var ConcordiumInsufficientFunds = createCustomErrorClass("ConcordiumInsufficientFunds");
2109
+ var ConcordiumMemoTooLong = createCustomErrorClass("ConcordiumMemoTooLong");
2110
+ var ConcordiumPairingExpiredError = createCustomErrorClass("ConcordiumPairingExpiredError");
2111
+ var ConcordiumSessionExpiredError = createCustomErrorClass("ConcordiumSessionExpiredError");
2112
+ var ConcordiumTrustedMetadataServiceError = createCustomErrorClass("ConcordiumTrustedMetadataServiceError");
2113
+ var ConcordiumAddressVerificationFailedError = createCustomErrorClass("ConcordiumAddressVerificationFailedError");
2105
2114
  var LanguageNotFound = createCustomErrorClass("LanguageNotFound");
2106
2115
  var NoDBPathGiven = createCustomErrorClass("NoDBPathGiven");
2107
2116
  var DBWrongPassword = createCustomErrorClass("DBWrongPassword");
2108
2117
  var DBNotReset = createCustomErrorClass("DBNotReset");
2109
2118
  var SequenceNumberError = createCustomErrorClass("SequenceNumberError");
2110
2119
  var DisabledTransactionBroadcastError = createCustomErrorClass("DisabledTransactionBroadcastError");
2120
+ var InvalidParameterError = createCustomErrorClass("InvalidParameterError");
2111
2121
  var HwTransportErrorType;
2112
2122
  (function(HwTransportErrorType2) {
2113
2123
  HwTransportErrorType2["Unknown"] = "Unknown";
@@ -2131,6 +2141,7 @@ var StatusCodes = {
2131
2141
  ACCESS_CONDITION_NOT_FULFILLED: 38916,
2132
2142
  ALGORITHM_NOT_SUPPORTED: 38020,
2133
2143
  CLA_NOT_SUPPORTED: 28160,
2144
+ CLA_NOT_SUPPORTED_BOOTLOADER: 28161,
2134
2145
  CODE_BLOCKED: 38976,
2135
2146
  CODE_NOT_INITIALIZED: 38914,
2136
2147
  COMMAND_INCOMPATIBLE_FILE_STRUCTURE: 27009,
@@ -2179,8 +2190,7 @@ var StatusCodes = {
2179
2190
  INVALID_RESTORE_STATE: 26179,
2180
2191
  INVALID_CHUNK_LENGTH: 26420,
2181
2192
  INVALID_BACKUP_HEADER: 26698,
2182
- // Not documented:
2183
- TRUSTCHAIN_WRONG_SEED: 45063
2193
+ SW_BAD_STATE: 45063
2184
2194
  };
2185
2195
  function getAltStatusMessage(code) {
2186
2196
  switch (code) {
@@ -2199,6 +2209,8 @@ function getAltStatusMessage(code) {
2199
2209
  return "Invalid parameter received";
2200
2210
  case 21781:
2201
2211
  return "Locked device";
2212
+ case 45063:
2213
+ return "Unexpected state on the device";
2202
2214
  }
2203
2215
  if (28416 <= code && code <= 28671) {
2204
2216
  return "Internal error, please report";
@@ -2240,7 +2252,7 @@ var LockedDeviceError = class _LockedDeviceError extends TransportStatusError {
2240
2252
  };
2241
2253
  addCustomErrorDeserializer("TransportStatusError", (e) => new TransportStatusError(e.statusCode));
2242
2254
 
2243
- // ../../node_modules/.pnpm/@ledgerhq+logs@6.13.0/node_modules/@ledgerhq/logs/lib-es/index.js
2255
+ // ../../node_modules/.pnpm/@ledgerhq+logs@6.17.0/node_modules/@ledgerhq/logs/lib-es/index.js
2244
2256
  var id = 0;
2245
2257
  var subscribers = [];
2246
2258
  var log = (type, message, data) => {
@@ -2353,7 +2365,7 @@ if (typeof window !== "undefined") {
2353
2365
  window.__ledgerLogsListen = listen;
2354
2366
  }
2355
2367
 
2356
- // ../../node_modules/.pnpm/@ledgerhq+hw-transport@6.31.16/node_modules/@ledgerhq/hw-transport/lib-es/Transport.js
2368
+ // ../../node_modules/.pnpm/@ledgerhq+hw-transport@6.35.2/node_modules/@ledgerhq/hw-transport/lib-es/Transport.js
2357
2369
  var DEFAULT_LOG_TYPE = "transport";
2358
2370
  var Transport = class {
2359
2371
  exchangeTimeout = 3e4;
@@ -2676,7 +2688,7 @@ var Transport = class {
2676
2688
  static ErrorMessage_NoDeviceFound = "No Ledger device found";
2677
2689
  };
2678
2690
 
2679
- // ../../node_modules/.pnpm/@ledgerhq+devices@8.9.0/node_modules/@ledgerhq/devices/lib-es/hid-framing.js
2691
+ // ../../node_modules/.pnpm/@ledgerhq+devices@8.14.2/node_modules/@ledgerhq/devices/lib-es/hid-framing.js
2680
2692
  var Tag = 5;
2681
2693
  function asUInt16BE(value) {
2682
2694
  const b = Buffer.alloc(2);
@@ -2708,7 +2720,7 @@ var createHIDframing = (channel, packetSize) => {
2708
2720
  head.writeUInt8(Tag, 2);
2709
2721
  head.writeUInt16BE(i, 3);
2710
2722
  const chunk = data.slice(i * blockSize, (i + 1) * blockSize);
2711
- blocks.push(Buffer.concat([head, chunk]));
2723
+ blocks.push(new Uint8Array(Buffer.concat([head, chunk])));
2712
2724
  }
2713
2725
  return blocks;
2714
2726
  },
@@ -2762,7 +2774,7 @@ var createHIDframing = (channel, packetSize) => {
2762
2774
  };
2763
2775
  var hid_framing_default = createHIDframing;
2764
2776
 
2765
- // ../../node_modules/.pnpm/@ledgerhq+devices@8.9.0/node_modules/@ledgerhq/devices/lib-es/index.js
2777
+ // ../../node_modules/.pnpm/@ledgerhq+devices@8.14.2/node_modules/@ledgerhq/devices/lib-es/index.js
2766
2778
  var import_semver = __toESM(require_semver2());
2767
2779
  var DeviceModelId;
2768
2780
  (function(DeviceModelId2) {
@@ -2913,7 +2925,7 @@ for (const id2 in devices) {
2913
2925
  }
2914
2926
  }
2915
2927
 
2916
- // ../../node_modules/.pnpm/@ledgerhq+hw-transport-webusb@6.29.16/node_modules/@ledgerhq/hw-transport-webusb/lib-es/webusb.js
2928
+ // ../../node_modules/.pnpm/@ledgerhq+hw-transport-webusb@6.34.2/node_modules/@ledgerhq/hw-transport-webusb/lib-es/webusb.js
2917
2929
  var ledgerDevices = [
2918
2930
  {
2919
2931
  vendorId: ledgerUSBVendorId
@@ -2937,7 +2949,7 @@ async function getFirstLedgerDevice() {
2937
2949
  }
2938
2950
  var isSupported = () => Promise.resolve(!!navigator && !!navigator.usb && typeof navigator.usb.getDevices === "function");
2939
2951
 
2940
- // ../../node_modules/.pnpm/@ledgerhq+hw-transport-webusb@6.29.16/node_modules/@ledgerhq/hw-transport-webusb/lib-es/TransportWebUSB.js
2952
+ // ../../node_modules/.pnpm/@ledgerhq+hw-transport-webusb@6.34.2/node_modules/@ledgerhq/hw-transport-webusb/lib-es/TransportWebUSB.js
2941
2953
  var configurationValue = 1;
2942
2954
  var endpointNumber = 3;
2943
2955
  var TransportWebUSB = class _TransportWebUSB extends Transport {
@@ -1,8 +1,8 @@
1
- export { dN as ATTESTATION_VERSION, lH as AddressReuseResult, lX as AdvisorMessage, m1 as AdvisorRecommendation, l$ as AdvisorResponse, lW as AdvisorRole, lY as AdvisorStatus, l_ as AdvisoryContext, cv as AggregationProgressCallback, cu as AggregationProgressEvent, cz as AggregationStepResult, ct as AggregatorConfig, lN as AnalyzableTransaction, dw as AnyNativeProof, lp as ApproveParams, lq as ApproveResult, aE as AptosStealthResult, aq as AptosStealthService, gd as AttestationGatedConfig, g4 as AttestationGatedDisclosure, dZ as AttestationRequest, d_ as AttestationResult, g5 as AttestationSchema, gg as AttestationVerificationResult, fN as AuditReport, fJ as AuditorKeyDerivation, fK as AuditorType, bN as BLS12_381_MODULUS, bK as BN254_MODULUS, bR as BUILTIN_TEMPLATES, es as BackendCapabilities, lg as BackendRegistrationOptions, cq as BalanceAttestationParams, bS as BaseProofComposer, gx as BaseWalletAdapter, iX as BatchVerificationRequest, iY as BatchVerificationResult, gl as BidReceipt, ff as BitcoinNetwork, m$ as BlockRange, f0 as BridgeProvider, B as BrowserNoirProvider, t as BrowserNoirProviderConfig, dQ as CHAIN_NUMERIC_IDS, iy as CIRCUIT_METADATA, bA as COMPLIANCE_CIRCUIT_IDS, mA as CONFIGURABLE_ETH_RPC, mz as CONFIGURABLE_SOLANA_RPC, mB as CONFIGURABLE_SUI_RPC, mC as CONFIGURABLE_ZCASH_RPC, aL as COSMOS_CHAIN_PREFIXES, l3 as CSPLClient, lj as CSPLClientConfig, lr as CSPLServiceStatus, l4 as CSPLTokenService, lk as CSPLTokenServiceConfig, fY as CSVExport, d1 as CacheEntry, d0 as CacheEntryMetadata, d8 as CacheEvent, d9 as CacheEventListener, d7 as CacheEventType, c$ as CacheKey, c_ as CacheKeyComponents, c0 as CacheKeyGenerator, d2 as CacheLookupResult, dc as CacheWarmingConfig, gs as CastVoteParams, nK as ChainCharacteristics, nI as ChainFamily, o1 as ChainFeeConfig, lI as ClusterResult, bd as CommitmentPoint, cP as CompatibilityEntry, fF as ComplianceManager, cn as ComplianceProofConfig, bx as ComplianceProofProvider, cs as ComplianceProofResult, cm as ComplianceProofType, fG as ComplianceReporter, cT as CompositionPlan, cU as CompositionRequest, cS as CompositionState, cZ as CompositionTemplate, fI as ConditionalDisclosure, ds as ConversionErrorCode, dr as ConversionMetadata, dq as ConversionOptions, dv as ConverterValidationError, du as ConverterValidationResult, aM as CosmosChainId, aN as CosmosStealthResult, aG as CosmosStealthService, gm as CreateBidParams, a3 as CreateIntentOptions, fC as CreatePaymentOptions, bH as CrossSystemValidator, C as CryptoError, bD as DEFAULT_AGGREGATOR_CONFIG, nT as DEFAULT_CHAIN_FEES, cl as DEFAULT_CONVERSION_OPTIONS, nS as DEFAULT_FEE_TIERS, c3 as DEFAULT_LRU_CONFIG, nj as DEFAULT_MANAGER_CONFIG, ni as DEFAULT_MOCK_CONFIG, c5 as DEFAULT_MULTI_TIER_CONFIG, mR as DEFAULT_NETWORK_CONFIG, bQ as DEFAULT_ORCHESTRATOR_CONFIG, c4 as DEFAULT_PERSISTENT_CONFIG, bG as DEFAULT_PIPELINE_CONFIG, mO as DEFAULT_PROXY_TIMEOUT, gb as DEFAULT_RANGE_API_ENDPOINT, iz as DEFAULT_RPC_URLS, nh as DEFAULT_SYNC_CONFIG, dO as DEFAULT_THRESHOLD, dP as DEFAULT_TOTAL_ORACLES, n_ as DEFAULT_TREASURY, by as DEFAULT_VALIDITY_PERIOD_SECONDS, c6 as DEFAULT_WARMING_CONFIG, fO as DecryptedTransaction, h3 as DerivationPath, f$ as DeriveMultipleParams, f_ as DeriveViewingKeyParams, fZ as DerivedViewingKey, cA as DetailedAggregationResult, cE as DetailedVerificationResult, hw as EIP1193ConnectInfo, hv as EIP1193Event, ht as EIP1193Provider, hx as EIP1193ProviderRpcError, hu as EIP1193RequestArguments, hy as EIP712Domain, hz as EIP712TypeDefinition, hB as EIP712TypedData, hA as EIP712Types, cK as EllipticCurve, n0 as EncryptedNote, gq as EncryptedVote, x as EncryptionNotImplementedError, jp as EnhancedAccountData, jq as EnhancedTransaction, jo as EnhancedTransactionEvents, jj as EnhancedTransactionType, E as ErrorCode, hH as EthereumAdapterConfig, h0 as EthereumChainId, hI as EthereumChainIdType, hF as EthereumChainMetadata, hE as EthereumTokenMetadata, hD as EthereumTransactionReceipt, hC as EthereumTransactionRequest, gQ as EthereumWalletAdapter, hG as EthereumWalletName, lJ as ExchangeExposureResult, fQ as ExportForRegulatorParams, eT as ExportedViewingKey, fU as FATFExport, fV as FATFTransaction, fW as FINCENExport, fX as FINCENTransaction, o4 as FeeBreakdown, o2 as FeeCalculationInput, o3 as FeeCalculationResult, nM as FeeCalculator, od as FeeCalculatorOptions, o6 as FeeCollectionEvent, of as FeeCollectionParams, og as FeeCollectionResult, o9 as FeeContractMethods, o8 as FeeContractState, oc as FeeGovernanceProposal, n$ as FeeModel, o7 as FeeStats, o0 as FeeTier, o5 as FeeTreasuryConfig, ob as FeeWaiver, oa as FeeWaiverType, cL as FieldCharacteristics, bW as FileCache, eB as FindBestRouteParams, lF as FullAnalysisResult, fM as GenerateAuditReportParams, ii as GenericProvider, j9 as GenericProviderConfig, js as GetTransactionHistoryOptions, dn as Halo2NativeProof, ca as Halo2ProofConverter, hW as HardwareAccount, hN as HardwareConnectionStatus, hP as HardwareDeviceInfo, h1 as HardwareErrorCode, hY as HardwareErrorCodeType, hU as HardwareEthereumTx, hT as HardwareSignRequest, hV as HardwareSignature, hX as HardwareTransport, hQ as HardwareWalletConfig, h2 as HardwareWalletError, hK as HardwareWalletType, io as HeliusEnhanced, ji as HeliusEnhancedConfig, jc as HeliusEnhancedTransaction, ih as HeliusProvider, ja as HeliusProviderConfig, jd as HeliusWebhookPayload, jb as HeliusWebhookTransaction, cr as HistoryCompletenessParams, de as ICacheKeyGenerator, dk as ICompiledCircuitCache, dg as ILRUCache, di as IMultiTierCache, c7 as INITIAL_PROOF_CACHE_STATS, dh as IPersistentCache, df as IProofCache, dj as IVerificationKeyCache, bV as IndexedDBCache, T as IntentBuilder, I as IntentError, cj as InvalidProofError, db as InvalidationRule, da as InvalidationStrategy, iI as JITO_BLOCK_ENGINES, iK as JITO_DEFAULTS, iJ as JITO_TIP_ACCOUNTS, iM as JitoBundleRequest, iN as JitoBundleResult, iD as JitoRelayer, iL as JitoRelayerConfig, iG as JitoRelayerError, iH as JitoRelayerErrorCode, fT as Jurisdiction, lA as KNOWN_EXCHANGES, ga as KNOWN_ISSUERS, dp as KimchiNativeProof, cc as KimchiProofConverter, lO as KnownExchange, bT as LRUCache, d3 as LRUCacheConfig, l8 as LatencyEstimate, hR as LedgerConfig, hL as LedgerModel, h9 as LedgerWalletAdapter, cF as LinkValidationResult, mc as LogLevel, k9 as MAX_NEAR_AMOUNT, iB as MAX_PROOF_SIZE_BYTES, iC as MAX_PUBLIC_INPUTS, i8 as MEMO_PROGRAM_ID, n1 as MerkleProof, p as MobileBrowser, q as MobileDeviceInfo, M as MobilePlatform, r as MobileWASMCompatibility, gS as MockEthereumAdapter, hJ as MockEthereumAdapterConfig, hZ as MockHardwareConfig, hd as MockLedgerAdapter, nv as MockObliviousSyncProvider, bw as MockProofProvider, gI as MockSolanaAdapter, hs as MockSolanaAdapterConfig, ee as MockSolver, eg as MockSolverConfig, nb as MockSyncProviderConfig, he as MockTrezorAdapter, gy as MockWalletAdapter, b_ as MultiTierCache, d5 as MultiTierCacheConfig, kp as NEARAnnouncement, kv as NEARClaimParams, kw as NEARClaimResult, kB as NEARCommitmentPoint, ku as NEARDetectedPayment, kF as NEAREncryptedPayload, kN as NEARExportFormat, kO as NEARExportOptions, nU as NEARFeeContract, oe as NEARFeeContractOptions, kK as NEARHistoricalTransaction, kJ as NEARHistoryPrivacyLevel, e8 as NEARIntentsAdapter, ed as NEARIntentsAdapterConfig, eC as NEARIntentsBackend, ko as NEARNetwork, kA as NEARPedersenCommitment, kq as NEARPrivateTransferParams, kr as NEARPrivateTransferResult, ks as NEARScanParams, kt as NEARScanResult, ky as NEARStealthAddressResult, kx as NEARStealthBalance, kz as NEARStealthMetaAddressResult, kG as NEARTransactionData, kL as NEARTransactionHistoryParams, kM as NEARTransactionHistoryResult, kI as NEARTransactionType, kD as NEARViewingKey, kE as NEARViewingKeyExport, kH as NEARViewingKeyStorage, jC as NEAR_DEFAULT_GAS, k8 as NEAR_ED25519_ORDER, jy as NEAR_EXPLORER_URLS, nZ as NEAR_FEE_CONTRACTS, jB as NEAR_IMPLICIT_ACCOUNT_LENGTH, ka as NEAR_MAX_COMMITMENT_VALUE, jx as NEAR_RPC_ENDPOINTS, jF as NEAR_SIP_MEMO_PREFIX, jz as NEAR_TOKEN_CONTRACTS, jA as NEAR_TOKEN_DECIMALS, kC as NEP141TokenCommitment, dl as NativeProofFormat, jk as NativeTransfer, N as NetworkError, mK as NetworkPrivacyConfig, jm as NftTransfer, iQ as NoirCircuitType, dm as NoirNativeProof, c8 as NoirProofConverter, jD as ONE_NEAR, jE as ONE_YOCTO, dM as ORACLE_DOMAIN, n3 as ObliviousNullifier, n7 as ObliviousSyncConfig, nt as ObliviousSyncError, nu as ObliviousSyncErrorCode, n8 as ObliviousSyncProvider, n4 as ObliviousSyncQuery, n5 as ObliviousSyncResponse, e7 as OneClickClient, dU as OracleAttestationMessage, dR as OracleId, dT as OracleInfo, dX as OracleRegistry, dY as OracleRegistryConfig, dV as OracleSignature, dS as OracleStatus, cR as OrchestratorConfig, cY as OrchestratorProgressCallback, cX as OrchestratorProgressEvent, cV as OrchestratorResult, bL as PALLAS_MODULUS, mP as PROXY_ENV_VAR, mQ as PROXY_ENV_VARS, cx as ParallelAggregationOptions, jr as ParseTransactionsOptions, mG as ParsedProxyConfig, fg as PaymentBuilder, fP as PdfExportOptions, bc as PedersenCommitment, d4 as PersistentCacheConfig, eb as PreparedSwap, f1 as PriceFeed, lP as PrivacyAdvisorAgent, lZ as PrivacyAdvisorConfig, m0 as PrivacyAdvisoryReport, lc as PrivacyAvailabilityResult, l6 as PrivacyBackend, l9 as PrivacyBackendCapabilities, l0 as PrivacyBackendRegistry, lf as PrivacyBackendSelectionResult, l7 as PrivacyBackendType, aU as PrivacyConfig, jt as PrivacyDisplayOptions, m5 as PrivacyLogger, md as PrivacyLoggerConfig, lE as PrivacyRecommendation, lC as PrivacyScore, lD as PrivacyScoreBreakdown, l5 as PrivacySmartRouter, le as PrivacySmartRouterConfig, lb as PrivacyTransactionResult, la as PrivacyTransferParams, gt as PrivateNFT, go as PrivateVoting, mx as ProductionConfigError, mw as ProductionConfigValidationResult, my as ProductionConfigWarning, O as ProductionQuote, mv as ProductionSafetyError, bB as ProofAggregator, cW as ProofAuditLogEntry, d6 as ProofCacheStats, ci as ProofConversionError, dt as ProofConverter, cC as ProofDependency, u as ProofError, w as ProofNotImplementedError, bO as ProofOrchestrator, P as ProofProgressCallback, iW as ProofStatistics, dx as ProofSystemToNativeMap, j7 as ProviderConfig, j8 as ProviderType, mJ as ProxiedFetch, mH as ProxyAgentOptions, mI as ProxyCheckResult, mE as ProxyConfig, mF as ProxyType, eA as QuoteComparison, gh as RangeAPIConfig, gc as RangeSASAttestation, eR as ReceivedNote, cy as RecursiveAggregationOptions, lh as RegisteredBackend, fR as RegulatoryExport, fS as RegulatoryFormat, iO as RelayedTransactionRequest, iP as RelayedTransactionResult, gr as RevealedVote, lB as RiskLevel, ew as Route, ez as RouteWithQuote, ld as RouterPriority, H as SIP, L as SIPConfig, jv as SIPEnhancedTransaction, S as SIPError, mm as SIPLogLevel, mn as SIPLoggerConfig, l2 as SIPNativeBackend, li as SIPNativeBackendConfig, lM as SIPProtectionComparison, ju as SIPTransactionMetadata, i9 as SIP_MEMO_PREFIX, i7 as SOLANA_EXPLORER_URLS, i6 as SOLANA_RPC_ENDPOINTS, i5 as SOLANA_TOKEN_DECIMALS, i4 as SOLANA_TOKEN_MINTS, iA as SOLANA_ZK_PROGRAM_IDS, fq as STABLECOIN_ADDRESSES, fr as STABLECOIN_DECIMALS, fp as STABLECOIN_INFO, bz as SUPPORTED_JURISDICTIONS, bJ as SYSTEM_INFO, Q as SameChainExecuteParams, R as SameChainExecuteResult, kY as SameChainExecutor, kZ as SameChainTransferParams, k_ as SameChainTransferResult, cp as SanctionsClearParams, gk as SealedBid, gi as SealedBidAuction, v as SecurityError, me as SensitiveData, cw as SequentialAggregationOptions, G as SerializedError, et as SettlementBackend, eu as SettlementBackendFactory, ek as SettlementBackendName, ev as SettlementBackendRegistry, em as SettlementQuote, el as SettlementQuoteParams, ei as SettlementRegistry, ej as SettlementRegistryError, ep as SettlementSwapParams, eq as SettlementSwapResult, en as SettlementSwapRoute, eo as SettlementSwapRouteStep, eS as ShieldedBalance, eP as ShieldedSendParams, eQ as ShieldedSendResult, dW as SignedOracleAttestation, ex as SmartRouter, lL as SocialLinkResult, hn as SolanaAdapterConfig, j3 as SolanaAnnouncement, j1 as SolanaClaimParams, j2 as SolanaClaimResult, hm as SolanaCluster, ho as SolanaConnection, iw as SolanaNoirError, ix as SolanaNoirErrorCode, ix as SolanaNoirErrorCodeType, iq as SolanaNoirVerifier, iV as SolanaNoirVerifierConfig, iZ as SolanaPrivateTransferParams, i_ as SolanaPrivateTransferResult, hh as SolanaPublicKey, j5 as SolanaRPCProvider, j4 as SolanaSameChainCluster, k$ as SolanaSameChainConfig, kU as SolanaSameChainExecutor, i$ as SolanaScanParams, j0 as SolanaScanResult, hp as SolanaSendOptions, iS as SolanaSerializedProof, hr as SolanaSignature, hi as SolanaTransaction, hq as SolanaUnsignedTransaction, iR as SolanaVerificationKey, iU as SolanaVerificationResult, iT as SolanaVerifyInstruction, hj as SolanaVersionedTransaction, gG as SolanaWalletAdapter, hl as SolanaWalletName, hk as SolanaWalletProvider, fD as StablecoinInfo, ap as StealthCurve, m3 as StreamCallback, aF as SuiStealthResult, ax as SuiStealthService, ls as SurveillanceAnalyzer, lG as SurveillanceAnalyzerConfig, jn as SwapEvent, ea as SwapRequest, ec as SwapResult, eh as SwapStatus, er as SwapStatusResponse, ne as SyncCompletionEvent, nf as SyncEventListener, nx as SyncManager, nc as SyncManagerConfig, ng as SyncOptions, nd as SyncProgressEvent, n2 as SyncRandomness, n6 as SyncServiceHealth, cM as SystemInfo, cG as SystemVerificationStats, mN as TOR_CONTROL_PORT, mM as TOR_HOST, mL as TOR_PORTS, fe as TapScript, fd as TaprootOutput, lK as TemporalPatternResult, g0 as ThresholdShares, fL as ThresholdViewingKey, g3 as TimeLockParams, g1 as TimeLockResult, na as TimeWindowedViewingKey, j6 as TokenAsset, e6 as TokenMetadata, jl as TokenTransfer, m2 as ToolResult, m4 as ToolsConfig, aV as TransactionData, jw as TransactionSummary, hO as TransportType, fE as Treasury, hS as TrezorConfig, hM as TrezorModel, hb as TrezorWalletAdapter, nJ as UnifiedOptimizationProfile, nL as UnifiedOptimizationResult, ce as UnifiedProofConverter, g2 as UnlockResult, ck as UnsupportedVersionError, ln as UnwrapParams, lo as UnwrapResult, bM as VESTA_MODULUS, cN as ValidationCheck, V as ValidationError, cQ as ValidationOptions, cO as ValidationReport, cD as VerificationOrder, bE as VerificationPipeline, cB as VerificationPipelineConfig, cI as VerificationProgressCallback, cH as VerificationProgressEvent, d$ as VerificationResult, gn as VerifyBidParams, cJ as VerifyOptions, co as ViewingKeyAccessParams, ge as ViewingKeyDerivationResult, gf as ViewingKeyScope, W as WalletAdapter, gz as WalletError, n9 as WalletSyncState, dd as WarmingResult, jh as WebhookHandler, je as WebhookHandlerConfig, jf as WebhookProcessResult, jg as WebhookRequest, ll as WrapParams, lm as WrapResult, eE as ZcashNativeBackend, eG as ZcashNativeBackendConfig, eY as ZcashQuote, eX as ZcashQuoteParams, eH as ZcashRPCClient, eI as ZcashRPCError, mD as ZcashRpcConfig, eK as ZcashShieldedService, eO as ZcashShieldedServiceConfig, eZ as ZcashSwapParams, e_ as ZcashSwapResult, eM as ZcashSwapService, eU as ZcashSwapServiceConfig, eV as ZcashSwapSourceChain, eW as ZcashSwapSourceToken, e$ as ZcashSwapStatus, b8 as addBlindings, k4 as addBlindingsNEAR, b6 as addCommitments, k2 as addCommitmentsNEAR, dD as addOracle, lu as analyzeAddressReuse, lx as analyzeTemporalPatterns, av as aptosAddressToAuthKey, ms as assertNoLocalhost, X as attachProofs, gP as base58ToHex, nB as bnbOptimizations, nQ as bpsToPercent, b as browserBytesToHex, h as browserHexToBytes, c2 as cacheKeyGenerator, nY as calculateFeeForSwap, ly as calculatePrivacyScore, lz as calculateSIPComparison, at as checkAptosStealthAddress, ag as checkEd25519StealthAddress, f as checkMobileWASMCompatibility, jP as checkNEARStealthAddress, mW as checkProxyAvailability, a7 as checkStealthAddress, aA as checkSuiStealthAddress, i2 as claimStealthPayment, b3 as commit, jY as commitNEAR, j_ as commitNEP141Token, b5 as commitZero, nF as compareCrossChainCosts, dK as computeAttestationHash, kd as computeNEARViewingKeyHash, ke as computeNEARViewingKeyHashFromPrivate, f7 as computeTweakedKey, mh as configureLogger, ch as convertFromSIP, cg as convertToSIP, lS as createAnalyzeWalletTool, ie as createAnnouncementMemo, c1 as createCacheKeyGenerator, aW as createCommitment, bI as createCrossSystemValidator, ir as createDevnetVerifier, gR as createEthereumAdapter, lV as createExplainTool, nN as createFeeCalculator, bZ as createFileCache, cb as createHalo2Converter, ip as createHeliusEnhanced, bY as createIndexedDBCache, iE as createJitoRelayer, f9 as createKeySpendOnlyOutput, cd as createKimchiConverter, bU as createLRUCache, ha as createLedgerAdapter, mg as createLogger, nW as createMainnetFeeContract, iF as createMainnetRelayer, is as createMainnetVerifier, g6 as createMockAttestation, gT as createMockEthereumAdapter, gU as createMockEthereumProvider, hf as createMockLedgerAdapter, gJ as createMockSolanaAdapter, gL as createMockSolanaConnection, gK as createMockSolanaProvider, ef as createMockSolver, nw as createMockSyncProvider, hg as createMockTrezorAdapter, b$ as createMultiTierCache, jX as createNEARAnnouncementMemo, nV as createNEARFeeContract, e9 as createNEARIntentsAdapter, eD as createNEARIntentsBackend, kj as createNEARMemoryStorage, m_ as createNetworkPrivacyClient, c9 as createNoirConverter, dC as createOracleRegistry, bX as createPersistentCache, lQ as createPrivacyAdvisor, lR as createPrivacyAdvisorTools, m6 as createPrivacyLogger, gu as createPrivateOwnership, gp as createPrivateVoting, mu as createProductionConfig, K as createProductionSIP, bC as createProofAggregator, bP as createProofOrchestrator, ig as createProvider, mY as createProxiedFetch, mX as createProxyAgent, lT as createQuickScoreTool, J as createSIP, lU as createSIPComparisonTool, kV as createSameChainExecutor, gj as createSealedBidAuction, U as createShieldedIntent, fh as createShieldedPayment, ey as createSmartRouter, gH as createSolanaAdapter, lt as createSurveillanceAnalyzer, ny as createSyncManager, np as createSyncState, f8 as createTaprootOutput, nX as createTestnetFeeContract, nr as createTimeWindowedKey, hc as createTrezorAdapter, cf as createUnifiedConverter, bF as createVerificationPipeline, gE as createWalletFactory, ij as createWebhookHandler, eJ as createZcashClient, eF as createZcashNativeBackend, eL as createZcashShieldedService, eN as createZcashSwapService, a9 as decodeStealthMetaAddress, fb as decodeTaprootAddress, fi as decryptMemo, ki as decryptWithNEARViewing, aS as decryptWithViewing, l1 as defaultRegistry, as as deriveAptosStealthPrivateKey, af as deriveEd25519StealthPrivateKey, kl as deriveNEARChildViewingKey, jO as deriveNEARStealthPrivateKey, nn as deriveObliviousNullifier, dB as deriveOracleId, a6 as deriveStealthPrivateKey, az as deriveSuiStealthPrivateKey, no as deriveTraditionalNullifier, aQ as deriveViewingKey, dJ as deserializeAttestationMessage, a1 as deserializeIntent, fn as deserializePayment, nC as detectChainFamily, lv as detectClusters, gW as detectEthereumWallets, lw as detectExchangeExposure, c as detectMobileBrowser, d as detectMobilePlatform, gN as detectSolanaWallets, mV as detectTorPort, au as ed25519PublicKeyToAptosAddress, jQ as ed25519PublicKeyToImplicitAccount, ak as ed25519PublicKeyToNearAddress, ah as ed25519PublicKeyToSolanaAddress, aB as ed25519PublicKeyToSuiAddress, jS as encodeNEARStealthMetaAddress, a8 as encodeStealthMetaAddress, kh as encryptForNEARViewing, aR as encryptForViewing, iv as estimateComputeUnits, nO as estimateFee, h$ as estimatePrivateTransferFee, nA as evmOptimizations, kf as exportNEARViewingKey, kS as exportTransactions, gB as featureNotSupportedError, g8 as fetchAttestation, g9 as fetchWalletAttestations, nP as formatFee, fB as formatStablecoinAmount, gY as fromHex, fA as fromStablecoinUnits, k1 as fromYoctoNEAR, ar as generateAptosStealthAddress, bb as generateBlinding, k7 as generateBlindingNEAR, aI as generateCosmosStealthAddress, aH as generateCosmosStealthMetaAddress, ae as generateEd25519StealthAddress, ad as generateEd25519StealthMetaAddress, aY as generateIntentId, jN as generateNEARStealthAddress, jM as generateNEARStealthMetaAddress, kb as generateNEARViewingKeyFromSpending, fH as generatePdfReport, a_ as generateRandomBytes, kc as generateRandomNEARViewingKey, a5 as generateStealthAddress, a4 as generateStealthMetaAddress, ay as generateSuiStealthAddress, nk as generateSyncRandomness, aP as generateViewingKey, dG as getActiveOracles, e1 as getAsset, h8 as getAvailableTransports, g as getBrowserInfo, j as getBrowserVersion, nD as getChainCharacteristics, dL as getChainNumericId, fy as getChainsForStablecoin, nm as getCurrentEpoch, ac as getCurveForChain, g$ as getDefaultRpcEndpoint, h4 as getDerivationPath, F as getErrorMessage, gV as getEthereumProvider, ba as getGenerators, k6 as getGeneratorsNEAR, a2 as getIntentSummary, mk as getLogLevelName, e as getMobileDeviceInfo, jH as getNEARAccountExplorerUrl, jG as getNEARExplorerUrl, jI as getNEARTokenContract, km as getNEARViewingPublicKey, e2 as getNativeToken, k as getOSVersion, fo as getPaymentSummary, fl as getPaymentTimeRemaining, aO as getPrivacyConfig, aT as getPrivacyDescription, mt as getProductionUrl, mT as getProxyFromEnv, ia as getSolanaExplorerUrl, gM as getSolanaProvider, ic as getSolanaTokenDecimals, fs as getStablecoin, fv as getStablecoinInfo, ft as getStablecoinsForChain, i3 as getStealthBalance, kX as getSupportedSameChainChains, fw as getSupportedStablecoins, $ as getTimeRemaining, e3 as getTokenByAddress, e0 as getTokenDecimals, ib as getTokenMint, e5 as getTokensForChain, kQ as getTransactionByHash, kR as getTransactionCount, kP as getTransactionHistory, kT as getTransactionSummary, f6 as getXOnlyPublicKey, dH as hasEnoughOracles, A as hasErrorCode, Y as hasRequiredProofs, i0 as hasTokenAccount, aZ as hash, gZ as hexToNumber, jR as implicitAccountToEd25519PublicKey, kg as importNEARViewingKey, i as isBrowser, ab as isEd25519Chain, _ as isExpired, jJ as isImplicitAccount, e4 as isKnownToken, ml as isLevelEnabled, mp as isLocalhostAllowed, mq as isLocalhostUrl, kk as isNEARAnnouncementForViewingKey, jK as isNamedAccount, it as isNoirCircuitType, bj as isNonNegativeAmount, ns as isNoteInWindow, fk as isPaymentExpired, gF as isPrivateWalletAdapter, mo as isProductionEnvironment, y as isSIPError, kW as isSameChainSupported, z as isSecurityError, fu as isStablecoin, fx as isStablecoinOnChain, nl as isSyncRandomnessValid, l as isTablet, mU as isTorAvailable, bi as isValidAmount, aw as isValidAptosAddress, be as isValidChainId, bm as isValidCompressedPublicKey, aK as isValidCosmosAddress, bn as isValidEd25519PublicKey, bg as isValidHex, bh as isValidHexLength, jL as isValidNEARAccountId, an as isValidNearAccountId, am as isValidNearImplicitAddress, bf as isValidPrivacyLevel, bo as isValidPrivateKey, bp as isValidScalar, bk as isValidSlippage, aj as isValidSolanaAddress, iu as isValidSolanaProof, bl as isValidStealthMetaAddress, aD as isValidSuiAddress, fc as isValidTaprootAddress, mf as logger, ma as maskAmount, al as nearAddressToEd25519PublicKey, g_ as normalizeAddress, aC as normalizeSuiAddress, gA as notConnectedError, id as parseAnnouncement, jW as parseNEARAnnouncement, jT as parseNEARStealthMetaAddress, mS as parseProxyConfig, ao as parseStealthAddress, nR as percentToBps, m7 as privacyLogger, ik as processWebhookTransaction, gv as proveOwnership, aa as publicKeyToEthAddress, nG as recommendCheapestChain, nH as recommendProfile, m8 as redactAddress, mb as redactSensitiveData, m9 as redactSignature, gD as registerWallet, dE as removeOracle, mZ as rotateCircuit, i1 as scanForPayments, f2 as schnorrSign, f4 as schnorrSignHex, f3 as schnorrVerify, f5 as schnorrVerifyHex, a$ as secureWipe, b0 as secureWipeAll, nE as selectOptimalConfig, h_ as sendPrivateSPLTransfer, dI as serializeAttestationMessage, a0 as serializeIntent, fm as serializePayment, mj as setLogLevel, dA as signAttestationMessage, mi as silenceLogger, ai as solanaAddressToEd25519PublicKey, nz as solanaOptimizations, gO as solanaPublicKeyToHex, aJ as stealthKeyToCosmosAddress, b9 as subtractBlindings, k5 as subtractBlindingsNEAR, b7 as subtractCommitments, k3 as subtractCommitmentsNEAR, a as supportsSharedArrayBuffer, m as supportsTouch, o as supportsWASMBulkMemory, n as supportsWASMSimd, h7 as supportsWebBluetooth, h6 as supportsWebHID, h5 as supportsWebUSB, s as supportsWebWorkers, fa as taprootAddress, gX as toHex, fz as toStablecoinUnits, k0 as toYoctoNEAR, Z as trackIntent, fj as trackPayment, dF as updateOracleStatus, nq as updateSyncState, br as validateAsset, bq as validateCreateIntentParams, bs as validateIntentInput, bt as validateIntentOutput, jV as validateNEARStealthAddress, jU as validateNEARStealthMetaAddress, kn as validateNEARViewingKey, mr as validateProductionConfig, bv as validateScalar, bu as validateViewingKey, dy as verifyAttestation, g7 as verifyAttestationSignature, im as verifyAuthToken, aX as verifyCommitment, j$ as verifyNEP141TokenCommitment, b4 as verifyOpening, jZ as verifyOpeningNEAR, dz as verifyOracleSignature, gw as verifyOwnership, il as verifyWebhookSignature, gC as walletRegistry, b1 as withSecureBuffer, b2 as withSecureBufferSync, D as wrapError } from './index-DeE1ZzA4.mjs';
1
+ export { A as ATTESTATION_VERSION, a as AddressReuseResult, b as AdvisorMessage, c as AdvisorRecommendation, d as AdvisorResponse, e as AdvisorRole, f as AdvisorStatus, g as AdvisoryContext, h as AggregationProgressCallback, i as AggregationProgressEvent, j as AggregationStepResult, k as AggregatorConfig, l as AnalyzableTransaction, m as AnyNativeProof, n as ApproveParams, o as ApproveResult, p as AptosStealthResult, q as AptosStealthService, r as AttestationGatedConfig, s as AttestationGatedDisclosure, t as AttestationRequest, u as AttestationResult, v as AttestationSchema, w as AttestationVerificationResult, x as AuditReport, y as AuditorKeyDerivation, z as AuditorType, B as BLS12_381_MODULUS, C as BN254_MODULUS, D as BUILTIN_TEMPLATES, E as BackendCapabilities, F as BackendRegistrationOptions, G as BalanceAttestationParams, H as BaseProofComposer, I as BaseWalletAdapter, J as BatchVerificationRequest, K as BatchVerificationResult, L as BidReceipt, M as BitcoinNetwork, N as BlockRange, O as BridgeProvider, P as BrowserNoirProvider, Q as BrowserNoirProviderConfig, R as CHAIN_NUMERIC_IDS, S as CIRCUIT_METADATA, T as COMPLIANCE_CIRCUIT_IDS, U as CONFIGURABLE_ETH_RPC, V as CONFIGURABLE_SOLANA_RPC, W as CONFIGURABLE_SUI_RPC, Z as CONFIGURABLE_ZCASH_RPC, X as COSMOS_CHAIN_PREFIXES, Y as CSPLClient, _ as CSPLClientConfig, $ as CSPLServiceStatus, a0 as CSPLTokenService, a1 as CSPLTokenServiceConfig, a2 as CSVExport, a3 as CacheEntry, a4 as CacheEntryMetadata, a5 as CacheEvent, a6 as CacheEventListener, a7 as CacheEventType, a8 as CacheKey, a9 as CacheKeyComponents, aa as CacheKeyGenerator, ab as CacheLookupResult, ac as CacheWarmingConfig, ad as CastVoteParams, ae as ChainCharacteristics, af as ChainFamily, ag as ChainFeeConfig, ah as ClusterResult, ai as CommitmentPoint, aj as CompatibilityEntry, ak as ComplianceManager, al as ComplianceProofConfig, am as ComplianceProofProvider, an as ComplianceProofResult, ao as ComplianceProofType, ap as ComplianceReporter, aq as CompositionPlan, ar as CompositionRequest, as as CompositionState, at as CompositionTemplate, au as ConditionalDisclosure, av as ConversionErrorCode, aw as ConversionMetadata, ax as ConversionOptions, ay as ConverterValidationError, az as ConverterValidationResult, aA as CosmosChainId, aB as CosmosStealthResult, aC as CosmosStealthService, aD as CreateBidParams, aE as CreateIntentOptions, aF as CreatePaymentOptions, aG as CrossSystemValidator, aH as CryptoError, aI as DEFAULT_AGGREGATOR_CONFIG, aJ as DEFAULT_CHAIN_FEES, aK as DEFAULT_CONVERSION_OPTIONS, aL as DEFAULT_FEE_TIERS, aM as DEFAULT_LRU_CONFIG, aN as DEFAULT_MANAGER_CONFIG, aO as DEFAULT_MOCK_CONFIG, aP as DEFAULT_MULTI_TIER_CONFIG, aQ as DEFAULT_NETWORK_CONFIG, aR as DEFAULT_ORCHESTRATOR_CONFIG, aS as DEFAULT_PERSISTENT_CONFIG, aT as DEFAULT_PIPELINE_CONFIG, aU as DEFAULT_PROXY_TIMEOUT, aV as DEFAULT_RANGE_API_ENDPOINT, aW as DEFAULT_RPC_URLS, aX as DEFAULT_SYNC_CONFIG, aY as DEFAULT_THRESHOLD, aZ as DEFAULT_TOTAL_ORACLES, a_ as DEFAULT_TREASURY, a$ as DEFAULT_VALIDITY_PERIOD_SECONDS, b0 as DEFAULT_WARMING_CONFIG, b1 as DecryptedTransaction, b2 as DerivationPath, b3 as DeriveMultipleParams, b4 as DeriveViewingKeyParams, b5 as DerivedViewingKey, b6 as DetailedAggregationResult, b7 as DetailedVerificationResult, b8 as EIP1193ConnectInfo, b9 as EIP1193Event, ba as EIP1193Provider, bb as EIP1193ProviderRpcError, bc as EIP1193RequestArguments, bd as EIP712Domain, be as EIP712TypeDefinition, bf as EIP712TypedData, bg as EIP712Types, bh as EllipticCurve, bi as EncryptedNote, bj as EncryptedVote, bk as EncryptionNotImplementedError, bl as EnhancedAccountData, bm as EnhancedTransaction, bn as EnhancedTransactionEvents, bo as EnhancedTransactionType, bp as ErrorCode, bq as EthereumAdapterConfig, br as EthereumChainId, bs as EthereumChainIdType, bt as EthereumChainMetadata, bu as EthereumTokenMetadata, bv as EthereumTransactionReceipt, bw as EthereumTransactionRequest, bx as EthereumWalletAdapter, by as EthereumWalletName, bz as ExchangeExposureResult, bA as ExportForRegulatorParams, bB as ExportedViewingKey, bC as FATFExport, bD as FATFTransaction, bE as FINCENExport, bF as FINCENTransaction, bG as FeeBreakdown, bH as FeeCalculationInput, bI as FeeCalculationResult, bJ as FeeCalculator, bK as FeeCalculatorOptions, bL as FeeCollectionEvent, bM as FeeCollectionParams, bN as FeeCollectionResult, bO as FeeContractMethods, bP as FeeContractState, bQ as FeeGovernanceProposal, bR as FeeModel, bS as FeeStats, bT as FeeTier, bU as FeeTreasuryConfig, bV as FeeWaiver, bW as FeeWaiverType, bX as FieldCharacteristics, bY as FileCache, bZ as FindBestRouteParams, b_ as FullAnalysisResult, b$ as GenerateAuditReportParams, c0 as GenericProvider, c1 as GenericProviderConfig, c2 as GetTransactionHistoryOptions, c3 as Halo2NativeProof, c4 as Halo2ProofConverter, c5 as HardwareAccount, c6 as HardwareConnectionStatus, c7 as HardwareDeviceInfo, c8 as HardwareErrorCode, c9 as HardwareErrorCodeType, ca as HardwareEthereumTx, cb as HardwareSignRequest, cc as HardwareSignature, cd as HardwareTransport, ce as HardwareWalletConfig, cf as HardwareWalletError, cg as HardwareWalletType, ch as HeliusEnhanced, ci as HeliusEnhancedConfig, cj as HeliusEnhancedTransaction, ck as HeliusProvider, cl as HeliusProviderConfig, cm as HeliusWebhookPayload, cn as HeliusWebhookTransaction, co as HistoryCompletenessParams, cp as ICacheKeyGenerator, cq as ICompiledCircuitCache, cr as ILRUCache, cs as IMultiTierCache, ct as INITIAL_PROOF_CACHE_STATS, cu as IPersistentCache, cv as IProofCache, cw as IVerificationKeyCache, cx as IndexedDBCache, cy as IntentBuilder, cz as IntentError, cA as InvalidProofError, cB as InvalidationRule, cC as InvalidationStrategy, cD as JITO_BLOCK_ENGINES, cE as JITO_DEFAULTS, cF as JITO_TIP_ACCOUNTS, cG as JitoBundleRequest, cH as JitoBundleResult, cI as JitoRelayer, cJ as JitoRelayerConfig, cK as JitoRelayerError, cL as JitoRelayerErrorCode, cM as Jurisdiction, cN as KNOWN_EXCHANGES, cO as KNOWN_ISSUERS, cP as KimchiNativeProof, cQ as KimchiProofConverter, cR as KnownExchange, cS as LRUCache, cT as LRUCacheConfig, cU as LatencyEstimate, cV as LedgerConfig, cW as LedgerModel, cX as LedgerWalletAdapter, cY as LinkValidationResult, cZ as LogLevel, c_ as MAX_NEAR_AMOUNT, c$ as MAX_PROOF_SIZE_BYTES, d0 as MAX_PUBLIC_INPUTS, d1 as MEMO_PROGRAM_ID, d2 as MerkleProof, d3 as MobileBrowser, d4 as MobileDeviceInfo, d5 as MobilePlatform, d6 as MobileWASMCompatibility, d7 as MockEthereumAdapter, d8 as MockEthereumAdapterConfig, d9 as MockHardwareConfig, da as MockLedgerAdapter, db as MockObliviousSyncProvider, dc as MockProofProvider, dd as MockSolanaAdapter, de as MockSolanaAdapterConfig, df as MockSolver, dg as MockSolverConfig, dh as MockSyncProviderConfig, di as MockTrezorAdapter, dj as MockWalletAdapter, dk as MultiTierCache, dl as MultiTierCacheConfig, dm as NEARAnnouncement, dn as NEARClaimParams, dp as NEARClaimResult, dq as NEARCommitmentPoint, dr as NEARDetectedPayment, ds as NEAREncryptedPayload, dt as NEARExportFormat, du as NEARExportOptions, dv as NEARFeeContract, dw as NEARFeeContractOptions, dx as NEARHistoricalTransaction, dy as NEARHistoryPrivacyLevel, dz as NEARIntentsAdapter, dA as NEARIntentsAdapterConfig, dB as NEARIntentsBackend, dC as NEARNetwork, dD as NEARPedersenCommitment, dE as NEARPrivateTransferParams, dF as NEARPrivateTransferResult, dG as NEARScanParams, dH as NEARScanResult, dI as NEARStealthAddressResult, dJ as NEARStealthBalance, dK as NEARStealthMetaAddressResult, dL as NEARTransactionData, dM as NEARTransactionHistoryParams, dN as NEARTransactionHistoryResult, dO as NEARTransactionType, dP as NEARViewingKey, dQ as NEARViewingKeyExport, dR as NEARViewingKeyStorage, dS as NEAR_DEFAULT_GAS, dT as NEAR_ED25519_ORDER, dU as NEAR_EXPLORER_URLS, dV as NEAR_FEE_CONTRACTS, dW as NEAR_IMPLICIT_ACCOUNT_LENGTH, dX as NEAR_MAX_COMMITMENT_VALUE, dY as NEAR_RPC_ENDPOINTS, dZ as NEAR_SIP_MEMO_PREFIX, d_ as NEAR_TOKEN_CONTRACTS, d$ as NEAR_TOKEN_DECIMALS, e0 as NEP141TokenCommitment, e1 as NativeProofFormat, e2 as NativeTransfer, e3 as NetworkError, e4 as NetworkPrivacyConfig, e5 as NftTransfer, e6 as NoirCircuitType, e7 as NoirNativeProof, e8 as NoirProofConverter, e9 as ONE_NEAR, ea as ONE_YOCTO, eb as ORACLE_DOMAIN, ec as ObliviousNullifier, ed as ObliviousSyncConfig, ee as ObliviousSyncError, ef as ObliviousSyncErrorCode, eg as ObliviousSyncProvider, eh as ObliviousSyncQuery, ei as ObliviousSyncResponse, ej as OneClickClient, ek as OracleAttestationMessage, el as OracleId, em as OracleInfo, en as OracleRegistry, eo as OracleRegistryConfig, ep as OracleSignature, eq as OracleStatus, er as OrchestratorConfig, es as OrchestratorProgressCallback, et as OrchestratorProgressEvent, eu as OrchestratorResult, ev as PALLAS_MODULUS, ew as PROXY_ENV_VAR, ex as PROXY_ENV_VARS, ey as ParallelAggregationOptions, ez as ParseTransactionsOptions, eA as ParsedProxyConfig, eB as PaymentBuilder, eC as PdfExportOptions, eD as PedersenCommitment, eE as PersistentCacheConfig, eF as PreparedSwap, eG as PriceFeed, eH as PrivacyAdvisorAgent, eI as PrivacyAdvisorConfig, eJ as PrivacyAdvisoryReport, eK as PrivacyAvailabilityResult, eL as PrivacyBackend, eM as PrivacyBackendCapabilities, eN as PrivacyBackendRegistry, eO as PrivacyBackendSelectionResult, eP as PrivacyBackendType, eQ as PrivacyConfig, eR as PrivacyDisplayOptions, eS as PrivacyLogger, eT as PrivacyLoggerConfig, eU as PrivacyRecommendation, eV as PrivacyScore, eW as PrivacyScoreBreakdown, eX as PrivacySmartRouter, eY as PrivacySmartRouterConfig, eZ as PrivacyTransactionResult, e_ as PrivacyTransferParams, e$ as PrivateNFT, f0 as PrivateVoting, f1 as ProductionConfigError, f2 as ProductionConfigValidationResult, f3 as ProductionConfigWarning, f4 as ProductionQuote, f5 as ProductionSafetyError, f6 as ProofAggregator, f7 as ProofAuditLogEntry, f8 as ProofCacheStats, f9 as ProofConversionError, fa as ProofConverter, fb as ProofDependency, fc as ProofError, fd as ProofNotImplementedError, fe as ProofOrchestrator, ff as ProofProgressCallback, fg as ProofStatistics, fh as ProofSystemToNativeMap, fi as ProviderConfig, fj as ProviderType, fk as ProxiedFetch, fl as ProxyAgentOptions, fm as ProxyCheckResult, fn as ProxyConfig, fo as ProxyType, fp as QuoteComparison, fq as RangeAPIConfig, fr as RangeSASAttestation, fs as ReceivedNote, ft as RecursiveAggregationOptions, fu as RegisteredBackend, fv as RegulatoryExport, fw as RegulatoryFormat, fx as RelayedTransactionRequest, fy as RelayedTransactionResult, fz as RevealedVote, fA as RiskLevel, fB as Route, fC as RouteWithQuote, fD as RouterPriority, fE as SIP, fF as SIPConfig, fG as SIPEnhancedTransaction, fH as SIPError, fI as SIPLogLevel, fJ as SIPLoggerConfig, fK as SIPNativeBackend, fL as SIPNativeBackendConfig, fM as SIPProtectionComparison, fN as SIPTransactionMetadata, fO as SIP_MEMO_PREFIX, fP as SOLANA_EXPLORER_URLS, fQ as SOLANA_RPC_ENDPOINTS, fR as SOLANA_TOKEN_DECIMALS, fS as SOLANA_TOKEN_MINTS, fT as SOLANA_ZK_PROGRAM_IDS, fU as STABLECOIN_ADDRESSES, fV as STABLECOIN_DECIMALS, fW as STABLECOIN_INFO, fX as SUPPORTED_JURISDICTIONS, fY as SYSTEM_INFO, fZ as SameChainExecuteParams, f_ as SameChainExecuteResult, f$ as SameChainExecutor, g0 as SameChainTransferParams, g1 as SameChainTransferResult, g2 as SanctionsClearParams, g3 as SealedBid, g4 as SealedBidAuction, g5 as SecurityError, g6 as SensitiveData, g7 as SequentialAggregationOptions, g8 as SerializedError, g9 as SettlementBackend, ga as SettlementBackendFactory, gb as SettlementBackendName, gc as SettlementBackendRegistry, gd as SettlementQuote, ge as SettlementQuoteParams, gf as SettlementRegistry, gg as SettlementRegistryError, gh as SettlementSwapParams, gi as SettlementSwapResult, gj as SettlementSwapRoute, gk as SettlementSwapRouteStep, gl as ShieldedBalance, gm as ShieldedSendParams, gn as ShieldedSendResult, go as SignedOracleAttestation, gp as SmartRouter, gq as SocialLinkResult, gr as SolanaAdapterConfig, gs as SolanaAnnouncement, gt as SolanaClaimParams, gu as SolanaClaimResult, gv as SolanaCluster, gw as SolanaConnection, gx as SolanaNoirError, gy as SolanaNoirErrorCode, gy as SolanaNoirErrorCodeType, gz as SolanaNoirVerifier, gA as SolanaNoirVerifierConfig, gB as SolanaPrivateTransferParams, gC as SolanaPrivateTransferResult, gD as SolanaPublicKey, gE as SolanaRPCProvider, gF as SolanaSameChainCluster, gG as SolanaSameChainConfig, gH as SolanaSameChainExecutor, gI as SolanaScanParams, gJ as SolanaScanResult, gK as SolanaSendOptions, gL as SolanaSerializedProof, gM as SolanaSignature, gN as SolanaTransaction, gO as SolanaUnsignedTransaction, gP as SolanaVerificationKey, gQ as SolanaVerificationResult, gR as SolanaVerifyInstruction, gS as SolanaVersionedTransaction, gT as SolanaWalletAdapter, gU as SolanaWalletName, gV as SolanaWalletProvider, gW as StablecoinInfo, gX as StealthCurve, gY as StreamCallback, gZ as SuiStealthResult, g_ as SuiStealthService, g$ as SurveillanceAnalyzer, h0 as SurveillanceAnalyzerConfig, h1 as SwapEvent, h2 as SwapRequest, h3 as SwapResult, h4 as SwapStatus, h5 as SwapStatusResponse, h6 as SyncCompletionEvent, h7 as SyncEventListener, h8 as SyncManager, h9 as SyncManagerConfig, ha as SyncOptions, hb as SyncProgressEvent, hc as SyncRandomness, hd as SyncServiceHealth, he as SystemInfo, hf as SystemVerificationStats, hg as TOR_CONTROL_PORT, hh as TOR_HOST, hi as TOR_PORTS, hj as TapScript, hk as TaprootOutput, hl as TemporalPatternResult, hm as ThresholdShares, hn as ThresholdViewingKey, ho as TimeLockParams, hp as TimeLockResult, hq as TimeWindowedViewingKey, hr as TokenAsset, hs as TokenMetadata, ht as TokenTransfer, hu as ToolResult, hv as ToolsConfig, hw as TransactionData, hx as TransactionSummary, hy as TransportType, hz as Treasury, hA as TrezorConfig, hB as TrezorModel, hC as TrezorWalletAdapter, hD as UnifiedOptimizationProfile, hE as UnifiedOptimizationResult, hF as UnifiedProofConverter, hG as UnlockResult, hH as UnsupportedVersionError, hI as UnwrapParams, hJ as UnwrapResult, hK as VESTA_MODULUS, hL as ValidationCheck, hM as ValidationError, hN as ValidationOptions, hO as ValidationReport, hP as VerificationOrder, hQ as VerificationPipeline, hR as VerificationPipelineConfig, hS as VerificationProgressCallback, hT as VerificationProgressEvent, hU as VerificationResult, hV as VerifyBidParams, hW as VerifyOptions, hX as ViewingKeyAccessParams, hY as ViewingKeyDerivationResult, hZ as ViewingKeyScope, h_ as WalletAdapter, h$ as WalletError, i0 as WalletSyncState, i1 as WarmingResult, i2 as WebhookHandler, i3 as WebhookHandlerConfig, i4 as WebhookProcessResult, i5 as WebhookRequest, i6 as WrapParams, i7 as WrapResult, i8 as ZcashNativeBackend, i9 as ZcashNativeBackendConfig, ia as ZcashQuote, ib as ZcashQuoteParams, ic as ZcashRPCClient, id as ZcashRPCError, ie as ZcashRpcConfig, ig as ZcashShieldedService, ih as ZcashShieldedServiceConfig, ii as ZcashSwapParams, ij as ZcashSwapResult, ik as ZcashSwapService, il as ZcashSwapServiceConfig, im as ZcashSwapSourceChain, io as ZcashSwapSourceToken, ip as ZcashSwapStatus, iq as addBlindings, ir as addBlindingsNEAR, is as addCommitments, it as addCommitmentsNEAR, iu as addOracle, iv as analyzeAddressReuse, iw as analyzeTemporalPatterns, ix as aptosAddressToAuthKey, iy as assertNoLocalhost, iz as attachProofs, iA as base58ToHex, iB as bnbOptimizations, iC as bpsToPercent, iD as browserBytesToHex, iE as browserHexToBytes, iF as cacheKeyGenerator, iG as calculateFeeForSwap, iH as calculatePrivacyScore, iI as calculateSIPComparison, iJ as checkAptosStealthAddress, iK as checkEd25519StealthAddress, iL as checkEd25519StealthAddressV1, iM as checkMobileWASMCompatibility, iN as checkNEARStealthAddress, iO as checkProxyAvailability, iP as checkSecp256k1StealthAddressV1, iQ as checkStealthAddress, iR as checkSuiStealthAddress, iS as claimStealthPayment, iT as commit, iU as commitNEAR, iV as commitNEP141Token, iW as commitZero, iX as compareCrossChainCosts, iY as computeAttestationHash, iZ as computeNEARViewingKeyHash, i_ as computeNEARViewingKeyHashFromPrivate, i$ as computeTweakedKey, j0 as configureLogger, j1 as convertFromSIP, j2 as convertToSIP, j3 as createAnalyzeWalletTool, j4 as createAnnouncementMemo, j5 as createCacheKeyGenerator, j6 as createCommitment, j7 as createCrossSystemValidator, j8 as createDevnetVerifier, j9 as createEthereumAdapter, ja as createExplainTool, jb as createFeeCalculator, jc as createFileCache, jd as createHalo2Converter, je as createHeliusEnhanced, jf as createIndexedDBCache, jg as createJitoRelayer, jh as createKeySpendOnlyOutput, ji as createKimchiConverter, jj as createLRUCache, jk as createLedgerAdapter, jl as createLogger, jm as createMainnetFeeContract, jn as createMainnetRelayer, jo as createMainnetVerifier, jp as createMockAttestation, jq as createMockEthereumAdapter, jr as createMockEthereumProvider, js as createMockLedgerAdapter, jt as createMockSolanaAdapter, ju as createMockSolanaConnection, jv as createMockSolanaProvider, jw as createMockSolver, jx as createMockSyncProvider, jy as createMockTrezorAdapter, jz as createMultiTierCache, jA as createNEARAnnouncementMemo, jB as createNEARFeeContract, jC as createNEARIntentsAdapter, jD as createNEARIntentsBackend, jE as createNEARMemoryStorage, jF as createNetworkPrivacyClient, jG as createNoirConverter, jH as createOracleRegistry, jI as createPersistentCache, jJ as createPrivacyAdvisor, jK as createPrivacyAdvisorTools, jL as createPrivacyLogger, jM as createPrivateOwnership, jN as createPrivateVoting, jO as createProductionConfig, jP as createProductionSIP, jQ as createProofAggregator, jR as createProofOrchestrator, jS as createProvider, jT as createProxiedFetch, jU as createProxyAgent, jV as createQuickScoreTool, jW as createSIP, jX as createSIPComparisonTool, jY as createSameChainExecutor, jZ as createSealedBidAuction, j_ as createShieldedIntent, j$ as createShieldedPayment, k0 as createSmartRouter, k1 as createSolanaAdapter, k2 as createSurveillanceAnalyzer, k3 as createSyncManager, k4 as createSyncState, k5 as createTaprootOutput, k6 as createTestnetFeeContract, k7 as createTimeWindowedKey, k8 as createTrezorAdapter, k9 as createUnifiedConverter, ka as createVerificationPipeline, kb as createWalletFactory, kc as createWebhookHandler, kd as createZcashClient, ke as createZcashNativeBackend, kf as createZcashShieldedService, kg as createZcashSwapService, kh as decodeStealthMetaAddress, ki as decodeTaprootAddress, kj as decryptMemo, kk as decryptWithNEARViewing, kl as decryptWithViewing, km as defaultRegistry, kn as deriveAptosStealthPrivateKey, ko as deriveEd25519StealthPrivateKey, kp as deriveEd25519StealthPrivateKeyV1, kq as deriveNEARChildViewingKey, kr as deriveNEARStealthPrivateKey, ks as deriveObliviousNullifier, kt as deriveOracleId, ku as deriveSecp256k1StealthPrivateKeyV1, kv as deriveStealthPrivateKey, kw as deriveStealthPrivateKeyV1, kx as deriveSuiStealthPrivateKey, ky as deriveTraditionalNullifier, kz as deriveViewingKey, kA as deserializeAttestationMessage, kB as deserializeIntent, kC as deserializePayment, kD as detectChainFamily, kE as detectClusters, kF as detectEthereumWallets, kG as detectExchangeExposure, kH as detectMobileBrowser, kI as detectMobilePlatform, kJ as detectSolanaWallets, kK as detectTorPort, kL as ed25519PublicKeyToAptosAddress, kM as ed25519PublicKeyToImplicitAccount, kN as ed25519PublicKeyToNearAddress, kO as ed25519PublicKeyToSolanaAddress, kP as ed25519PublicKeyToSuiAddress, kQ as encodeNEARStealthMetaAddress, kR as encodeStealthMetaAddress, kS as encryptForNEARViewing, kT as encryptForViewing, kU as estimateComputeUnits, kV as estimateFee, kW as estimatePrivateTransferFee, kX as evmOptimizations, kY as exportNEARViewingKey, kZ as exportTransactions, k_ as featureNotSupportedError, k$ as fetchAttestation, l0 as fetchWalletAttestations, l1 as formatFee, l2 as formatStablecoinAmount, l3 as fromHex, l4 as fromStablecoinUnits, l5 as fromYoctoNEAR, l6 as generateAptosStealthAddress, l7 as generateBlinding, l8 as generateBlindingNEAR, l9 as generateCosmosStealthAddress, la as generateCosmosStealthMetaAddress, lb as generateEd25519StealthAddress, lc as generateEd25519StealthMetaAddress, ld as generateIntentId, le as generateNEARStealthAddress, lf as generateNEARStealthMetaAddress, lg as generateNEARViewingKeyFromSpending, lh as generatePdfReport, li as generateRandomBytes, lj as generateRandomNEARViewingKey, lk as generateStealthAddress, ll as generateStealthMetaAddress, lm as generateSuiStealthAddress, ln as generateSyncRandomness, lo as generateViewingKey, lp as getActiveOracles, lq as getAsset, lr as getAvailableTransports, ls as getBrowserInfo, lt as getBrowserVersion, lu as getChainCharacteristics, lv as getChainNumericId, lw as getChainsForStablecoin, lx as getCurrentEpoch, ly as getCurveForChain, lz as getDefaultRpcEndpoint, lA as getDerivationPath, lB as getErrorMessage, lC as getEthereumProvider, lD as getGenerators, lE as getGeneratorsNEAR, lF as getIntentSummary, lG as getLogLevelName, lH as getMobileDeviceInfo, lI as getNEARAccountExplorerUrl, lJ as getNEARExplorerUrl, lK as getNEARTokenContract, lL as getNEARViewingPublicKey, lM as getNativeToken, lN as getOSVersion, lO as getPaymentSummary, lP as getPaymentTimeRemaining, lQ as getPrivacyConfig, lR as getPrivacyDescription, lS as getProductionUrl, lT as getProxyFromEnv, lU as getSolanaExplorerUrl, lV as getSolanaProvider, lW as getSolanaTokenDecimals, lX as getStablecoin, lY as getStablecoinInfo, lZ as getStablecoinsForChain, l_ as getStealthBalance, l$ as getSupportedSameChainChains, m0 as getSupportedStablecoins, m1 as getTimeRemaining, m2 as getTokenByAddress, m3 as getTokenDecimals, m4 as getTokenMint, m5 as getTokensForChain, m6 as getTransactionByHash, m7 as getTransactionCount, m8 as getTransactionHistory, m9 as getTransactionSummary, ma as getXOnlyPublicKey, mb as hasEnoughOracles, mc as hasErrorCode, md as hasRequiredProofs, me as hasTokenAccount, mf as hash, mg as hexToNumber, mh as implicitAccountToEd25519PublicKey, mi as importNEARViewingKey, mj as isBrowser, mk as isEd25519Chain, ml as isExpired, mm as isImplicitAccount, mn as isKnownToken, mo as isLevelEnabled, mp as isLocalhostAllowed, mq as isLocalhostUrl, mr as isNEARAnnouncementForViewingKey, ms as isNamedAccount, mt as isNoirCircuitType, mu as isNonNegativeAmount, mv as isNoteInWindow, mw as isPaymentExpired, mx as isPrivateWalletAdapter, my as isProductionEnvironment, mz as isSIPError, mA as isSameChainSupported, mB as isSecurityError, mC as isStablecoin, mD as isStablecoinOnChain, mE as isSyncRandomnessValid, mF as isTablet, mG as isTorAvailable, mH as isValidAmount, mI as isValidAptosAddress, mJ as isValidChainId, mK as isValidCompressedPublicKey, mL as isValidCosmosAddress, mM as isValidEd25519PublicKey, mN as isValidHex, mO as isValidHexLength, mP as isValidNEARAccountId, mQ as isValidNearAccountId, mR as isValidNearImplicitAddress, mS as isValidPrivacyLevel, mT as isValidPrivateKey, mU as isValidScalar, mV as isValidSlippage, mW as isValidSolanaAddress, mX as isValidSolanaProof, mY as isValidStealthMetaAddress, mZ as isValidSuiAddress, m_ as isValidTaprootAddress, m$ as logger, n0 as maskAmount, n1 as nearAddressToEd25519PublicKey, n2 as normalizeAddress, n3 as normalizeSuiAddress, n4 as notConnectedError, n5 as parseAnnouncement, n6 as parseNEARAnnouncement, n7 as parseNEARStealthMetaAddress, n8 as parseProxyConfig, n9 as parseStealthAddress, na as percentToBps, nb as privacyLogger, nc as processWebhookTransaction, nd as proveOwnership, ne as publicKeyToEthAddress, nf as recommendCheapestChain, ng as recommendProfile, nh as redactAddress, ni as redactSensitiveData, nj as redactSignature, nk as registerWallet, nl as removeOracle, nm as rotateCircuit, nn as scanForPayments, no as schnorrSign, np as schnorrSignHex, nq as schnorrVerify, nr as schnorrVerifyHex, ns as secureWipe, nt as secureWipeAll, nu as selectOptimalConfig, nv as sendPrivateSPLTransfer, nw as serializeAttestationMessage, nx as serializeIntent, ny as serializePayment, nz as setLogLevel, nA as signAttestationMessage, nB as silenceLogger, nC as solanaAddressToEd25519PublicKey, nD as solanaOptimizations, nE as solanaPublicKeyToHex, nF as stealthKeyToCosmosAddress, nG as subtractBlindings, nH as subtractBlindingsNEAR, nI as subtractCommitments, nJ as subtractCommitmentsNEAR, nK as supportsSharedArrayBuffer, nL as supportsTouch, nM as supportsWASMBulkMemory, nN as supportsWASMSimd, nO as supportsWebBluetooth, nP as supportsWebHID, nQ as supportsWebUSB, nR as supportsWebWorkers, nS as taprootAddress, nT as toHex, nU as toStablecoinUnits, nV as toYoctoNEAR, nW as trackIntent, nX as trackPayment, nY as updateOracleStatus, nZ as updateSyncState, n_ as validateAsset, n$ as validateCreateIntentParams, o0 as validateIntentInput, o1 as validateIntentOutput, o2 as validateNEARStealthAddress, o3 as validateNEARStealthMetaAddress, o4 as validateNEARViewingKey, o5 as validateProductionConfig, o6 as validateScalar, o7 as validateViewingKey, o8 as verifyAttestation, o9 as verifyAttestationSignature, oa as verifyAuthToken, ob as verifyCommitment, oc as verifyNEP141TokenCommitment, od as verifyOpening, oe as verifyOpeningNEAR, of as verifyOracleSignature, og as verifyOwnership, oh as verifyWebhookSignature, oi as walletRegistry, oj as withSecureBuffer, ok as withSecureBufferSync, ol as wrapError } from './index-B1d8pihL.mjs';
2
2
  export { Asset, AuditLogEntry, AuditScope, AuditorRegistration, AuditorViewingKey, BatchPaymentRecipient, BatchPaymentRequest, ChainId, Commitment, ComplianceConfig, ComplianceReport, ComplianceRole, ComposedProof, ComposedProofStatus, CompositionError, CompositionErrorCode, CompositionEvent, CompositionEventListener, CompositionEventType, CompositionMetadata, CompositionMetrics, CompositionProgressEvent, CompositionResult, CreateBatchProposalParams, CreateComplianceConfigParams, CreateIntentParams, CreatePaymentParams, CreatePaymentProposalParams, CreatePrivateOwnershipParams, CreateTreasuryParams, DEFAULT_COMPOSITION_CONFIG, DefuseAssetId, DisclosedTransaction, DisclosureRequest, FulfillmentCommitment, FulfillmentProof, FulfillmentRequest, FulfillmentResult, FulfillmentStatus, GenerateReportParams, Hash, HexString, WalletAdapter as IWalletAdapter, IndividualVerificationResult, IntentStatus, NATIVE_TOKENS, OneClickConfig, OneClickDepositMode, OneClickErrorCode, OneClickQuoteRequest, OneClickQuoteResponse, OneClickStatusResponse, OneClickSwapStatus, OneClickSwapType, OwnershipProof, OwnershipVerification, PaymentPurpose, PaymentReceipt, PaymentStatus, PaymentStatusType, PrivacyLevel, PrivateNFTOwnership, PrivateWalletAdapter, ProofAggregationStrategy, ProofCompositionConfig, ProofMetadata, ProofProviderCapabilities, ProofProviderMetrics, ProofProviderStatus, ProofSystem, VerificationResult as ProofVerificationResult, ProposalSignature, ProposalStatus, ProposalStatusType, ProposalType, ProveOwnershipParams, Quote, RegisterAuditorParams, ReportData, ReportFormat, ReportStatus, ReportStatusType, ReportType, SIPSolver, SIP_VERSION, ShieldedIntent, ShieldedPayment, Signature, SignedTransaction, SingleProof, Solver, SolverCapabilities, SolverEvent, SolverEventListener, SolverQuote, SolverVisibleIntent, StablecoinSymbol, StealthAddress, StealthAddressRecovery, StealthMetaAddress, SwapRoute, SwapRouteStep, TrackedIntent, TrackedPayment, TransactionReceipt, TreasuryBalance, TreasuryConfig, TreasuryMember, TreasuryProposal, TreasuryRole, TreasuryTransaction, UnsignedTransaction, VerificationHints, ViewingKey, WalletAccountChangedEvent, WalletAdapterFactory, WalletChainChangedEvent, WalletConnectEvent, WalletConnectionState, WalletDisconnectEvent, WalletErrorCode, WalletErrorEvent, WalletEvent, WalletEventHandler, WalletEventType, WalletInfo, WalletRegistryEntry, WalletShieldedSendParams, WalletShieldedSendResult, ZKProof, ZcashAccountAddress, ZcashAccountBalance, ZcashAddressInfo, ZcashAddressType, ZcashBlock, ZcashBlockHeader, ZcashBlockchainInfo, ZcashConfig, ZcashErrorCode, ZcashNetwork, ZcashNetworkInfo, ZcashNewAccount, ZcashOperation, ZcashOperationError, ZcashOperationStatus, ZcashOperationTxResult, ZcashPool, ZcashPoolBalance, ZcashPrivacyPolicy, ZcashReceiverType, ZcashSendRecipient, ZcashShieldedSendParams, ZcashUnspentNote, isPrivate, supportsViewingKey } from '@sip-protocol/types';
3
- import { F as FundingProofParams, V as ValidityProofParams, a as FulfillmentProofParams, P as ProofResult } from './noir-kzbLVTei.mjs';
4
- export { N as NoirProviderConfig, O as OracleAttestation, d as ProofFramework, b as ProofGenerationError, c as ProofProvider } from './noir-kzbLVTei.mjs';
5
- export { A as AggregateProofsOptions, j as AggregationResult, n as CacheStats, p as CompatibilityMatrix, b as ComposableProofProvider, i as ComposeProofsOptions, C as CompositionTimeoutError, l as ConversionResult, k as ConvertProofOptions, l as ConverterConversionResult, F as FallbackConfig, I as IncompatibleSystemsError, m as ProofCacheEntry, c as ProofComposer, P as ProofCompositionError, g as ProofGenerationRequest, h as ProofGenerationResult, d as ProofProviderFactory, f as ProofProviderRegistration, e as ProofProviderRegistry, q as ProofTelemetry, r as ProofTelemetryMetrics, a as ProviderNotFoundError, R as RegisterProviderOptions, S as SystemCompatibility, T as TelemetryCollector, V as VerifyComposedProofOptions, W as WorkerPoolConfig, o as WorkerPoolStatus } from './interface-Bf7w1PLW.mjs';
3
+ import { F as FundingProofParams, V as ValidityProofParams, a as FulfillmentProofParams, P as ProofResult } from './noir-CwPIyBLj.mjs';
4
+ export { N as NoirProviderConfig, O as OracleAttestation, b as ProofFramework, c as ProofGenerationError, d as ProofProvider } from './noir-CwPIyBLj.mjs';
5
+ export { A as AggregateProofsOptions, a as AggregationResult, C as CacheStats, b as CompatibilityMatrix, c as ComposableProofProvider, d as ComposeProofsOptions, e as CompositionTimeoutError, f as ConversionResult, g as ConvertProofOptions, f as ConverterConversionResult, F as FallbackConfig, I as IncompatibleSystemsError, P as ProofCacheEntry, h as ProofComposer, i as ProofCompositionError, j as ProofGenerationRequest, k as ProofGenerationResult, l as ProofProviderFactory, m as ProofProviderRegistration, n as ProofProviderRegistry, o as ProofTelemetry, p as ProofTelemetryMetrics, q as ProviderNotFoundError, R as RegisterProviderOptions, S as SystemCompatibility, T as TelemetryCollector, V as VerifyComposedProofOptions, W as WorkerPoolConfig, r as WorkerPoolStatus } from './interface-CQi0-WfS.mjs';
6
6
  export { Halo2CircuitConfig, Halo2Provider, Halo2ProviderConfig, Halo2ProvingKey, createHalo2Provider, createOrchardProvider } from './proofs/halo2.mjs';
7
7
  export { KimchiCircuitConfig, KimchiProvider, KimchiProviderConfig, createKimchiProvider, createMinaMainnetProvider, createZkAppProvider } from './proofs/kimchi.mjs';
8
8
  export { Logger as PinoLogger } from 'pino';
package/dist/browser.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export { dN as ATTESTATION_VERSION, lH as AddressReuseResult, lX as AdvisorMessage, m1 as AdvisorRecommendation, l$ as AdvisorResponse, lW as AdvisorRole, lY as AdvisorStatus, l_ as AdvisoryContext, cv as AggregationProgressCallback, cu as AggregationProgressEvent, cz as AggregationStepResult, ct as AggregatorConfig, lN as AnalyzableTransaction, dw as AnyNativeProof, lp as ApproveParams, lq as ApproveResult, aE as AptosStealthResult, aq as AptosStealthService, gd as AttestationGatedConfig, g4 as AttestationGatedDisclosure, dZ as AttestationRequest, d_ as AttestationResult, g5 as AttestationSchema, gg as AttestationVerificationResult, fN as AuditReport, fJ as AuditorKeyDerivation, fK as AuditorType, bN as BLS12_381_MODULUS, bK as BN254_MODULUS, bR as BUILTIN_TEMPLATES, es as BackendCapabilities, lg as BackendRegistrationOptions, cq as BalanceAttestationParams, bS as BaseProofComposer, gx as BaseWalletAdapter, iX as BatchVerificationRequest, iY as BatchVerificationResult, gl as BidReceipt, ff as BitcoinNetwork, m$ as BlockRange, f0 as BridgeProvider, B as BrowserNoirProvider, t as BrowserNoirProviderConfig, dQ as CHAIN_NUMERIC_IDS, iy as CIRCUIT_METADATA, bA as COMPLIANCE_CIRCUIT_IDS, mA as CONFIGURABLE_ETH_RPC, mz as CONFIGURABLE_SOLANA_RPC, mB as CONFIGURABLE_SUI_RPC, mC as CONFIGURABLE_ZCASH_RPC, aL as COSMOS_CHAIN_PREFIXES, l3 as CSPLClient, lj as CSPLClientConfig, lr as CSPLServiceStatus, l4 as CSPLTokenService, lk as CSPLTokenServiceConfig, fY as CSVExport, d1 as CacheEntry, d0 as CacheEntryMetadata, d8 as CacheEvent, d9 as CacheEventListener, d7 as CacheEventType, c$ as CacheKey, c_ as CacheKeyComponents, c0 as CacheKeyGenerator, d2 as CacheLookupResult, dc as CacheWarmingConfig, gs as CastVoteParams, nK as ChainCharacteristics, nI as ChainFamily, o1 as ChainFeeConfig, lI as ClusterResult, bd as CommitmentPoint, cP as CompatibilityEntry, fF as ComplianceManager, cn as ComplianceProofConfig, bx as ComplianceProofProvider, cs as ComplianceProofResult, cm as ComplianceProofType, fG as ComplianceReporter, cT as CompositionPlan, cU as CompositionRequest, cS as CompositionState, cZ as CompositionTemplate, fI as ConditionalDisclosure, ds as ConversionErrorCode, dr as ConversionMetadata, dq as ConversionOptions, dv as ConverterValidationError, du as ConverterValidationResult, aM as CosmosChainId, aN as CosmosStealthResult, aG as CosmosStealthService, gm as CreateBidParams, a3 as CreateIntentOptions, fC as CreatePaymentOptions, bH as CrossSystemValidator, C as CryptoError, bD as DEFAULT_AGGREGATOR_CONFIG, nT as DEFAULT_CHAIN_FEES, cl as DEFAULT_CONVERSION_OPTIONS, nS as DEFAULT_FEE_TIERS, c3 as DEFAULT_LRU_CONFIG, nj as DEFAULT_MANAGER_CONFIG, ni as DEFAULT_MOCK_CONFIG, c5 as DEFAULT_MULTI_TIER_CONFIG, mR as DEFAULT_NETWORK_CONFIG, bQ as DEFAULT_ORCHESTRATOR_CONFIG, c4 as DEFAULT_PERSISTENT_CONFIG, bG as DEFAULT_PIPELINE_CONFIG, mO as DEFAULT_PROXY_TIMEOUT, gb as DEFAULT_RANGE_API_ENDPOINT, iz as DEFAULT_RPC_URLS, nh as DEFAULT_SYNC_CONFIG, dO as DEFAULT_THRESHOLD, dP as DEFAULT_TOTAL_ORACLES, n_ as DEFAULT_TREASURY, by as DEFAULT_VALIDITY_PERIOD_SECONDS, c6 as DEFAULT_WARMING_CONFIG, fO as DecryptedTransaction, h3 as DerivationPath, f$ as DeriveMultipleParams, f_ as DeriveViewingKeyParams, fZ as DerivedViewingKey, cA as DetailedAggregationResult, cE as DetailedVerificationResult, hw as EIP1193ConnectInfo, hv as EIP1193Event, ht as EIP1193Provider, hx as EIP1193ProviderRpcError, hu as EIP1193RequestArguments, hy as EIP712Domain, hz as EIP712TypeDefinition, hB as EIP712TypedData, hA as EIP712Types, cK as EllipticCurve, n0 as EncryptedNote, gq as EncryptedVote, x as EncryptionNotImplementedError, jp as EnhancedAccountData, jq as EnhancedTransaction, jo as EnhancedTransactionEvents, jj as EnhancedTransactionType, E as ErrorCode, hH as EthereumAdapterConfig, h0 as EthereumChainId, hI as EthereumChainIdType, hF as EthereumChainMetadata, hE as EthereumTokenMetadata, hD as EthereumTransactionReceipt, hC as EthereumTransactionRequest, gQ as EthereumWalletAdapter, hG as EthereumWalletName, lJ as ExchangeExposureResult, fQ as ExportForRegulatorParams, eT as ExportedViewingKey, fU as FATFExport, fV as FATFTransaction, fW as FINCENExport, fX as FINCENTransaction, o4 as FeeBreakdown, o2 as FeeCalculationInput, o3 as FeeCalculationResult, nM as FeeCalculator, od as FeeCalculatorOptions, o6 as FeeCollectionEvent, of as FeeCollectionParams, og as FeeCollectionResult, o9 as FeeContractMethods, o8 as FeeContractState, oc as FeeGovernanceProposal, n$ as FeeModel, o7 as FeeStats, o0 as FeeTier, o5 as FeeTreasuryConfig, ob as FeeWaiver, oa as FeeWaiverType, cL as FieldCharacteristics, bW as FileCache, eB as FindBestRouteParams, lF as FullAnalysisResult, fM as GenerateAuditReportParams, ii as GenericProvider, j9 as GenericProviderConfig, js as GetTransactionHistoryOptions, dn as Halo2NativeProof, ca as Halo2ProofConverter, hW as HardwareAccount, hN as HardwareConnectionStatus, hP as HardwareDeviceInfo, h1 as HardwareErrorCode, hY as HardwareErrorCodeType, hU as HardwareEthereumTx, hT as HardwareSignRequest, hV as HardwareSignature, hX as HardwareTransport, hQ as HardwareWalletConfig, h2 as HardwareWalletError, hK as HardwareWalletType, io as HeliusEnhanced, ji as HeliusEnhancedConfig, jc as HeliusEnhancedTransaction, ih as HeliusProvider, ja as HeliusProviderConfig, jd as HeliusWebhookPayload, jb as HeliusWebhookTransaction, cr as HistoryCompletenessParams, de as ICacheKeyGenerator, dk as ICompiledCircuitCache, dg as ILRUCache, di as IMultiTierCache, c7 as INITIAL_PROOF_CACHE_STATS, dh as IPersistentCache, df as IProofCache, dj as IVerificationKeyCache, bV as IndexedDBCache, T as IntentBuilder, I as IntentError, cj as InvalidProofError, db as InvalidationRule, da as InvalidationStrategy, iI as JITO_BLOCK_ENGINES, iK as JITO_DEFAULTS, iJ as JITO_TIP_ACCOUNTS, iM as JitoBundleRequest, iN as JitoBundleResult, iD as JitoRelayer, iL as JitoRelayerConfig, iG as JitoRelayerError, iH as JitoRelayerErrorCode, fT as Jurisdiction, lA as KNOWN_EXCHANGES, ga as KNOWN_ISSUERS, dp as KimchiNativeProof, cc as KimchiProofConverter, lO as KnownExchange, bT as LRUCache, d3 as LRUCacheConfig, l8 as LatencyEstimate, hR as LedgerConfig, hL as LedgerModel, h9 as LedgerWalletAdapter, cF as LinkValidationResult, mc as LogLevel, k9 as MAX_NEAR_AMOUNT, iB as MAX_PROOF_SIZE_BYTES, iC as MAX_PUBLIC_INPUTS, i8 as MEMO_PROGRAM_ID, n1 as MerkleProof, p as MobileBrowser, q as MobileDeviceInfo, M as MobilePlatform, r as MobileWASMCompatibility, gS as MockEthereumAdapter, hJ as MockEthereumAdapterConfig, hZ as MockHardwareConfig, hd as MockLedgerAdapter, nv as MockObliviousSyncProvider, bw as MockProofProvider, gI as MockSolanaAdapter, hs as MockSolanaAdapterConfig, ee as MockSolver, eg as MockSolverConfig, nb as MockSyncProviderConfig, he as MockTrezorAdapter, gy as MockWalletAdapter, b_ as MultiTierCache, d5 as MultiTierCacheConfig, kp as NEARAnnouncement, kv as NEARClaimParams, kw as NEARClaimResult, kB as NEARCommitmentPoint, ku as NEARDetectedPayment, kF as NEAREncryptedPayload, kN as NEARExportFormat, kO as NEARExportOptions, nU as NEARFeeContract, oe as NEARFeeContractOptions, kK as NEARHistoricalTransaction, kJ as NEARHistoryPrivacyLevel, e8 as NEARIntentsAdapter, ed as NEARIntentsAdapterConfig, eC as NEARIntentsBackend, ko as NEARNetwork, kA as NEARPedersenCommitment, kq as NEARPrivateTransferParams, kr as NEARPrivateTransferResult, ks as NEARScanParams, kt as NEARScanResult, ky as NEARStealthAddressResult, kx as NEARStealthBalance, kz as NEARStealthMetaAddressResult, kG as NEARTransactionData, kL as NEARTransactionHistoryParams, kM as NEARTransactionHistoryResult, kI as NEARTransactionType, kD as NEARViewingKey, kE as NEARViewingKeyExport, kH as NEARViewingKeyStorage, jC as NEAR_DEFAULT_GAS, k8 as NEAR_ED25519_ORDER, jy as NEAR_EXPLORER_URLS, nZ as NEAR_FEE_CONTRACTS, jB as NEAR_IMPLICIT_ACCOUNT_LENGTH, ka as NEAR_MAX_COMMITMENT_VALUE, jx as NEAR_RPC_ENDPOINTS, jF as NEAR_SIP_MEMO_PREFIX, jz as NEAR_TOKEN_CONTRACTS, jA as NEAR_TOKEN_DECIMALS, kC as NEP141TokenCommitment, dl as NativeProofFormat, jk as NativeTransfer, N as NetworkError, mK as NetworkPrivacyConfig, jm as NftTransfer, iQ as NoirCircuitType, dm as NoirNativeProof, c8 as NoirProofConverter, jD as ONE_NEAR, jE as ONE_YOCTO, dM as ORACLE_DOMAIN, n3 as ObliviousNullifier, n7 as ObliviousSyncConfig, nt as ObliviousSyncError, nu as ObliviousSyncErrorCode, n8 as ObliviousSyncProvider, n4 as ObliviousSyncQuery, n5 as ObliviousSyncResponse, e7 as OneClickClient, dU as OracleAttestationMessage, dR as OracleId, dT as OracleInfo, dX as OracleRegistry, dY as OracleRegistryConfig, dV as OracleSignature, dS as OracleStatus, cR as OrchestratorConfig, cY as OrchestratorProgressCallback, cX as OrchestratorProgressEvent, cV as OrchestratorResult, bL as PALLAS_MODULUS, mP as PROXY_ENV_VAR, mQ as PROXY_ENV_VARS, cx as ParallelAggregationOptions, jr as ParseTransactionsOptions, mG as ParsedProxyConfig, fg as PaymentBuilder, fP as PdfExportOptions, bc as PedersenCommitment, d4 as PersistentCacheConfig, eb as PreparedSwap, f1 as PriceFeed, lP as PrivacyAdvisorAgent, lZ as PrivacyAdvisorConfig, m0 as PrivacyAdvisoryReport, lc as PrivacyAvailabilityResult, l6 as PrivacyBackend, l9 as PrivacyBackendCapabilities, l0 as PrivacyBackendRegistry, lf as PrivacyBackendSelectionResult, l7 as PrivacyBackendType, aU as PrivacyConfig, jt as PrivacyDisplayOptions, m5 as PrivacyLogger, md as PrivacyLoggerConfig, lE as PrivacyRecommendation, lC as PrivacyScore, lD as PrivacyScoreBreakdown, l5 as PrivacySmartRouter, le as PrivacySmartRouterConfig, lb as PrivacyTransactionResult, la as PrivacyTransferParams, gt as PrivateNFT, go as PrivateVoting, mx as ProductionConfigError, mw as ProductionConfigValidationResult, my as ProductionConfigWarning, O as ProductionQuote, mv as ProductionSafetyError, bB as ProofAggregator, cW as ProofAuditLogEntry, d6 as ProofCacheStats, ci as ProofConversionError, dt as ProofConverter, cC as ProofDependency, u as ProofError, w as ProofNotImplementedError, bO as ProofOrchestrator, P as ProofProgressCallback, iW as ProofStatistics, dx as ProofSystemToNativeMap, j7 as ProviderConfig, j8 as ProviderType, mJ as ProxiedFetch, mH as ProxyAgentOptions, mI as ProxyCheckResult, mE as ProxyConfig, mF as ProxyType, eA as QuoteComparison, gh as RangeAPIConfig, gc as RangeSASAttestation, eR as ReceivedNote, cy as RecursiveAggregationOptions, lh as RegisteredBackend, fR as RegulatoryExport, fS as RegulatoryFormat, iO as RelayedTransactionRequest, iP as RelayedTransactionResult, gr as RevealedVote, lB as RiskLevel, ew as Route, ez as RouteWithQuote, ld as RouterPriority, H as SIP, L as SIPConfig, jv as SIPEnhancedTransaction, S as SIPError, mm as SIPLogLevel, mn as SIPLoggerConfig, l2 as SIPNativeBackend, li as SIPNativeBackendConfig, lM as SIPProtectionComparison, ju as SIPTransactionMetadata, i9 as SIP_MEMO_PREFIX, i7 as SOLANA_EXPLORER_URLS, i6 as SOLANA_RPC_ENDPOINTS, i5 as SOLANA_TOKEN_DECIMALS, i4 as SOLANA_TOKEN_MINTS, iA as SOLANA_ZK_PROGRAM_IDS, fq as STABLECOIN_ADDRESSES, fr as STABLECOIN_DECIMALS, fp as STABLECOIN_INFO, bz as SUPPORTED_JURISDICTIONS, bJ as SYSTEM_INFO, Q as SameChainExecuteParams, R as SameChainExecuteResult, kY as SameChainExecutor, kZ as SameChainTransferParams, k_ as SameChainTransferResult, cp as SanctionsClearParams, gk as SealedBid, gi as SealedBidAuction, v as SecurityError, me as SensitiveData, cw as SequentialAggregationOptions, G as SerializedError, et as SettlementBackend, eu as SettlementBackendFactory, ek as SettlementBackendName, ev as SettlementBackendRegistry, em as SettlementQuote, el as SettlementQuoteParams, ei as SettlementRegistry, ej as SettlementRegistryError, ep as SettlementSwapParams, eq as SettlementSwapResult, en as SettlementSwapRoute, eo as SettlementSwapRouteStep, eS as ShieldedBalance, eP as ShieldedSendParams, eQ as ShieldedSendResult, dW as SignedOracleAttestation, ex as SmartRouter, lL as SocialLinkResult, hn as SolanaAdapterConfig, j3 as SolanaAnnouncement, j1 as SolanaClaimParams, j2 as SolanaClaimResult, hm as SolanaCluster, ho as SolanaConnection, iw as SolanaNoirError, ix as SolanaNoirErrorCode, ix as SolanaNoirErrorCodeType, iq as SolanaNoirVerifier, iV as SolanaNoirVerifierConfig, iZ as SolanaPrivateTransferParams, i_ as SolanaPrivateTransferResult, hh as SolanaPublicKey, j5 as SolanaRPCProvider, j4 as SolanaSameChainCluster, k$ as SolanaSameChainConfig, kU as SolanaSameChainExecutor, i$ as SolanaScanParams, j0 as SolanaScanResult, hp as SolanaSendOptions, iS as SolanaSerializedProof, hr as SolanaSignature, hi as SolanaTransaction, hq as SolanaUnsignedTransaction, iR as SolanaVerificationKey, iU as SolanaVerificationResult, iT as SolanaVerifyInstruction, hj as SolanaVersionedTransaction, gG as SolanaWalletAdapter, hl as SolanaWalletName, hk as SolanaWalletProvider, fD as StablecoinInfo, ap as StealthCurve, m3 as StreamCallback, aF as SuiStealthResult, ax as SuiStealthService, ls as SurveillanceAnalyzer, lG as SurveillanceAnalyzerConfig, jn as SwapEvent, ea as SwapRequest, ec as SwapResult, eh as SwapStatus, er as SwapStatusResponse, ne as SyncCompletionEvent, nf as SyncEventListener, nx as SyncManager, nc as SyncManagerConfig, ng as SyncOptions, nd as SyncProgressEvent, n2 as SyncRandomness, n6 as SyncServiceHealth, cM as SystemInfo, cG as SystemVerificationStats, mN as TOR_CONTROL_PORT, mM as TOR_HOST, mL as TOR_PORTS, fe as TapScript, fd as TaprootOutput, lK as TemporalPatternResult, g0 as ThresholdShares, fL as ThresholdViewingKey, g3 as TimeLockParams, g1 as TimeLockResult, na as TimeWindowedViewingKey, j6 as TokenAsset, e6 as TokenMetadata, jl as TokenTransfer, m2 as ToolResult, m4 as ToolsConfig, aV as TransactionData, jw as TransactionSummary, hO as TransportType, fE as Treasury, hS as TrezorConfig, hM as TrezorModel, hb as TrezorWalletAdapter, nJ as UnifiedOptimizationProfile, nL as UnifiedOptimizationResult, ce as UnifiedProofConverter, g2 as UnlockResult, ck as UnsupportedVersionError, ln as UnwrapParams, lo as UnwrapResult, bM as VESTA_MODULUS, cN as ValidationCheck, V as ValidationError, cQ as ValidationOptions, cO as ValidationReport, cD as VerificationOrder, bE as VerificationPipeline, cB as VerificationPipelineConfig, cI as VerificationProgressCallback, cH as VerificationProgressEvent, d$ as VerificationResult, gn as VerifyBidParams, cJ as VerifyOptions, co as ViewingKeyAccessParams, ge as ViewingKeyDerivationResult, gf as ViewingKeyScope, W as WalletAdapter, gz as WalletError, n9 as WalletSyncState, dd as WarmingResult, jh as WebhookHandler, je as WebhookHandlerConfig, jf as WebhookProcessResult, jg as WebhookRequest, ll as WrapParams, lm as WrapResult, eE as ZcashNativeBackend, eG as ZcashNativeBackendConfig, eY as ZcashQuote, eX as ZcashQuoteParams, eH as ZcashRPCClient, eI as ZcashRPCError, mD as ZcashRpcConfig, eK as ZcashShieldedService, eO as ZcashShieldedServiceConfig, eZ as ZcashSwapParams, e_ as ZcashSwapResult, eM as ZcashSwapService, eU as ZcashSwapServiceConfig, eV as ZcashSwapSourceChain, eW as ZcashSwapSourceToken, e$ as ZcashSwapStatus, b8 as addBlindings, k4 as addBlindingsNEAR, b6 as addCommitments, k2 as addCommitmentsNEAR, dD as addOracle, lu as analyzeAddressReuse, lx as analyzeTemporalPatterns, av as aptosAddressToAuthKey, ms as assertNoLocalhost, X as attachProofs, gP as base58ToHex, nB as bnbOptimizations, nQ as bpsToPercent, b as browserBytesToHex, h as browserHexToBytes, c2 as cacheKeyGenerator, nY as calculateFeeForSwap, ly as calculatePrivacyScore, lz as calculateSIPComparison, at as checkAptosStealthAddress, ag as checkEd25519StealthAddress, f as checkMobileWASMCompatibility, jP as checkNEARStealthAddress, mW as checkProxyAvailability, a7 as checkStealthAddress, aA as checkSuiStealthAddress, i2 as claimStealthPayment, b3 as commit, jY as commitNEAR, j_ as commitNEP141Token, b5 as commitZero, nF as compareCrossChainCosts, dK as computeAttestationHash, kd as computeNEARViewingKeyHash, ke as computeNEARViewingKeyHashFromPrivate, f7 as computeTweakedKey, mh as configureLogger, ch as convertFromSIP, cg as convertToSIP, lS as createAnalyzeWalletTool, ie as createAnnouncementMemo, c1 as createCacheKeyGenerator, aW as createCommitment, bI as createCrossSystemValidator, ir as createDevnetVerifier, gR as createEthereumAdapter, lV as createExplainTool, nN as createFeeCalculator, bZ as createFileCache, cb as createHalo2Converter, ip as createHeliusEnhanced, bY as createIndexedDBCache, iE as createJitoRelayer, f9 as createKeySpendOnlyOutput, cd as createKimchiConverter, bU as createLRUCache, ha as createLedgerAdapter, mg as createLogger, nW as createMainnetFeeContract, iF as createMainnetRelayer, is as createMainnetVerifier, g6 as createMockAttestation, gT as createMockEthereumAdapter, gU as createMockEthereumProvider, hf as createMockLedgerAdapter, gJ as createMockSolanaAdapter, gL as createMockSolanaConnection, gK as createMockSolanaProvider, ef as createMockSolver, nw as createMockSyncProvider, hg as createMockTrezorAdapter, b$ as createMultiTierCache, jX as createNEARAnnouncementMemo, nV as createNEARFeeContract, e9 as createNEARIntentsAdapter, eD as createNEARIntentsBackend, kj as createNEARMemoryStorage, m_ as createNetworkPrivacyClient, c9 as createNoirConverter, dC as createOracleRegistry, bX as createPersistentCache, lQ as createPrivacyAdvisor, lR as createPrivacyAdvisorTools, m6 as createPrivacyLogger, gu as createPrivateOwnership, gp as createPrivateVoting, mu as createProductionConfig, K as createProductionSIP, bC as createProofAggregator, bP as createProofOrchestrator, ig as createProvider, mY as createProxiedFetch, mX as createProxyAgent, lT as createQuickScoreTool, J as createSIP, lU as createSIPComparisonTool, kV as createSameChainExecutor, gj as createSealedBidAuction, U as createShieldedIntent, fh as createShieldedPayment, ey as createSmartRouter, gH as createSolanaAdapter, lt as createSurveillanceAnalyzer, ny as createSyncManager, np as createSyncState, f8 as createTaprootOutput, nX as createTestnetFeeContract, nr as createTimeWindowedKey, hc as createTrezorAdapter, cf as createUnifiedConverter, bF as createVerificationPipeline, gE as createWalletFactory, ij as createWebhookHandler, eJ as createZcashClient, eF as createZcashNativeBackend, eL as createZcashShieldedService, eN as createZcashSwapService, a9 as decodeStealthMetaAddress, fb as decodeTaprootAddress, fi as decryptMemo, ki as decryptWithNEARViewing, aS as decryptWithViewing, l1 as defaultRegistry, as as deriveAptosStealthPrivateKey, af as deriveEd25519StealthPrivateKey, kl as deriveNEARChildViewingKey, jO as deriveNEARStealthPrivateKey, nn as deriveObliviousNullifier, dB as deriveOracleId, a6 as deriveStealthPrivateKey, az as deriveSuiStealthPrivateKey, no as deriveTraditionalNullifier, aQ as deriveViewingKey, dJ as deserializeAttestationMessage, a1 as deserializeIntent, fn as deserializePayment, nC as detectChainFamily, lv as detectClusters, gW as detectEthereumWallets, lw as detectExchangeExposure, c as detectMobileBrowser, d as detectMobilePlatform, gN as detectSolanaWallets, mV as detectTorPort, au as ed25519PublicKeyToAptosAddress, jQ as ed25519PublicKeyToImplicitAccount, ak as ed25519PublicKeyToNearAddress, ah as ed25519PublicKeyToSolanaAddress, aB as ed25519PublicKeyToSuiAddress, jS as encodeNEARStealthMetaAddress, a8 as encodeStealthMetaAddress, kh as encryptForNEARViewing, aR as encryptForViewing, iv as estimateComputeUnits, nO as estimateFee, h$ as estimatePrivateTransferFee, nA as evmOptimizations, kf as exportNEARViewingKey, kS as exportTransactions, gB as featureNotSupportedError, g8 as fetchAttestation, g9 as fetchWalletAttestations, nP as formatFee, fB as formatStablecoinAmount, gY as fromHex, fA as fromStablecoinUnits, k1 as fromYoctoNEAR, ar as generateAptosStealthAddress, bb as generateBlinding, k7 as generateBlindingNEAR, aI as generateCosmosStealthAddress, aH as generateCosmosStealthMetaAddress, ae as generateEd25519StealthAddress, ad as generateEd25519StealthMetaAddress, aY as generateIntentId, jN as generateNEARStealthAddress, jM as generateNEARStealthMetaAddress, kb as generateNEARViewingKeyFromSpending, fH as generatePdfReport, a_ as generateRandomBytes, kc as generateRandomNEARViewingKey, a5 as generateStealthAddress, a4 as generateStealthMetaAddress, ay as generateSuiStealthAddress, nk as generateSyncRandomness, aP as generateViewingKey, dG as getActiveOracles, e1 as getAsset, h8 as getAvailableTransports, g as getBrowserInfo, j as getBrowserVersion, nD as getChainCharacteristics, dL as getChainNumericId, fy as getChainsForStablecoin, nm as getCurrentEpoch, ac as getCurveForChain, g$ as getDefaultRpcEndpoint, h4 as getDerivationPath, F as getErrorMessage, gV as getEthereumProvider, ba as getGenerators, k6 as getGeneratorsNEAR, a2 as getIntentSummary, mk as getLogLevelName, e as getMobileDeviceInfo, jH as getNEARAccountExplorerUrl, jG as getNEARExplorerUrl, jI as getNEARTokenContract, km as getNEARViewingPublicKey, e2 as getNativeToken, k as getOSVersion, fo as getPaymentSummary, fl as getPaymentTimeRemaining, aO as getPrivacyConfig, aT as getPrivacyDescription, mt as getProductionUrl, mT as getProxyFromEnv, ia as getSolanaExplorerUrl, gM as getSolanaProvider, ic as getSolanaTokenDecimals, fs as getStablecoin, fv as getStablecoinInfo, ft as getStablecoinsForChain, i3 as getStealthBalance, kX as getSupportedSameChainChains, fw as getSupportedStablecoins, $ as getTimeRemaining, e3 as getTokenByAddress, e0 as getTokenDecimals, ib as getTokenMint, e5 as getTokensForChain, kQ as getTransactionByHash, kR as getTransactionCount, kP as getTransactionHistory, kT as getTransactionSummary, f6 as getXOnlyPublicKey, dH as hasEnoughOracles, A as hasErrorCode, Y as hasRequiredProofs, i0 as hasTokenAccount, aZ as hash, gZ as hexToNumber, jR as implicitAccountToEd25519PublicKey, kg as importNEARViewingKey, i as isBrowser, ab as isEd25519Chain, _ as isExpired, jJ as isImplicitAccount, e4 as isKnownToken, ml as isLevelEnabled, mp as isLocalhostAllowed, mq as isLocalhostUrl, kk as isNEARAnnouncementForViewingKey, jK as isNamedAccount, it as isNoirCircuitType, bj as isNonNegativeAmount, ns as isNoteInWindow, fk as isPaymentExpired, gF as isPrivateWalletAdapter, mo as isProductionEnvironment, y as isSIPError, kW as isSameChainSupported, z as isSecurityError, fu as isStablecoin, fx as isStablecoinOnChain, nl as isSyncRandomnessValid, l as isTablet, mU as isTorAvailable, bi as isValidAmount, aw as isValidAptosAddress, be as isValidChainId, bm as isValidCompressedPublicKey, aK as isValidCosmosAddress, bn as isValidEd25519PublicKey, bg as isValidHex, bh as isValidHexLength, jL as isValidNEARAccountId, an as isValidNearAccountId, am as isValidNearImplicitAddress, bf as isValidPrivacyLevel, bo as isValidPrivateKey, bp as isValidScalar, bk as isValidSlippage, aj as isValidSolanaAddress, iu as isValidSolanaProof, bl as isValidStealthMetaAddress, aD as isValidSuiAddress, fc as isValidTaprootAddress, mf as logger, ma as maskAmount, al as nearAddressToEd25519PublicKey, g_ as normalizeAddress, aC as normalizeSuiAddress, gA as notConnectedError, id as parseAnnouncement, jW as parseNEARAnnouncement, jT as parseNEARStealthMetaAddress, mS as parseProxyConfig, ao as parseStealthAddress, nR as percentToBps, m7 as privacyLogger, ik as processWebhookTransaction, gv as proveOwnership, aa as publicKeyToEthAddress, nG as recommendCheapestChain, nH as recommendProfile, m8 as redactAddress, mb as redactSensitiveData, m9 as redactSignature, gD as registerWallet, dE as removeOracle, mZ as rotateCircuit, i1 as scanForPayments, f2 as schnorrSign, f4 as schnorrSignHex, f3 as schnorrVerify, f5 as schnorrVerifyHex, a$ as secureWipe, b0 as secureWipeAll, nE as selectOptimalConfig, h_ as sendPrivateSPLTransfer, dI as serializeAttestationMessage, a0 as serializeIntent, fm as serializePayment, mj as setLogLevel, dA as signAttestationMessage, mi as silenceLogger, ai as solanaAddressToEd25519PublicKey, nz as solanaOptimizations, gO as solanaPublicKeyToHex, aJ as stealthKeyToCosmosAddress, b9 as subtractBlindings, k5 as subtractBlindingsNEAR, b7 as subtractCommitments, k3 as subtractCommitmentsNEAR, a as supportsSharedArrayBuffer, m as supportsTouch, o as supportsWASMBulkMemory, n as supportsWASMSimd, h7 as supportsWebBluetooth, h6 as supportsWebHID, h5 as supportsWebUSB, s as supportsWebWorkers, fa as taprootAddress, gX as toHex, fz as toStablecoinUnits, k0 as toYoctoNEAR, Z as trackIntent, fj as trackPayment, dF as updateOracleStatus, nq as updateSyncState, br as validateAsset, bq as validateCreateIntentParams, bs as validateIntentInput, bt as validateIntentOutput, jV as validateNEARStealthAddress, jU as validateNEARStealthMetaAddress, kn as validateNEARViewingKey, mr as validateProductionConfig, bv as validateScalar, bu as validateViewingKey, dy as verifyAttestation, g7 as verifyAttestationSignature, im as verifyAuthToken, aX as verifyCommitment, j$ as verifyNEP141TokenCommitment, b4 as verifyOpening, jZ as verifyOpeningNEAR, dz as verifyOracleSignature, gw as verifyOwnership, il as verifyWebhookSignature, gC as walletRegistry, b1 as withSecureBuffer, b2 as withSecureBufferSync, D as wrapError } from './index-DXh2IGkz.js';
1
+ export { A as ATTESTATION_VERSION, a as AddressReuseResult, b as AdvisorMessage, c as AdvisorRecommendation, d as AdvisorResponse, e as AdvisorRole, f as AdvisorStatus, g as AdvisoryContext, h as AggregationProgressCallback, i as AggregationProgressEvent, j as AggregationStepResult, k as AggregatorConfig, l as AnalyzableTransaction, m as AnyNativeProof, n as ApproveParams, o as ApproveResult, p as AptosStealthResult, q as AptosStealthService, r as AttestationGatedConfig, s as AttestationGatedDisclosure, t as AttestationRequest, u as AttestationResult, v as AttestationSchema, w as AttestationVerificationResult, x as AuditReport, y as AuditorKeyDerivation, z as AuditorType, B as BLS12_381_MODULUS, C as BN254_MODULUS, D as BUILTIN_TEMPLATES, E as BackendCapabilities, F as BackendRegistrationOptions, G as BalanceAttestationParams, H as BaseProofComposer, I as BaseWalletAdapter, J as BatchVerificationRequest, K as BatchVerificationResult, L as BidReceipt, M as BitcoinNetwork, N as BlockRange, O as BridgeProvider, P as BrowserNoirProvider, Q as BrowserNoirProviderConfig, R as CHAIN_NUMERIC_IDS, S as CIRCUIT_METADATA, T as COMPLIANCE_CIRCUIT_IDS, U as CONFIGURABLE_ETH_RPC, V as CONFIGURABLE_SOLANA_RPC, W as CONFIGURABLE_SUI_RPC, Z as CONFIGURABLE_ZCASH_RPC, X as COSMOS_CHAIN_PREFIXES, Y as CSPLClient, _ as CSPLClientConfig, $ as CSPLServiceStatus, a0 as CSPLTokenService, a1 as CSPLTokenServiceConfig, a2 as CSVExport, a3 as CacheEntry, a4 as CacheEntryMetadata, a5 as CacheEvent, a6 as CacheEventListener, a7 as CacheEventType, a8 as CacheKey, a9 as CacheKeyComponents, aa as CacheKeyGenerator, ab as CacheLookupResult, ac as CacheWarmingConfig, ad as CastVoteParams, ae as ChainCharacteristics, af as ChainFamily, ag as ChainFeeConfig, ah as ClusterResult, ai as CommitmentPoint, aj as CompatibilityEntry, ak as ComplianceManager, al as ComplianceProofConfig, am as ComplianceProofProvider, an as ComplianceProofResult, ao as ComplianceProofType, ap as ComplianceReporter, aq as CompositionPlan, ar as CompositionRequest, as as CompositionState, at as CompositionTemplate, au as ConditionalDisclosure, av as ConversionErrorCode, aw as ConversionMetadata, ax as ConversionOptions, ay as ConverterValidationError, az as ConverterValidationResult, aA as CosmosChainId, aB as CosmosStealthResult, aC as CosmosStealthService, aD as CreateBidParams, aE as CreateIntentOptions, aF as CreatePaymentOptions, aG as CrossSystemValidator, aH as CryptoError, aI as DEFAULT_AGGREGATOR_CONFIG, aJ as DEFAULT_CHAIN_FEES, aK as DEFAULT_CONVERSION_OPTIONS, aL as DEFAULT_FEE_TIERS, aM as DEFAULT_LRU_CONFIG, aN as DEFAULT_MANAGER_CONFIG, aO as DEFAULT_MOCK_CONFIG, aP as DEFAULT_MULTI_TIER_CONFIG, aQ as DEFAULT_NETWORK_CONFIG, aR as DEFAULT_ORCHESTRATOR_CONFIG, aS as DEFAULT_PERSISTENT_CONFIG, aT as DEFAULT_PIPELINE_CONFIG, aU as DEFAULT_PROXY_TIMEOUT, aV as DEFAULT_RANGE_API_ENDPOINT, aW as DEFAULT_RPC_URLS, aX as DEFAULT_SYNC_CONFIG, aY as DEFAULT_THRESHOLD, aZ as DEFAULT_TOTAL_ORACLES, a_ as DEFAULT_TREASURY, a$ as DEFAULT_VALIDITY_PERIOD_SECONDS, b0 as DEFAULT_WARMING_CONFIG, b1 as DecryptedTransaction, b2 as DerivationPath, b3 as DeriveMultipleParams, b4 as DeriveViewingKeyParams, b5 as DerivedViewingKey, b6 as DetailedAggregationResult, b7 as DetailedVerificationResult, b8 as EIP1193ConnectInfo, b9 as EIP1193Event, ba as EIP1193Provider, bb as EIP1193ProviderRpcError, bc as EIP1193RequestArguments, bd as EIP712Domain, be as EIP712TypeDefinition, bf as EIP712TypedData, bg as EIP712Types, bh as EllipticCurve, bi as EncryptedNote, bj as EncryptedVote, bk as EncryptionNotImplementedError, bl as EnhancedAccountData, bm as EnhancedTransaction, bn as EnhancedTransactionEvents, bo as EnhancedTransactionType, bp as ErrorCode, bq as EthereumAdapterConfig, br as EthereumChainId, bs as EthereumChainIdType, bt as EthereumChainMetadata, bu as EthereumTokenMetadata, bv as EthereumTransactionReceipt, bw as EthereumTransactionRequest, bx as EthereumWalletAdapter, by as EthereumWalletName, bz as ExchangeExposureResult, bA as ExportForRegulatorParams, bB as ExportedViewingKey, bC as FATFExport, bD as FATFTransaction, bE as FINCENExport, bF as FINCENTransaction, bG as FeeBreakdown, bH as FeeCalculationInput, bI as FeeCalculationResult, bJ as FeeCalculator, bK as FeeCalculatorOptions, bL as FeeCollectionEvent, bM as FeeCollectionParams, bN as FeeCollectionResult, bO as FeeContractMethods, bP as FeeContractState, bQ as FeeGovernanceProposal, bR as FeeModel, bS as FeeStats, bT as FeeTier, bU as FeeTreasuryConfig, bV as FeeWaiver, bW as FeeWaiverType, bX as FieldCharacteristics, bY as FileCache, bZ as FindBestRouteParams, b_ as FullAnalysisResult, b$ as GenerateAuditReportParams, c0 as GenericProvider, c1 as GenericProviderConfig, c2 as GetTransactionHistoryOptions, c3 as Halo2NativeProof, c4 as Halo2ProofConverter, c5 as HardwareAccount, c6 as HardwareConnectionStatus, c7 as HardwareDeviceInfo, c8 as HardwareErrorCode, c9 as HardwareErrorCodeType, ca as HardwareEthereumTx, cb as HardwareSignRequest, cc as HardwareSignature, cd as HardwareTransport, ce as HardwareWalletConfig, cf as HardwareWalletError, cg as HardwareWalletType, ch as HeliusEnhanced, ci as HeliusEnhancedConfig, cj as HeliusEnhancedTransaction, ck as HeliusProvider, cl as HeliusProviderConfig, cm as HeliusWebhookPayload, cn as HeliusWebhookTransaction, co as HistoryCompletenessParams, cp as ICacheKeyGenerator, cq as ICompiledCircuitCache, cr as ILRUCache, cs as IMultiTierCache, ct as INITIAL_PROOF_CACHE_STATS, cu as IPersistentCache, cv as IProofCache, cw as IVerificationKeyCache, cx as IndexedDBCache, cy as IntentBuilder, cz as IntentError, cA as InvalidProofError, cB as InvalidationRule, cC as InvalidationStrategy, cD as JITO_BLOCK_ENGINES, cE as JITO_DEFAULTS, cF as JITO_TIP_ACCOUNTS, cG as JitoBundleRequest, cH as JitoBundleResult, cI as JitoRelayer, cJ as JitoRelayerConfig, cK as JitoRelayerError, cL as JitoRelayerErrorCode, cM as Jurisdiction, cN as KNOWN_EXCHANGES, cO as KNOWN_ISSUERS, cP as KimchiNativeProof, cQ as KimchiProofConverter, cR as KnownExchange, cS as LRUCache, cT as LRUCacheConfig, cU as LatencyEstimate, cV as LedgerConfig, cW as LedgerModel, cX as LedgerWalletAdapter, cY as LinkValidationResult, cZ as LogLevel, c_ as MAX_NEAR_AMOUNT, c$ as MAX_PROOF_SIZE_BYTES, d0 as MAX_PUBLIC_INPUTS, d1 as MEMO_PROGRAM_ID, d2 as MerkleProof, d3 as MobileBrowser, d4 as MobileDeviceInfo, d5 as MobilePlatform, d6 as MobileWASMCompatibility, d7 as MockEthereumAdapter, d8 as MockEthereumAdapterConfig, d9 as MockHardwareConfig, da as MockLedgerAdapter, db as MockObliviousSyncProvider, dc as MockProofProvider, dd as MockSolanaAdapter, de as MockSolanaAdapterConfig, df as MockSolver, dg as MockSolverConfig, dh as MockSyncProviderConfig, di as MockTrezorAdapter, dj as MockWalletAdapter, dk as MultiTierCache, dl as MultiTierCacheConfig, dm as NEARAnnouncement, dn as NEARClaimParams, dp as NEARClaimResult, dq as NEARCommitmentPoint, dr as NEARDetectedPayment, ds as NEAREncryptedPayload, dt as NEARExportFormat, du as NEARExportOptions, dv as NEARFeeContract, dw as NEARFeeContractOptions, dx as NEARHistoricalTransaction, dy as NEARHistoryPrivacyLevel, dz as NEARIntentsAdapter, dA as NEARIntentsAdapterConfig, dB as NEARIntentsBackend, dC as NEARNetwork, dD as NEARPedersenCommitment, dE as NEARPrivateTransferParams, dF as NEARPrivateTransferResult, dG as NEARScanParams, dH as NEARScanResult, dI as NEARStealthAddressResult, dJ as NEARStealthBalance, dK as NEARStealthMetaAddressResult, dL as NEARTransactionData, dM as NEARTransactionHistoryParams, dN as NEARTransactionHistoryResult, dO as NEARTransactionType, dP as NEARViewingKey, dQ as NEARViewingKeyExport, dR as NEARViewingKeyStorage, dS as NEAR_DEFAULT_GAS, dT as NEAR_ED25519_ORDER, dU as NEAR_EXPLORER_URLS, dV as NEAR_FEE_CONTRACTS, dW as NEAR_IMPLICIT_ACCOUNT_LENGTH, dX as NEAR_MAX_COMMITMENT_VALUE, dY as NEAR_RPC_ENDPOINTS, dZ as NEAR_SIP_MEMO_PREFIX, d_ as NEAR_TOKEN_CONTRACTS, d$ as NEAR_TOKEN_DECIMALS, e0 as NEP141TokenCommitment, e1 as NativeProofFormat, e2 as NativeTransfer, e3 as NetworkError, e4 as NetworkPrivacyConfig, e5 as NftTransfer, e6 as NoirCircuitType, e7 as NoirNativeProof, e8 as NoirProofConverter, e9 as ONE_NEAR, ea as ONE_YOCTO, eb as ORACLE_DOMAIN, ec as ObliviousNullifier, ed as ObliviousSyncConfig, ee as ObliviousSyncError, ef as ObliviousSyncErrorCode, eg as ObliviousSyncProvider, eh as ObliviousSyncQuery, ei as ObliviousSyncResponse, ej as OneClickClient, ek as OracleAttestationMessage, el as OracleId, em as OracleInfo, en as OracleRegistry, eo as OracleRegistryConfig, ep as OracleSignature, eq as OracleStatus, er as OrchestratorConfig, es as OrchestratorProgressCallback, et as OrchestratorProgressEvent, eu as OrchestratorResult, ev as PALLAS_MODULUS, ew as PROXY_ENV_VAR, ex as PROXY_ENV_VARS, ey as ParallelAggregationOptions, ez as ParseTransactionsOptions, eA as ParsedProxyConfig, eB as PaymentBuilder, eC as PdfExportOptions, eD as PedersenCommitment, eE as PersistentCacheConfig, eF as PreparedSwap, eG as PriceFeed, eH as PrivacyAdvisorAgent, eI as PrivacyAdvisorConfig, eJ as PrivacyAdvisoryReport, eK as PrivacyAvailabilityResult, eL as PrivacyBackend, eM as PrivacyBackendCapabilities, eN as PrivacyBackendRegistry, eO as PrivacyBackendSelectionResult, eP as PrivacyBackendType, eQ as PrivacyConfig, eR as PrivacyDisplayOptions, eS as PrivacyLogger, eT as PrivacyLoggerConfig, eU as PrivacyRecommendation, eV as PrivacyScore, eW as PrivacyScoreBreakdown, eX as PrivacySmartRouter, eY as PrivacySmartRouterConfig, eZ as PrivacyTransactionResult, e_ as PrivacyTransferParams, e$ as PrivateNFT, f0 as PrivateVoting, f1 as ProductionConfigError, f2 as ProductionConfigValidationResult, f3 as ProductionConfigWarning, f4 as ProductionQuote, f5 as ProductionSafetyError, f6 as ProofAggregator, f7 as ProofAuditLogEntry, f8 as ProofCacheStats, f9 as ProofConversionError, fa as ProofConverter, fb as ProofDependency, fc as ProofError, fd as ProofNotImplementedError, fe as ProofOrchestrator, ff as ProofProgressCallback, fg as ProofStatistics, fh as ProofSystemToNativeMap, fi as ProviderConfig, fj as ProviderType, fk as ProxiedFetch, fl as ProxyAgentOptions, fm as ProxyCheckResult, fn as ProxyConfig, fo as ProxyType, fp as QuoteComparison, fq as RangeAPIConfig, fr as RangeSASAttestation, fs as ReceivedNote, ft as RecursiveAggregationOptions, fu as RegisteredBackend, fv as RegulatoryExport, fw as RegulatoryFormat, fx as RelayedTransactionRequest, fy as RelayedTransactionResult, fz as RevealedVote, fA as RiskLevel, fB as Route, fC as RouteWithQuote, fD as RouterPriority, fE as SIP, fF as SIPConfig, fG as SIPEnhancedTransaction, fH as SIPError, fI as SIPLogLevel, fJ as SIPLoggerConfig, fK as SIPNativeBackend, fL as SIPNativeBackendConfig, fM as SIPProtectionComparison, fN as SIPTransactionMetadata, fO as SIP_MEMO_PREFIX, fP as SOLANA_EXPLORER_URLS, fQ as SOLANA_RPC_ENDPOINTS, fR as SOLANA_TOKEN_DECIMALS, fS as SOLANA_TOKEN_MINTS, fT as SOLANA_ZK_PROGRAM_IDS, fU as STABLECOIN_ADDRESSES, fV as STABLECOIN_DECIMALS, fW as STABLECOIN_INFO, fX as SUPPORTED_JURISDICTIONS, fY as SYSTEM_INFO, fZ as SameChainExecuteParams, f_ as SameChainExecuteResult, f$ as SameChainExecutor, g0 as SameChainTransferParams, g1 as SameChainTransferResult, g2 as SanctionsClearParams, g3 as SealedBid, g4 as SealedBidAuction, g5 as SecurityError, g6 as SensitiveData, g7 as SequentialAggregationOptions, g8 as SerializedError, g9 as SettlementBackend, ga as SettlementBackendFactory, gb as SettlementBackendName, gc as SettlementBackendRegistry, gd as SettlementQuote, ge as SettlementQuoteParams, gf as SettlementRegistry, gg as SettlementRegistryError, gh as SettlementSwapParams, gi as SettlementSwapResult, gj as SettlementSwapRoute, gk as SettlementSwapRouteStep, gl as ShieldedBalance, gm as ShieldedSendParams, gn as ShieldedSendResult, go as SignedOracleAttestation, gp as SmartRouter, gq as SocialLinkResult, gr as SolanaAdapterConfig, gs as SolanaAnnouncement, gt as SolanaClaimParams, gu as SolanaClaimResult, gv as SolanaCluster, gw as SolanaConnection, gx as SolanaNoirError, gy as SolanaNoirErrorCode, gy as SolanaNoirErrorCodeType, gz as SolanaNoirVerifier, gA as SolanaNoirVerifierConfig, gB as SolanaPrivateTransferParams, gC as SolanaPrivateTransferResult, gD as SolanaPublicKey, gE as SolanaRPCProvider, gF as SolanaSameChainCluster, gG as SolanaSameChainConfig, gH as SolanaSameChainExecutor, gI as SolanaScanParams, gJ as SolanaScanResult, gK as SolanaSendOptions, gL as SolanaSerializedProof, gM as SolanaSignature, gN as SolanaTransaction, gO as SolanaUnsignedTransaction, gP as SolanaVerificationKey, gQ as SolanaVerificationResult, gR as SolanaVerifyInstruction, gS as SolanaVersionedTransaction, gT as SolanaWalletAdapter, gU as SolanaWalletName, gV as SolanaWalletProvider, gW as StablecoinInfo, gX as StealthCurve, gY as StreamCallback, gZ as SuiStealthResult, g_ as SuiStealthService, g$ as SurveillanceAnalyzer, h0 as SurveillanceAnalyzerConfig, h1 as SwapEvent, h2 as SwapRequest, h3 as SwapResult, h4 as SwapStatus, h5 as SwapStatusResponse, h6 as SyncCompletionEvent, h7 as SyncEventListener, h8 as SyncManager, h9 as SyncManagerConfig, ha as SyncOptions, hb as SyncProgressEvent, hc as SyncRandomness, hd as SyncServiceHealth, he as SystemInfo, hf as SystemVerificationStats, hg as TOR_CONTROL_PORT, hh as TOR_HOST, hi as TOR_PORTS, hj as TapScript, hk as TaprootOutput, hl as TemporalPatternResult, hm as ThresholdShares, hn as ThresholdViewingKey, ho as TimeLockParams, hp as TimeLockResult, hq as TimeWindowedViewingKey, hr as TokenAsset, hs as TokenMetadata, ht as TokenTransfer, hu as ToolResult, hv as ToolsConfig, hw as TransactionData, hx as TransactionSummary, hy as TransportType, hz as Treasury, hA as TrezorConfig, hB as TrezorModel, hC as TrezorWalletAdapter, hD as UnifiedOptimizationProfile, hE as UnifiedOptimizationResult, hF as UnifiedProofConverter, hG as UnlockResult, hH as UnsupportedVersionError, hI as UnwrapParams, hJ as UnwrapResult, hK as VESTA_MODULUS, hL as ValidationCheck, hM as ValidationError, hN as ValidationOptions, hO as ValidationReport, hP as VerificationOrder, hQ as VerificationPipeline, hR as VerificationPipelineConfig, hS as VerificationProgressCallback, hT as VerificationProgressEvent, hU as VerificationResult, hV as VerifyBidParams, hW as VerifyOptions, hX as ViewingKeyAccessParams, hY as ViewingKeyDerivationResult, hZ as ViewingKeyScope, h_ as WalletAdapter, h$ as WalletError, i0 as WalletSyncState, i1 as WarmingResult, i2 as WebhookHandler, i3 as WebhookHandlerConfig, i4 as WebhookProcessResult, i5 as WebhookRequest, i6 as WrapParams, i7 as WrapResult, i8 as ZcashNativeBackend, i9 as ZcashNativeBackendConfig, ia as ZcashQuote, ib as ZcashQuoteParams, ic as ZcashRPCClient, id as ZcashRPCError, ie as ZcashRpcConfig, ig as ZcashShieldedService, ih as ZcashShieldedServiceConfig, ii as ZcashSwapParams, ij as ZcashSwapResult, ik as ZcashSwapService, il as ZcashSwapServiceConfig, im as ZcashSwapSourceChain, io as ZcashSwapSourceToken, ip as ZcashSwapStatus, iq as addBlindings, ir as addBlindingsNEAR, is as addCommitments, it as addCommitmentsNEAR, iu as addOracle, iv as analyzeAddressReuse, iw as analyzeTemporalPatterns, ix as aptosAddressToAuthKey, iy as assertNoLocalhost, iz as attachProofs, iA as base58ToHex, iB as bnbOptimizations, iC as bpsToPercent, iD as browserBytesToHex, iE as browserHexToBytes, iF as cacheKeyGenerator, iG as calculateFeeForSwap, iH as calculatePrivacyScore, iI as calculateSIPComparison, iJ as checkAptosStealthAddress, iK as checkEd25519StealthAddress, iL as checkEd25519StealthAddressV1, iM as checkMobileWASMCompatibility, iN as checkNEARStealthAddress, iO as checkProxyAvailability, iP as checkSecp256k1StealthAddressV1, iQ as checkStealthAddress, iR as checkSuiStealthAddress, iS as claimStealthPayment, iT as commit, iU as commitNEAR, iV as commitNEP141Token, iW as commitZero, iX as compareCrossChainCosts, iY as computeAttestationHash, iZ as computeNEARViewingKeyHash, i_ as computeNEARViewingKeyHashFromPrivate, i$ as computeTweakedKey, j0 as configureLogger, j1 as convertFromSIP, j2 as convertToSIP, j3 as createAnalyzeWalletTool, j4 as createAnnouncementMemo, j5 as createCacheKeyGenerator, j6 as createCommitment, j7 as createCrossSystemValidator, j8 as createDevnetVerifier, j9 as createEthereumAdapter, ja as createExplainTool, jb as createFeeCalculator, jc as createFileCache, jd as createHalo2Converter, je as createHeliusEnhanced, jf as createIndexedDBCache, jg as createJitoRelayer, jh as createKeySpendOnlyOutput, ji as createKimchiConverter, jj as createLRUCache, jk as createLedgerAdapter, jl as createLogger, jm as createMainnetFeeContract, jn as createMainnetRelayer, jo as createMainnetVerifier, jp as createMockAttestation, jq as createMockEthereumAdapter, jr as createMockEthereumProvider, js as createMockLedgerAdapter, jt as createMockSolanaAdapter, ju as createMockSolanaConnection, jv as createMockSolanaProvider, jw as createMockSolver, jx as createMockSyncProvider, jy as createMockTrezorAdapter, jz as createMultiTierCache, jA as createNEARAnnouncementMemo, jB as createNEARFeeContract, jC as createNEARIntentsAdapter, jD as createNEARIntentsBackend, jE as createNEARMemoryStorage, jF as createNetworkPrivacyClient, jG as createNoirConverter, jH as createOracleRegistry, jI as createPersistentCache, jJ as createPrivacyAdvisor, jK as createPrivacyAdvisorTools, jL as createPrivacyLogger, jM as createPrivateOwnership, jN as createPrivateVoting, jO as createProductionConfig, jP as createProductionSIP, jQ as createProofAggregator, jR as createProofOrchestrator, jS as createProvider, jT as createProxiedFetch, jU as createProxyAgent, jV as createQuickScoreTool, jW as createSIP, jX as createSIPComparisonTool, jY as createSameChainExecutor, jZ as createSealedBidAuction, j_ as createShieldedIntent, j$ as createShieldedPayment, k0 as createSmartRouter, k1 as createSolanaAdapter, k2 as createSurveillanceAnalyzer, k3 as createSyncManager, k4 as createSyncState, k5 as createTaprootOutput, k6 as createTestnetFeeContract, k7 as createTimeWindowedKey, k8 as createTrezorAdapter, k9 as createUnifiedConverter, ka as createVerificationPipeline, kb as createWalletFactory, kc as createWebhookHandler, kd as createZcashClient, ke as createZcashNativeBackend, kf as createZcashShieldedService, kg as createZcashSwapService, kh as decodeStealthMetaAddress, ki as decodeTaprootAddress, kj as decryptMemo, kk as decryptWithNEARViewing, kl as decryptWithViewing, km as defaultRegistry, kn as deriveAptosStealthPrivateKey, ko as deriveEd25519StealthPrivateKey, kp as deriveEd25519StealthPrivateKeyV1, kq as deriveNEARChildViewingKey, kr as deriveNEARStealthPrivateKey, ks as deriveObliviousNullifier, kt as deriveOracleId, ku as deriveSecp256k1StealthPrivateKeyV1, kv as deriveStealthPrivateKey, kw as deriveStealthPrivateKeyV1, kx as deriveSuiStealthPrivateKey, ky as deriveTraditionalNullifier, kz as deriveViewingKey, kA as deserializeAttestationMessage, kB as deserializeIntent, kC as deserializePayment, kD as detectChainFamily, kE as detectClusters, kF as detectEthereumWallets, kG as detectExchangeExposure, kH as detectMobileBrowser, kI as detectMobilePlatform, kJ as detectSolanaWallets, kK as detectTorPort, kL as ed25519PublicKeyToAptosAddress, kM as ed25519PublicKeyToImplicitAccount, kN as ed25519PublicKeyToNearAddress, kO as ed25519PublicKeyToSolanaAddress, kP as ed25519PublicKeyToSuiAddress, kQ as encodeNEARStealthMetaAddress, kR as encodeStealthMetaAddress, kS as encryptForNEARViewing, kT as encryptForViewing, kU as estimateComputeUnits, kV as estimateFee, kW as estimatePrivateTransferFee, kX as evmOptimizations, kY as exportNEARViewingKey, kZ as exportTransactions, k_ as featureNotSupportedError, k$ as fetchAttestation, l0 as fetchWalletAttestations, l1 as formatFee, l2 as formatStablecoinAmount, l3 as fromHex, l4 as fromStablecoinUnits, l5 as fromYoctoNEAR, l6 as generateAptosStealthAddress, l7 as generateBlinding, l8 as generateBlindingNEAR, l9 as generateCosmosStealthAddress, la as generateCosmosStealthMetaAddress, lb as generateEd25519StealthAddress, lc as generateEd25519StealthMetaAddress, ld as generateIntentId, le as generateNEARStealthAddress, lf as generateNEARStealthMetaAddress, lg as generateNEARViewingKeyFromSpending, lh as generatePdfReport, li as generateRandomBytes, lj as generateRandomNEARViewingKey, lk as generateStealthAddress, ll as generateStealthMetaAddress, lm as generateSuiStealthAddress, ln as generateSyncRandomness, lo as generateViewingKey, lp as getActiveOracles, lq as getAsset, lr as getAvailableTransports, ls as getBrowserInfo, lt as getBrowserVersion, lu as getChainCharacteristics, lv as getChainNumericId, lw as getChainsForStablecoin, lx as getCurrentEpoch, ly as getCurveForChain, lz as getDefaultRpcEndpoint, lA as getDerivationPath, lB as getErrorMessage, lC as getEthereumProvider, lD as getGenerators, lE as getGeneratorsNEAR, lF as getIntentSummary, lG as getLogLevelName, lH as getMobileDeviceInfo, lI as getNEARAccountExplorerUrl, lJ as getNEARExplorerUrl, lK as getNEARTokenContract, lL as getNEARViewingPublicKey, lM as getNativeToken, lN as getOSVersion, lO as getPaymentSummary, lP as getPaymentTimeRemaining, lQ as getPrivacyConfig, lR as getPrivacyDescription, lS as getProductionUrl, lT as getProxyFromEnv, lU as getSolanaExplorerUrl, lV as getSolanaProvider, lW as getSolanaTokenDecimals, lX as getStablecoin, lY as getStablecoinInfo, lZ as getStablecoinsForChain, l_ as getStealthBalance, l$ as getSupportedSameChainChains, m0 as getSupportedStablecoins, m1 as getTimeRemaining, m2 as getTokenByAddress, m3 as getTokenDecimals, m4 as getTokenMint, m5 as getTokensForChain, m6 as getTransactionByHash, m7 as getTransactionCount, m8 as getTransactionHistory, m9 as getTransactionSummary, ma as getXOnlyPublicKey, mb as hasEnoughOracles, mc as hasErrorCode, md as hasRequiredProofs, me as hasTokenAccount, mf as hash, mg as hexToNumber, mh as implicitAccountToEd25519PublicKey, mi as importNEARViewingKey, mj as isBrowser, mk as isEd25519Chain, ml as isExpired, mm as isImplicitAccount, mn as isKnownToken, mo as isLevelEnabled, mp as isLocalhostAllowed, mq as isLocalhostUrl, mr as isNEARAnnouncementForViewingKey, ms as isNamedAccount, mt as isNoirCircuitType, mu as isNonNegativeAmount, mv as isNoteInWindow, mw as isPaymentExpired, mx as isPrivateWalletAdapter, my as isProductionEnvironment, mz as isSIPError, mA as isSameChainSupported, mB as isSecurityError, mC as isStablecoin, mD as isStablecoinOnChain, mE as isSyncRandomnessValid, mF as isTablet, mG as isTorAvailable, mH as isValidAmount, mI as isValidAptosAddress, mJ as isValidChainId, mK as isValidCompressedPublicKey, mL as isValidCosmosAddress, mM as isValidEd25519PublicKey, mN as isValidHex, mO as isValidHexLength, mP as isValidNEARAccountId, mQ as isValidNearAccountId, mR as isValidNearImplicitAddress, mS as isValidPrivacyLevel, mT as isValidPrivateKey, mU as isValidScalar, mV as isValidSlippage, mW as isValidSolanaAddress, mX as isValidSolanaProof, mY as isValidStealthMetaAddress, mZ as isValidSuiAddress, m_ as isValidTaprootAddress, m$ as logger, n0 as maskAmount, n1 as nearAddressToEd25519PublicKey, n2 as normalizeAddress, n3 as normalizeSuiAddress, n4 as notConnectedError, n5 as parseAnnouncement, n6 as parseNEARAnnouncement, n7 as parseNEARStealthMetaAddress, n8 as parseProxyConfig, n9 as parseStealthAddress, na as percentToBps, nb as privacyLogger, nc as processWebhookTransaction, nd as proveOwnership, ne as publicKeyToEthAddress, nf as recommendCheapestChain, ng as recommendProfile, nh as redactAddress, ni as redactSensitiveData, nj as redactSignature, nk as registerWallet, nl as removeOracle, nm as rotateCircuit, nn as scanForPayments, no as schnorrSign, np as schnorrSignHex, nq as schnorrVerify, nr as schnorrVerifyHex, ns as secureWipe, nt as secureWipeAll, nu as selectOptimalConfig, nv as sendPrivateSPLTransfer, nw as serializeAttestationMessage, nx as serializeIntent, ny as serializePayment, nz as setLogLevel, nA as signAttestationMessage, nB as silenceLogger, nC as solanaAddressToEd25519PublicKey, nD as solanaOptimizations, nE as solanaPublicKeyToHex, nF as stealthKeyToCosmosAddress, nG as subtractBlindings, nH as subtractBlindingsNEAR, nI as subtractCommitments, nJ as subtractCommitmentsNEAR, nK as supportsSharedArrayBuffer, nL as supportsTouch, nM as supportsWASMBulkMemory, nN as supportsWASMSimd, nO as supportsWebBluetooth, nP as supportsWebHID, nQ as supportsWebUSB, nR as supportsWebWorkers, nS as taprootAddress, nT as toHex, nU as toStablecoinUnits, nV as toYoctoNEAR, nW as trackIntent, nX as trackPayment, nY as updateOracleStatus, nZ as updateSyncState, n_ as validateAsset, n$ as validateCreateIntentParams, o0 as validateIntentInput, o1 as validateIntentOutput, o2 as validateNEARStealthAddress, o3 as validateNEARStealthMetaAddress, o4 as validateNEARViewingKey, o5 as validateProductionConfig, o6 as validateScalar, o7 as validateViewingKey, o8 as verifyAttestation, o9 as verifyAttestationSignature, oa as verifyAuthToken, ob as verifyCommitment, oc as verifyNEP141TokenCommitment, od as verifyOpening, oe as verifyOpeningNEAR, of as verifyOracleSignature, og as verifyOwnership, oh as verifyWebhookSignature, oi as walletRegistry, oj as withSecureBuffer, ok as withSecureBufferSync, ol as wrapError } from './index-UQhQJZbM.js';
2
2
  export { Asset, AuditLogEntry, AuditScope, AuditorRegistration, AuditorViewingKey, BatchPaymentRecipient, BatchPaymentRequest, ChainId, Commitment, ComplianceConfig, ComplianceReport, ComplianceRole, ComposedProof, ComposedProofStatus, CompositionError, CompositionErrorCode, CompositionEvent, CompositionEventListener, CompositionEventType, CompositionMetadata, CompositionMetrics, CompositionProgressEvent, CompositionResult, CreateBatchProposalParams, CreateComplianceConfigParams, CreateIntentParams, CreatePaymentParams, CreatePaymentProposalParams, CreatePrivateOwnershipParams, CreateTreasuryParams, DEFAULT_COMPOSITION_CONFIG, DefuseAssetId, DisclosedTransaction, DisclosureRequest, FulfillmentCommitment, FulfillmentProof, FulfillmentRequest, FulfillmentResult, FulfillmentStatus, GenerateReportParams, Hash, HexString, WalletAdapter as IWalletAdapter, IndividualVerificationResult, IntentStatus, NATIVE_TOKENS, OneClickConfig, OneClickDepositMode, OneClickErrorCode, OneClickQuoteRequest, OneClickQuoteResponse, OneClickStatusResponse, OneClickSwapStatus, OneClickSwapType, OwnershipProof, OwnershipVerification, PaymentPurpose, PaymentReceipt, PaymentStatus, PaymentStatusType, PrivacyLevel, PrivateNFTOwnership, PrivateWalletAdapter, ProofAggregationStrategy, ProofCompositionConfig, ProofMetadata, ProofProviderCapabilities, ProofProviderMetrics, ProofProviderStatus, ProofSystem, VerificationResult as ProofVerificationResult, ProposalSignature, ProposalStatus, ProposalStatusType, ProposalType, ProveOwnershipParams, Quote, RegisterAuditorParams, ReportData, ReportFormat, ReportStatus, ReportStatusType, ReportType, SIPSolver, SIP_VERSION, ShieldedIntent, ShieldedPayment, Signature, SignedTransaction, SingleProof, Solver, SolverCapabilities, SolverEvent, SolverEventListener, SolverQuote, SolverVisibleIntent, StablecoinSymbol, StealthAddress, StealthAddressRecovery, StealthMetaAddress, SwapRoute, SwapRouteStep, TrackedIntent, TrackedPayment, TransactionReceipt, TreasuryBalance, TreasuryConfig, TreasuryMember, TreasuryProposal, TreasuryRole, TreasuryTransaction, UnsignedTransaction, VerificationHints, ViewingKey, WalletAccountChangedEvent, WalletAdapterFactory, WalletChainChangedEvent, WalletConnectEvent, WalletConnectionState, WalletDisconnectEvent, WalletErrorCode, WalletErrorEvent, WalletEvent, WalletEventHandler, WalletEventType, WalletInfo, WalletRegistryEntry, WalletShieldedSendParams, WalletShieldedSendResult, ZKProof, ZcashAccountAddress, ZcashAccountBalance, ZcashAddressInfo, ZcashAddressType, ZcashBlock, ZcashBlockHeader, ZcashBlockchainInfo, ZcashConfig, ZcashErrorCode, ZcashNetwork, ZcashNetworkInfo, ZcashNewAccount, ZcashOperation, ZcashOperationError, ZcashOperationStatus, ZcashOperationTxResult, ZcashPool, ZcashPoolBalance, ZcashPrivacyPolicy, ZcashReceiverType, ZcashSendRecipient, ZcashShieldedSendParams, ZcashUnspentNote, isPrivate, supportsViewingKey } from '@sip-protocol/types';
3
- import { F as FundingProofParams, V as ValidityProofParams, a as FulfillmentProofParams, P as ProofResult } from './noir-kzbLVTei.js';
4
- export { N as NoirProviderConfig, O as OracleAttestation, d as ProofFramework, b as ProofGenerationError, c as ProofProvider } from './noir-kzbLVTei.js';
5
- export { A as AggregateProofsOptions, j as AggregationResult, n as CacheStats, p as CompatibilityMatrix, b as ComposableProofProvider, i as ComposeProofsOptions, C as CompositionTimeoutError, l as ConversionResult, k as ConvertProofOptions, l as ConverterConversionResult, F as FallbackConfig, I as IncompatibleSystemsError, m as ProofCacheEntry, c as ProofComposer, P as ProofCompositionError, g as ProofGenerationRequest, h as ProofGenerationResult, d as ProofProviderFactory, f as ProofProviderRegistration, e as ProofProviderRegistry, q as ProofTelemetry, r as ProofTelemetryMetrics, a as ProviderNotFoundError, R as RegisterProviderOptions, S as SystemCompatibility, T as TelemetryCollector, V as VerifyComposedProofOptions, W as WorkerPoolConfig, o as WorkerPoolStatus } from './interface-Bf7w1PLW.js';
3
+ import { F as FundingProofParams, V as ValidityProofParams, a as FulfillmentProofParams, P as ProofResult } from './noir-CwPIyBLj.js';
4
+ export { N as NoirProviderConfig, O as OracleAttestation, b as ProofFramework, c as ProofGenerationError, d as ProofProvider } from './noir-CwPIyBLj.js';
5
+ export { A as AggregateProofsOptions, a as AggregationResult, C as CacheStats, b as CompatibilityMatrix, c as ComposableProofProvider, d as ComposeProofsOptions, e as CompositionTimeoutError, f as ConversionResult, g as ConvertProofOptions, f as ConverterConversionResult, F as FallbackConfig, I as IncompatibleSystemsError, P as ProofCacheEntry, h as ProofComposer, i as ProofCompositionError, j as ProofGenerationRequest, k as ProofGenerationResult, l as ProofProviderFactory, m as ProofProviderRegistration, n as ProofProviderRegistry, o as ProofTelemetry, p as ProofTelemetryMetrics, q as ProviderNotFoundError, R as RegisterProviderOptions, S as SystemCompatibility, T as TelemetryCollector, V as VerifyComposedProofOptions, W as WorkerPoolConfig, r as WorkerPoolStatus } from './interface-CQi0-WfS.js';
6
6
  export { Halo2CircuitConfig, Halo2Provider, Halo2ProviderConfig, Halo2ProvingKey, createHalo2Provider, createOrchardProvider } from './proofs/halo2.js';
7
7
  export { KimchiCircuitConfig, KimchiProvider, KimchiProviderConfig, createKimchiProvider, createMinaMainnetProvider, createZkAppProvider } from './proofs/kimchi.js';
8
8
  export { Logger as PinoLogger } from 'pino';