-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkGraduationMonitor.ts
More file actions
507 lines (444 loc) · 15.9 KB
/
NetworkGraduationMonitor.ts
File metadata and controls
507 lines (444 loc) · 15.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
/**
* Network Graduation Monitor
*
* Monitors networks for graduation eligibility based on usage metrics
* Replaces market-cap based graduation with real usage metrics
*/
import { PrismaClient } from '@prisma/client';
import { ILogger } from './utils/ILogger';
import { ProtocolService } from './ProtocolService';
import { GraduationService } from './GraduationService';
import { NetworkManifest, GraduationLevel } from './types';
import { NetworkManifestGenerator } from './NetworkManifestGenerator';
import { DecentralizedRegistryService } from './DecentralizedRegistryService';
import { ethers } from 'ethers';
export class NetworkGraduationMonitor {
private prisma: PrismaClient;
private logger: ILogger;
private protocolService: ProtocolService;
private graduationService: GraduationService;
private decentralizedRegistryService?: DecentralizedRegistryService;
private isRunning: boolean = false;
private monitoringInterval: NodeJS.Timeout | null = null;
private readonly CHECK_INTERVAL_MS = 60 * 60 * 1000; // Check every hour
constructor(prisma: PrismaClient, logger: ILogger, decentralizedRegistryService?: DecentralizedRegistryService) {
this.prisma = prisma;
this.logger = logger;
this.protocolService = new ProtocolService(logger, prisma);
this.graduationService = new GraduationService(prisma, logger);
this.decentralizedRegistryService = decentralizedRegistryService || new DecentralizedRegistryService(logger);
}
/**
* Start monitoring networks for graduation
*/
public async start(): Promise<void> {
if (this.isRunning) {
this.logger.warn('Network graduation monitor is already running');
return;
}
this.logger.info('Starting network graduation monitor...');
this.isRunning = true;
// Start monitoring loop
this.monitoringInterval = setInterval(async () => {
try {
await this.checkAllNetworks();
} catch (error) {
this.logger.error('Error in network graduation monitoring loop:', error);
}
}, this.CHECK_INTERVAL_MS);
// Do initial check
await this.checkAllNetworks();
this.logger.info('Network graduation monitor started successfully');
}
/**
* Stop monitoring
*/
public async stop(): Promise<void> {
if (!this.isRunning) {
return;
}
this.logger.info('Stopping network graduation monitor...');
this.isRunning = false;
if (this.monitoringInterval) {
clearInterval(this.monitoringInterval);
this.monitoringInterval = null;
}
this.logger.info('Network graduation monitor stopped');
}
/**
* Check all networks for graduation eligibility
*/
private async checkAllNetworks(): Promise<void> {
try {
// Discover all networks from registry
const networkIds = await this.protocolService.listNetworks();
this.logger.info(`Checking ${networkIds.length} networks for graduation`);
for (const networkId of networkIds) {
try {
await this.checkNetworkGraduation(networkId);
} catch (error) {
this.logger.error(`Failed to check graduation for network ${networkId}:`, error);
}
}
} catch (error) {
this.logger.error('Failed to check all networks:', error);
}
}
/**
* Check if a specific network is eligible for graduation
*/
private async checkNetworkGraduation(networkId: string): Promise<void> {
try {
// Get network manifest
const manifest = await this.protocolService.getNetworkManifest(networkId);
if (!manifest) {
this.logger.warn(`Network manifest not found: ${networkId}`);
return;
}
const currentLevel = manifest.graduationStatus?.level || 'sandbox';
// Check graduation eligibility
const eligibility = await this.graduationService.checkGraduationEligibility(
networkId,
manifest,
currentLevel
);
if (eligibility.eligible) {
this.logger.info(`Network ${networkId} is eligible for graduation`, {
currentLevel,
metrics: eligibility.metrics,
});
// Determine next level
const nextLevel = this.getNextLevel(currentLevel);
if (nextLevel) {
await this.promoteNetwork(networkId, manifest, nextLevel);
}
} else {
this.logger.debug(`Network ${networkId} not yet eligible for graduation`, {
currentLevel,
reason: eligibility.reason,
metrics: eligibility.metrics,
});
}
} catch (error) {
this.logger.error(`Failed to check network graduation for ${networkId}:`, error);
}
}
/**
* Promote network to next graduation level
*/
private async promoteNetwork(
networkId: string,
manifest: NetworkManifest,
newLevel: GraduationLevel
): Promise<void> {
try {
this.logger.info(`Promoting network ${networkId} to level ${newLevel}`);
// Update manifest with new graduation status
const updatedManifest: NetworkManifest = {
...manifest,
graduationStatus: {
level: newLevel,
achievedAt: new Date().toISOString(),
conditions: {
validatorCount: 0, // Will be updated by GraduationService
minerCount: 0,
completedTasks: 0,
validatorAgreementRate: 0,
unresolvedDisputes: 0,
},
},
};
// Get current metrics for the status
const metrics = await this.graduationService.getNetworkMetrics(networkId, manifest);
if (updatedManifest.graduationStatus) {
updatedManifest.graduationStatus.conditions = {
validatorCount: metrics.validatorCount,
minerCount: metrics.minerCount,
completedTasks: metrics.completedTasks,
validatorAgreementRate: metrics.agreementRate,
unresolvedDisputes: metrics.unresolvedDisputes,
};
}
// Update contracts (CreatorTokenVesting, BondEscrowContract)
await this.updateContractsForGraduation(networkId, manifest, newLevel);
// Update manifest in registry (IPFS/Git) for redundancy
// Note: Contract state is the source of truth. IPFS/Git updates are for redundancy.
this.logger.info(`Network ${networkId} promoted to ${newLevel}`, {
updatedManifest: {
networkId: updatedManifest.networkId,
graduationStatus: updatedManifest.graduationStatus,
},
});
// Update manifest on IPFS/Git registry for redundancy
await this.updateManifestInRegistry(updatedManifest).catch(error => {
// Don't fail if registry update fails - contract state is authoritative
this.logger.warn('Failed to update manifest in registry (non-critical)', {
networkId,
error: error instanceof Error ? error.message : String(error),
});
});
} catch (error) {
this.logger.error(`Failed to promote network ${networkId} to ${newLevel}:`, error);
throw error;
}
}
/**
* Update smart contracts for graduation level change
*/
private async updateContractsForGraduation(
networkId: string,
manifest: NetworkManifest,
newLevel: GraduationLevel
): Promise<void> {
try {
// Update CreatorTokenVesting contract
if (manifest.creatorTokenVesting?.contractAddress) {
await this.updateCreatorTokenVesting(
manifest.creatorTokenVesting.contractAddress,
manifest.settlement.chain,
newLevel
);
}
// Update BondEscrowContract
if (manifest.settlement.bondEscrowAddress) {
await this.updateBondEscrow(
manifest.settlement.bondEscrowAddress,
manifest.settlement.chain,
newLevel
);
}
this.logger.info(`Updated contracts for network ${networkId} to level ${newLevel}`);
} catch (error) {
this.logger.error(`Failed to update contracts for network ${networkId}:`, error);
throw error;
}
}
/**
* Update CreatorTokenVesting contract graduation level
*/
private async updateCreatorTokenVesting(
contractAddress: string,
chain: string,
newLevel: GraduationLevel
): Promise<void> {
try {
const provider = this.getProvider(chain);
if (!provider) {
throw new Error(`Provider not available for chain: ${chain}`);
}
// Get graduation oracle address from environment
const graduationOracleAddress = process.env.GRADUATION_ORACLE_ADDRESS;
if (!graduationOracleAddress) {
this.logger.warn('GRADUATION_ORACLE_ADDRESS not set, skipping contract update');
return;
}
// Contract ABI for updateGraduationLevel
const contractABI = [
'function updateGraduationLevel(uint8 newLevel) external',
'function currentLevel() external view returns (uint8)',
];
const contract = new ethers.Contract(contractAddress, contractABI, provider);
// Convert GraduationLevel to uint8
const levelMap: Record<GraduationLevel, number> = {
sandbox: 0,
active: 1,
trusted: 2,
open_economic: 3,
};
const levelValue = levelMap[newLevel];
// Check current level
const currentLevel = await contract.currentLevel();
if (currentLevel >= levelValue) {
this.logger.info(`Contract already at level ${newLevel} or higher`);
return;
}
// Note: This method is designed to be called by an external graduation oracle
this.logger.info(`CreatorTokenVesting contract needs update to level ${newLevel}`, {
contractAddress,
newLevel,
levelValue,
note: 'This should be called by the graduation oracle',
});
// Note: This method is designed to be called by an external graduation oracle
} catch (error) {
this.logger.error('Failed to update CreatorTokenVesting contract:', error);
throw error;
}
}
/**
* Update BondEscrowContract graduation level
*/
private async updateBondEscrow(
contractAddress: string,
chain: string,
newLevel: GraduationLevel
): Promise<void> {
try {
const provider = this.getProvider(chain);
if (!provider) {
throw new Error(`Provider not available for chain: ${chain}`);
}
// Get graduation oracle address from environment
const graduationOracleAddress = process.env.GRADUATION_ORACLE_ADDRESS;
if (!graduationOracleAddress) {
this.logger.warn('GRADUATION_ORACLE_ADDRESS not set, skipping contract update');
return;
}
// Contract ABI for updateGraduationLevel
const contractABI = [
'function updateGraduationLevel(uint8 newLevel) external',
'function currentNetworkLevel() external view returns (uint8)',
];
const contract = new ethers.Contract(contractAddress, contractABI, provider);
// Convert GraduationLevel to uint8
const levelMap: Record<GraduationLevel, number> = {
sandbox: 0,
active: 1,
trusted: 2,
open_economic: 3,
};
const levelValue = levelMap[newLevel];
// Check current level
const currentLevel = await contract.currentNetworkLevel();
if (currentLevel >= levelValue) {
this.logger.info(`BondEscrow contract already at level ${newLevel} or higher`);
return;
}
// Note: In production, this would be called by the graduation oracle
this.logger.info(`BondEscrow contract needs update to level ${newLevel}`, {
contractAddress,
newLevel,
levelValue,
note: 'This should be called by the graduation oracle',
});
} catch (error) {
this.logger.error('Failed to update BondEscrow contract:', error);
throw error;
}
}
/**
* Get next graduation level
*/
private getNextLevel(currentLevel: GraduationLevel): GraduationLevel | null {
switch (currentLevel) {
case 'sandbox':
return 'active';
case 'active':
return 'trusted';
case 'trusted':
return 'open_economic';
case 'open_economic':
return null; // Already at max level
default:
return 'sandbox';
}
}
/**
* Get provider for a chain
*/
private getProvider(chain: string): ethers.JsonRpcProvider | null {
const rpcUrls: Record<string, string> = {
ethereum: process.env.ETHEREUM_RPC_URL || 'https://eth.llamarpc.com',
polygon: process.env.POLYGON_RPC_URL || 'https://polygon.llamarpc.com',
bsc: process.env.BSC_RPC_URL || 'https://bsc-dataseed.binance.org',
arbitrum: process.env.ARBITRUM_RPC_URL || 'https://arb1.arbitrum.io/rpc',
base: process.env.BASE_RPC_URL || 'https://mainnet.base.org',
avalanche: process.env.AVALANCHE_RPC_URL || 'https://api.avax.network/ext/bc/C/rpc',
};
const rpcUrl = rpcUrls[chain.toLowerCase()];
if (!rpcUrl) {
this.logger.warn(`No RPC URL configured for chain: ${chain}`);
return null;
}
try {
return new ethers.JsonRpcProvider(rpcUrl);
} catch (error) {
this.logger.error(`Failed to create provider for chain: ${chain}`, { error });
return null;
}
}
/**
* Manually trigger graduation check for a network
*/
public async triggerGraduationCheck(networkId: string): Promise<void> {
try {
this.logger.info(`Manually triggering graduation check for network ${networkId}`);
await this.checkNetworkGraduation(networkId);
} catch (error) {
this.logger.error(`Failed to trigger graduation check for network ${networkId}:`, error);
throw error;
}
}
/**
* Get graduation status for a network
*/
public async getGraduationStatus(networkId: string): Promise<{
status: any;
metrics: any;
eligibility: any;
}> {
try {
const manifest = await this.protocolService.getNetworkManifest(networkId);
if (!manifest) {
throw new Error('Network not found');
}
const status = await this.graduationService.getGraduationStatus(networkId, manifest);
const metrics = await this.graduationService.getNetworkMetrics(networkId, manifest);
const currentLevel = manifest.graduationStatus?.level || 'sandbox';
const eligibility = await this.graduationService.checkGraduationEligibility(
networkId,
manifest,
currentLevel
);
return {
status,
metrics,
eligibility,
};
} catch (error) {
this.logger.error(`Failed to get graduation status for network ${networkId}:`, error);
throw error;
}
}
/**
* Update manifest in IPFS/Git registry for redundancy
*
* This is optional - contract state is the authoritative source.
* Registry updates are for redundancy and discovery.
*/
private async updateManifestInRegistry(manifest: NetworkManifest): Promise<void> {
if (!this.decentralizedRegistryService) {
this.logger.debug('DecentralizedRegistryService not available, skipping registry update');
return;
}
try {
// Upload updated manifest to IPFS (with multiple pinning services)
const newCid = await this.decentralizedRegistryService.uploadManifest(manifest);
this.logger.info('Manifest updated in IPFS registry', {
networkId: manifest.networkId,
newCid,
previousCid: manifest.registry.ipfsCid,
});
// Update manifest with new CID
manifest.registry.ipfsCid = newCid;
// Optionally update in local index (for redundancy)
await this.decentralizedRegistryService.registerNetworkInLocalIndex(
manifest,
'graduation-monitor',
'Graduation Monitor Index'
).catch(error => {
// Don't fail if index update fails
this.logger.debug('Failed to update local index (non-critical)', {
networkId: manifest.networkId,
error: error instanceof Error ? error.message : String(error),
});
});
} catch (error) {
this.logger.error('Failed to update manifest in registry', {
networkId: manifest.networkId,
error: error instanceof Error ? error.message : String(error),
});
throw error;
}
}
}