@sip-protocol/sdk 0.6.0 → 0.6.2

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 (63) hide show
  1. package/README.md +58 -0
  2. package/dist/browser.d.mts +4 -4
  3. package/dist/browser.d.ts +4 -4
  4. package/dist/browser.js +2752 -448
  5. package/dist/browser.mjs +31 -1
  6. package/dist/chunk-7QZPORY5.mjs +15604 -0
  7. package/dist/chunk-C2NPCUAJ.mjs +17010 -0
  8. package/dist/chunk-FCVLFUIC.mjs +16699 -0
  9. package/dist/chunk-G5UHXECN.mjs +16340 -0
  10. package/dist/chunk-GEDEIZHJ.mjs +16798 -0
  11. package/dist/chunk-GOOEOAMV.mjs +17026 -0
  12. package/dist/chunk-MTNYSNR7.mjs +16269 -0
  13. package/dist/chunk-O5PIB2EA.mjs +16698 -0
  14. package/dist/chunk-PCFM7FQO.mjs +17010 -0
  15. package/dist/chunk-QK464ARC.mjs +16946 -0
  16. package/dist/chunk-VNBMNGC3.mjs +16698 -0
  17. package/dist/chunk-W5TUELDQ.mjs +16947 -0
  18. package/dist/index-CD_zShu-.d.ts +10870 -0
  19. package/dist/index-CQBYdLYy.d.mts +10976 -0
  20. package/dist/index-Cg9TYEPv.d.mts +11321 -0
  21. package/dist/index-CqZJOO8C.d.mts +11323 -0
  22. package/dist/index-CywN9Bnp.d.ts +11321 -0
  23. package/dist/index-DHy5ZjCD.d.ts +10976 -0
  24. package/dist/index-DfsVsmxu.d.ts +11323 -0
  25. package/dist/index-ObjwyVDX.d.mts +10870 -0
  26. package/dist/index-m0xbSfmT.d.mts +11318 -0
  27. package/dist/index-rWLEgvhN.d.ts +11318 -0
  28. package/dist/index.d.mts +3 -3
  29. package/dist/index.d.ts +3 -3
  30. package/dist/index.js +2737 -427
  31. package/dist/index.mjs +31 -1
  32. package/dist/noir-DKfEzWy9.d.mts +482 -0
  33. package/dist/noir-DKfEzWy9.d.ts +482 -0
  34. package/dist/proofs/noir.d.mts +1 -1
  35. package/dist/proofs/noir.d.ts +1 -1
  36. package/dist/proofs/noir.js +12 -3
  37. package/dist/proofs/noir.mjs +12 -3
  38. package/package.json +16 -14
  39. package/src/adapters/near-intents.ts +13 -3
  40. package/src/auction/index.ts +20 -0
  41. package/src/auction/sealed-bid.ts +1037 -0
  42. package/src/compliance/derivation.ts +13 -3
  43. package/src/compliance/reports.ts +5 -4
  44. package/src/cosmos/ibc-stealth.ts +2 -2
  45. package/src/cosmos/stealth.ts +2 -2
  46. package/src/governance/index.ts +19 -0
  47. package/src/governance/private-vote.ts +1116 -0
  48. package/src/index.ts +50 -2
  49. package/src/intent.ts +145 -8
  50. package/src/nft/index.ts +27 -0
  51. package/src/nft/private-nft.ts +811 -0
  52. package/src/proofs/browser-utils.ts +1 -7
  53. package/src/proofs/noir.ts +34 -7
  54. package/src/settlement/backends/direct-chain.ts +14 -3
  55. package/src/stealth.ts +31 -13
  56. package/src/types/browser.d.ts +67 -0
  57. package/src/validation.ts +4 -2
  58. package/src/wallet/bitcoin/adapter.ts +159 -15
  59. package/src/wallet/bitcoin/types.ts +340 -15
  60. package/src/wallet/cosmos/mock.ts +16 -12
  61. package/src/wallet/hardware/ledger.ts +82 -12
  62. package/src/wallet/hardware/types.ts +2 -0
  63. package/LICENSE +0 -21
package/README.md CHANGED
@@ -295,6 +295,64 @@ const result = await service.shieldedSend({
295
295
  | Bitcoin | Yes | Yes | - |
296
296
  | Zcash | Yes | Yes | - |
297
297
 
298
+ ## Configuration
299
+
300
+ ### Development Defaults
301
+
302
+ The SDK uses localhost endpoints by default for local development:
303
+
304
+ | Service | Default Endpoint | Environment Variable |
305
+ |---------|-----------------|---------------------|
306
+ | Zcash RPC | `127.0.0.1:8232` | `ZCASH_RPC_HOST`, `ZCASH_RPC_PORT` |
307
+ | Ethereum RPC | `localhost:8545` | `ETH_RPC_URL` |
308
+ | Solana RPC | `localhost:8899` | `SOL_RPC_URL` |
309
+ | Sui RPC | `localhost:9000` | `SUI_RPC_URL` |
310
+
311
+ These defaults allow you to run local nodes (Ganache, Hardhat, Solana Test Validator) without additional configuration.
312
+
313
+ ### Production Configuration
314
+
315
+ **Always configure endpoints explicitly in production:**
316
+
317
+ ```typescript
318
+ import { SIP } from '@sip-protocol/sdk'
319
+
320
+ const sip = new SIP({
321
+ network: 'mainnet',
322
+ mode: 'production',
323
+ rpcEndpoints: {
324
+ ethereum: process.env.ETH_RPC_URL, // e.g., Alchemy, Infura
325
+ solana: process.env.SOL_RPC_URL, // e.g., Helius, QuickNode
326
+ near: process.env.NEAR_RPC_URL, // e.g., NEAR RPC
327
+ },
328
+ })
329
+ ```
330
+
331
+ ### Zcash Configuration
332
+
333
+ ```typescript
334
+ import { ZcashRPCClient } from '@sip-protocol/sdk'
335
+
336
+ // Development (uses defaults)
337
+ const devClient = new ZcashRPCClient({
338
+ username: 'user',
339
+ password: 'pass',
340
+ })
341
+
342
+ // Production
343
+ const prodClient = new ZcashRPCClient({
344
+ host: process.env.ZCASH_RPC_HOST,
345
+ port: parseInt(process.env.ZCASH_RPC_PORT || '8232'),
346
+ username: process.env.ZCASH_RPC_USER,
347
+ password: process.env.ZCASH_RPC_PASS,
348
+ tls: true, // Enable for production
349
+ })
350
+ ```
351
+
352
+ ### Environment Variables
353
+
354
+ See [`.env.example`](https://github.com/sip-protocol/sip-protocol/blob/main/.env.example) for a complete list of configurable environment variables.
355
+
298
356
  ## Error Handling
299
357
 
300
358
  ```typescript
@@ -1,7 +1,7 @@
1
- export { bz as ATTESTATION_VERSION, as as AptosStealthResult, al as AptosStealthService, bL as AttestationRequest, bM as AttestationResult, dt as AuditReport, dp as AuditorKeyDerivation, dq as AuditorType, c7 as BackendCapabilities, dM as BaseWalletAdapter, cW as BitcoinNetwork, cH as BridgeProvider, B as BrowserNoirProvider, t as BrowserNoirProviderConfig, bC as CHAIN_NUMERIC_IDS, ay as COSMOS_CHAIN_PREFIXES, dE as CSVExport, b0 as CommitmentPoint, dk as ComplianceManager, dl as ComplianceReporter, dn as ConditionalDisclosure, az as CosmosChainId, aA as CosmosStealthResult, at as CosmosStealthService, $ as CreateIntentOptions, dh as CreatePaymentOptions, C as CryptoError, bA as DEFAULT_THRESHOLD, bB as DEFAULT_TOTAL_ORACLES, du as DecryptedTransaction, ei as DerivationPath, dH as DeriveMultipleParams, dG as DeriveViewingKeyParams, dF as DerivedViewingKey, eL as EIP1193ConnectInfo, eK as EIP1193Event, eI as EIP1193Provider, eM as EIP1193ProviderRpcError, eJ as EIP1193RequestArguments, eN as EIP712Domain, eO as EIP712TypeDefinition, eQ as EIP712TypedData, eP as EIP712Types, w as EncryptionNotImplementedError, E as ErrorCode, eW as EthereumAdapterConfig, ef as EthereumChainId, eX as EthereumChainIdType, eU as EthereumChainMetadata, eT as EthereumTokenMetadata, eS as EthereumTransactionReceipt, eR as EthereumTransactionRequest, e3 as EthereumWalletAdapter, eV as EthereumWalletName, dw as ExportForRegulatorParams, cy as ExportedViewingKey, dA as FATFExport, dB as FATFTransaction, dC as FINCENExport, dD as FINCENTransaction, cg as FindBestRouteParams, ds as GenerateAuditReportParams, f9 as HardwareAccount, f0 as HardwareConnectionStatus, f2 as HardwareDeviceInfo, eg as HardwareErrorCode, fb as HardwareErrorCodeType, f7 as HardwareEthereumTx, f6 as HardwareSignRequest, f8 as HardwareSignature, fa as HardwareTransport, f3 as HardwareWalletConfig, eh as HardwareWalletError, eZ as HardwareWalletType, L as IntentBuilder, I as IntentError, dz as Jurisdiction, f4 as LedgerConfig, e_ as LedgerModel, eo as LedgerWalletAdapter, p as MobileBrowser, q as MobileDeviceInfo, M as MobilePlatform, r as MobileWASMCompatibility, e5 as MockEthereumAdapter, eY as MockEthereumAdapterConfig, fc as MockHardwareConfig, es as MockLedgerAdapter, bj as MockProofProvider, dX as MockSolanaAdapter, eH as MockSolanaAdapterConfig, bV as MockSolver, bX as MockSolverConfig, et as MockTrezorAdapter, dN as MockWalletAdapter, bP as NEARIntentsAdapter, bU as NEARIntentsAdapterConfig, ch as NEARIntentsBackend, N as NetworkError, by as ORACLE_DOMAIN, bO as OneClickClient, bG as OracleAttestationMessage, bD as OracleId, bF as OracleInfo, bJ as OracleRegistry, bK as OracleRegistryConfig, bH as OracleSignature, bE as OracleStatus, cX as PaymentBuilder, dv as PdfExportOptions, a$ as PedersenCommitment, bS as PreparedSwap, cI as PriceFeed, aH as PrivacyConfig, K as ProductionQuote, u as ProofError, v as ProofNotImplementedError, P as ProofProgressCallback, cf as QuoteComparison, cw as ReceivedNote, dx as RegulatoryExport, dy as RegulatoryFormat, cb as Route, ce as RouteWithQuote, F as SIP, J as SIPConfig, S as SIPError, d5 as STABLECOIN_ADDRESSES, d6 as STABLECOIN_DECIMALS, d4 as STABLECOIN_INFO, D as SerializedError, c8 as SettlementBackend, c9 as SettlementBackendFactory, b$ as SettlementBackendName, ca as SettlementBackendRegistry, c1 as SettlementQuote, c0 as SettlementQuoteParams, bZ as SettlementRegistry, b_ as SettlementRegistryError, c4 as SettlementSwapParams, c5 as SettlementSwapResult, c2 as SettlementSwapRoute, c3 as SettlementSwapRouteStep, cx as ShieldedBalance, cu as ShieldedSendParams, cv as ShieldedSendResult, bI as SignedOracleAttestation, cc as SmartRouter, eC as SolanaAdapterConfig, eB as SolanaCluster, eD as SolanaConnection, ew as SolanaPublicKey, eE as SolanaSendOptions, eG as SolanaSignature, ex as SolanaTransaction, eF as SolanaUnsignedTransaction, ey as SolanaVersionedTransaction, dV as SolanaWalletAdapter, eA as SolanaWalletName, ez as SolanaWalletProvider, di as StablecoinInfo, ak as StealthCurve, bR as SwapRequest, bT as SwapResult, bY as SwapStatus, c6 as SwapStatusResponse, cV as TapScript, cU as TaprootOutput, dI as ThresholdShares, dr as ThresholdViewingKey, dL as TimeLockParams, dJ as TimeLockResult, aI as TransactionData, f1 as TransportType, dj as Treasury, f5 as TrezorConfig, e$ as TrezorModel, eq as TrezorWalletAdapter, dK as UnlockResult, V as ValidationError, bN as VerificationResult, W as WalletAdapter, dO as WalletError, cj as ZcashNativeBackend, cl as ZcashNativeBackendConfig, cD as ZcashQuote, cC as ZcashQuoteParams, cm as ZcashRPCClient, cn as ZcashRPCError, cp as ZcashShieldedService, ct as ZcashShieldedServiceConfig, cE as ZcashSwapParams, cF as ZcashSwapResult, cr as ZcashSwapService, cz as ZcashSwapServiceConfig, cA as ZcashSwapSourceChain, cB as ZcashSwapSourceToken, cG as ZcashSwapStatus, aX as addBlindings, aV as addCommitments, bp as addOracle, aq as aptosAddressToAuthKey, Q as attachProofs, e2 as base58ToHex, b as browserBytesToHex, h as browserHexToBytes, ao as checkAptosStealthAddress, ac as checkEd25519StealthAddress, f as checkMobileWASMCompatibility, a3 as checkStealthAddress, aS as commit, aU as commitZero, bw as computeAttestationHash, cO as computeTweakedKey, aJ as createCommitment, e4 as createEthereumAdapter, cQ as createKeySpendOnlyOutput, ep as createLedgerAdapter, e6 as createMockEthereumAdapter, e7 as createMockEthereumProvider, eu as createMockLedgerAdapter, dY as createMockSolanaAdapter, d_ as createMockSolanaConnection, dZ as createMockSolanaProvider, bW as createMockSolver, ev as createMockTrezorAdapter, bQ as createNEARIntentsAdapter, ci as createNEARIntentsBackend, bo as createOracleRegistry, H as createProductionSIP, G as createSIP, O as createShieldedIntent, cY as createShieldedPayment, cd as createSmartRouter, dW as createSolanaAdapter, cP as createTaprootOutput, er as createTrezorAdapter, dT as createWalletFactory, co as createZcashClient, ck as createZcashNativeBackend, cq as createZcashShieldedService, cs as createZcashSwapService, a5 as decodeStealthMetaAddress, cS as decodeTaprootAddress, cZ as decryptMemo, aF as decryptWithViewing, an as deriveAptosStealthPrivateKey, ab as deriveEd25519StealthPrivateKey, bn as deriveOracleId, a2 as deriveStealthPrivateKey, aD as deriveViewingKey, bv as deserializeAttestationMessage, Z as deserializeIntent, d2 as deserializePayment, e9 as detectEthereumWallets, c as detectMobileBrowser, d as detectMobilePlatform, e0 as detectSolanaWallets, ap as ed25519PublicKeyToAptosAddress, ag as ed25519PublicKeyToNearAddress, ad as ed25519PublicKeyToSolanaAddress, a4 as encodeStealthMetaAddress, aE as encryptForViewing, dQ as featureNotSupportedError, dg as formatStablecoinAmount, eb as fromHex, df as fromStablecoinUnits, am as generateAptosStealthAddress, a_ as generateBlinding, av as generateCosmosStealthAddress, au as generateCosmosStealthMetaAddress, aa as generateEd25519StealthAddress, a9 as generateEd25519StealthMetaAddress, aL as generateIntentId, dm as generatePdfReport, aN as generateRandomBytes, a1 as generateStealthAddress, a0 as generateStealthMetaAddress, aC as generateViewingKey, bs as getActiveOracles, en as getAvailableTransports, g as getBrowserInfo, j as getBrowserVersion, bx as getChainNumericId, dd as getChainsForStablecoin, a8 as getCurveForChain, ee as getDefaultRpcEndpoint, ej as getDerivationPath, A as getErrorMessage, e8 as getEthereumProvider, aZ as getGenerators, _ as getIntentSummary, e as getMobileDeviceInfo, k as getOSVersion, d3 as getPaymentSummary, d0 as getPaymentTimeRemaining, aB as getPrivacyConfig, aG as getPrivacyDescription, d$ as getSolanaProvider, d7 as getStablecoin, da as getStablecoinInfo, d8 as getStablecoinsForChain, db as getSupportedStablecoins, X as getTimeRemaining, cN as getXOnlyPublicKey, bt as hasEnoughOracles, y as hasErrorCode, R as hasRequiredProofs, aM as hash, ec as hexToNumber, i as isBrowser, a7 as isEd25519Chain, U as isExpired, b6 as isNonNegativeAmount, c$ as isPaymentExpired, dU as isPrivateWalletAdapter, x as isSIPError, d9 as isStablecoin, dc as isStablecoinOnChain, l as isTablet, b5 as isValidAmount, ar as isValidAptosAddress, b1 as isValidChainId, b9 as isValidCompressedPublicKey, ax as isValidCosmosAddress, ba as isValidEd25519PublicKey, b3 as isValidHex, b4 as isValidHexLength, aj as isValidNearAccountId, ai as isValidNearImplicitAddress, b2 as isValidPrivacyLevel, bb as isValidPrivateKey, bc as isValidScalar, b7 as isValidSlippage, af as isValidSolanaAddress, b8 as isValidStealthMetaAddress, cT as isValidTaprootAddress, ah as nearAddressToEd25519PublicKey, ed as normalizeAddress, dP as notConnectedError, a6 as publicKeyToEthAddress, dS as registerWallet, bq as removeOracle, cJ as schnorrSign, cL as schnorrSignHex, cK as schnorrVerify, cM as schnorrVerifyHex, aO as secureWipe, aP as secureWipeAll, bu as serializeAttestationMessage, Y as serializeIntent, d1 as serializePayment, bm as signAttestationMessage, ae as solanaAddressToEd25519PublicKey, e1 as solanaPublicKeyToHex, aw as stealthKeyToCosmosAddress, aY as subtractBlindings, aW as subtractCommitments, a as supportsSharedArrayBuffer, m as supportsTouch, o as supportsWASMBulkMemory, n as supportsWASMSimd, em as supportsWebBluetooth, el as supportsWebHID, ek as supportsWebUSB, s as supportsWebWorkers, cR as taprootAddress, ea as toHex, de as toStablecoinUnits, T as trackIntent, c_ as trackPayment, br as updateOracleStatus, be as validateAsset, bd as validateCreateIntentParams, bf as validateIntentInput, bg as validateIntentOutput, bi as validateScalar, bh as validateViewingKey, bk as verifyAttestation, aK as verifyCommitment, aT as verifyOpening, bl as verifyOracleSignature, dR as walletRegistry, aQ as withSecureBuffer, aR as withSecureBufferSync, z as wrapError } from './index-DBa_jiZF.mjs';
2
- export { Asset, AuditLogEntry, AuditScope, AuditorRegistration, AuditorViewingKey, BatchPaymentRecipient, BatchPaymentRequest, ChainId, Commitment, ComplianceConfig, ComplianceReport, ComplianceRole, CreateBatchProposalParams, CreateComplianceConfigParams, CreateIntentParams, CreatePaymentParams, CreatePaymentProposalParams, CreateTreasuryParams, DefuseAssetId, DisclosedTransaction, DisclosureRequest, FulfillmentCommitment, FulfillmentProof, FulfillmentRequest, FulfillmentResult, FulfillmentStatus, GenerateReportParams, Hash, HexString, WalletAdapter as IWalletAdapter, IntentStatus, NATIVE_TOKENS, OneClickConfig, OneClickDepositMode, OneClickErrorCode, OneClickQuoteRequest, OneClickQuoteResponse, OneClickStatusResponse, OneClickSwapStatus, OneClickSwapType, PaymentPurpose, PaymentReceipt, PaymentStatus, PaymentStatusType, PrivacyLevel, PrivateWalletAdapter, ProposalSignature, ProposalStatus, ProposalStatusType, ProposalType, Quote, RegisterAuditorParams, ReportData, ReportFormat, ReportStatus, ReportStatusType, ReportType, SIPSolver, SIP_VERSION, ShieldedIntent, ShieldedPayment, Signature, SignedTransaction, Solver, SolverCapabilities, SolverEvent, SolverEventListener, SolverQuote, SolverVisibleIntent, StablecoinSymbol, StealthAddress, StealthAddressRecovery, StealthMetaAddress, SwapRoute, SwapRouteStep, TrackedIntent, TrackedPayment, TransactionReceipt, TreasuryBalance, TreasuryConfig, TreasuryMember, TreasuryProposal, TreasuryRole, TreasuryTransaction, UnsignedTransaction, 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-BTyLXLlZ.mjs';
4
- export { N as NoirProviderConfig, O as OracleAttestation, d as ProofFramework, b as ProofGenerationError, c as ProofProvider } from './noir-BTyLXLlZ.mjs';
1
+ export { bH as ATTESTATION_VERSION, az as AptosStealthResult, al as AptosStealthService, bT as AttestationRequest, bU as AttestationResult, dB as AuditReport, dx as AuditorKeyDerivation, dy as AuditorType, cf as BackendCapabilities, e7 as BaseWalletAdapter, dX as BidReceipt, d2 as BitcoinNetwork, cP as BridgeProvider, B as BrowserNoirProvider, t as BrowserNoirProviderConfig, bK as CHAIN_NUMERIC_IDS, aG as COSMOS_CHAIN_PREFIXES, dM as CSVExport, e2 as CastVoteParams, b8 as CommitmentPoint, dt as ComplianceManager, du as ComplianceReporter, dw as ConditionalDisclosure, aH as CosmosChainId, aI as CosmosStealthResult, aB as CosmosStealthService, dY as CreateBidParams, $ as CreateIntentOptions, dq as CreatePaymentOptions, C as CryptoError, bI as DEFAULT_THRESHOLD, bJ as DEFAULT_TOTAL_ORACLES, dC as DecryptedTransaction, eF as DerivationPath, dP as DeriveMultipleParams, dO as DeriveViewingKeyParams, dN as DerivedViewingKey, f6 as EIP1193ConnectInfo, f5 as EIP1193Event, f3 as EIP1193Provider, f7 as EIP1193ProviderRpcError, f4 as EIP1193RequestArguments, f8 as EIP712Domain, f9 as EIP712TypeDefinition, fb as EIP712TypedData, fa as EIP712Types, e0 as EncryptedVote, w as EncryptionNotImplementedError, E as ErrorCode, fh as EthereumAdapterConfig, eC as EthereumChainId, fi as EthereumChainIdType, ff as EthereumChainMetadata, fe as EthereumTokenMetadata, fd as EthereumTransactionReceipt, fc as EthereumTransactionRequest, eq as EthereumWalletAdapter, fg as EthereumWalletName, dE as ExportForRegulatorParams, cG as ExportedViewingKey, dI as FATFExport, dJ as FATFTransaction, dK as FINCENExport, dL as FINCENTransaction, co as FindBestRouteParams, dA as GenerateAuditReportParams, fw as HardwareAccount, fn as HardwareConnectionStatus, fp as HardwareDeviceInfo, eD as HardwareErrorCode, fy as HardwareErrorCodeType, fu as HardwareEthereumTx, ft as HardwareSignRequest, fv as HardwareSignature, fx as HardwareTransport, fq as HardwareWalletConfig, eE as HardwareWalletError, fk as HardwareWalletType, L as IntentBuilder, I as IntentError, dH as Jurisdiction, fr as LedgerConfig, fl as LedgerModel, eL as LedgerWalletAdapter, p as MobileBrowser, q as MobileDeviceInfo, M as MobilePlatform, r as MobileWASMCompatibility, es as MockEthereumAdapter, fj as MockEthereumAdapterConfig, fz as MockHardwareConfig, eP as MockLedgerAdapter, br as MockProofProvider, ei as MockSolanaAdapter, f2 as MockSolanaAdapterConfig, c1 as MockSolver, c3 as MockSolverConfig, eQ as MockTrezorAdapter, e8 as MockWalletAdapter, bX as NEARIntentsAdapter, c0 as NEARIntentsAdapterConfig, cp as NEARIntentsBackend, N as NetworkError, bG as ORACLE_DOMAIN, bW as OneClickClient, bO as OracleAttestationMessage, bL as OracleId, bN as OracleInfo, bR as OracleRegistry, bS as OracleRegistryConfig, bP as OracleSignature, bM as OracleStatus, d3 as PaymentBuilder, dD as PdfExportOptions, b7 as PedersenCommitment, b_ as PreparedSwap, cQ as PriceFeed, aP as PrivacyConfig, e3 as PrivateNFT, d_ as PrivateVoting, K as ProductionQuote, u as ProofError, v as ProofNotImplementedError, P as ProofProgressCallback, cn as QuoteComparison, cE as ReceivedNote, dF as RegulatoryExport, dG as RegulatoryFormat, e1 as RevealedVote, cj as Route, cm as RouteWithQuote, F as SIP, J as SIPConfig, S as SIPError, dd as STABLECOIN_ADDRESSES, de as STABLECOIN_DECIMALS, dc as STABLECOIN_INFO, dW as SealedBid, dU as SealedBidAuction, D as SerializedError, cg as SettlementBackend, ch as SettlementBackendFactory, c7 as SettlementBackendName, ci as SettlementBackendRegistry, c9 as SettlementQuote, c8 as SettlementQuoteParams, c5 as SettlementRegistry, c6 as SettlementRegistryError, cc as SettlementSwapParams, cd as SettlementSwapResult, ca as SettlementSwapRoute, cb as SettlementSwapRouteStep, cF as ShieldedBalance, cC as ShieldedSendParams, cD as ShieldedSendResult, bQ as SignedOracleAttestation, ck as SmartRouter, eZ as SolanaAdapterConfig, eY as SolanaCluster, e_ as SolanaConnection, eT as SolanaPublicKey, e$ as SolanaSendOptions, f1 as SolanaSignature, eU as SolanaTransaction, f0 as SolanaUnsignedTransaction, eV as SolanaVersionedTransaction, eg as SolanaWalletAdapter, eX as SolanaWalletName, eW as SolanaWalletProvider, dr as StablecoinInfo, ak as StealthCurve, aA as SuiStealthResult, as as SuiStealthService, bZ as SwapRequest, b$ as SwapResult, c4 as SwapStatus, ce as SwapStatusResponse, d1 as TapScript, d0 as TaprootOutput, dQ as ThresholdShares, dz as ThresholdViewingKey, dT as TimeLockParams, dR as TimeLockResult, aQ as TransactionData, fo as TransportType, ds as Treasury, fs as TrezorConfig, fm as TrezorModel, eN as TrezorWalletAdapter, dS as UnlockResult, V as ValidationError, bV as VerificationResult, dZ as VerifyBidParams, W as WalletAdapter, e9 as WalletError, cr as ZcashNativeBackend, ct as ZcashNativeBackendConfig, cL as ZcashQuote, cK as ZcashQuoteParams, cu as ZcashRPCClient, cv as ZcashRPCError, cx as ZcashShieldedService, cB as ZcashShieldedServiceConfig, cM as ZcashSwapParams, cN as ZcashSwapResult, cz as ZcashSwapService, cH as ZcashSwapServiceConfig, cI as ZcashSwapSourceChain, cJ as ZcashSwapSourceToken, cO as ZcashSwapStatus, b3 as addBlindings, b1 as addCommitments, bx as addOracle, aq as aptosAddressToAuthKey, Q as attachProofs, ep as base58ToHex, b as browserBytesToHex, h as browserHexToBytes, ao as checkAptosStealthAddress, ac as checkEd25519StealthAddress, f as checkMobileWASMCompatibility, a3 as checkStealthAddress, av as checkSuiStealthAddress, a_ as commit, b0 as commitZero, bE as computeAttestationHash, cW as computeTweakedKey, aR as createCommitment, er as createEthereumAdapter, cY as createKeySpendOnlyOutput, eM as createLedgerAdapter, et as createMockEthereumAdapter, eu as createMockEthereumProvider, eR as createMockLedgerAdapter, ej as createMockSolanaAdapter, el as createMockSolanaConnection, ek as createMockSolanaProvider, c2 as createMockSolver, eS as createMockTrezorAdapter, bY as createNEARIntentsAdapter, cq as createNEARIntentsBackend, bw as createOracleRegistry, e4 as createPrivateOwnership, d$ as createPrivateVoting, H as createProductionSIP, G as createSIP, dV as createSealedBidAuction, O as createShieldedIntent, d4 as createShieldedPayment, cl as createSmartRouter, eh as createSolanaAdapter, cX as createTaprootOutput, eO as createTrezorAdapter, ee as createWalletFactory, cw as createZcashClient, cs as createZcashNativeBackend, cy as createZcashShieldedService, cA as createZcashSwapService, a5 as decodeStealthMetaAddress, c_ as decodeTaprootAddress, d5 as decryptMemo, aN as decryptWithViewing, an as deriveAptosStealthPrivateKey, ab as deriveEd25519StealthPrivateKey, bv as deriveOracleId, a2 as deriveStealthPrivateKey, au as deriveSuiStealthPrivateKey, aL as deriveViewingKey, bD as deserializeAttestationMessage, Z as deserializeIntent, da as deserializePayment, ew as detectEthereumWallets, c as detectMobileBrowser, d as detectMobilePlatform, en as detectSolanaWallets, ap as ed25519PublicKeyToAptosAddress, ag as ed25519PublicKeyToNearAddress, ad as ed25519PublicKeyToSolanaAddress, aw as ed25519PublicKeyToSuiAddress, a4 as encodeStealthMetaAddress, aM as encryptForViewing, eb as featureNotSupportedError, dp as formatStablecoinAmount, ey as fromHex, dn as fromStablecoinUnits, am as generateAptosStealthAddress, b6 as generateBlinding, aD as generateCosmosStealthAddress, aC as generateCosmosStealthMetaAddress, aa as generateEd25519StealthAddress, a9 as generateEd25519StealthMetaAddress, aT as generateIntentId, dv as generatePdfReport, aV as generateRandomBytes, a1 as generateStealthAddress, a0 as generateStealthMetaAddress, at as generateSuiStealthAddress, aK as generateViewingKey, bA as getActiveOracles, eK as getAvailableTransports, g as getBrowserInfo, j as getBrowserVersion, bF as getChainNumericId, dl as getChainsForStablecoin, a8 as getCurveForChain, eB as getDefaultRpcEndpoint, eG as getDerivationPath, A as getErrorMessage, ev as getEthereumProvider, b5 as getGenerators, _ as getIntentSummary, e as getMobileDeviceInfo, k as getOSVersion, db as getPaymentSummary, d8 as getPaymentTimeRemaining, aJ as getPrivacyConfig, aO as getPrivacyDescription, em as getSolanaProvider, df as getStablecoin, di as getStablecoinInfo, dg as getStablecoinsForChain, dj as getSupportedStablecoins, X as getTimeRemaining, cV as getXOnlyPublicKey, bB as hasEnoughOracles, y as hasErrorCode, R as hasRequiredProofs, aU as hash, ez as hexToNumber, i as isBrowser, a7 as isEd25519Chain, U as isExpired, be as isNonNegativeAmount, d7 as isPaymentExpired, ef as isPrivateWalletAdapter, x as isSIPError, dh as isStablecoin, dk as isStablecoinOnChain, l as isTablet, bd as isValidAmount, ar as isValidAptosAddress, b9 as isValidChainId, bh as isValidCompressedPublicKey, aF as isValidCosmosAddress, bi as isValidEd25519PublicKey, bb as isValidHex, bc as isValidHexLength, aj as isValidNearAccountId, ai as isValidNearImplicitAddress, ba as isValidPrivacyLevel, bj as isValidPrivateKey, bk as isValidScalar, bf as isValidSlippage, af as isValidSolanaAddress, bg as isValidStealthMetaAddress, ay as isValidSuiAddress, c$ as isValidTaprootAddress, ah as nearAddressToEd25519PublicKey, eA as normalizeAddress, ax as normalizeSuiAddress, ea as notConnectedError, e5 as proveOwnership, a6 as publicKeyToEthAddress, ed as registerWallet, by as removeOracle, cR as schnorrSign, cT as schnorrSignHex, cS as schnorrVerify, cU as schnorrVerifyHex, aW as secureWipe, aX as secureWipeAll, bC as serializeAttestationMessage, Y as serializeIntent, d9 as serializePayment, bu as signAttestationMessage, ae as solanaAddressToEd25519PublicKey, eo as solanaPublicKeyToHex, aE as stealthKeyToCosmosAddress, b4 as subtractBlindings, b2 as subtractCommitments, a as supportsSharedArrayBuffer, m as supportsTouch, o as supportsWASMBulkMemory, n as supportsWASMSimd, eJ as supportsWebBluetooth, eI as supportsWebHID, eH as supportsWebUSB, s as supportsWebWorkers, cZ as taprootAddress, ex as toHex, dm as toStablecoinUnits, T as trackIntent, d6 as trackPayment, bz as updateOracleStatus, bm as validateAsset, bl as validateCreateIntentParams, bn as validateIntentInput, bo as validateIntentOutput, bq as validateScalar, bp as validateViewingKey, bs as verifyAttestation, aS as verifyCommitment, a$ as verifyOpening, bt as verifyOracleSignature, e6 as verifyOwnership, ec as walletRegistry, aY as withSecureBuffer, aZ as withSecureBufferSync, z as wrapError } from './index-CqZJOO8C.mjs';
2
+ export { Asset, AuditLogEntry, AuditScope, AuditorRegistration, AuditorViewingKey, BatchPaymentRecipient, BatchPaymentRequest, ChainId, Commitment, ComplianceConfig, ComplianceReport, ComplianceRole, CreateBatchProposalParams, CreateComplianceConfigParams, CreateIntentParams, CreatePaymentParams, CreatePaymentProposalParams, CreatePrivateOwnershipParams, CreateTreasuryParams, DefuseAssetId, DisclosedTransaction, DisclosureRequest, FulfillmentCommitment, FulfillmentProof, FulfillmentRequest, FulfillmentResult, FulfillmentStatus, GenerateReportParams, Hash, HexString, WalletAdapter as IWalletAdapter, IntentStatus, NATIVE_TOKENS, OneClickConfig, OneClickDepositMode, OneClickErrorCode, OneClickQuoteRequest, OneClickQuoteResponse, OneClickStatusResponse, OneClickSwapStatus, OneClickSwapType, OwnershipProof, OwnershipVerification, PaymentPurpose, PaymentReceipt, PaymentStatus, PaymentStatusType, PrivacyLevel, PrivateNFTOwnership, PrivateWalletAdapter, ProposalSignature, ProposalStatus, ProposalStatusType, ProposalType, ProveOwnershipParams, Quote, RegisterAuditorParams, ReportData, ReportFormat, ReportStatus, ReportStatusType, ReportType, SIPSolver, SIP_VERSION, ShieldedIntent, ShieldedPayment, Signature, SignedTransaction, Solver, SolverCapabilities, SolverEvent, SolverEventListener, SolverQuote, SolverVisibleIntent, StablecoinSymbol, StealthAddress, StealthAddressRecovery, StealthMetaAddress, SwapRoute, SwapRouteStep, TrackedIntent, TrackedPayment, TransactionReceipt, TreasuryBalance, TreasuryConfig, TreasuryMember, TreasuryProposal, TreasuryRole, TreasuryTransaction, UnsignedTransaction, 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-DKfEzWy9.mjs';
4
+ export { N as NoirProviderConfig, O as OracleAttestation, d as ProofFramework, b as ProofGenerationError, c as ProofProvider } from './noir-DKfEzWy9.mjs';
5
5
 
6
6
  /**
7
7
  * Proof Generation Web Worker
package/dist/browser.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- export { bz as ATTESTATION_VERSION, as as AptosStealthResult, al as AptosStealthService, bL as AttestationRequest, bM as AttestationResult, dt as AuditReport, dp as AuditorKeyDerivation, dq as AuditorType, c7 as BackendCapabilities, dM as BaseWalletAdapter, cW as BitcoinNetwork, cH as BridgeProvider, B as BrowserNoirProvider, t as BrowserNoirProviderConfig, bC as CHAIN_NUMERIC_IDS, ay as COSMOS_CHAIN_PREFIXES, dE as CSVExport, b0 as CommitmentPoint, dk as ComplianceManager, dl as ComplianceReporter, dn as ConditionalDisclosure, az as CosmosChainId, aA as CosmosStealthResult, at as CosmosStealthService, $ as CreateIntentOptions, dh as CreatePaymentOptions, C as CryptoError, bA as DEFAULT_THRESHOLD, bB as DEFAULT_TOTAL_ORACLES, du as DecryptedTransaction, ei as DerivationPath, dH as DeriveMultipleParams, dG as DeriveViewingKeyParams, dF as DerivedViewingKey, eL as EIP1193ConnectInfo, eK as EIP1193Event, eI as EIP1193Provider, eM as EIP1193ProviderRpcError, eJ as EIP1193RequestArguments, eN as EIP712Domain, eO as EIP712TypeDefinition, eQ as EIP712TypedData, eP as EIP712Types, w as EncryptionNotImplementedError, E as ErrorCode, eW as EthereumAdapterConfig, ef as EthereumChainId, eX as EthereumChainIdType, eU as EthereumChainMetadata, eT as EthereumTokenMetadata, eS as EthereumTransactionReceipt, eR as EthereumTransactionRequest, e3 as EthereumWalletAdapter, eV as EthereumWalletName, dw as ExportForRegulatorParams, cy as ExportedViewingKey, dA as FATFExport, dB as FATFTransaction, dC as FINCENExport, dD as FINCENTransaction, cg as FindBestRouteParams, ds as GenerateAuditReportParams, f9 as HardwareAccount, f0 as HardwareConnectionStatus, f2 as HardwareDeviceInfo, eg as HardwareErrorCode, fb as HardwareErrorCodeType, f7 as HardwareEthereumTx, f6 as HardwareSignRequest, f8 as HardwareSignature, fa as HardwareTransport, f3 as HardwareWalletConfig, eh as HardwareWalletError, eZ as HardwareWalletType, L as IntentBuilder, I as IntentError, dz as Jurisdiction, f4 as LedgerConfig, e_ as LedgerModel, eo as LedgerWalletAdapter, p as MobileBrowser, q as MobileDeviceInfo, M as MobilePlatform, r as MobileWASMCompatibility, e5 as MockEthereumAdapter, eY as MockEthereumAdapterConfig, fc as MockHardwareConfig, es as MockLedgerAdapter, bj as MockProofProvider, dX as MockSolanaAdapter, eH as MockSolanaAdapterConfig, bV as MockSolver, bX as MockSolverConfig, et as MockTrezorAdapter, dN as MockWalletAdapter, bP as NEARIntentsAdapter, bU as NEARIntentsAdapterConfig, ch as NEARIntentsBackend, N as NetworkError, by as ORACLE_DOMAIN, bO as OneClickClient, bG as OracleAttestationMessage, bD as OracleId, bF as OracleInfo, bJ as OracleRegistry, bK as OracleRegistryConfig, bH as OracleSignature, bE as OracleStatus, cX as PaymentBuilder, dv as PdfExportOptions, a$ as PedersenCommitment, bS as PreparedSwap, cI as PriceFeed, aH as PrivacyConfig, K as ProductionQuote, u as ProofError, v as ProofNotImplementedError, P as ProofProgressCallback, cf as QuoteComparison, cw as ReceivedNote, dx as RegulatoryExport, dy as RegulatoryFormat, cb as Route, ce as RouteWithQuote, F as SIP, J as SIPConfig, S as SIPError, d5 as STABLECOIN_ADDRESSES, d6 as STABLECOIN_DECIMALS, d4 as STABLECOIN_INFO, D as SerializedError, c8 as SettlementBackend, c9 as SettlementBackendFactory, b$ as SettlementBackendName, ca as SettlementBackendRegistry, c1 as SettlementQuote, c0 as SettlementQuoteParams, bZ as SettlementRegistry, b_ as SettlementRegistryError, c4 as SettlementSwapParams, c5 as SettlementSwapResult, c2 as SettlementSwapRoute, c3 as SettlementSwapRouteStep, cx as ShieldedBalance, cu as ShieldedSendParams, cv as ShieldedSendResult, bI as SignedOracleAttestation, cc as SmartRouter, eC as SolanaAdapterConfig, eB as SolanaCluster, eD as SolanaConnection, ew as SolanaPublicKey, eE as SolanaSendOptions, eG as SolanaSignature, ex as SolanaTransaction, eF as SolanaUnsignedTransaction, ey as SolanaVersionedTransaction, dV as SolanaWalletAdapter, eA as SolanaWalletName, ez as SolanaWalletProvider, di as StablecoinInfo, ak as StealthCurve, bR as SwapRequest, bT as SwapResult, bY as SwapStatus, c6 as SwapStatusResponse, cV as TapScript, cU as TaprootOutput, dI as ThresholdShares, dr as ThresholdViewingKey, dL as TimeLockParams, dJ as TimeLockResult, aI as TransactionData, f1 as TransportType, dj as Treasury, f5 as TrezorConfig, e$ as TrezorModel, eq as TrezorWalletAdapter, dK as UnlockResult, V as ValidationError, bN as VerificationResult, W as WalletAdapter, dO as WalletError, cj as ZcashNativeBackend, cl as ZcashNativeBackendConfig, cD as ZcashQuote, cC as ZcashQuoteParams, cm as ZcashRPCClient, cn as ZcashRPCError, cp as ZcashShieldedService, ct as ZcashShieldedServiceConfig, cE as ZcashSwapParams, cF as ZcashSwapResult, cr as ZcashSwapService, cz as ZcashSwapServiceConfig, cA as ZcashSwapSourceChain, cB as ZcashSwapSourceToken, cG as ZcashSwapStatus, aX as addBlindings, aV as addCommitments, bp as addOracle, aq as aptosAddressToAuthKey, Q as attachProofs, e2 as base58ToHex, b as browserBytesToHex, h as browserHexToBytes, ao as checkAptosStealthAddress, ac as checkEd25519StealthAddress, f as checkMobileWASMCompatibility, a3 as checkStealthAddress, aS as commit, aU as commitZero, bw as computeAttestationHash, cO as computeTweakedKey, aJ as createCommitment, e4 as createEthereumAdapter, cQ as createKeySpendOnlyOutput, ep as createLedgerAdapter, e6 as createMockEthereumAdapter, e7 as createMockEthereumProvider, eu as createMockLedgerAdapter, dY as createMockSolanaAdapter, d_ as createMockSolanaConnection, dZ as createMockSolanaProvider, bW as createMockSolver, ev as createMockTrezorAdapter, bQ as createNEARIntentsAdapter, ci as createNEARIntentsBackend, bo as createOracleRegistry, H as createProductionSIP, G as createSIP, O as createShieldedIntent, cY as createShieldedPayment, cd as createSmartRouter, dW as createSolanaAdapter, cP as createTaprootOutput, er as createTrezorAdapter, dT as createWalletFactory, co as createZcashClient, ck as createZcashNativeBackend, cq as createZcashShieldedService, cs as createZcashSwapService, a5 as decodeStealthMetaAddress, cS as decodeTaprootAddress, cZ as decryptMemo, aF as decryptWithViewing, an as deriveAptosStealthPrivateKey, ab as deriveEd25519StealthPrivateKey, bn as deriveOracleId, a2 as deriveStealthPrivateKey, aD as deriveViewingKey, bv as deserializeAttestationMessage, Z as deserializeIntent, d2 as deserializePayment, e9 as detectEthereumWallets, c as detectMobileBrowser, d as detectMobilePlatform, e0 as detectSolanaWallets, ap as ed25519PublicKeyToAptosAddress, ag as ed25519PublicKeyToNearAddress, ad as ed25519PublicKeyToSolanaAddress, a4 as encodeStealthMetaAddress, aE as encryptForViewing, dQ as featureNotSupportedError, dg as formatStablecoinAmount, eb as fromHex, df as fromStablecoinUnits, am as generateAptosStealthAddress, a_ as generateBlinding, av as generateCosmosStealthAddress, au as generateCosmosStealthMetaAddress, aa as generateEd25519StealthAddress, a9 as generateEd25519StealthMetaAddress, aL as generateIntentId, dm as generatePdfReport, aN as generateRandomBytes, a1 as generateStealthAddress, a0 as generateStealthMetaAddress, aC as generateViewingKey, bs as getActiveOracles, en as getAvailableTransports, g as getBrowserInfo, j as getBrowserVersion, bx as getChainNumericId, dd as getChainsForStablecoin, a8 as getCurveForChain, ee as getDefaultRpcEndpoint, ej as getDerivationPath, A as getErrorMessage, e8 as getEthereumProvider, aZ as getGenerators, _ as getIntentSummary, e as getMobileDeviceInfo, k as getOSVersion, d3 as getPaymentSummary, d0 as getPaymentTimeRemaining, aB as getPrivacyConfig, aG as getPrivacyDescription, d$ as getSolanaProvider, d7 as getStablecoin, da as getStablecoinInfo, d8 as getStablecoinsForChain, db as getSupportedStablecoins, X as getTimeRemaining, cN as getXOnlyPublicKey, bt as hasEnoughOracles, y as hasErrorCode, R as hasRequiredProofs, aM as hash, ec as hexToNumber, i as isBrowser, a7 as isEd25519Chain, U as isExpired, b6 as isNonNegativeAmount, c$ as isPaymentExpired, dU as isPrivateWalletAdapter, x as isSIPError, d9 as isStablecoin, dc as isStablecoinOnChain, l as isTablet, b5 as isValidAmount, ar as isValidAptosAddress, b1 as isValidChainId, b9 as isValidCompressedPublicKey, ax as isValidCosmosAddress, ba as isValidEd25519PublicKey, b3 as isValidHex, b4 as isValidHexLength, aj as isValidNearAccountId, ai as isValidNearImplicitAddress, b2 as isValidPrivacyLevel, bb as isValidPrivateKey, bc as isValidScalar, b7 as isValidSlippage, af as isValidSolanaAddress, b8 as isValidStealthMetaAddress, cT as isValidTaprootAddress, ah as nearAddressToEd25519PublicKey, ed as normalizeAddress, dP as notConnectedError, a6 as publicKeyToEthAddress, dS as registerWallet, bq as removeOracle, cJ as schnorrSign, cL as schnorrSignHex, cK as schnorrVerify, cM as schnorrVerifyHex, aO as secureWipe, aP as secureWipeAll, bu as serializeAttestationMessage, Y as serializeIntent, d1 as serializePayment, bm as signAttestationMessage, ae as solanaAddressToEd25519PublicKey, e1 as solanaPublicKeyToHex, aw as stealthKeyToCosmosAddress, aY as subtractBlindings, aW as subtractCommitments, a as supportsSharedArrayBuffer, m as supportsTouch, o as supportsWASMBulkMemory, n as supportsWASMSimd, em as supportsWebBluetooth, el as supportsWebHID, ek as supportsWebUSB, s as supportsWebWorkers, cR as taprootAddress, ea as toHex, de as toStablecoinUnits, T as trackIntent, c_ as trackPayment, br as updateOracleStatus, be as validateAsset, bd as validateCreateIntentParams, bf as validateIntentInput, bg as validateIntentOutput, bi as validateScalar, bh as validateViewingKey, bk as verifyAttestation, aK as verifyCommitment, aT as verifyOpening, bl as verifyOracleSignature, dR as walletRegistry, aQ as withSecureBuffer, aR as withSecureBufferSync, z as wrapError } from './index-Ink8HnKW.js';
2
- export { Asset, AuditLogEntry, AuditScope, AuditorRegistration, AuditorViewingKey, BatchPaymentRecipient, BatchPaymentRequest, ChainId, Commitment, ComplianceConfig, ComplianceReport, ComplianceRole, CreateBatchProposalParams, CreateComplianceConfigParams, CreateIntentParams, CreatePaymentParams, CreatePaymentProposalParams, CreateTreasuryParams, DefuseAssetId, DisclosedTransaction, DisclosureRequest, FulfillmentCommitment, FulfillmentProof, FulfillmentRequest, FulfillmentResult, FulfillmentStatus, GenerateReportParams, Hash, HexString, WalletAdapter as IWalletAdapter, IntentStatus, NATIVE_TOKENS, OneClickConfig, OneClickDepositMode, OneClickErrorCode, OneClickQuoteRequest, OneClickQuoteResponse, OneClickStatusResponse, OneClickSwapStatus, OneClickSwapType, PaymentPurpose, PaymentReceipt, PaymentStatus, PaymentStatusType, PrivacyLevel, PrivateWalletAdapter, ProposalSignature, ProposalStatus, ProposalStatusType, ProposalType, Quote, RegisterAuditorParams, ReportData, ReportFormat, ReportStatus, ReportStatusType, ReportType, SIPSolver, SIP_VERSION, ShieldedIntent, ShieldedPayment, Signature, SignedTransaction, Solver, SolverCapabilities, SolverEvent, SolverEventListener, SolverQuote, SolverVisibleIntent, StablecoinSymbol, StealthAddress, StealthAddressRecovery, StealthMetaAddress, SwapRoute, SwapRouteStep, TrackedIntent, TrackedPayment, TransactionReceipt, TreasuryBalance, TreasuryConfig, TreasuryMember, TreasuryProposal, TreasuryRole, TreasuryTransaction, UnsignedTransaction, 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-BTyLXLlZ.js';
4
- export { N as NoirProviderConfig, O as OracleAttestation, d as ProofFramework, b as ProofGenerationError, c as ProofProvider } from './noir-BTyLXLlZ.js';
1
+ export { bH as ATTESTATION_VERSION, az as AptosStealthResult, al as AptosStealthService, bT as AttestationRequest, bU as AttestationResult, dB as AuditReport, dx as AuditorKeyDerivation, dy as AuditorType, cf as BackendCapabilities, e7 as BaseWalletAdapter, dX as BidReceipt, d2 as BitcoinNetwork, cP as BridgeProvider, B as BrowserNoirProvider, t as BrowserNoirProviderConfig, bK as CHAIN_NUMERIC_IDS, aG as COSMOS_CHAIN_PREFIXES, dM as CSVExport, e2 as CastVoteParams, b8 as CommitmentPoint, dt as ComplianceManager, du as ComplianceReporter, dw as ConditionalDisclosure, aH as CosmosChainId, aI as CosmosStealthResult, aB as CosmosStealthService, dY as CreateBidParams, $ as CreateIntentOptions, dq as CreatePaymentOptions, C as CryptoError, bI as DEFAULT_THRESHOLD, bJ as DEFAULT_TOTAL_ORACLES, dC as DecryptedTransaction, eF as DerivationPath, dP as DeriveMultipleParams, dO as DeriveViewingKeyParams, dN as DerivedViewingKey, f6 as EIP1193ConnectInfo, f5 as EIP1193Event, f3 as EIP1193Provider, f7 as EIP1193ProviderRpcError, f4 as EIP1193RequestArguments, f8 as EIP712Domain, f9 as EIP712TypeDefinition, fb as EIP712TypedData, fa as EIP712Types, e0 as EncryptedVote, w as EncryptionNotImplementedError, E as ErrorCode, fh as EthereumAdapterConfig, eC as EthereumChainId, fi as EthereumChainIdType, ff as EthereumChainMetadata, fe as EthereumTokenMetadata, fd as EthereumTransactionReceipt, fc as EthereumTransactionRequest, eq as EthereumWalletAdapter, fg as EthereumWalletName, dE as ExportForRegulatorParams, cG as ExportedViewingKey, dI as FATFExport, dJ as FATFTransaction, dK as FINCENExport, dL as FINCENTransaction, co as FindBestRouteParams, dA as GenerateAuditReportParams, fw as HardwareAccount, fn as HardwareConnectionStatus, fp as HardwareDeviceInfo, eD as HardwareErrorCode, fy as HardwareErrorCodeType, fu as HardwareEthereumTx, ft as HardwareSignRequest, fv as HardwareSignature, fx as HardwareTransport, fq as HardwareWalletConfig, eE as HardwareWalletError, fk as HardwareWalletType, L as IntentBuilder, I as IntentError, dH as Jurisdiction, fr as LedgerConfig, fl as LedgerModel, eL as LedgerWalletAdapter, p as MobileBrowser, q as MobileDeviceInfo, M as MobilePlatform, r as MobileWASMCompatibility, es as MockEthereumAdapter, fj as MockEthereumAdapterConfig, fz as MockHardwareConfig, eP as MockLedgerAdapter, br as MockProofProvider, ei as MockSolanaAdapter, f2 as MockSolanaAdapterConfig, c1 as MockSolver, c3 as MockSolverConfig, eQ as MockTrezorAdapter, e8 as MockWalletAdapter, bX as NEARIntentsAdapter, c0 as NEARIntentsAdapterConfig, cp as NEARIntentsBackend, N as NetworkError, bG as ORACLE_DOMAIN, bW as OneClickClient, bO as OracleAttestationMessage, bL as OracleId, bN as OracleInfo, bR as OracleRegistry, bS as OracleRegistryConfig, bP as OracleSignature, bM as OracleStatus, d3 as PaymentBuilder, dD as PdfExportOptions, b7 as PedersenCommitment, b_ as PreparedSwap, cQ as PriceFeed, aP as PrivacyConfig, e3 as PrivateNFT, d_ as PrivateVoting, K as ProductionQuote, u as ProofError, v as ProofNotImplementedError, P as ProofProgressCallback, cn as QuoteComparison, cE as ReceivedNote, dF as RegulatoryExport, dG as RegulatoryFormat, e1 as RevealedVote, cj as Route, cm as RouteWithQuote, F as SIP, J as SIPConfig, S as SIPError, dd as STABLECOIN_ADDRESSES, de as STABLECOIN_DECIMALS, dc as STABLECOIN_INFO, dW as SealedBid, dU as SealedBidAuction, D as SerializedError, cg as SettlementBackend, ch as SettlementBackendFactory, c7 as SettlementBackendName, ci as SettlementBackendRegistry, c9 as SettlementQuote, c8 as SettlementQuoteParams, c5 as SettlementRegistry, c6 as SettlementRegistryError, cc as SettlementSwapParams, cd as SettlementSwapResult, ca as SettlementSwapRoute, cb as SettlementSwapRouteStep, cF as ShieldedBalance, cC as ShieldedSendParams, cD as ShieldedSendResult, bQ as SignedOracleAttestation, ck as SmartRouter, eZ as SolanaAdapterConfig, eY as SolanaCluster, e_ as SolanaConnection, eT as SolanaPublicKey, e$ as SolanaSendOptions, f1 as SolanaSignature, eU as SolanaTransaction, f0 as SolanaUnsignedTransaction, eV as SolanaVersionedTransaction, eg as SolanaWalletAdapter, eX as SolanaWalletName, eW as SolanaWalletProvider, dr as StablecoinInfo, ak as StealthCurve, aA as SuiStealthResult, as as SuiStealthService, bZ as SwapRequest, b$ as SwapResult, c4 as SwapStatus, ce as SwapStatusResponse, d1 as TapScript, d0 as TaprootOutput, dQ as ThresholdShares, dz as ThresholdViewingKey, dT as TimeLockParams, dR as TimeLockResult, aQ as TransactionData, fo as TransportType, ds as Treasury, fs as TrezorConfig, fm as TrezorModel, eN as TrezorWalletAdapter, dS as UnlockResult, V as ValidationError, bV as VerificationResult, dZ as VerifyBidParams, W as WalletAdapter, e9 as WalletError, cr as ZcashNativeBackend, ct as ZcashNativeBackendConfig, cL as ZcashQuote, cK as ZcashQuoteParams, cu as ZcashRPCClient, cv as ZcashRPCError, cx as ZcashShieldedService, cB as ZcashShieldedServiceConfig, cM as ZcashSwapParams, cN as ZcashSwapResult, cz as ZcashSwapService, cH as ZcashSwapServiceConfig, cI as ZcashSwapSourceChain, cJ as ZcashSwapSourceToken, cO as ZcashSwapStatus, b3 as addBlindings, b1 as addCommitments, bx as addOracle, aq as aptosAddressToAuthKey, Q as attachProofs, ep as base58ToHex, b as browserBytesToHex, h as browserHexToBytes, ao as checkAptosStealthAddress, ac as checkEd25519StealthAddress, f as checkMobileWASMCompatibility, a3 as checkStealthAddress, av as checkSuiStealthAddress, a_ as commit, b0 as commitZero, bE as computeAttestationHash, cW as computeTweakedKey, aR as createCommitment, er as createEthereumAdapter, cY as createKeySpendOnlyOutput, eM as createLedgerAdapter, et as createMockEthereumAdapter, eu as createMockEthereumProvider, eR as createMockLedgerAdapter, ej as createMockSolanaAdapter, el as createMockSolanaConnection, ek as createMockSolanaProvider, c2 as createMockSolver, eS as createMockTrezorAdapter, bY as createNEARIntentsAdapter, cq as createNEARIntentsBackend, bw as createOracleRegistry, e4 as createPrivateOwnership, d$ as createPrivateVoting, H as createProductionSIP, G as createSIP, dV as createSealedBidAuction, O as createShieldedIntent, d4 as createShieldedPayment, cl as createSmartRouter, eh as createSolanaAdapter, cX as createTaprootOutput, eO as createTrezorAdapter, ee as createWalletFactory, cw as createZcashClient, cs as createZcashNativeBackend, cy as createZcashShieldedService, cA as createZcashSwapService, a5 as decodeStealthMetaAddress, c_ as decodeTaprootAddress, d5 as decryptMemo, aN as decryptWithViewing, an as deriveAptosStealthPrivateKey, ab as deriveEd25519StealthPrivateKey, bv as deriveOracleId, a2 as deriveStealthPrivateKey, au as deriveSuiStealthPrivateKey, aL as deriveViewingKey, bD as deserializeAttestationMessage, Z as deserializeIntent, da as deserializePayment, ew as detectEthereumWallets, c as detectMobileBrowser, d as detectMobilePlatform, en as detectSolanaWallets, ap as ed25519PublicKeyToAptosAddress, ag as ed25519PublicKeyToNearAddress, ad as ed25519PublicKeyToSolanaAddress, aw as ed25519PublicKeyToSuiAddress, a4 as encodeStealthMetaAddress, aM as encryptForViewing, eb as featureNotSupportedError, dp as formatStablecoinAmount, ey as fromHex, dn as fromStablecoinUnits, am as generateAptosStealthAddress, b6 as generateBlinding, aD as generateCosmosStealthAddress, aC as generateCosmosStealthMetaAddress, aa as generateEd25519StealthAddress, a9 as generateEd25519StealthMetaAddress, aT as generateIntentId, dv as generatePdfReport, aV as generateRandomBytes, a1 as generateStealthAddress, a0 as generateStealthMetaAddress, at as generateSuiStealthAddress, aK as generateViewingKey, bA as getActiveOracles, eK as getAvailableTransports, g as getBrowserInfo, j as getBrowserVersion, bF as getChainNumericId, dl as getChainsForStablecoin, a8 as getCurveForChain, eB as getDefaultRpcEndpoint, eG as getDerivationPath, A as getErrorMessage, ev as getEthereumProvider, b5 as getGenerators, _ as getIntentSummary, e as getMobileDeviceInfo, k as getOSVersion, db as getPaymentSummary, d8 as getPaymentTimeRemaining, aJ as getPrivacyConfig, aO as getPrivacyDescription, em as getSolanaProvider, df as getStablecoin, di as getStablecoinInfo, dg as getStablecoinsForChain, dj as getSupportedStablecoins, X as getTimeRemaining, cV as getXOnlyPublicKey, bB as hasEnoughOracles, y as hasErrorCode, R as hasRequiredProofs, aU as hash, ez as hexToNumber, i as isBrowser, a7 as isEd25519Chain, U as isExpired, be as isNonNegativeAmount, d7 as isPaymentExpired, ef as isPrivateWalletAdapter, x as isSIPError, dh as isStablecoin, dk as isStablecoinOnChain, l as isTablet, bd as isValidAmount, ar as isValidAptosAddress, b9 as isValidChainId, bh as isValidCompressedPublicKey, aF as isValidCosmosAddress, bi as isValidEd25519PublicKey, bb as isValidHex, bc as isValidHexLength, aj as isValidNearAccountId, ai as isValidNearImplicitAddress, ba as isValidPrivacyLevel, bj as isValidPrivateKey, bk as isValidScalar, bf as isValidSlippage, af as isValidSolanaAddress, bg as isValidStealthMetaAddress, ay as isValidSuiAddress, c$ as isValidTaprootAddress, ah as nearAddressToEd25519PublicKey, eA as normalizeAddress, ax as normalizeSuiAddress, ea as notConnectedError, e5 as proveOwnership, a6 as publicKeyToEthAddress, ed as registerWallet, by as removeOracle, cR as schnorrSign, cT as schnorrSignHex, cS as schnorrVerify, cU as schnorrVerifyHex, aW as secureWipe, aX as secureWipeAll, bC as serializeAttestationMessage, Y as serializeIntent, d9 as serializePayment, bu as signAttestationMessage, ae as solanaAddressToEd25519PublicKey, eo as solanaPublicKeyToHex, aE as stealthKeyToCosmosAddress, b4 as subtractBlindings, b2 as subtractCommitments, a as supportsSharedArrayBuffer, m as supportsTouch, o as supportsWASMBulkMemory, n as supportsWASMSimd, eJ as supportsWebBluetooth, eI as supportsWebHID, eH as supportsWebUSB, s as supportsWebWorkers, cZ as taprootAddress, ex as toHex, dm as toStablecoinUnits, T as trackIntent, d6 as trackPayment, bz as updateOracleStatus, bm as validateAsset, bl as validateCreateIntentParams, bn as validateIntentInput, bo as validateIntentOutput, bq as validateScalar, bp as validateViewingKey, bs as verifyAttestation, aS as verifyCommitment, a$ as verifyOpening, bt as verifyOracleSignature, e6 as verifyOwnership, ec as walletRegistry, aY as withSecureBuffer, aZ as withSecureBufferSync, z as wrapError } from './index-DfsVsmxu.js';
2
+ export { Asset, AuditLogEntry, AuditScope, AuditorRegistration, AuditorViewingKey, BatchPaymentRecipient, BatchPaymentRequest, ChainId, Commitment, ComplianceConfig, ComplianceReport, ComplianceRole, CreateBatchProposalParams, CreateComplianceConfigParams, CreateIntentParams, CreatePaymentParams, CreatePaymentProposalParams, CreatePrivateOwnershipParams, CreateTreasuryParams, DefuseAssetId, DisclosedTransaction, DisclosureRequest, FulfillmentCommitment, FulfillmentProof, FulfillmentRequest, FulfillmentResult, FulfillmentStatus, GenerateReportParams, Hash, HexString, WalletAdapter as IWalletAdapter, IntentStatus, NATIVE_TOKENS, OneClickConfig, OneClickDepositMode, OneClickErrorCode, OneClickQuoteRequest, OneClickQuoteResponse, OneClickStatusResponse, OneClickSwapStatus, OneClickSwapType, OwnershipProof, OwnershipVerification, PaymentPurpose, PaymentReceipt, PaymentStatus, PaymentStatusType, PrivacyLevel, PrivateNFTOwnership, PrivateWalletAdapter, ProposalSignature, ProposalStatus, ProposalStatusType, ProposalType, ProveOwnershipParams, Quote, RegisterAuditorParams, ReportData, ReportFormat, ReportStatus, ReportStatusType, ReportType, SIPSolver, SIP_VERSION, ShieldedIntent, ShieldedPayment, Signature, SignedTransaction, Solver, SolverCapabilities, SolverEvent, SolverEventListener, SolverQuote, SolverVisibleIntent, StablecoinSymbol, StealthAddress, StealthAddressRecovery, StealthMetaAddress, SwapRoute, SwapRouteStep, TrackedIntent, TrackedPayment, TransactionReceipt, TreasuryBalance, TreasuryConfig, TreasuryMember, TreasuryProposal, TreasuryRole, TreasuryTransaction, UnsignedTransaction, 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-DKfEzWy9.js';
4
+ export { N as NoirProviderConfig, O as OracleAttestation, d as ProofFramework, b as ProofGenerationError, c as ProofProvider } from './noir-DKfEzWy9.js';
5
5
 
6
6
  /**
7
7
  * Proof Generation Web Worker