agent0-sdk 1.4.0__py3-none-any.whl

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.
@@ -0,0 +1,547 @@
1
+ """
2
+ Smart contract ABIs and interfaces for ERC-8004.
3
+ """
4
+
5
+ from typing import Dict, List, Any
6
+
7
+ # ERC-721 ABI (minimal required functions)
8
+ ERC721_ABI = [
9
+ {
10
+ "inputs": [{"internalType": "uint256", "name": "tokenId", "type": "uint256"}],
11
+ "name": "ownerOf",
12
+ "outputs": [{"internalType": "address", "name": "", "type": "address"}],
13
+ "stateMutability": "view",
14
+ "type": "function"
15
+ },
16
+ {
17
+ "inputs": [
18
+ {"internalType": "address", "name": "owner", "type": "address"},
19
+ {"internalType": "address", "name": "operator", "type": "address"}
20
+ ],
21
+ "name": "isApprovedForAll",
22
+ "outputs": [{"internalType": "bool", "name": "", "type": "bool"}],
23
+ "stateMutability": "view",
24
+ "type": "function"
25
+ },
26
+ {
27
+ "inputs": [{"internalType": "uint256", "name": "tokenId", "type": "uint256"}],
28
+ "name": "getApproved",
29
+ "outputs": [{"internalType": "address", "name": "", "type": "address"}],
30
+ "stateMutability": "view",
31
+ "type": "function"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {"internalType": "address", "name": "from", "type": "address"},
36
+ {"internalType": "address", "name": "to", "type": "address"},
37
+ {"internalType": "uint256", "name": "tokenId", "type": "uint256"}
38
+ ],
39
+ "name": "transferFrom",
40
+ "outputs": [],
41
+ "stateMutability": "nonpayable",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {"internalType": "address", "name": "to", "type": "address"},
47
+ {"internalType": "bool", "name": "approved", "type": "bool"}
48
+ ],
49
+ "name": "setApprovalForAll",
50
+ "outputs": [],
51
+ "stateMutability": "nonpayable",
52
+ "type": "function"
53
+ },
54
+ {
55
+ "inputs": [
56
+ {"internalType": "uint256", "name": "tokenId", "type": "uint256"},
57
+ {"internalType": "address", "name": "to", "type": "address"}
58
+ ],
59
+ "name": "approve",
60
+ "outputs": [],
61
+ "stateMutability": "nonpayable",
62
+ "type": "function"
63
+ }
64
+ ]
65
+
66
+ # ERC-721 URI Storage ABI
67
+ ERC721_URI_STORAGE_ABI = [
68
+ {
69
+ "inputs": [{"internalType": "uint256", "name": "tokenId", "type": "uint256"}],
70
+ "name": "tokenURI",
71
+ "outputs": [{"internalType": "string", "name": "", "type": "string"}],
72
+ "stateMutability": "view",
73
+ "type": "function"
74
+ },
75
+ {
76
+ "inputs": [
77
+ {"internalType": "uint256", "name": "tokenId", "type": "uint256"},
78
+ {"internalType": "string", "name": "_tokenURI", "type": "string"}
79
+ ],
80
+ "name": "setTokenURI",
81
+ "outputs": [],
82
+ "stateMutability": "nonpayable",
83
+ "type": "function"
84
+ }
85
+ ]
86
+
87
+ # Identity Registry ABI
88
+ IDENTITY_REGISTRY_ABI = [
89
+ # ERC-721 functions
90
+ *ERC721_ABI,
91
+ *ERC721_URI_STORAGE_ABI,
92
+
93
+ # Identity Registry specific functions
94
+ {
95
+ "inputs": [],
96
+ "name": "register",
97
+ "outputs": [{"internalType": "uint256", "name": "agentId", "type": "uint256"}],
98
+ "stateMutability": "nonpayable",
99
+ "type": "function"
100
+ },
101
+ {
102
+ "inputs": [{"internalType": "string", "name": "agentURI", "type": "string"}],
103
+ "name": "register",
104
+ "outputs": [{"internalType": "uint256", "name": "agentId", "type": "uint256"}],
105
+ "stateMutability": "nonpayable",
106
+ "type": "function"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {"internalType": "string", "name": "agentURI", "type": "string"},
111
+ {
112
+ "components": [
113
+ {"internalType": "string", "name": "key", "type": "string"},
114
+ {"internalType": "bytes", "name": "value", "type": "bytes"}
115
+ ],
116
+ "internalType": "struct IdentityRegistry.MetadataEntry[]",
117
+ "name": "metadata",
118
+ "type": "tuple[]"
119
+ }
120
+ ],
121
+ "name": "register",
122
+ "outputs": [{"internalType": "uint256", "name": "agentId", "type": "uint256"}],
123
+ "stateMutability": "nonpayable",
124
+ "type": "function"
125
+ },
126
+ {
127
+ "inputs": [
128
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
129
+ {"internalType": "string", "name": "key", "type": "string"}
130
+ ],
131
+ "name": "getMetadata",
132
+ "outputs": [{"internalType": "bytes", "name": "", "type": "bytes"}],
133
+ "stateMutability": "view",
134
+ "type": "function"
135
+ },
136
+ {
137
+ "inputs": [
138
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
139
+ {"internalType": "string", "name": "key", "type": "string"},
140
+ {"internalType": "bytes", "name": "value", "type": "bytes"}
141
+ ],
142
+ "name": "setMetadata",
143
+ "outputs": [],
144
+ "stateMutability": "nonpayable",
145
+ "type": "function"
146
+ },
147
+ {
148
+ "inputs": [
149
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
150
+ {"internalType": "string", "name": "newURI", "type": "string"}
151
+ ],
152
+ "name": "setAgentURI",
153
+ "outputs": [],
154
+ "stateMutability": "nonpayable",
155
+ "type": "function"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"}
160
+ ],
161
+ "name": "getAgentWallet",
162
+ "outputs": [{"internalType": "address", "name": "", "type": "address"}],
163
+ "stateMutability": "view",
164
+ "type": "function"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
169
+ {"internalType": "address", "name": "newWallet", "type": "address"},
170
+ {"internalType": "uint256", "name": "deadline", "type": "uint256"},
171
+ {"internalType": "bytes", "name": "signature", "type": "bytes"}
172
+ ],
173
+ "name": "setAgentWallet",
174
+ "outputs": [],
175
+ "stateMutability": "nonpayable",
176
+ "type": "function"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"}
181
+ ],
182
+ "name": "unsetAgentWallet",
183
+ "outputs": [],
184
+ "stateMutability": "nonpayable",
185
+ "type": "function"
186
+ },
187
+
188
+ # Events
189
+ {
190
+ "anonymous": False,
191
+ "inputs": [
192
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
193
+ {"indexed": False, "internalType": "string", "name": "agentURI", "type": "string"},
194
+ {"indexed": True, "internalType": "address", "name": "owner", "type": "address"}
195
+ ],
196
+ "name": "Registered",
197
+ "type": "event"
198
+ },
199
+ {
200
+ "anonymous": False,
201
+ "inputs": [
202
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
203
+ {"indexed": False, "internalType": "string", "name": "newURI", "type": "string"},
204
+ {"indexed": True, "internalType": "address", "name": "updatedBy", "type": "address"}
205
+ ],
206
+ "name": "URIUpdated",
207
+ "type": "event"
208
+ },
209
+ {
210
+ "anonymous": False,
211
+ "inputs": [
212
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
213
+ {"indexed": True, "internalType": "string", "name": "indexedKey", "type": "string"},
214
+ {"indexed": False, "internalType": "string", "name": "key", "type": "string"},
215
+ {"indexed": False, "internalType": "bytes", "name": "value", "type": "bytes"}
216
+ ],
217
+ "name": "MetadataSet",
218
+ "type": "event"
219
+ }
220
+ ]
221
+
222
+ # Reputation Registry ABI
223
+ REPUTATION_REGISTRY_ABI = [
224
+ {
225
+ "inputs": [],
226
+ "name": "getIdentityRegistry",
227
+ "outputs": [{"internalType": "address", "name": "", "type": "address"}],
228
+ "stateMutability": "view",
229
+ "type": "function"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
234
+ {"internalType": "int128", "name": "value", "type": "int128"},
235
+ {"internalType": "uint8", "name": "valueDecimals", "type": "uint8"},
236
+ {"internalType": "string", "name": "tag1", "type": "string"},
237
+ {"internalType": "string", "name": "tag2", "type": "string"},
238
+ {"internalType": "string", "name": "endpoint", "type": "string"},
239
+ {"internalType": "string", "name": "feedbackURI", "type": "string"},
240
+ {"internalType": "bytes32", "name": "feedbackHash", "type": "bytes32"}
241
+ ],
242
+ "name": "giveFeedback",
243
+ "outputs": [],
244
+ "stateMutability": "nonpayable",
245
+ "type": "function"
246
+ },
247
+ {
248
+ "inputs": [
249
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
250
+ {"internalType": "uint64", "name": "feedbackIndex", "type": "uint64"}
251
+ ],
252
+ "name": "revokeFeedback",
253
+ "outputs": [],
254
+ "stateMutability": "nonpayable",
255
+ "type": "function"
256
+ },
257
+ {
258
+ "inputs": [
259
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
260
+ {"internalType": "address", "name": "clientAddress", "type": "address"},
261
+ {"internalType": "uint64", "name": "feedbackIndex", "type": "uint64"},
262
+ {"internalType": "string", "name": "responseURI", "type": "string"},
263
+ {"internalType": "bytes32", "name": "responseHash", "type": "bytes32"}
264
+ ],
265
+ "name": "appendResponse",
266
+ "outputs": [],
267
+ "stateMutability": "nonpayable",
268
+ "type": "function"
269
+ },
270
+ {
271
+ "inputs": [
272
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
273
+ {"internalType": "address", "name": "clientAddress", "type": "address"}
274
+ ],
275
+ "name": "getLastIndex",
276
+ "outputs": [{"internalType": "uint64", "name": "", "type": "uint64"}],
277
+ "stateMutability": "view",
278
+ "type": "function"
279
+ },
280
+ {
281
+ "inputs": [
282
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
283
+ {"internalType": "address", "name": "clientAddress", "type": "address"},
284
+ {"internalType": "uint64", "name": "feedbackIndex", "type": "uint64"}
285
+ ],
286
+ "name": "readFeedback",
287
+ "outputs": [
288
+ {"internalType": "int128", "name": "value", "type": "int128"},
289
+ {"internalType": "uint8", "name": "valueDecimals", "type": "uint8"},
290
+ {"internalType": "string", "name": "tag1", "type": "string"},
291
+ {"internalType": "string", "name": "tag2", "type": "string"},
292
+ {"internalType": "bool", "name": "isRevoked", "type": "bool"}
293
+ ],
294
+ "stateMutability": "view",
295
+ "type": "function"
296
+ },
297
+ {
298
+ "inputs": [
299
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
300
+ {"internalType": "address[]", "name": "clientAddresses", "type": "address[]"},
301
+ {"internalType": "string", "name": "tag1", "type": "string"},
302
+ {"internalType": "string", "name": "tag2", "type": "string"}
303
+ ],
304
+ "name": "getSummary",
305
+ "outputs": [
306
+ {"internalType": "uint64", "name": "count", "type": "uint64"},
307
+ {"internalType": "int128", "name": "summaryValue", "type": "int128"},
308
+ {"internalType": "uint8", "name": "summaryValueDecimals", "type": "uint8"}
309
+ ],
310
+ "stateMutability": "view",
311
+ "type": "function"
312
+ },
313
+ {
314
+ "inputs": [
315
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
316
+ {"internalType": "address[]", "name": "clientAddresses", "type": "address[]"},
317
+ {"internalType": "string", "name": "tag1", "type": "string"},
318
+ {"internalType": "string", "name": "tag2", "type": "string"},
319
+ {"internalType": "bool", "name": "includeRevoked", "type": "bool"}
320
+ ],
321
+ "name": "readAllFeedback",
322
+ "outputs": [
323
+ {"internalType": "address[]", "name": "clients", "type": "address[]"},
324
+ {"internalType": "uint64[]", "name": "feedbackIndexes", "type": "uint64[]"},
325
+ {"internalType": "int128[]", "name": "values", "type": "int128[]"},
326
+ {"internalType": "uint8[]", "name": "valueDecimals", "type": "uint8[]"},
327
+ {"internalType": "string[]", "name": "tag1s", "type": "string[]"},
328
+ {"internalType": "string[]", "name": "tag2s", "type": "string[]"},
329
+ {"internalType": "bool[]", "name": "revokedStatuses", "type": "bool[]"}
330
+ ],
331
+ "stateMutability": "view",
332
+ "type": "function"
333
+ },
334
+ {
335
+ "inputs": [{"internalType": "uint256", "name": "agentId", "type": "uint256"}],
336
+ "name": "getClients",
337
+ "outputs": [{"internalType": "address[]", "name": "", "type": "address[]"}],
338
+ "stateMutability": "view",
339
+ "type": "function"
340
+ },
341
+ {
342
+ "inputs": [
343
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
344
+ {"internalType": "address", "name": "clientAddress", "type": "address"},
345
+ {"internalType": "uint64", "name": "feedbackIndex", "type": "uint64"},
346
+ {"internalType": "address[]", "name": "responders", "type": "address[]"}
347
+ ],
348
+ "name": "getResponseCount",
349
+ "outputs": [{"internalType": "uint64", "name": "count", "type": "uint64"}],
350
+ "stateMutability": "view",
351
+ "type": "function"
352
+ },
353
+
354
+ # Events
355
+ {
356
+ "anonymous": False,
357
+ "inputs": [
358
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
359
+ {"indexed": True, "internalType": "address", "name": "clientAddress", "type": "address"},
360
+ {"indexed": False, "internalType": "uint64", "name": "feedbackIndex", "type": "uint64"},
361
+ {"indexed": False, "internalType": "int128", "name": "value", "type": "int128"},
362
+ {"indexed": False, "internalType": "uint8", "name": "valueDecimals", "type": "uint8"},
363
+ {"indexed": True, "internalType": "string", "name": "indexedTag1", "type": "string"},
364
+ {"indexed": False, "internalType": "string", "name": "tag1", "type": "string"},
365
+ {"indexed": False, "internalType": "string", "name": "tag2", "type": "string"},
366
+ {"indexed": False, "internalType": "string", "name": "endpoint", "type": "string"},
367
+ {"indexed": False, "internalType": "string", "name": "feedbackURI", "type": "string"},
368
+ {"indexed": False, "internalType": "bytes32", "name": "feedbackHash", "type": "bytes32"}
369
+ ],
370
+ "name": "NewFeedback",
371
+ "type": "event"
372
+ },
373
+ {
374
+ "anonymous": False,
375
+ "inputs": [
376
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
377
+ {"indexed": True, "internalType": "address", "name": "clientAddress", "type": "address"},
378
+ {"indexed": True, "internalType": "uint64", "name": "feedbackIndex", "type": "uint64"}
379
+ ],
380
+ "name": "FeedbackRevoked",
381
+ "type": "event"
382
+ },
383
+ {
384
+ "anonymous": False,
385
+ "inputs": [
386
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
387
+ {"indexed": True, "internalType": "address", "name": "clientAddress", "type": "address"},
388
+ {"indexed": True, "internalType": "uint64", "name": "feedbackIndex", "type": "uint64"},
389
+ {"indexed": True, "internalType": "address", "name": "responder", "type": "address"},
390
+ {"indexed": False, "internalType": "string", "name": "responseURI", "type": "string"}
391
+ ],
392
+ "name": "ResponseAppended",
393
+ "type": "event"
394
+ }
395
+ ]
396
+
397
+ # Validation Registry ABI
398
+ VALIDATION_REGISTRY_ABI = [
399
+ {
400
+ "inputs": [],
401
+ "name": "getIdentityRegistry",
402
+ "outputs": [{"internalType": "address", "name": "", "type": "address"}],
403
+ "stateMutability": "view",
404
+ "type": "function"
405
+ },
406
+ {
407
+ "inputs": [
408
+ {"internalType": "address", "name": "validatorAddress", "type": "address"},
409
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
410
+ {"internalType": "string", "name": "requestUri", "type": "string"},
411
+ {"internalType": "bytes32", "name": "requestHash", "type": "bytes32"}
412
+ ],
413
+ "name": "validationRequest",
414
+ "outputs": [],
415
+ "stateMutability": "nonpayable",
416
+ "type": "function"
417
+ },
418
+ {
419
+ "inputs": [
420
+ {"internalType": "bytes32", "name": "requestHash", "type": "bytes32"},
421
+ {"internalType": "uint8", "name": "response", "type": "uint8"},
422
+ {"internalType": "string", "name": "responseURI", "type": "string"},
423
+ {"internalType": "bytes32", "name": "responseHash", "type": "bytes32"},
424
+ {"internalType": "string", "name": "tag", "type": "string"}
425
+ ],
426
+ "name": "validationResponse",
427
+ "outputs": [],
428
+ "stateMutability": "nonpayable",
429
+ "type": "function"
430
+ },
431
+ {
432
+ "inputs": [{"internalType": "bytes32", "name": "requestHash", "type": "bytes32"}],
433
+ "name": "getValidationStatus",
434
+ "outputs": [
435
+ {"internalType": "address", "name": "validatorAddress", "type": "address"},
436
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
437
+ {"internalType": "uint8", "name": "response", "type": "uint8"},
438
+ {"internalType": "string", "name": "tag", "type": "string"},
439
+ {"internalType": "uint256", "name": "lastUpdate", "type": "uint256"}
440
+ ],
441
+ "stateMutability": "view",
442
+ "type": "function"
443
+ },
444
+ {
445
+ "inputs": [
446
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
447
+ {"internalType": "address[]", "name": "validatorAddresses", "type": "address[]"},
448
+ {"internalType": "string", "name": "tag", "type": "string"}
449
+ ],
450
+ "name": "getSummary",
451
+ "outputs": [
452
+ {"internalType": "uint64", "name": "count", "type": "uint64"},
453
+ {"internalType": "uint8", "name": "averageResponse", "type": "uint8"}
454
+ ],
455
+ "stateMutability": "view",
456
+ "type": "function"
457
+ },
458
+ {
459
+ "inputs": [{"internalType": "uint256", "name": "agentId", "type": "uint256"}],
460
+ "name": "getAgentValidations",
461
+ "outputs": [{"internalType": "bytes32[]", "name": "", "type": "bytes32[]"}],
462
+ "stateMutability": "view",
463
+ "type": "function"
464
+ },
465
+ {
466
+ "inputs": [{"internalType": "address", "name": "validatorAddress", "type": "address"}],
467
+ "name": "getValidatorRequests",
468
+ "outputs": [{"internalType": "bytes32[]", "name": "", "type": "bytes32[]"}],
469
+ "stateMutability": "view",
470
+ "type": "function"
471
+ },
472
+ {
473
+ "inputs": [{"internalType": "bytes32", "name": "", "type": "bytes32"}],
474
+ "name": "validations",
475
+ "outputs": [
476
+ {"internalType": "address", "name": "validatorAddress", "type": "address"},
477
+ {"internalType": "uint256", "name": "agentId", "type": "uint256"},
478
+ {"internalType": "uint8", "name": "response", "type": "uint8"},
479
+ {"internalType": "string", "name": "tag", "type": "string"},
480
+ {"internalType": "uint256", "name": "lastUpdate", "type": "uint256"}
481
+ ],
482
+ "stateMutability": "view",
483
+ "type": "function"
484
+ },
485
+
486
+ # Events
487
+ {
488
+ "anonymous": False,
489
+ "inputs": [
490
+ {"indexed": True, "internalType": "address", "name": "validatorAddress", "type": "address"},
491
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
492
+ {"indexed": False, "internalType": "string", "name": "requestUri", "type": "string"},
493
+ {"indexed": True, "internalType": "bytes32", "name": "requestHash", "type": "bytes32"}
494
+ ],
495
+ "name": "ValidationRequest",
496
+ "type": "event"
497
+ },
498
+ {
499
+ "anonymous": False,
500
+ "inputs": [
501
+ {"indexed": True, "internalType": "address", "name": "validatorAddress", "type": "address"},
502
+ {"indexed": True, "internalType": "uint256", "name": "agentId", "type": "uint256"},
503
+ {"indexed": True, "internalType": "bytes32", "name": "requestHash", "type": "bytes32"},
504
+ {"indexed": False, "internalType": "uint8", "name": "response", "type": "uint8"},
505
+ {"indexed": False, "internalType": "string", "name": "responseURI", "type": "string"},
506
+ {"indexed": False, "internalType": "bytes32", "name": "responseHash", "type": "bytes32"},
507
+ {"indexed": False, "internalType": "string", "name": "tag", "type": "string"}
508
+ ],
509
+ "name": "ValidationResponse",
510
+ "type": "event"
511
+ }
512
+ ]
513
+
514
+ # Contract registry for different chains
515
+ # Updated addresses from: https://github.com/erc-8004/erc-8004-contracts
516
+ DEFAULT_REGISTRIES: Dict[int, Dict[str, str]] = {
517
+ 11155111: { # Ethereum Sepolia
518
+ "IDENTITY": "0x8004A818BFB912233c491871b3d84c89A494BD9e",
519
+ "REPUTATION": "0x8004B663056A597Dffe9eCcC1965A193B7388713",
520
+ # "VALIDATION": "0x...", # To be deployed
521
+ },
522
+ # Other chains temporarily disabled - addresses to be deployed
523
+ # 84532: { # Base Sepolia
524
+ # "IDENTITY": "0x...", # To be deployed
525
+ # "REPUTATION": "0x...", # To be deployed
526
+ # "VALIDATION": "0x...", # To be deployed
527
+ # },
528
+ # 80002: { # Polygon Amoy
529
+ # "IDENTITY": "0x...", # To be deployed
530
+ # "REPUTATION": "0x...", # To be deployed
531
+ # "VALIDATION": "0x...", # To be deployed
532
+ # },
533
+ # 59141: { # Linea Sepolia
534
+ # "IDENTITY": "0x...", # To be deployed
535
+ # "REPUTATION": "0x...", # To be deployed
536
+ # "VALIDATION": "0x...", # To be deployed
537
+ # },
538
+ }
539
+
540
+ # Default subgraph URLs for different chains
541
+ # Note: Subgraph URLs may need to be updated when new contracts are deployed
542
+ DEFAULT_SUBGRAPH_URLS: Dict[int, str] = {
543
+ 11155111: "https://gateway.thegraph.com/api/00a452ad3cd1900273ea62c1bf283f93/subgraphs/id/6wQRC7geo9XYAhckfmfo8kbMRLeWU8KQd3XsJqFKmZLT", # Ethereum Sepolia
544
+ # Other chains temporarily disabled - subgraphs to be updated
545
+ # 84532: "https://gateway.thegraph.com/api/...", # Base Sepolia - To be updated
546
+ # 80002: "https://gateway.thegraph.com/api/...", # Polygon Amoy - To be updated
547
+ }