@dexterai/x402 1.9.4 → 2.1.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 (40) hide show
  1. package/README.md +27 -0
  2. package/dist/adapters/index.cjs +375 -3
  3. package/dist/adapters/index.d.cts +4 -5
  4. package/dist/adapters/index.d.ts +4 -5
  5. package/dist/adapters/index.js +369 -3
  6. package/dist/client/index.cjs +570 -10
  7. package/dist/client/index.d.cts +200 -36
  8. package/dist/client/index.d.ts +200 -36
  9. package/dist/client/index.js +568 -10
  10. package/dist/react/index.cjs +404 -8
  11. package/dist/react/index.d.cts +5 -5
  12. package/dist/react/index.d.ts +5 -5
  13. package/dist/react/index.js +404 -8
  14. package/dist/server/index.cjs +3 -4
  15. package/dist/server/index.d.cts +2 -2
  16. package/dist/server/index.d.ts +2 -2
  17. package/dist/server/index.js +3 -4
  18. package/dist/{sponsored-access-D1_mINs4.d.ts → sponsored-access-DAVzu4x6.d.cts} +13 -2
  19. package/dist/{sponsored-access-Br6YPA-m.d.cts → sponsored-access-Lxa11w_X.d.ts} +13 -2
  20. package/dist/types-D1u7iu8n.d.cts +304 -0
  21. package/dist/types-YQlJI5E3.d.ts +304 -0
  22. package/dist/{types-CjLMR7qs.d.cts → types-_iT11DL0.d.cts} +2 -2
  23. package/dist/{types-CjLMR7qs.d.ts → types-_iT11DL0.d.ts} +2 -2
  24. package/dist/utils/index.cjs +0 -1
  25. package/dist/utils/index.js +0 -1
  26. package/package.json +1 -1
  27. package/dist/adapters/index.cjs.map +0 -1
  28. package/dist/adapters/index.js.map +0 -1
  29. package/dist/client/index.cjs.map +0 -1
  30. package/dist/client/index.js.map +0 -1
  31. package/dist/react/index.cjs.map +0 -1
  32. package/dist/react/index.js.map +0 -1
  33. package/dist/server/index.cjs.map +0 -1
  34. package/dist/server/index.js.map +0 -1
  35. package/dist/solana-BcOfK6Eq.d.cts +0 -132
  36. package/dist/solana-Cxr5byPa.d.ts +0 -132
  37. package/dist/types-BIHhO2-I.d.ts +0 -123
  38. package/dist/types-CfKflCZO.d.cts +0 -123
  39. package/dist/utils/index.cjs.map +0 -1
  40. package/dist/utils/index.js.map +0 -1
@@ -200,16 +200,40 @@ function createSolanaAdapter(config) {
200
200
  }
201
201
 
202
202
  // src/adapters/evm.ts
203
+ var PERMIT2_ADDRESS = "0x000000000022D473030F116dDEE9F6B43aC78BA3";
204
+ var X402_EXACT_PERMIT2_PROXY = "0x402085c248EeA27D92E8b30b2C58ed07f9E20001";
205
+ var PERMIT2_WITNESS_TYPES = {
206
+ PermitWitnessTransferFrom: [
207
+ { name: "permitted", type: "TokenPermissions" },
208
+ { name: "spender", type: "address" },
209
+ { name: "nonce", type: "uint256" },
210
+ { name: "deadline", type: "uint256" },
211
+ { name: "witness", type: "Witness" }
212
+ ],
213
+ TokenPermissions: [
214
+ { name: "token", type: "address" },
215
+ { name: "amount", type: "uint256" }
216
+ ],
217
+ Witness: [
218
+ { name: "to", type: "address" },
219
+ { name: "validAfter", type: "uint256" }
220
+ ]
221
+ };
222
+ var MAX_UINT256 = BigInt("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
203
223
  var BASE_MAINNET = "eip155:8453";
204
224
  var BASE_SEPOLIA = "eip155:84532";
205
225
  var ARBITRUM_ONE = "eip155:42161";
206
226
  var POLYGON = "eip155:137";
207
227
  var OPTIMISM = "eip155:10";
208
228
  var AVALANCHE = "eip155:43114";
229
+ var BSC_MAINNET = "eip155:56";
209
230
  var SKALE_BASE = "eip155:1187947933";
210
231
  var SKALE_BASE_SEPOLIA = "eip155:324705682";
211
232
  var ETHEREUM_MAINNET = "eip155:1";
233
+ var BSC_USDT = "0x55d398326f99059fF775485246999027B3197955";
234
+ var BSC_USDC = "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d";
212
235
  var CHAIN_IDS = {
236
+ [BSC_MAINNET]: 56,
213
237
  [BASE_MAINNET]: 8453,
214
238
  [BASE_SEPOLIA]: 84532,
215
239
  [ARBITRUM_ONE]: 42161,
@@ -221,6 +245,7 @@ var CHAIN_IDS = {
221
245
  [ETHEREUM_MAINNET]: 1
222
246
  };
223
247
  var DEFAULT_RPC_URLS2 = {
248
+ [BSC_MAINNET]: "https://bsc-dataseed1.binance.org",
224
249
  [BASE_MAINNET]: "https://api.dexter.cash/api/base/rpc",
225
250
  [BASE_SEPOLIA]: "https://sepolia.base.org",
226
251
  [ARBITRUM_ONE]: "https://arb1.arbitrum.io/rpc",
@@ -232,6 +257,7 @@ var DEFAULT_RPC_URLS2 = {
232
257
  [ETHEREUM_MAINNET]: "https://eth.llamarpc.com"
233
258
  };
234
259
  var USDC_ADDRESSES = {
260
+ [BSC_MAINNET]: BSC_USDC,
235
261
  [BASE_MAINNET]: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
236
262
  [BASE_SEPOLIA]: "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
237
263
  [ARBITRUM_ONE]: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
@@ -242,6 +268,10 @@ var USDC_ADDRESSES = {
242
268
  [SKALE_BASE_SEPOLIA]: "0x2e08028E3C4c2356572E096d8EF835cD5C6030bD",
243
269
  [ETHEREUM_MAINNET]: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
244
270
  };
271
+ var BSC_STABLECOIN_ADDRESSES = {
272
+ [BSC_USDT]: { symbol: "USDT", decimals: 18 },
273
+ [BSC_USDC]: { symbol: "USDC", decimals: 18 }
274
+ };
245
275
  function isEvmWallet(wallet) {
246
276
  if (!wallet || typeof wallet !== "object") return false;
247
277
  const w = wallet;
@@ -249,7 +279,7 @@ function isEvmWallet(wallet) {
249
279
  }
250
280
  var EvmAdapter = class {
251
281
  name = "EVM";
252
- networks = [BASE_MAINNET, BASE_SEPOLIA, ETHEREUM_MAINNET, ARBITRUM_ONE];
282
+ networks = [BSC_MAINNET, BASE_MAINNET, BASE_SEPOLIA, ETHEREUM_MAINNET, ARBITRUM_ONE];
253
283
  config;
254
284
  log;
255
285
  constructor(config = {}) {
@@ -260,6 +290,7 @@ var EvmAdapter = class {
260
290
  canHandle(network) {
261
291
  if (this.networks.includes(network)) return true;
262
292
  if (network === "base") return true;
293
+ if (network === "bsc") return true;
263
294
  if (network === "ethereum") return true;
264
295
  if (network === "arbitrum") return true;
265
296
  if (network.startsWith("eip155:")) return true;
@@ -273,6 +304,7 @@ var EvmAdapter = class {
273
304
  return DEFAULT_RPC_URLS2[network];
274
305
  }
275
306
  if (network === "base") return DEFAULT_RPC_URLS2[BASE_MAINNET];
307
+ if (network === "bsc") return DEFAULT_RPC_URLS2[BSC_MAINNET];
276
308
  if (network === "ethereum") return DEFAULT_RPC_URLS2[ETHEREUM_MAINNET];
277
309
  if (network === "arbitrum") return DEFAULT_RPC_URLS2[ARBITRUM_ONE];
278
310
  return DEFAULT_RPC_URLS2[BASE_MAINNET];
@@ -292,6 +324,7 @@ var EvmAdapter = class {
292
324
  return parseInt(chainIdStr, 10);
293
325
  }
294
326
  if (network === "base") return 8453;
327
+ if (network === "bsc") return 56;
295
328
  if (network === "ethereum") return 1;
296
329
  if (network === "arbitrum") return 42161;
297
330
  return 8453;
@@ -341,13 +374,19 @@ var EvmAdapter = class {
341
374
  const paddedAddress = address.slice(2).toLowerCase().padStart(64, "0");
342
375
  return selector + paddedAddress;
343
376
  }
344
- async buildTransaction(accept, wallet, _rpcUrl) {
377
+ async buildTransaction(accept, wallet, rpcUrl) {
345
378
  if (!isEvmWallet(wallet)) {
346
379
  throw new Error("Invalid EVM wallet");
347
380
  }
348
381
  if (!wallet.address) {
349
382
  throw new Error("Wallet not connected");
350
383
  }
384
+ if (accept.scheme === "exact-approval") {
385
+ return this.buildApprovalTransaction(accept, wallet, rpcUrl);
386
+ }
387
+ if (accept.extra?.assetTransferMethod === "permit2") {
388
+ return this.buildPermit2Transaction(accept, wallet, rpcUrl);
389
+ }
351
390
  const { payTo, asset, extra } = accept;
352
391
  const amount = accept.amount ?? accept.maxAmountRequired;
353
392
  if (!amount) {
@@ -418,6 +457,325 @@ var EvmAdapter = class {
418
457
  signature
419
458
  };
420
459
  }
460
+ // ===========================================================================
461
+ // exact-approval: BSC and other chains without EIP-3009
462
+ // ===========================================================================
463
+ /**
464
+ * Build a payment transaction for chains that use the approval-based scheme.
465
+ * The facilitator's /supported response provides the EIP-712 domain and types
466
+ * in accept.extra, so the client doesn't hardcode any contract addresses.
467
+ */
468
+ async buildApprovalTransaction(accept, wallet, rpcUrl) {
469
+ const { payTo, asset, extra } = accept;
470
+ const amount = accept.amount ?? accept.maxAmountRequired;
471
+ if (!amount) {
472
+ throw new Error("Missing amount in payment requirements");
473
+ }
474
+ const facilitatorContract = extra?.facilitatorContract;
475
+ if (!facilitatorContract) {
476
+ throw new Error(
477
+ "exact-approval scheme requires extra.facilitatorContract from the facilitator. The /supported endpoint should provide this."
478
+ );
479
+ }
480
+ if (!wallet.signTypedData) {
481
+ throw new Error("Wallet does not support signTypedData (EIP-712)");
482
+ }
483
+ this.log("Building approval-based transaction:", {
484
+ from: wallet.address,
485
+ to: payTo,
486
+ amount,
487
+ asset,
488
+ network: accept.network,
489
+ facilitatorContract
490
+ });
491
+ const url = rpcUrl || this.getDefaultRpcUrl(accept.network);
492
+ const fee = extra?.fee ?? "0";
493
+ const totalNeeded = BigInt(amount) + BigInt(fee);
494
+ const currentAllowance = await this.readAllowance(url, asset, wallet.address, facilitatorContract);
495
+ if (currentAllowance < totalNeeded) {
496
+ if (!wallet.sendTransaction) {
497
+ throw new Error(
498
+ "BSC payments require a wallet that supports sendTransaction for the one-time token approval. Use createEvmKeypairWallet() or a browser wallet with transaction support."
499
+ );
500
+ }
501
+ const approvalAmount = this.calculateApprovalAmount(amount, fee, extra?.approvalStrategy);
502
+ this.log(`Approving ${approvalAmount} for ${facilitatorContract} (current allowance: ${currentAllowance})`);
503
+ const approveTxHash = await wallet.sendTransaction({
504
+ to: asset,
505
+ data: this.encodeApprove(facilitatorContract, approvalAmount),
506
+ value: 0n
507
+ });
508
+ this.log(`Approval tx sent: ${approveTxHash}`);
509
+ await this.waitForReceipt(url, approveTxHash);
510
+ this.log("Approval confirmed");
511
+ } else {
512
+ this.log("Sufficient allowance, skipping approval");
513
+ }
514
+ const nonceBytes = new Uint8Array(16);
515
+ (globalThis.crypto ?? (await import("crypto")).webcrypto).getRandomValues(nonceBytes);
516
+ const nonce = [...nonceBytes].reduce((acc, b) => acc * 256n + BigInt(b), 0n).toString();
517
+ const paymentIdBytes = new Uint8Array(32);
518
+ (globalThis.crypto ?? (await import("crypto")).webcrypto).getRandomValues(paymentIdBytes);
519
+ const paymentId = "0x" + [...paymentIdBytes].map((b) => b.toString(16).padStart(2, "0")).join("");
520
+ const now = Math.floor(Date.now() / 1e3);
521
+ const deadline = now + (accept.maxTimeoutSeconds || 300);
522
+ const eip712Domain = extra?.eip712Domain;
523
+ const domain = eip712Domain ? {
524
+ name: eip712Domain.name,
525
+ version: eip712Domain.version,
526
+ chainId: BigInt(eip712Domain.chainId),
527
+ verifyingContract: eip712Domain.verifyingContract
528
+ } : {
529
+ name: "DexterBSCFacilitator",
530
+ version: "1",
531
+ chainId: BigInt(this.getChainId(accept.network)),
532
+ verifyingContract: facilitatorContract
533
+ };
534
+ const types = extra?.eip712Types ?? {
535
+ Payment: [
536
+ { name: "from", type: "address" },
537
+ { name: "to", type: "address" },
538
+ { name: "token", type: "address" },
539
+ { name: "amount", type: "uint256" },
540
+ { name: "fee", type: "uint256" },
541
+ { name: "nonce", type: "uint256" },
542
+ { name: "deadline", type: "uint256" },
543
+ { name: "paymentId", type: "bytes32" }
544
+ ]
545
+ };
546
+ const message = {
547
+ from: wallet.address,
548
+ to: payTo,
549
+ token: asset,
550
+ amount: BigInt(amount),
551
+ fee: BigInt(fee),
552
+ nonce: BigInt(nonce),
553
+ deadline: BigInt(deadline),
554
+ paymentId
555
+ };
556
+ const signature = await wallet.signTypedData({
557
+ domain,
558
+ types,
559
+ primaryType: "Payment",
560
+ message
561
+ });
562
+ this.log("EIP-712 Payment signature obtained");
563
+ const payload = {
564
+ from: wallet.address,
565
+ to: payTo,
566
+ token: asset,
567
+ amount,
568
+ fee,
569
+ nonce,
570
+ deadline,
571
+ paymentId,
572
+ signature
573
+ };
574
+ return {
575
+ serialized: JSON.stringify(payload),
576
+ signature
577
+ };
578
+ }
579
+ // ===========================================================================
580
+ // Permit2: Universal ERC-20 payments via Uniswap's Permit2 contract
581
+ // ===========================================================================
582
+ /**
583
+ * Build a Permit2 payment transaction. Used when the facilitator signals
584
+ * assetTransferMethod: "permit2" in extra (e.g., BSC where EIP-3009 is unavailable).
585
+ *
586
+ * Flow:
587
+ * 1. Check if token has approved the Permit2 contract. If not, approve(Permit2, maxUint256).
588
+ * 2. Sign EIP-712 PermitWitnessTransferFrom against the Permit2 contract.
589
+ * 3. Return { permit2Authorization, signature } payload for the facilitator.
590
+ */
591
+ async buildPermit2Transaction(accept, wallet, rpcUrl) {
592
+ const { payTo, asset } = accept;
593
+ const amount = accept.amount ?? accept.maxAmountRequired;
594
+ if (!amount) {
595
+ throw new Error("Missing amount in payment requirements");
596
+ }
597
+ if (!wallet.signTypedData) {
598
+ throw new Error("Wallet does not support signTypedData (EIP-712)");
599
+ }
600
+ this.log("Building Permit2 transaction:", {
601
+ from: wallet.address,
602
+ to: payTo,
603
+ amount,
604
+ asset,
605
+ network: accept.network
606
+ });
607
+ const url = rpcUrl || this.getDefaultRpcUrl(accept.network);
608
+ const currentAllowance = await this.readAllowance(url, asset, wallet.address, PERMIT2_ADDRESS);
609
+ if (currentAllowance < BigInt(amount)) {
610
+ if (!wallet.sendTransaction) {
611
+ throw new Error(
612
+ "Permit2 payments require a wallet that supports sendTransaction for the one-time Permit2 approval. Use createEvmKeypairWallet() or a browser wallet with transaction support."
613
+ );
614
+ }
615
+ this.log(`Approving Permit2 for ${asset} (current allowance: ${currentAllowance})`);
616
+ const approveTxHash = await wallet.sendTransaction({
617
+ to: asset,
618
+ data: this.encodeApprove(PERMIT2_ADDRESS, MAX_UINT256),
619
+ value: 0n
620
+ });
621
+ this.log(`Permit2 approval tx sent: ${approveTxHash}`);
622
+ await this.waitForReceipt(url, approveTxHash);
623
+ this.log("Permit2 approval confirmed");
624
+ } else {
625
+ this.log("Sufficient Permit2 allowance, skipping approval");
626
+ }
627
+ const nonceBytes = new Uint8Array(32);
628
+ (globalThis.crypto ?? (await import("crypto")).webcrypto).getRandomValues(nonceBytes);
629
+ const nonce = [...nonceBytes].reduce((acc, b) => acc * 256n + BigInt(b), 0n);
630
+ const now = Math.floor(Date.now() / 1e3);
631
+ const validAfter = now - 600;
632
+ const deadline = now + (accept.maxTimeoutSeconds || 300);
633
+ const chainId = this.getChainId(accept.network);
634
+ const domain = {
635
+ name: "Permit2",
636
+ chainId: BigInt(chainId),
637
+ verifyingContract: PERMIT2_ADDRESS
638
+ };
639
+ const message = {
640
+ permitted: {
641
+ token: asset,
642
+ amount: BigInt(amount)
643
+ },
644
+ spender: X402_EXACT_PERMIT2_PROXY,
645
+ nonce,
646
+ deadline: BigInt(deadline),
647
+ witness: {
648
+ to: payTo,
649
+ validAfter: BigInt(validAfter)
650
+ }
651
+ };
652
+ const signature = await wallet.signTypedData({
653
+ domain,
654
+ types: PERMIT2_WITNESS_TYPES,
655
+ primaryType: "PermitWitnessTransferFrom",
656
+ message
657
+ });
658
+ this.log("Permit2 PermitWitnessTransferFrom signature obtained");
659
+ const payload = {
660
+ signature,
661
+ permit2Authorization: {
662
+ from: wallet.address,
663
+ permitted: {
664
+ token: asset,
665
+ amount
666
+ },
667
+ spender: X402_EXACT_PERMIT2_PROXY,
668
+ nonce: nonce.toString(),
669
+ deadline: String(deadline),
670
+ witness: {
671
+ to: payTo,
672
+ validAfter: String(validAfter)
673
+ }
674
+ }
675
+ };
676
+ return {
677
+ serialized: JSON.stringify(payload),
678
+ signature
679
+ };
680
+ }
681
+ /**
682
+ * Read ERC-20 allowance via raw eth_call (no viem dependency needed).
683
+ */
684
+ async readAllowance(rpcUrl, token, owner, spender) {
685
+ const selector = "0xdd62ed3e";
686
+ const paddedOwner = owner.slice(2).toLowerCase().padStart(64, "0");
687
+ const paddedSpender = spender.slice(2).toLowerCase().padStart(64, "0");
688
+ const data = selector + paddedOwner + paddedSpender;
689
+ try {
690
+ const response = await fetch(rpcUrl, {
691
+ method: "POST",
692
+ headers: { "Content-Type": "application/json" },
693
+ body: JSON.stringify({
694
+ jsonrpc: "2.0",
695
+ id: 1,
696
+ method: "eth_call",
697
+ params: [{ to: token, data }, "latest"]
698
+ })
699
+ });
700
+ const result = await response.json();
701
+ if (result.error || !result.result || result.result === "0x") return 0n;
702
+ return BigInt(result.result);
703
+ } catch {
704
+ return 0n;
705
+ }
706
+ }
707
+ /**
708
+ * Encode ERC-20 approve(address,uint256) calldata.
709
+ */
710
+ encodeApprove(spender, amount) {
711
+ const selector = "0x095ea7b3";
712
+ const paddedSpender = spender.slice(2).toLowerCase().padStart(64, "0");
713
+ const paddedAmount = amount.toString(16).padStart(64, "0");
714
+ return selector + paddedSpender + paddedAmount;
715
+ }
716
+ /**
717
+ * Wait for a transaction receipt by polling eth_getTransactionReceipt.
718
+ */
719
+ async waitForReceipt(rpcUrl, txHash, timeoutMs = 3e4) {
720
+ const start = Date.now();
721
+ while (Date.now() - start < timeoutMs) {
722
+ try {
723
+ const response = await fetch(rpcUrl, {
724
+ method: "POST",
725
+ headers: { "Content-Type": "application/json" },
726
+ body: JSON.stringify({
727
+ jsonrpc: "2.0",
728
+ id: 1,
729
+ method: "eth_getTransactionReceipt",
730
+ params: [txHash]
731
+ })
732
+ });
733
+ const result = await response.json();
734
+ if (result.result) {
735
+ if (result.result.status === "0x0") {
736
+ throw new Error(`Approval transaction reverted: ${txHash}`);
737
+ }
738
+ return;
739
+ }
740
+ } catch (err) {
741
+ if (err instanceof Error && err.message.includes("reverted")) throw err;
742
+ }
743
+ await new Promise((r) => setTimeout(r, 2e3));
744
+ }
745
+ throw new Error(`Approval transaction receipt timeout after ${timeoutMs}ms: ${txHash}`);
746
+ }
747
+ /**
748
+ * Calculate how much to approve based on the facilitator's approval strategy.
749
+ * Buffered approvals reduce the number of on-chain approval txs for micropayments.
750
+ */
751
+ calculateApprovalAmount(paymentAmount, fee, strategy) {
752
+ const total = BigInt(paymentAmount) + BigInt(fee);
753
+ if (!strategy || strategy.mode === "exact") {
754
+ return total;
755
+ }
756
+ const multiple = BigInt(strategy.defaultMultiple ?? 10);
757
+ const buffered = total * multiple;
758
+ if (strategy.maxCapUsd) {
759
+ const decimals = this.inferDecimals(paymentAmount);
760
+ const maxCap = BigInt(Math.floor(strategy.maxCapUsd * Math.pow(10, decimals)));
761
+ if (buffered > maxCap) return maxCap;
762
+ }
763
+ if (strategy.exactAboveUsd) {
764
+ const decimals = this.inferDecimals(paymentAmount);
765
+ const threshold = BigInt(Math.floor(strategy.exactAboveUsd * Math.pow(10, decimals)));
766
+ if (BigInt(paymentAmount) > threshold) return total;
767
+ }
768
+ return buffered;
769
+ }
770
+ /**
771
+ * Infer token decimals from payment amount magnitude.
772
+ * BSC stablecoins use 18 decimals, all others use 6.
773
+ * A $1 payment is 1000000 (6 dec) or 1000000000000000000 (18 dec).
774
+ * If the amount has > 12 digits, it's almost certainly 18 decimals.
775
+ */
776
+ inferDecimals(amount) {
777
+ return amount.length > 12 ? 18 : 6;
778
+ }
421
779
  };
422
780
  function createEvmAdapter(config) {
423
781
  return new EvmAdapter(config);
@@ -431,6 +789,9 @@ function isKnownUSDC(asset) {
431
789
  for (const addr of Object.values(USDC_ADDRESSES)) {
432
790
  if (addr.toLowerCase() === lc) return true;
433
791
  }
792
+ for (const addr of Object.keys(BSC_STABLECOIN_ADDRESSES)) {
793
+ if (addr.toLowerCase() === lc) return true;
794
+ }
434
795
  return false;
435
796
  }
436
797
  function createDefaultAdapters(verbose = false) {
@@ -447,9 +808,14 @@ export {
447
808
  AVALANCHE,
448
809
  BASE_MAINNET,
449
810
  BASE_SEPOLIA,
811
+ BSC_MAINNET,
812
+ BSC_STABLECOIN_ADDRESSES,
813
+ BSC_USDC,
814
+ BSC_USDT,
450
815
  ETHEREUM_MAINNET,
451
816
  EvmAdapter,
452
817
  OPTIMISM,
818
+ PERMIT2_ADDRESS,
453
819
  POLYGON,
454
820
  SKALE_BASE,
455
821
  SKALE_BASE_SEPOLIA,
@@ -458,6 +824,7 @@ export {
458
824
  SOLANA_TESTNET,
459
825
  SolanaAdapter,
460
826
  USDC_ADDRESSES,
827
+ X402_EXACT_PERMIT2_PROXY,
461
828
  createDefaultAdapters,
462
829
  createEvmAdapter,
463
830
  createSolanaAdapter,
@@ -466,4 +833,3 @@ export {
466
833
  isKnownUSDC,
467
834
  isSolanaWallet
468
835
  };
469
- //# sourceMappingURL=index.js.map