@zkp2p/contracts-v2 0.0.1-rc4 → 0.0.1

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 (140) hide show
  1. package/README.md +92 -32
  2. package/_cjs/abis/index.js +2 -0
  3. package/{dist → _cjs}/addresses/base.json +1 -1
  4. package/{dist → _cjs}/addresses/baseSepolia.json +1 -1
  5. package/_cjs/addresses/index.js +2 -0
  6. package/_cjs/constants/index.js +3 -0
  7. package/_cjs/index.js +2 -0
  8. package/{dist → _cjs}/paymentMethods/baseSepolia.json +1 -1
  9. package/_cjs/paymentMethods/index.js +23 -0
  10. package/_cjs/paymentMethods/index.json +6 -0
  11. package/_cjs/types/index.js +4 -0
  12. package/_cjs/utils/index.js +7 -0
  13. package/_esm/addresses/base.json +20 -0
  14. package/_esm/addresses/baseSepolia.json +20 -0
  15. package/_esm/constants/base.json +13 -0
  16. package/_esm/constants/baseSepolia.json +12 -0
  17. package/_esm/constants/baseStaging.json +13 -0
  18. package/_esm/index.js +2 -0
  19. package/_esm/paymentMethods/baseSepolia.json +234 -0
  20. package/_esm/paymentMethods/index.json +6 -0
  21. package/_esm/types/common.js +46 -0
  22. package/_esm/utils/protocolUtils.js +57 -0
  23. package/_types/index.d.ts +2 -0
  24. package/addresses/base.json +20 -0
  25. package/addresses/baseSepolia.json +20 -0
  26. package/constants/base.json +13 -0
  27. package/constants/baseSepolia.json +12 -0
  28. package/constants/baseStaging.json +13 -0
  29. package/package.json +38 -27
  30. package/paymentMethods/baseSepolia.json +234 -0
  31. package/paymentMethods/index.json +6 -0
  32. package/paymentMethods/index.ts +23 -0
  33. package/paymentMethods/types.d.ts +15 -0
  34. package/types/common.ts +46 -0
  35. package/types/index.ts +4 -0
  36. package/utils/index.ts +12 -0
  37. package/utils/protocolUtils.ts +57 -0
  38. package/dist/abis/base/index.d.ts +0 -11
  39. package/dist/abis/baseSepolia/index.d.ts +0 -11
  40. package/dist/index.esm.js +0 -4
  41. package/dist/index.esm.js.map +0 -1
  42. package/dist/index.js +0 -6
  43. package/dist/index.js.map +0 -1
  44. package/dist/paymentMethods/index.d.ts +0 -7
  45. package/dist/paymentMethods/index.json +0 -6
  46. package/dist/types/common.d.ts +0 -22
  47. package/dist/types/contracts/Escrow.d.ts +0 -1277
  48. package/dist/types/contracts/Orchestrator.d.ts +0 -661
  49. package/dist/types/contracts/ProtocolViewer.d.ts +0 -300
  50. package/dist/types/contracts/index.d.ts +0 -9
  51. package/dist/types/contracts/interfaces/IAttestationVerifier.d.ts +0 -48
  52. package/dist/types/contracts/interfaces/IEscrow.d.ts +0 -697
  53. package/dist/types/contracts/interfaces/IEscrowRegistry.d.ts +0 -58
  54. package/dist/types/contracts/interfaces/INullifierRegistry.d.ts +0 -58
  55. package/dist/types/contracts/interfaces/IOrchestrator.d.ts +0 -382
  56. package/dist/types/contracts/interfaces/IPaymentVerifier.d.ts +0 -98
  57. package/dist/types/contracts/interfaces/IPaymentVerifierRegistry.d.ts +0 -74
  58. package/dist/types/contracts/interfaces/IPostIntentHook.d.ts +0 -100
  59. package/dist/types/contracts/interfaces/IPostIntentHookRegistry.d.ts +0 -50
  60. package/dist/types/contracts/interfaces/IProtocolViewer.d.ts +0 -232
  61. package/dist/types/contracts/interfaces/IRelayerRegistry.d.ts +0 -50
  62. package/dist/types/contracts/interfaces/index.d.ts +0 -11
  63. package/dist/types/contracts/registries/EscrowRegistry.d.ts +0 -206
  64. package/dist/types/contracts/registries/NullifierRegistry.d.ts +0 -200
  65. package/dist/types/contracts/registries/PaymentVerifierRegistry.d.ts +0 -270
  66. package/dist/types/contracts/registries/PostIntentHookRegistry.d.ts +0 -175
  67. package/dist/types/contracts/registries/RelayerRegistry.d.ts +0 -165
  68. package/dist/types/contracts/registries/index.d.ts +0 -5
  69. package/dist/types/contracts/unifiedVerifier/BaseUnifiedPaymentVerifier.d.ts +0 -357
  70. package/dist/types/contracts/unifiedVerifier/SimpleAttestationVerifier.d.ts +0 -196
  71. package/dist/types/contracts/unifiedVerifier/UnifiedPaymentVerifier.d.ts +0 -429
  72. package/dist/types/contracts/unifiedVerifier/index.d.ts +0 -3
  73. package/dist/types/index.d.ts +0 -1
  74. package/dist/utils/index.d.ts +0 -2
  75. package/dist/utils/protocolUtils.d.ts +0 -30
  76. /package/{dist → _cjs}/constants/base.json +0 -0
  77. /package/{dist → _cjs}/constants/baseSepolia.json +0 -0
  78. /package/{dist → _cjs}/constants/baseStaging.json +0 -0
  79. /package/{dist/types/common.ts → _cjs/types/common.js} +0 -0
  80. /package/{dist/utils/protocolUtils.ts → _cjs/utils/protocolUtils.js} +0 -0
  81. /package/{dist/abis/index.d.ts → _esm/abis/index.js} +0 -0
  82. /package/{dist/addresses/index.d.ts → _esm/addresses/index.js} +0 -0
  83. /package/{dist/constants/index.d.ts → _esm/constants/index.js} +0 -0
  84. /package/{dist/paymentMethods/index.ts → _esm/paymentMethods/index.js} +0 -0
  85. /package/{dist/types/index.ts → _esm/types/index.js} +0 -0
  86. /package/{dist/utils/index.ts → _esm/utils/index.js} +0 -0
  87. /package/{dist → _types}/paymentMethods/types.d.ts +0 -0
  88. /package/{dist/abis → abis}/base/CashappReclaimVerifier.json +0 -0
  89. /package/{dist/abis → abis}/base/Escrow.json +0 -0
  90. /package/{dist/abis → abis}/base/MercadoPagoReclaimVerifier.json +0 -0
  91. /package/{dist/abis → abis}/base/NullifierRegistry.json +0 -0
  92. /package/{dist/abis → abis}/base/RevolutReclaimVerifier.json +0 -0
  93. /package/{dist/abis → abis}/base/VenmoReclaimVerifier.json +0 -0
  94. /package/{dist/abis → abis}/base/WiseReclaimVerifier.json +0 -0
  95. /package/{dist/abis → abis}/base/ZelleBaseVerifier.json +0 -0
  96. /package/{dist/abis → abis}/base/ZelleBoAReclaimVerifier.json +0 -0
  97. /package/{dist/abis → abis}/base/ZelleChaseReclaimVerifier.json +0 -0
  98. /package/{dist/abis → abis}/base/ZelleCitiReclaimVerifier.json +0 -0
  99. /package/{dist/abis → abis}/base/index.ts +0 -0
  100. /package/{dist/abis → abis}/baseSepolia/Escrow.json +0 -0
  101. /package/{dist/abis → abis}/baseSepolia/EscrowRegistry.json +0 -0
  102. /package/{dist/abis → abis}/baseSepolia/NullifierRegistry.json +0 -0
  103. /package/{dist/abis → abis}/baseSepolia/Orchestrator.json +0 -0
  104. /package/{dist/abis → abis}/baseSepolia/PaymentVerifierRegistry.json +0 -0
  105. /package/{dist/abis → abis}/baseSepolia/PostIntentHookRegistry.json +0 -0
  106. /package/{dist/abis → abis}/baseSepolia/ProtocolViewer.json +0 -0
  107. /package/{dist/abis → abis}/baseSepolia/RelayerRegistry.json +0 -0
  108. /package/{dist/abis → abis}/baseSepolia/SimpleAttestationVerifier.json +0 -0
  109. /package/{dist/abis → abis}/baseSepolia/USDCMock.json +0 -0
  110. /package/{dist/abis → abis}/baseSepolia/UnifiedPaymentVerifier.json +0 -0
  111. /package/{dist/abis → abis}/baseSepolia/index.ts +0 -0
  112. /package/{dist/abis → abis}/index.ts +0 -0
  113. /package/{dist/addresses → addresses}/index.ts +0 -0
  114. /package/{dist/constants → constants}/index.ts +0 -0
  115. /package/{dist/types → types}/contracts/Escrow.ts +0 -0
  116. /package/{dist/types → types}/contracts/Orchestrator.ts +0 -0
  117. /package/{dist/types → types}/contracts/ProtocolViewer.ts +0 -0
  118. /package/{dist/types → types}/contracts/index.ts +0 -0
  119. /package/{dist/types → types}/contracts/interfaces/IAttestationVerifier.ts +0 -0
  120. /package/{dist/types → types}/contracts/interfaces/IEscrow.ts +0 -0
  121. /package/{dist/types → types}/contracts/interfaces/IEscrowRegistry.ts +0 -0
  122. /package/{dist/types → types}/contracts/interfaces/INullifierRegistry.ts +0 -0
  123. /package/{dist/types → types}/contracts/interfaces/IOrchestrator.ts +0 -0
  124. /package/{dist/types → types}/contracts/interfaces/IPaymentVerifier.ts +0 -0
  125. /package/{dist/types → types}/contracts/interfaces/IPaymentVerifierRegistry.ts +0 -0
  126. /package/{dist/types → types}/contracts/interfaces/IPostIntentHook.ts +0 -0
  127. /package/{dist/types → types}/contracts/interfaces/IPostIntentHookRegistry.ts +0 -0
  128. /package/{dist/types → types}/contracts/interfaces/IProtocolViewer.ts +0 -0
  129. /package/{dist/types → types}/contracts/interfaces/IRelayerRegistry.ts +0 -0
  130. /package/{dist/types → types}/contracts/interfaces/index.ts +0 -0
  131. /package/{dist/types → types}/contracts/registries/EscrowRegistry.ts +0 -0
  132. /package/{dist/types → types}/contracts/registries/NullifierRegistry.ts +0 -0
  133. /package/{dist/types → types}/contracts/registries/PaymentVerifierRegistry.ts +0 -0
  134. /package/{dist/types → types}/contracts/registries/PostIntentHookRegistry.ts +0 -0
  135. /package/{dist/types → types}/contracts/registries/RelayerRegistry.ts +0 -0
  136. /package/{dist/types → types}/contracts/registries/index.ts +0 -0
  137. /package/{dist/types → types}/contracts/unifiedVerifier/BaseUnifiedPaymentVerifier.ts +0 -0
  138. /package/{dist/types → types}/contracts/unifiedVerifier/SimpleAttestationVerifier.ts +0 -0
  139. /package/{dist/types → types}/contracts/unifiedVerifier/UnifiedPaymentVerifier.ts +0 -0
  140. /package/{dist/types → types}/contracts/unifiedVerifier/index.ts +0 -0
package/README.md CHANGED
@@ -12,36 +12,50 @@ yarn add @zkp2p/contracts-v2
12
12
  pnpm add @zkp2p/contracts-v2
13
13
  ```
14
14
 
15
- ## Quick Start (subpath imports)
15
+ ## Quick Start
16
16
 
17
17
  ```typescript
18
- import baseAddresses from '@zkp2p/contracts-v2/addresses/base.json';
19
- import * as baseAbis from '@zkp2p/contracts-v2/abis/base';
20
- import { base as baseConstants } from '@zkp2p/contracts-v2/constants';
21
- import { base as basePaymentMethods } from '@zkp2p/contracts-v2/paymentMethods';
18
+ // Import addresses for specific networks
19
+ import { base, baseSepolia } from "@zkp2p/contracts-v2/addresses"
20
+
21
+ // Import specific contract ABIs
22
+ import { Escrow, Orchestrator } from "@zkp2p/contracts-v2/abis/base"
23
+
24
+ // Import constants
25
+ import { USDC, INTENT_EXPIRATION_PERIOD } from "@zkp2p/contracts-v2/constants/base"
26
+
27
+ // Import payment method configurations
28
+ import { baseSepolia as paymentMethods } from "@zkp2p/contracts-v2/paymentMethods"
29
+
30
+ // Import TypeScript types
31
+ import type { Escrow, Orchestrator } from "@zkp2p/contracts-v2/types"
32
+
33
+ // Import utility functions
34
+ import { getKeccak256Hash, calculateIntentHash } from "@zkp2p/contracts-v2/utils/protocolUtils"
35
+
36
+ // Example: Create contract instance with ethers
22
37
  import { ethers } from 'ethers';
23
38
 
24
- // Create contract instance
25
39
  const provider = new ethers.providers.JsonRpcProvider('https://mainnet.base.org');
26
40
  const orchestrator = new ethers.Contract(
27
- baseAddresses.Orchestrator,
28
- baseAbis.Orchestrator,
41
+ base.Orchestrator,
42
+ Orchestrator,
29
43
  provider
30
44
  );
31
45
 
32
- console.log('Intent expiration:', baseConstants.INTENT_EXPIRATION_PERIOD);
33
- console.log('Venmo config:', basePaymentMethods.venmo);
46
+ console.log('Intent expiration:', INTENT_EXPIRATION_PERIOD);
47
+ console.log('Venmo config:', paymentMethods.venmo);
34
48
  ```
35
49
 
36
50
  ## Features
37
51
 
38
52
  ### 📍 Network-Specific Contract Addresses
39
53
 
40
- Pre-configured addresses for all deployed networks, exported per-network:
54
+ Pre-configured addresses for all deployed networks:
41
55
 
42
56
  ```typescript
43
- import base from '@zkp2p/contracts-v2/addresses/base.json';
44
- import baseSepolia from '@zkp2p/contracts-v2/addresses/baseSepolia.json';
57
+ import { base, baseSepolia } from "@zkp2p/contracts-v2/addresses"
58
+
45
59
  console.log(base.Orchestrator);
46
60
  console.log(base.Escrow);
47
61
  console.log(baseSepolia.UnifiedPaymentVerifier);
@@ -56,9 +70,15 @@ Supported networks:
56
70
  Minimal ABIs extracted from on-chain deployments:
57
71
 
58
72
  ```typescript
59
- import * as baseAbis from '@zkp2p/contracts-v2/abis/base';
60
- const orchestratorABI = baseAbis.Orchestrator;
61
- const escrowABI = baseAbis.Escrow;
73
+ import { Orchestrator, Escrow } from "@zkp2p/contracts-v2/abis/base"
74
+ import * as baseSepoliaAbis from "@zkp2p/contracts-v2/abis/baseSepolia"
75
+
76
+ // Use the ABIs directly
77
+ const orchestratorABI = Orchestrator;
78
+ const escrowABI = Escrow;
79
+
80
+ // Or access all ABIs for a network
81
+ const unifiedVerifierABI = baseSepoliaAbis.UnifiedPaymentVerifier;
62
82
  ```
63
83
 
64
84
  ### 🔧 Network-Specific Protocol Constants
@@ -66,8 +86,15 @@ const escrowABI = baseAbis.Escrow;
66
86
  All protocol parameters and configurations per network:
67
87
 
68
88
  ```typescript
69
- import { base as baseConstants } from '@zkp2p/contracts-v2/constants';
70
- const { INTENT_EXPIRATION_PERIOD, MAX_INTENTS_PER_DEPOSIT, DUST_THRESHOLD } = baseConstants;
89
+ import { INTENT_EXPIRATION_PERIOD, MAX_INTENTS_PER_DEPOSIT, DUST_THRESHOLD } from "@zkp2p/contracts-v2/constants/base"
90
+ import * as baseSepoliaConstants from "@zkp2p/contracts-v2/constants/baseSepolia"
91
+
92
+ // Use specific constants
93
+ console.log('Intent expiration:', INTENT_EXPIRATION_PERIOD);
94
+ console.log('Max intents:', MAX_INTENTS_PER_DEPOSIT);
95
+
96
+ // Or access all constants for a network
97
+ console.log('USDC address:', baseSepoliaConstants.USDC);
71
98
  ```
72
99
 
73
100
  ### 💳 Payment Methods with Provider Hashes
@@ -75,12 +102,18 @@ const { INTENT_EXPIRATION_PERIOD, MAX_INTENTS_PER_DEPOSIT, DUST_THRESHOLD } = ba
75
102
  Unified payment method configurations including provider hashes from deployment:
76
103
 
77
104
  ```typescript
78
- import { base as basePaymentMethods } from '@zkp2p/contracts-v2/paymentMethods';
79
- const venmoConfig = basePaymentMethods.venmo;
105
+ import { base, baseSepolia } from "@zkp2p/contracts-v2/paymentMethods"
106
+
107
+ // Access payment method configurations
108
+ const venmoConfig = base.venmo;
80
109
  console.log('Payment Method Hash:', venmoConfig.paymentMethodHash);
81
110
  console.log('Provider Hashes:', venmoConfig.providerHashes);
82
111
  console.log('Currencies:', venmoConfig.currencies);
83
112
  console.log('Timestamp Buffer:', venmoConfig.timestampBuffer);
113
+
114
+ // Or use testnet configurations
115
+ const testnetPaymentMethods = baseSepolia;
116
+ console.log('Available methods:', Object.keys(testnetPaymentMethods));
84
117
  ```
85
118
 
86
119
  ### 🛠️ Utility Functions
@@ -88,8 +121,16 @@ console.log('Timestamp Buffer:', venmoConfig.timestampBuffer);
88
121
  Protocol utility functions:
89
122
 
90
123
  ```typescript
91
- import * as utils from '@zkp2p/contracts-v2/utils';
92
- const usdInfo = utils.getCurrencyInfo(utils.Currency.USD);
124
+ // Import protocol utilities
125
+ import { getKeccak256Hash, calculateIntentHash, getCurrencyInfo } from "@zkp2p/contracts-v2/utils/protocolUtils"
126
+ import { Currency } from "@zkp2p/contracts-v2/utils/types"
127
+
128
+ // Use utility functions
129
+ const paymentMethodHash = getKeccak256Hash("venmo");
130
+ const intentHash = calculateIntentHash(depositor, depositId, signalIntentParams);
131
+
132
+ // Get currency information
133
+ const usdInfo = getCurrencyInfo(Currency.USD);
93
134
  console.log('Currency code:', usdInfo.code);
94
135
  console.log('Decimals:', usdInfo.decimals);
95
136
  ```
@@ -97,26 +138,45 @@ console.log('Decimals:', usdInfo.decimals);
97
138
 
98
139
  ## API Reference
99
140
 
100
- ### Imports
141
+ ### Package Structure
142
+
143
+ The package follows modern ESM/CJS patterns with clean subpath exports:
144
+
145
+ ```
146
+ @zkp2p/contracts-v2/
147
+ ├── addresses/ # Network-specific contract addresses
148
+ ├── abis/ # Network-specific contract ABIs
149
+ ├── constants/ # Protocol constants per network
150
+ ├── paymentMethods/ # Payment method configurations
151
+ ├── types/ # TypeScript type definitions
152
+ └── utils/ # Utility functions
153
+ ```
154
+
155
+ ### Import Patterns
156
+
157
+ All modules are directly accessible via subpath exports:
158
+
159
+ - `@zkp2p/contracts-v2/addresses` - Contract addresses
160
+ - `@zkp2p/contracts-v2/abis/<network>` - Contract ABIs per network
161
+ - `@zkp2p/contracts-v2/constants/<network>` - Constants per network
162
+ - `@zkp2p/contracts-v2/paymentMethods` - Payment method configs
163
+ - `@zkp2p/contracts-v2/utils/protocolUtils` - Protocol utilities
164
+ - `@zkp2p/contracts-v2/types` - TypeScript types
165
+
166
+ ## Version
101
167
 
102
- - Prefer subpaths for clarity and smaller bundles:
103
- - `@zkp2p/contracts-v2/addresses` and `@zkp2p/contracts-v2/addresses/*.json`
104
- - `@zkp2p/contracts-v2/abis/<network>`
105
- - `@zkp2p/contracts-v2/constants`
106
- - `@zkp2p/contracts-v2/paymentMethods`
107
- - `@zkp2p/contracts-v2/utils`
108
- - `@zkp2p/contracts-v2/types`
168
+ Current version: `0.0.1-rc5`
109
169
 
110
170
  ## Development
111
171
 
112
172
  ### Build & Publish
113
173
 
114
174
  From `packages/contracts`:
115
- - `yarn build` – Clean, extract, and bundle to `dist/`
175
+ - `yarn build` – Clean, extract, and bundle package
116
176
  - `npm pack` – Preview tarball contents
117
177
  - `npm publish --access public` – Publish (runs prepublishOnly)
118
178
 
119
- Note: The package publishes `dist/` only. Tests and config files are excluded.
179
+ Note: The package uses modern module patterns with _esm/, _cjs/, and _types/ folders for optimal compatibility.
120
180
 
121
181
  ## License
122
182
 
@@ -0,0 +1,2 @@
1
+ exports.base = require('./base');
2
+ exports.baseSepolia = require('./baseSepolia');
@@ -15,6 +15,6 @@
15
15
  "ZelleCitiReclaimVerifier": "0x3128BadC46Dbe2E37BDd2d64F33fB3B3a639570E"
16
16
  },
17
17
  "meta": {
18
- "generatedAt": "2025-09-01T17:30:55.247Z"
18
+ "generatedAt": "2025-09-02T16:33:44.137Z"
19
19
  }
20
20
  }
@@ -15,6 +15,6 @@
15
15
  "UnifiedPaymentVerifier": "0x09618E223f22652e3d83B98614A745D12A7ae991"
16
16
  },
17
17
  "meta": {
18
- "generatedAt": "2025-09-01T17:30:55.330Z"
18
+ "generatedAt": "2025-09-02T16:33:44.221Z"
19
19
  }
20
20
  }
@@ -0,0 +1,2 @@
1
+ exports.base = require('./base.json');
2
+ exports.baseSepolia = require('./baseSepolia.json');
@@ -0,0 +1,3 @@
1
+ exports.base = require('./base.json');
2
+ exports.baseSepolia = require('./baseSepolia.json');
3
+ exports.baseStaging = require('./baseStaging.json');
package/_cjs/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // Auto-generated main entry point
2
+ exports.version = require('../package.json').version;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "network": "base_sepolia",
3
- "generatedAt": "2025-09-01T17:30:56.218Z",
3
+ "generatedAt": "2025-09-02T16:33:44.371Z",
4
4
  "methods": {
5
5
  "venmo": {
6
6
  "paymentMethodHash": "0x90262a3db0edd0be2369c6b28f9e8511ec0bac7136cefbada0880602f87e7268",
@@ -0,0 +1,23 @@
1
+ // Auto-generated by extract-all.ts
2
+ // Unified payment method configurations per network
3
+
4
+ ;
5
+ ;
6
+
7
+ // Network-specific payment method exports
8
+ exports.baseSepolia = require('./baseSepolia.json');
9
+
10
+ // Helper function to get payment method config for a specific network and method
11
+ export function getPaymentMethodConfig(network: string, paymentMethod: string): PaymentMethodConfig | undefined {
12
+ try {
13
+ const networkModule = require(`./${network}.json`);
14
+ return networkModule.methods?.[paymentMethod];
15
+ } catch {
16
+ return undefined;
17
+ }
18
+ }
19
+
20
+ // Export all networks as a single object for convenience
21
+ export const paymentMethods = {
22
+ baseSepolia: require('./baseSepolia.json')
23
+ };
@@ -0,0 +1,6 @@
1
+ {
2
+ "networks": [
3
+ "baseSepolia"
4
+ ],
5
+ "generatedAt": "2025-09-02T16:33:44.371Z"
6
+ }
@@ -0,0 +1,4 @@
1
+ /* Autogenerated by extractor. Curated types only (no OpenZeppelin, no mocks, no factories). */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ exports.contracts = require('./contracts');
@@ -0,0 +1,7 @@
1
+ // Auto-generated by extract-all.ts
2
+ // Protocol utilities export
3
+
4
+ export * from './protocolUtils';
5
+
6
+ // Re-export commonly used items for convenience
7
+ Object.assign(exports, require('./protocolUtils'));
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "base",
3
+ "chainId": 8453,
4
+ "contracts": {
5
+ "CashappReclaimVerifier": "0x76D33A33068D86016B806dF02376dDBb23Dd3703",
6
+ "Escrow": "0xCA38607D85E8F6294Dc10728669605E6664C2D70",
7
+ "MercadoPagoReclaimVerifier": "0xf2AC5be14F32Cbe6A613CFF8931d95460D6c33A3",
8
+ "NullifierRegistry": "0x27B4A4542af8EefB7eBf574a562C5D4DaA17137F",
9
+ "RevolutReclaimVerifier": "0xAA5A1B62B01781E789C900d616300717CD9A41aB",
10
+ "VenmoReclaimVerifier": "0x9a733B55a875D0DB4915c6B36350b24F8AB99dF5",
11
+ "WiseReclaimVerifier": "0xFF0149799631D7A5bdE2e7eA9b306c42b3d9a9ca",
12
+ "ZelleBaseVerifier": "0x431a078A5029146aAB239c768A615CD484519aF7",
13
+ "ZelleBoAReclaimVerifier": "0x809c7A20A2dbBB3210fC73Dd7C01Cd7Fa70C195F",
14
+ "ZelleChaseReclaimVerifier": "0xBcD7C6BBcA5869fBefe3E322263EE1090221D7A9",
15
+ "ZelleCitiReclaimVerifier": "0x3128BadC46Dbe2E37BDd2d64F33fB3B3a639570E"
16
+ },
17
+ "meta": {
18
+ "generatedAt": "2025-09-02T16:33:44.137Z"
19
+ }
20
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "base_sepolia",
3
+ "chainId": 84532,
4
+ "contracts": {
5
+ "Escrow": "0x2CE748dd6fCB8bcCD0837E1bb42dC6DE91213203",
6
+ "EscrowRegistry": "0x7CB207d5A97Fc6663786BAaC39E0DB3763b4Bc21",
7
+ "NullifierRegistry": "0xcb217d660D44EFFD050e6BC0614afB55eB287134",
8
+ "Orchestrator": "0x52603a0980AfCC84722db18369768E2e1c906AB8",
9
+ "PaymentVerifierRegistry": "0xFC9FF90C16e73143e7AF9DB7c4BA96F2367ebE26",
10
+ "PostIntentHookRegistry": "0xf6d3BC4D383EFD9014ea29bA4E2039979a300bcd",
11
+ "ProtocolViewer": "0xf2AC5be14F32Cbe6A613CFF8931d95460D6c33A3",
12
+ "RelayerRegistry": "0x00D003C73EAB8fEaec04bab976235915fE7641e3",
13
+ "SimpleAttestationVerifier": "0xc7e5c933f0eE8A616d15129f3E582bC1910cEf8A",
14
+ "USDCMock": "0x816433610FbfbF517f51Cf5f514E8110aB5cFeAE",
15
+ "UnifiedPaymentVerifier": "0x09618E223f22652e3d83B98614A745D12A7ae991"
16
+ },
17
+ "meta": {
18
+ "generatedAt": "2025-09-02T16:33:44.221Z"
19
+ }
20
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "INTENT_EXPIRATION_PERIOD": "86400",
3
+ "PROTOCOL_TAKER_FEE": "0",
4
+ "PROTOCOL_MAKER_FEE": "0",
5
+ "PROTOCOL_TAKER_FEE_RECIPIENT": "0x0bC26FF515411396DD588Abd6Ef6846E04470227",
6
+ "PROTOCOL_MAKER_FEE_RECIPIENT": "0x0bC26FF515411396DD588Abd6Ef6846E04470227",
7
+ "DUST_THRESHOLD": "100000",
8
+ "MAX_INTENTS_PER_DEPOSIT": 200,
9
+ "MULTI_SIG": "0x0bC26FF515411396DD588Abd6Ef6846E04470227",
10
+ "USDC": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
11
+ "WITNESS_ADDRESS": "",
12
+ "ZKTLS_ATTESTOR_ADDRESS": ""
13
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "INTENT_EXPIRATION_PERIOD": "3600",
3
+ "PROTOCOL_TAKER_FEE": "0",
4
+ "PROTOCOL_MAKER_FEE": "0",
5
+ "PROTOCOL_TAKER_FEE_RECIPIENT": "",
6
+ "PROTOCOL_MAKER_FEE_RECIPIENT": "",
7
+ "DUST_THRESHOLD": "100000",
8
+ "MAX_INTENTS_PER_DEPOSIT": 200,
9
+ "MULTI_SIG": "",
10
+ "WITNESS_ADDRESS": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
11
+ "ZKTLS_ATTESTOR_ADDRESS": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
12
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "INTENT_EXPIRATION_PERIOD": "3600",
3
+ "PROTOCOL_TAKER_FEE": "0",
4
+ "PROTOCOL_MAKER_FEE": "0",
5
+ "PROTOCOL_TAKER_FEE_RECIPIENT": "",
6
+ "PROTOCOL_MAKER_FEE_RECIPIENT": "",
7
+ "DUST_THRESHOLD": "100000",
8
+ "MAX_INTENTS_PER_DEPOSIT": 200,
9
+ "MULTI_SIG": "",
10
+ "USDC": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
11
+ "WITNESS_ADDRESS": "",
12
+ "ZKTLS_ATTESTOR_ADDRESS": ""
13
+ }
package/_esm/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // Auto-generated main entry point
2
+ export const version = require('../package.json').version;
@@ -0,0 +1,234 @@
1
+ {
2
+ "network": "base_sepolia",
3
+ "generatedAt": "2025-09-02T16:33:44.371Z",
4
+ "methods": {
5
+ "venmo": {
6
+ "paymentMethodHash": "0x90262a3db0edd0be2369c6b28f9e8511ec0bac7136cefbada0880602f87e7268",
7
+ "currencies": [
8
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
9
+ ],
10
+ "timestampBuffer": 30,
11
+ "providerHashes": [
12
+ "0x00a39e74fa194d329b16196bfbc266e6a964af41c07a1fede4545bde3f27406a",
13
+ "0x3249621feba4dd2a48514afcf0a12fa2023273cf256f435ebdfa8ec6e0b7f305",
14
+ "0x4e5e3ddb5f67e5bfe2baf1de21510f57e2ba1ed3518b66cdd65ed13548851742",
15
+ "0x7f8bf6106c24539394701ade8cd601f2032e6dbc83e825093229b5808a578b55",
16
+ "0x9495d1dba50a2b3e51c80602e1807d8eaebe26097dc2986efc28cf960f4544c5",
17
+ "0x9e5972b410377496c57972ece20af2de8d0e59a6f261c8ba12fbc7b7b742b813",
18
+ "0xbd2647b83e39b2278388dd1b226ab620ae79ecd23eb03736a3105746698643fb",
19
+ "0xc8ae61b19d4d858e6067435ab006797b07464f8a404c21caec5fc3eafdfdb772",
20
+ "0xcbc6bd56ca029ffb58fb4294238d9012aceffe9979cd71935fb8775e8459d721",
21
+ "0xd74079613d095eff94370b13e9bc73ecc17f08248943bff7963768f5f601310e"
22
+ ]
23
+ },
24
+ "revolut": {
25
+ "paymentMethodHash": "0x617f88ab82b5c1b014c539f7e75121427f0bb50a4c58b187a238531e7d58605d",
26
+ "currencies": [
27
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e",
28
+ "0xfff16d60be267153303bbfa66e593fb8d06e24ea5ef24b6acca5224c2ca6b907",
29
+ "0x90832e2dc3221e4d56977c1aa8f6a6706b9ad6542fbbdaac13097d0fa5e42e67",
30
+ "0xc241cc1f9752d2d53d1ab67189223a3f330e48b75f73ebf86f50b2c78fe8df88",
31
+ "0xdbd9d34f382e9f6ae078447a655e0816927c7c3edec70bd107de1d34cb15172e",
32
+ "0xcb83cbb58eaa5007af6cad99939e4581c1e1b50d65609c30f303983301524ef3",
33
+ "0x221012e06ebf59a20b82e3003cf5d6ee973d9008bdb6e2f604faa89a27235522",
34
+ "0xfe13aafd831cb225dfce3f6431b34b5b17426b6bff4fccabe4bbe0fe4adc0452",
35
+ "0xa156dad863111eeb529c4b3a2a30ad40e6dcff3b27d8f282f82996e58eee7e7d",
36
+ "0xa94b0702860cb929d0ee0c60504dd565775a058bf1d2a2df074c1db0a66ad582",
37
+ "0xf998cbeba8b7a7e91d4c469e5fb370cdfa16bd50aea760435dc346008d78ed1f",
38
+ "0x4dab77a640748de8588de6834d814a344372b205265984b969f3e97060955bfa",
39
+ "0x326a6608c2a353275bd8d64db53a9d772c1d9a5bc8bfd19dfc8242274d1e9dd4",
40
+ "0x128d6c262d1afe2351c6e93ceea68e00992708cfcbc0688408b9a23c0c543db2",
41
+ "0x9a788fb083188ba1dfb938605bc4ce3579d2e085989490aca8f73b23214b7c1d",
42
+ "0xc9d84274fd58aa177cabff54611546051b74ad658b939babaad6282500300d36",
43
+ "0x53611f0b3535a2cfc4b8deb57fa961ca36c7b2c272dfe4cb239a29c48e549361"
44
+ ],
45
+ "timestampBuffer": 30,
46
+ "providerHashes": [
47
+ "0x04e9ac052b26ff3be7bb93de26130f66bb7332a205b5964d793da153964a8568",
48
+ "0x083a28f2e91b4e72fdb40e86acadf8cbc6643644b67dd1cb0d77fe5792c9df0e",
49
+ "0x0f3ca8a7846e94f54c3fab50fe7a5b1b73e6093b68581d83e6f62d7f432e077a",
50
+ "0x12fd873822ec41fc6883d1f7f8dd7d49c9d8be79193e420067ef31e8086ecae1",
51
+ "0x1890bce0245d8f3362036c8b31cddfca135148f62ed535fa29e12378982cb131",
52
+ "0x35ea0196979f0ffb2f1435328c9974db9e10d6d2efa9746f50c1f898f8fb0ab7",
53
+ "0x5abd109b6dddeef62f2ca099d1be00bd5efb5944ca9b399dfb46b1f44ef82d54",
54
+ "0x5ce8e8664c61c076f56f034c8d7531847dcd97b16a0b573ff716f387a2dfc289",
55
+ "0x63ee8f0bbb42689fd5925fad3d5a76489da6e7d8caed12fd25ade55dc3fd5028",
56
+ "0x6849acb89a3d6294da7a0f5a6eaae6383e7159fb376c97c09fad5236c4857463",
57
+ "0x76aad49a8273350a88e1337fe586df9b2e4be669fb49e816e23753fdce1f6c81",
58
+ "0x7a88e91990028a7ef2fe639845eaa2a5eb0e643ace60fae7214e084ec3792b66",
59
+ "0x8915cf1eea64de2b7ddfeb067c44e8afc6d61bdb2b85e5a67bc6b330e27f81d1",
60
+ "0x8afc4d3f9d6b7ae5e47fc15054c771f7b3ab0b70764bb696bcacfbfb06146ba0",
61
+ "0x9c512c607f28bdd31d3a03775a4afcfced5c3efc4350909ce71017e71769eec1",
62
+ "0xb5d1bf2fc2e4a439d7854b89f6fcf13bfded65be63c6afac4255e57f49bb4d92",
63
+ "0xd8fc9ef02462e6ed58deb1394c091d8df5e43d848fbfd407706153cf45ce81b9",
64
+ "0xec3b954b7fabfc9c0c3ea6cd3e998e6adf56ffe79047f53a00c923c9bcdad396",
65
+ "0xee520d28c9492f7f874cacc70df08d12ad6bea550a35d97fc94ac28098a08c5d",
66
+ "0xfc29d0f952afcdc500a33ea0f3d828368eec497e68806b637378671ef459a2d7"
67
+ ]
68
+ },
69
+ "cashapp": {
70
+ "paymentMethodHash": "0x10940ee67cfb3c6c064569ec92c0ee934cd7afa18dd2ca2d6a2254fcb009c17d",
71
+ "currencies": [
72
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
73
+ ],
74
+ "timestampBuffer": 30,
75
+ "providerHashes": [
76
+ "0x031519b5852becca2238065df96ce065edea1f00a427dc56527a56388d1a1e86",
77
+ "0x396de8f08706d157f9f7b2a54f40f36c26445b7829846e0f26ad5c3d9e9896de",
78
+ "0x3ab7a618e5d66b6ef4345f86118ee7dce30f47ac074076b4db819aca89c44069",
79
+ "0x3ea1868d0ea8f74b2117d9e51e4ffbc4f9df0fb5845190a4eeeb9b7ea854a932",
80
+ "0x44ba468b29b48fd99fd7e97ef99e71e6d654a4c99052fa6bc7515b267480a31d",
81
+ "0x55a19db01c87888c0975258b3b361d4c4648c6f0bade517946971268f94ab6bf",
82
+ "0x655fc16bcefc8604d7ed322bf287f4f23074e28456508fc97160803fe649710a",
83
+ "0x6811aed4d9cb0087181b8ffb40eca8f7bb7664361bfb58fa6cabd237c3bfb202",
84
+ "0x6b590e3e98928b7ac5cc8e37aca9422575af0e9635066ecb7b1a2d7b0a9fc977",
85
+ "0x6ef847201a73a17138d5df9c30b286723b788c722be31a123ae6281e9683a638",
86
+ "0x7541e67c5fc3eb1a00c5961f19a4b5eb75952ce875f2860a2d71b6bbbd9d90c5",
87
+ "0x7afd036ff43e7cb3d60e2b71cace31ccaf99e0b155ebebcdf87b4cb024e3119d",
88
+ "0x806ce96ffa3520ad11cfa6eb1ad15c1be297bb7dadae942b347e65224d42274e",
89
+ "0x83fb35c501e3bdaf87b6fad30acb99822a96d5e5e00d0c4960cd857e38a99c39",
90
+ "0xb409d37627b072a24f0c2af0f68b18a129758e2c8e5117fc5c3ef5523532fc9b",
91
+ "0xce677908fd2447f2a793b435109ecc1d0fcdf9012fcced134fcd6b93f8965524",
92
+ "0xe739b1ede7f331b77543a9775b4d247c083f85b93a015f71032e92d20e97d454",
93
+ "0xf9833854b0a9c0b5fdb7ee8b55f64bbb831876120d6d982b56c2f59c0f6cb9d9",
94
+ "0xff01ffecba402f0d922c6b06dc0674eb067356f90df936a61ce3caa3ae39cad2",
95
+ "0xffbd239b8bff6027b3955a8b51f66b0e20d042bf49f9838651aee55d6c6dc086"
96
+ ]
97
+ },
98
+ "wise": {
99
+ "paymentMethodHash": "0x554a007c2217df766b977723b276671aee5ebb4adaea0edb6433c88b3e61dac5",
100
+ "currencies": [
101
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e",
102
+ "0xfaaa9c7b2f09d6a1b0971574d43ca62c3e40723167c09830ec33f06cec921381",
103
+ "0xfff16d60be267153303bbfa66e593fb8d06e24ea5ef24b6acca5224c2ca6b907",
104
+ "0x90832e2dc3221e4d56977c1aa8f6a6706b9ad6542fbbdaac13097d0fa5e42e67",
105
+ "0xcb83cbb58eaa5007af6cad99939e4581c1e1b50d65609c30f303983301524ef3",
106
+ "0xdbd9d34f382e9f6ae078447a655e0816927c7c3edec70bd107de1d34cb15172e",
107
+ "0x221012e06ebf59a20b82e3003cf5d6ee973d9008bdb6e2f604faa89a27235522",
108
+ "0x4dab77a640748de8588de6834d814a344372b205265984b969f3e97060955bfa",
109
+ "0xc9d84274fd58aa177cabff54611546051b74ad658b939babaad6282500300d36",
110
+ "0x53611f0b3535a2cfc4b8deb57fa961ca36c7b2c272dfe4cb239a29c48e549361",
111
+ "0xc241cc1f9752d2d53d1ab67189223a3f330e48b75f73ebf86f50b2c78fe8df88",
112
+ "0x313eda7ae1b79890307d32a78ed869290aeb24cc0e8605157d7e7f5a69fea425",
113
+ "0xa156dad863111eeb529c4b3a2a30ad40e6dcff3b27d8f282f82996e58eee7e7d",
114
+ "0xfe13aafd831cb225dfce3f6431b34b5b17426b6bff4fccabe4bbe0fe4adc0452",
115
+ "0x9a788fb083188ba1dfb938605bc4ce3579d2e085989490aca8f73b23214b7c1d",
116
+ "0x128d6c262d1afe2351c6e93ceea68e00992708cfcbc0688408b9a23c0c543db2",
117
+ "0xc681c4652bae8bd4b59bec1cdb90f868d93cc9896af9862b196843f54bf254b3",
118
+ "0x589be49821419c9c2fbb26087748bf3420a5c13b45349828f5cac24c58bbaa7b",
119
+ "0xf20379023279e1d79243d2c491be8632c07cfb116be9d8194013fb4739461b84",
120
+ "0xa94b0702860cb929d0ee0c60504dd565775a058bf1d2a2df074c1db0a66ad582",
121
+ "0x326a6608c2a353275bd8d64db53a9d772c1d9a5bc8bfd19dfc8242274d1e9dd4",
122
+ "0xe85548baf0a6732cfcc7fc016ce4fd35ce0a1877057cfec6e166af4f106a3728"
123
+ ],
124
+ "timestampBuffer": 30,
125
+ "providerHashes": [
126
+ "0x28a5a382e010f26b6a21bce3ef8e363ec5bf41aeec4bec70b0911365ee4f5a2e"
127
+ ]
128
+ },
129
+ "mercadopago": {
130
+ "paymentMethodHash": "0xa5418819c024239299ea32e09defae8ec412c03e58f5c75f1b2fe84c857f5483",
131
+ "currencies": [
132
+ "0x8fd50654b7dd2dc839f7cab32800ba0c6f7f66e1ccf89b21c09405469c2175ec"
133
+ ],
134
+ "timestampBuffer": 30,
135
+ "providerHashes": [
136
+ "0xdf4a4bf85a7816d306181c7081cd611dc73cbbf3f63ff8feee680efb8056dce6"
137
+ ]
138
+ },
139
+ "zelle-citi": {
140
+ "paymentMethodHash": "0x817260692b75e93c7fbc51c71637d4075a975e221e1ebc1abeddfabd731fd90d",
141
+ "currencies": [
142
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
143
+ ],
144
+ "timestampBuffer": 86400,
145
+ "providerHashes": [
146
+ "0x0456fea327b2a9256abfbd771cb9c255c9275a4f73dfe0805dc147c91d610872",
147
+ "0x23be21130f161db846232707f63d8697f8e8ac12d491e25bba7a7dec97ae265f",
148
+ "0x24587add55262ff62f27ce02a934cd2be6195fbf3c144b806fdbda11bdaa0689",
149
+ "0x3b6c2b919590695c70acc31ff90d2cb9238521157f00d32291b0a5921d0ad4f3",
150
+ "0x403a7d744f76ad7c522f1146b4b70c41dd522bf958e5021a448182bb0ec63b36",
151
+ "0x43cd003ad1772ccf3aef3fd9c396c93d9f8aea3c2cd585f4f6d95f85a022f6d2",
152
+ "0x4d267773f096e401bffb4666411020461fa39bde932d6e48602d610df33f4b06",
153
+ "0x53c819c8a543511b1b9ef5153fe2b49712d99765ff957aec574bb8f0e021df6b",
154
+ "0x5ca17ce2ad06322da04a0534985c1d2ca0665dc1c1b2fedfb36cc3d3156611a2",
155
+ "0x5e34d0a432c17c17ff58a90e17501e463a69f12c9f85752a7828f67f9accf3d1",
156
+ "0x6675a2837d76574f78e118454f344db9bbcb1838f3e6e6382817a29e83223cd5",
157
+ "0x8c800f91ec8be81525f626ddd624f291873177795a90b2ec8144a7564059025d",
158
+ "0xa275fd75eb14fbd38188532c03e00f6264223d9bf07aab9650cc3bac5cb7c609",
159
+ "0xa664768c65dd0c3b389334d2eee95255ba390ac2e13098f5643b21a64d70d747",
160
+ "0xbbf906a25a6d9a2d99c44d5d9a4a730fdc872e920dd60d5463ec2183c4570966",
161
+ "0xc15ac28dcb5fccc4de5fddfdbee45f47e61e2b00c395e3c6d7cfc20631f2eadf",
162
+ "0xc85456d08cdf34687e15bd16532cb4b781f235d3eec47bfcfebe67162d54c423",
163
+ "0xd214e1813dd63c95a6b40ed3e96012e4e43b041fc60e8d8fdf95297a9afb3e2f",
164
+ "0xde1f2c5848d0ee62d947646f5c4c50738a1266932ac5b1aacd0d249512414e41",
165
+ "0xf909c04d2435514745b8e0fca1d3847e8556760df60a9d503225ff400a9aba87"
166
+ ]
167
+ },
168
+ "zelle-chase": {
169
+ "paymentMethodHash": "0x6aa1d1401e79ad0549dced8b1b96fb72c41cd02b32a7d9ea1fed54ba9e17152e",
170
+ "currencies": [
171
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
172
+ ],
173
+ "timestampBuffer": 86400,
174
+ "providerHashes": [
175
+ "0x06d02c5575893856dbdced4ee58901fff35123005ac423f90e50ae04b0f16bc9",
176
+ "0x172716832e5c499a5ff2938299a708d2fa82c0b57e350bd65bd14172cdc7b8cf",
177
+ "0x19b4e192687f847f3a89be76a1ba1c91d0298773882b8edda82c1aec4dfd8685",
178
+ "0x4551694aa85897c3594bd841aed6356e6866215c5ea6a7e05adf89442c85e59b",
179
+ "0x818db0952aea83945064c563fd7c4204f86af6e9a7c716c0c11b5598f3ab0de3",
180
+ "0x873b402841ff2c1d2d87d22b1c8b7591fed27364121d2c43cc52985671543aeb",
181
+ "0x8a951b66cae6d6adbbb99027cda7d3628c61ebabce52dbb0ac9f5b4aecb0c131",
182
+ "0x9bb8a194edcbdfdfbe895032efb7afcc81b7e5f858500b8b815f46674bf4e34a",
183
+ "0xa48d55c1b3b48b93d6bf6c53f04a146ebb3a97a882b1c83b1ef8dc02a79f1e4f",
184
+ "0xa582d927563c0ca2751d6148f541675174981f8b7cc8213ae4174e8547248c27",
185
+ "0xff129387e22500857b0a6b94f39fd453a41dddb9d8b557d7545e7e5a82ec8eeb"
186
+ ]
187
+ },
188
+ "zelle-bofa": {
189
+ "paymentMethodHash": "0x4bc42b322a3ad413b91b2fde30549ca70d6ee900eded1681de91aaf32ffd7ab5",
190
+ "currencies": [
191
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
192
+ ],
193
+ "timestampBuffer": 86400,
194
+ "providerHashes": [
195
+ "0x026ee87836ccd49550f89610000548510351c9269f0e7ee2d742e4ea84887d1f",
196
+ "0x18f8935be02bd9cb250236276e408a2120b4eb7816689fc2e0762b93f8cc8037",
197
+ "0x63c31f999b02c36bc07a96103ea22a502f25770de3de7d6594869c32949a0b9c",
198
+ "0x7383489c562431f773d4d63d2a808f3b2b72f2bea6c588912ff42d36c79f10fb",
199
+ "0x9bddb495c6191a86e5bf1421c36d2be3426dbfece78a24a196f47ad4a8c9917c",
200
+ "0xa9f6cd9463c922f480f543e58956eebfd1615efe913537842cecd7e2041fbcb9",
201
+ "0xadeb8e95f4535bff844f80b781a05b7fd45ac88ee2d2ed88713ebb9941ea76eb",
202
+ "0xb37991c768701fcd7c05a989727c16913db3dd8134ffe1412845fb70cabc9501",
203
+ "0xb3f1bdc2753210118bdeb32f1b300b75a7094c8361856dffd487e61ee7a7280c",
204
+ "0xdbda2c1be1a7e120237942e92cbcef4441107c75bd4fc762649ed7ea5dc46cce"
205
+ ]
206
+ },
207
+ "paypal": {
208
+ "paymentMethodHash": "0x3ccc3d4d5e769b1f82dc4988485551dc0cd3c7a3926d7d8a4dde91507199490f",
209
+ "currencies": [
210
+ "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e",
211
+ "0xfff16d60be267153303bbfa66e593fb8d06e24ea5ef24b6acca5224c2ca6b907",
212
+ "0x90832e2dc3221e4d56977c1aa8f6a6706b9ad6542fbbdaac13097d0fa5e42e67",
213
+ "0xc241cc1f9752d2d53d1ab67189223a3f330e48b75f73ebf86f50b2c78fe8df88",
214
+ "0xdbd9d34f382e9f6ae078447a655e0816927c7c3edec70bd107de1d34cb15172e",
215
+ "0xcb83cbb58eaa5007af6cad99939e4581c1e1b50d65609c30f303983301524ef3",
216
+ "0x221012e06ebf59a20b82e3003cf5d6ee973d9008bdb6e2f604faa89a27235522"
217
+ ],
218
+ "timestampBuffer": 30,
219
+ "providerHashes": [
220
+ "0xbf9ec395d69f6b89372bc37ed934f9922edf20e3174fb96fc8094ccf78ac9b7d"
221
+ ]
222
+ },
223
+ "monzo": {
224
+ "paymentMethodHash": "0x62c7ed738ad3e7618111348af32691b5767777fbaf46a2d8943237625552645c",
225
+ "currencies": [
226
+ "0x90832e2dc3221e4d56977c1aa8f6a6706b9ad6542fbbdaac13097d0fa5e42e67"
227
+ ],
228
+ "timestampBuffer": 30,
229
+ "providerHashes": [
230
+ "0xde587ffc4efa0ada533e2bfbcf348ac870d3881d006d2af677fbac64b8d3a8fe"
231
+ ]
232
+ }
233
+ }
234
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "networks": [
3
+ "baseSepolia"
4
+ ],
5
+ "generatedAt": "2025-09-02T16:33:44.371Z"
6
+ }