-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime-store.ts
More file actions
1128 lines (1030 loc) · 33.8 KB
/
Copy pathruntime-store.ts
File metadata and controls
1128 lines (1030 loc) · 33.8 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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import "server-only";
import { promises as fs } from "node:fs";
import path from "node:path";
import { kv } from "@vercel/kv";
import {
type SettingsPatchInput,
type SettingsState,
type StoredAgentMemoryRecord,
type StoredBlacklistRecord,
type StoredCrossAgentHandshake,
type StoredZkComplianceProof,
type StoredGovernanceDecision,
type StoredProofRecord,
type StoredStressTestReport,
type StoredZkReasoningProof,
buildSettingsResponse,
getDefaultSettingsState,
} from "@/lib/backend-data";
import type { WalletNetworkKey } from "@/lib/wallet";
import { isWalletAddress, sameWalletAddress } from "@/lib/wallet";
const PROOFS_KEY = "yieldboost:proofs";
const GLOBAL_STATS_LEDGER_KEY = "yieldboost:global-stats-ledger";
const MEMORIES_KEY = "yieldboost:agent-memories";
const BLACKLIST_KEY = "yieldboost:blacklist";
const STRESS_REPORTS_KEY = "yieldboost:stress-reports";
const ZK_REASONING_PROOFS_KEY = "yieldboost:zk-reasoning-proofs";
const GOVERNANCE_DECISIONS_KEY = "yieldboost:governance-decisions";
const CROSS_AGENT_HANDSHAKES_KEY = "yieldboost:cross-agent-handshakes";
const ZK_COMPLIANCE_PROOFS_KEY = "yieldboost:zk-compliance-proofs";
const AGENT_NFT_METADATA_KEY = "yieldboost:agent-nft-metadata";
const SETTINGS_KEY = "yieldboost:settings";
const MAX_PROOFS = 50;
const MAX_MEMORY_RECORDS = 50;
const MAX_BLACKLIST_RECORDS = 80;
const MAX_STRESS_REPORTS = 40;
const MAX_ZK_REASONING_PROOFS = 40;
const MAX_GOVERNANCE_DECISIONS = 60;
const MAX_CROSS_AGENT_HANDSHAKES = 60;
const MAX_ZK_COMPLIANCE_PROOFS = 60;
const MAX_AGENT_NFT_METADATA = 100;
const LOCAL_STORE_PATH = path.join(process.cwd(), ".artifacts", "runtime-store.local.json");
const LEGACY_LOCAL_STORE_PATH = path.join(process.cwd(), ".artifacts", "runtime-store.json");
const GLOBAL_STATS_LEDGER_LOCAL_PATH = path.join(
process.cwd(),
".artifacts",
"global-stats-ledger.local.json",
);
export interface GlobalStatsLedger {
proofKeys: string[];
walletsSeen: string[];
protocolsSeen: string[];
totalTvlProcessed: number;
totalProofJobs: number;
updatedAt: string | null;
}
export interface StoredAgentNftMetadata {
networkKey: WalletNetworkKey;
contentHash: string;
tokenUri: string;
encryptedStrategy: string;
name: string;
description: string;
image: string;
externalUrl: string;
attributes: Array<{
trait_type: string;
value: string | number;
}>;
proof: {
contentHash: string;
storageCid?: string | null;
proofTxHash?: string | null;
proofExplorerUrl?: string | null;
mintTxHash?: string | null;
mintExplorerUrl?: string | null;
contractAddress?: string | null;
};
walletAddress: string;
tokenId?: string | null;
apy: number;
currentApy: number;
createdAt: string;
}
export function isRuntimeStoreKvConfigured() {
return Boolean(process.env.KV_REST_API_URL && process.env.KV_REST_API_TOKEN);
}
// --- In-memory fallback (for local dev without KV) ---
interface RuntimeStore {
proofs: StoredProofRecord[];
agentMemories: StoredAgentMemoryRecord[];
blacklist: StoredBlacklistRecord[];
stressReports: StoredStressTestReport[];
zkReasoningProofs: StoredZkReasoningProof[];
governanceDecisions: StoredGovernanceDecision[];
crossAgentHandshakes: StoredCrossAgentHandshake[];
zkComplianceProofs: StoredZkComplianceProof[];
agentNftMetadata: StoredAgentNftMetadata[];
settings: SettingsState;
}
const globalStore = globalThis as typeof globalThis & {
__yieldboostRuntimeStore?: RuntimeStore;
};
function getLocalStore(): RuntimeStore {
if (!globalStore.__yieldboostRuntimeStore) {
globalStore.__yieldboostRuntimeStore = {
proofs: [],
agentMemories: [],
blacklist: [],
stressReports: [],
zkReasoningProofs: [],
governanceDecisions: [],
crossAgentHandshakes: [],
zkComplianceProofs: [],
agentNftMetadata: [],
settings: getDefaultSettingsState(),
};
}
return globalStore.__yieldboostRuntimeStore;
}
function parseProofTimestamp(value: string | undefined) {
if (!value) return 0;
const parsed = Date.parse(value);
return Number.isFinite(parsed) ? parsed : 0;
}
function createEmptyGlobalStatsLedger(): GlobalStatsLedger {
return {
proofKeys: [],
walletsSeen: [],
protocolsSeen: [],
totalTvlProcessed: 0,
totalProofJobs: 0,
updatedAt: null,
};
}
function normalizeGlobalStatsLedger(
payload: Partial<GlobalStatsLedger> | null | undefined,
): GlobalStatsLedger {
const proofKeys = Array.isArray(payload?.proofKeys)
? payload.proofKeys
.filter((value): value is string => typeof value === "string" && value.length > 0)
.map((value) => value.toLowerCase())
: [];
const walletsSeen = Array.isArray(payload?.walletsSeen)
? payload.walletsSeen
.filter((value): value is string => typeof value === "string" && value.length > 0)
.map((value) => value.toLowerCase())
: [];
const protocolsSeen = Array.isArray(payload?.protocolsSeen)
? payload.protocolsSeen.filter(
(value): value is string => typeof value === "string" && value.length > 0,
)
: [];
return {
proofKeys: [...new Set(proofKeys)],
walletsSeen: [...new Set(walletsSeen)],
protocolsSeen: [...new Set(protocolsSeen)],
totalTvlProcessed:
typeof payload?.totalTvlProcessed === "number" && Number.isFinite(payload.totalTvlProcessed)
? payload.totalTvlProcessed
: 0,
totalProofJobs:
typeof payload?.totalProofJobs === "number" && Number.isFinite(payload.totalProofJobs)
? payload.totalProofJobs
: 0,
updatedAt: typeof payload?.updatedAt === "string" ? payload.updatedAt : null,
};
}
function buildGlobalStatsProofKey(proof: StoredProofRecord) {
return (
proof.proofRegistryTxHash ||
proof.txHash ||
proof.cid
).toLowerCase();
}
function mergeGlobalStatsLedgerRecord(
ledger: GlobalStatsLedger,
proof: StoredProofRecord,
): boolean {
const proofKey = buildGlobalStatsProofKey(proof);
if (ledger.proofKeys.includes(proofKey)) {
return false;
}
ledger.proofKeys.push(proofKey);
ledger.totalProofJobs += 1;
ledger.totalTvlProcessed += proof.decision.totalPortfolio ?? 0;
const walletAddress = proof.walletAddress;
if (walletAddress && isWalletAddress(walletAddress)) {
const normalizedWallet = walletAddress.toLowerCase();
if (!ledger.walletsSeen.includes(normalizedWallet)) {
ledger.walletsSeen.push(normalizedWallet);
}
}
const protocol = proof.decision.recommended?.trim();
if (protocol && !ledger.protocolsSeen.includes(protocol)) {
ledger.protocolsSeen.push(protocol);
}
ledger.updatedAt = new Date().toISOString();
return true;
}
function sortProofsNewestFirst(proofs: StoredProofRecord[]) {
return [...proofs].sort((left, right) => {
const timestampDelta =
parseProofTimestamp(right.timestamp) - parseProofTimestamp(left.timestamp);
if (timestampDelta !== 0) {
return timestampDelta;
}
const blockDelta = (right.blockNumber ?? 0) - (left.blockNumber ?? 0);
if (blockDelta !== 0) {
return blockDelta;
}
return right.txHash.localeCompare(left.txHash);
});
}
function sortTimestampedNewestFirst<T extends { timestamp: string }>(
items: T[],
maxItems: number,
) {
return [...items]
.sort((left, right) => parseProofTimestamp(right.timestamp) - parseProofTimestamp(left.timestamp))
.slice(0, maxItems);
}
function sortCreatedNewestFirst<T extends { createdAt: string }>(
items: T[],
maxItems: number,
) {
return [...items]
.sort((left, right) => parseProofTimestamp(right.createdAt) - parseProofTimestamp(left.createdAt))
.slice(0, maxItems);
}
function sameStoredProofRun(
left: StoredProofRecord,
right: StoredProofRecord,
) {
if (
left.proofRegistryTxHash &&
right.proofRegistryTxHash &&
left.proofRegistryTxHash === right.proofRegistryTxHash
) {
return true;
}
if (
left.proofRegistryProofId &&
right.proofRegistryProofId &&
left.proofRegistryProofId === right.proofRegistryProofId &&
left.proofRegistryAddress &&
right.proofRegistryAddress &&
left.proofRegistryAddress.toLowerCase() === right.proofRegistryAddress.toLowerCase()
) {
return true;
}
if (left.txHash && right.txHash && left.txHash === right.txHash) {
return true;
}
const leftHasRunIdentity = Boolean(
left.proofRegistryTxHash || left.proofRegistryProofId || left.txHash,
);
const rightHasRunIdentity = Boolean(
right.proofRegistryTxHash || right.proofRegistryProofId || right.txHash,
);
return !leftHasRunIdentity && !rightHasRunIdentity && left.cid === right.cid;
}
async function readLocalStoreFile(): Promise<RuntimeStore | null> {
const candidatePaths = [LOCAL_STORE_PATH, LEGACY_LOCAL_STORE_PATH];
try {
for (const candidatePath of candidatePaths) {
try {
const raw = await fs.readFile(candidatePath, "utf8");
const parsed = JSON.parse(raw) as Partial<RuntimeStore>;
return {
proofs: Array.isArray(parsed.proofs) ? parsed.proofs : [],
agentMemories: Array.isArray(parsed.agentMemories)
? parsed.agentMemories
: [],
blacklist: Array.isArray(parsed.blacklist) ? parsed.blacklist : [],
stressReports: Array.isArray(parsed.stressReports)
? parsed.stressReports
: [],
zkReasoningProofs: Array.isArray(parsed.zkReasoningProofs)
? parsed.zkReasoningProofs
: [],
governanceDecisions: Array.isArray(parsed.governanceDecisions)
? parsed.governanceDecisions
: [],
crossAgentHandshakes: Array.isArray(parsed.crossAgentHandshakes)
? parsed.crossAgentHandshakes
: [],
zkComplianceProofs: Array.isArray(parsed.zkComplianceProofs)
? parsed.zkComplianceProofs
: [],
agentNftMetadata: Array.isArray(parsed.agentNftMetadata)
? parsed.agentNftMetadata
: [],
settings: parsed.settings
? { ...getDefaultSettingsState(), ...parsed.settings }
: getDefaultSettingsState(),
};
} catch {
continue;
}
}
} catch {
return null;
}
return null;
}
async function writeLocalStoreFile(store: RuntimeStore) {
try {
await fs.mkdir(path.dirname(LOCAL_STORE_PATH), { recursive: true });
await fs.writeFile(LOCAL_STORE_PATH, JSON.stringify(store, null, 2), "utf8");
} catch (error) {
console.warn("[runtime-store] Local file write failed:", error);
}
}
async function readGlobalStatsLedgerLocalFile(): Promise<GlobalStatsLedger | null> {
try {
const raw = await fs.readFile(GLOBAL_STATS_LEDGER_LOCAL_PATH, "utf8");
return normalizeGlobalStatsLedger(JSON.parse(raw) as Partial<GlobalStatsLedger>);
} catch {
return null;
}
}
async function writeGlobalStatsLedgerLocalFile(ledger: GlobalStatsLedger) {
try {
await fs.mkdir(path.dirname(GLOBAL_STATS_LEDGER_LOCAL_PATH), { recursive: true });
await fs.writeFile(
GLOBAL_STATS_LEDGER_LOCAL_PATH,
JSON.stringify(ledger, null, 2),
"utf8",
);
} catch (error) {
console.warn("[runtime-store] Global stats ledger write failed:", error);
}
}
async function loadLocalStore(): Promise<RuntimeStore> {
const cached = getLocalStore();
const fromDisk = await readLocalStoreFile();
if (fromDisk) {
globalStore.__yieldboostRuntimeStore = fromDisk;
return fromDisk;
}
return cached;
}
async function loadGlobalStatsLedger(): Promise<GlobalStatsLedger> {
if (isRuntimeStoreKvConfigured()) {
try {
const payload = await kv.get<GlobalStatsLedger>(GLOBAL_STATS_LEDGER_KEY);
if (payload) {
return normalizeGlobalStatsLedger(payload);
}
} catch (error) {
console.warn("[runtime-store] Global stats ledger KV read failed:", error);
}
}
return (await readGlobalStatsLedgerLocalFile()) ?? createEmptyGlobalStatsLedger();
}
async function persistGlobalStatsLedger(ledger: GlobalStatsLedger) {
const normalized = normalizeGlobalStatsLedger(ledger);
if (isRuntimeStoreKvConfigured()) {
try {
await kv.set(GLOBAL_STATS_LEDGER_KEY, normalized);
return normalized;
} catch (error) {
console.warn("[runtime-store] Global stats ledger KV write failed:", error);
}
}
await writeGlobalStatsLedgerLocalFile(normalized);
return normalized;
}
// --- Public API (async) ---
export async function recordStoredProof(
record: StoredProofRecord,
): Promise<StoredProofRecord> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredProofRecord>(PROOFS_KEY, 0, MAX_PROOFS - 1);
const filtered = (existing ?? []).filter((item) => !sameStoredProofRun(item, record));
const next = sortProofsNewestFirst([record, ...filtered]).slice(0, MAX_PROOFS);
await kv.del(PROOFS_KEY);
if (next.length > 0) {
// lpush accepts variadic; push in reverse so head = newest
await kv.lpush(PROOFS_KEY, ...next.slice().reverse());
}
const statsLedger = await loadGlobalStatsLedger();
if (mergeGlobalStatsLedgerRecord(statsLedger, record)) {
await persistGlobalStatsLedger(statsLedger);
}
return record;
} catch (error) {
console.warn("[runtime-store] KV write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.proofs = sortProofsNewestFirst([
record,
...store.proofs.filter((item) => !sameStoredProofRun(item, record)),
]).slice(0, MAX_PROOFS);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
const statsLedger = await loadGlobalStatsLedger();
if (mergeGlobalStatsLedgerRecord(statsLedger, record)) {
await persistGlobalStatsLedger(statsLedger);
}
return record;
}
export async function getGlobalStatsLedger(): Promise<GlobalStatsLedger> {
return loadGlobalStatsLedger();
}
export async function mergeGlobalStatsLedgerFromProofs(
proofs: StoredProofRecord[],
): Promise<GlobalStatsLedger> {
const ledger = await loadGlobalStatsLedger();
let changed = false;
for (const proof of proofs) {
changed = mergeGlobalStatsLedgerRecord(ledger, proof) || changed;
}
if (!changed) {
return ledger;
}
return persistGlobalStatsLedger(ledger);
}
export async function getStoredProofs(): Promise<StoredProofRecord[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredProofRecord>(PROOFS_KEY, 0, MAX_PROOFS - 1);
return sortProofsNewestFirst(items ?? []);
} catch (error) {
console.warn("[runtime-store] KV read failed, using local fallback:", error);
}
}
return sortProofsNewestFirst((await loadLocalStore()).proofs);
}
export async function getStoredProofByCid(
cid: string,
): Promise<StoredProofRecord | null> {
const proofs = await getStoredProofs();
return proofs.find((proof) => proof.cid === cid) ?? null;
}
export async function getLatestStoredProof(): Promise<StoredProofRecord | null> {
const proofs = await getStoredProofs();
return proofs[0] ?? null;
}
export async function getLatestStoredProofForWallet(
walletAddress: string,
networkKey?: StoredProofRecord["networkKey"],
): Promise<StoredProofRecord | null> {
const proofs = await getStoredProofs();
return (
proofs.find(
(proof) =>
sameWalletAddress(proof.walletAddress, walletAddress) &&
(!networkKey || proof.networkKey === networkKey),
) ?? null
);
}
export async function recordAgentMemory(
record: StoredAgentMemoryRecord,
): Promise<StoredAgentMemoryRecord> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredAgentMemoryRecord>(
MEMORIES_KEY,
0,
MAX_MEMORY_RECORDS - 1,
);
const filtered = (existing ?? []).filter((item) => item.id !== record.id);
const next = sortTimestampedNewestFirst(
[record, ...filtered],
MAX_MEMORY_RECORDS,
);
await kv.del(MEMORIES_KEY);
if (next.length > 0) {
await kv.lpush(MEMORIES_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV memory write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.agentMemories = sortTimestampedNewestFirst(
[record, ...store.agentMemories.filter((item) => item.id !== record.id)],
MAX_MEMORY_RECORDS,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function getAgentMemories(): Promise<StoredAgentMemoryRecord[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredAgentMemoryRecord>(
MEMORIES_KEY,
0,
MAX_MEMORY_RECORDS - 1,
);
return sortTimestampedNewestFirst(items ?? [], MAX_MEMORY_RECORDS);
} catch (error) {
console.warn("[runtime-store] KV memory read failed, using local fallback:", error);
}
}
return sortTimestampedNewestFirst(
(await loadLocalStore()).agentMemories,
MAX_MEMORY_RECORDS,
);
}
export async function getLatestAgentMemory(
agentId?: string,
networkKey?: StoredAgentMemoryRecord["networkKey"],
): Promise<StoredAgentMemoryRecord | null> {
const memories = await getAgentMemories();
return (
memories.find(
(memory) =>
(!agentId || memory.agentId === agentId) &&
(!networkKey || memory.networkKey === networkKey),
) ?? null
);
}
export async function recordBlacklistEntry(
record: StoredBlacklistRecord,
): Promise<StoredBlacklistRecord> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredBlacklistRecord>(
BLACKLIST_KEY,
0,
MAX_BLACKLIST_RECORDS - 1,
);
const filtered = (existing ?? []).filter(
(item) => item.fingerprint !== record.fingerprint,
);
const next = sortTimestampedNewestFirst(
[record, ...filtered],
MAX_BLACKLIST_RECORDS,
);
await kv.del(BLACKLIST_KEY);
if (next.length > 0) {
await kv.lpush(BLACKLIST_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV blacklist write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.blacklist = sortTimestampedNewestFirst(
[
record,
...store.blacklist.filter(
(item) => item.fingerprint !== record.fingerprint,
),
],
MAX_BLACKLIST_RECORDS,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function getBlacklistEntries(): Promise<StoredBlacklistRecord[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredBlacklistRecord>(
BLACKLIST_KEY,
0,
MAX_BLACKLIST_RECORDS - 1,
);
return sortTimestampedNewestFirst(items ?? [], MAX_BLACKLIST_RECORDS);
} catch (error) {
console.warn("[runtime-store] KV blacklist read failed, using local fallback:", error);
}
}
return sortTimestampedNewestFirst(
(await loadLocalStore()).blacklist,
MAX_BLACKLIST_RECORDS,
);
}
export async function recordStressTestReport(
record: StoredStressTestReport,
): Promise<StoredStressTestReport> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredStressTestReport>(
STRESS_REPORTS_KEY,
0,
MAX_STRESS_REPORTS - 1,
);
const filtered = (existing ?? []).filter((item) => item.id !== record.id);
const next = sortTimestampedNewestFirst(
[record, ...filtered],
MAX_STRESS_REPORTS,
);
await kv.del(STRESS_REPORTS_KEY);
if (next.length > 0) {
await kv.lpush(STRESS_REPORTS_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV stress report write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.stressReports = sortTimestampedNewestFirst(
[record, ...store.stressReports.filter((item) => item.id !== record.id)],
MAX_STRESS_REPORTS,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function getStressTestReports(): Promise<StoredStressTestReport[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredStressTestReport>(
STRESS_REPORTS_KEY,
0,
MAX_STRESS_REPORTS - 1,
);
return sortTimestampedNewestFirst(items ?? [], MAX_STRESS_REPORTS);
} catch (error) {
console.warn("[runtime-store] KV stress report read failed, using local fallback:", error);
}
}
return sortTimestampedNewestFirst(
(await loadLocalStore()).stressReports,
MAX_STRESS_REPORTS,
);
}
export async function getLatestStressTestReport(
agentId?: string,
networkKey?: StoredStressTestReport["networkKey"],
): Promise<StoredStressTestReport | null> {
const reports = await getStressTestReports();
return (
reports.find(
(report) =>
(!agentId || report.agentId === agentId) &&
(!networkKey || report.networkKey === networkKey),
) ?? null
);
}
export async function recordZkReasoningProof(
record: StoredZkReasoningProof,
): Promise<StoredZkReasoningProof> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredZkReasoningProof>(
ZK_REASONING_PROOFS_KEY,
0,
MAX_ZK_REASONING_PROOFS - 1,
);
const filtered = (existing ?? []).filter((item) => item.proofId !== record.proofId);
const next = sortCreatedNewestFirst(
[record, ...filtered],
MAX_ZK_REASONING_PROOFS,
);
await kv.del(ZK_REASONING_PROOFS_KEY);
if (next.length > 0) {
await kv.lpush(ZK_REASONING_PROOFS_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV ZK proof write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.zkReasoningProofs = sortCreatedNewestFirst(
[
record,
...store.zkReasoningProofs.filter((item) => item.proofId !== record.proofId),
],
MAX_ZK_REASONING_PROOFS,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function getZkReasoningProofs(): Promise<StoredZkReasoningProof[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredZkReasoningProof>(
ZK_REASONING_PROOFS_KEY,
0,
MAX_ZK_REASONING_PROOFS - 1,
);
return sortCreatedNewestFirst(items ?? [], MAX_ZK_REASONING_PROOFS);
} catch (error) {
console.warn("[runtime-store] KV ZK proof read failed, using local fallback:", error);
}
}
return sortCreatedNewestFirst(
(await loadLocalStore()).zkReasoningProofs,
MAX_ZK_REASONING_PROOFS,
);
}
export async function getLatestZkReasoningProof(input: {
walletAddress?: string;
agentId?: string;
networkKey?: WalletNetworkKey;
} = {}): Promise<StoredZkReasoningProof | null> {
const proofs = await getZkReasoningProofs();
return (
proofs.find(
(proof) =>
(!input.networkKey || proof.networkKey === input.networkKey) &&
(!input.walletAddress || sameWalletAddress(proof.walletAddress, input.walletAddress)) &&
(!input.agentId || proof.agentId === input.agentId),
) ?? null
);
}
export async function recordGovernanceDecision(
record: StoredGovernanceDecision,
): Promise<StoredGovernanceDecision> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredGovernanceDecision>(
GOVERNANCE_DECISIONS_KEY,
0,
MAX_GOVERNANCE_DECISIONS - 1,
);
const filtered = (existing ?? []).filter((item) => item.governanceId !== record.governanceId);
const next = sortCreatedNewestFirst(
[record, ...filtered],
MAX_GOVERNANCE_DECISIONS,
);
await kv.del(GOVERNANCE_DECISIONS_KEY);
if (next.length > 0) {
await kv.lpush(GOVERNANCE_DECISIONS_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV governance write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.governanceDecisions = sortCreatedNewestFirst(
[
record,
...store.governanceDecisions.filter(
(item) => item.governanceId !== record.governanceId,
),
],
MAX_GOVERNANCE_DECISIONS,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function getGovernanceDecisions(): Promise<StoredGovernanceDecision[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredGovernanceDecision>(
GOVERNANCE_DECISIONS_KEY,
0,
MAX_GOVERNANCE_DECISIONS - 1,
);
return sortCreatedNewestFirst(items ?? [], MAX_GOVERNANCE_DECISIONS);
} catch (error) {
console.warn("[runtime-store] KV governance read failed, using local fallback:", error);
}
}
return sortCreatedNewestFirst(
(await loadLocalStore()).governanceDecisions,
MAX_GOVERNANCE_DECISIONS,
);
}
export async function getLatestGovernanceDecision(input: {
walletAddress?: string;
agentId?: string;
networkKey?: WalletNetworkKey;
} = {}): Promise<StoredGovernanceDecision | null> {
const decisions = await getGovernanceDecisions();
return (
decisions.find(
(decision) =>
(!input.networkKey || decision.networkKey === input.networkKey) &&
(!input.walletAddress || sameWalletAddress(decision.walletAddress, input.walletAddress)) &&
(!input.agentId || decision.agentId === input.agentId),
) ?? null
);
}
export async function recordCrossAgentHandshake(
record: StoredCrossAgentHandshake,
): Promise<StoredCrossAgentHandshake> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredCrossAgentHandshake>(
CROSS_AGENT_HANDSHAKES_KEY,
0,
MAX_CROSS_AGENT_HANDSHAKES - 1,
);
const filtered = (existing ?? []).filter((item) => item.handshakeId !== record.handshakeId);
const next = sortCreatedNewestFirst(
[record, ...filtered],
MAX_CROSS_AGENT_HANDSHAKES,
);
await kv.del(CROSS_AGENT_HANDSHAKES_KEY);
if (next.length > 0) {
await kv.lpush(CROSS_AGENT_HANDSHAKES_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV handshake write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.crossAgentHandshakes = sortCreatedNewestFirst(
[
record,
...store.crossAgentHandshakes.filter(
(item) => item.handshakeId !== record.handshakeId,
),
],
MAX_CROSS_AGENT_HANDSHAKES,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function recordZkComplianceProof(
record: StoredZkComplianceProof,
): Promise<StoredZkComplianceProof> {
if (isRuntimeStoreKvConfigured()) {
try {
const existing = await kv.lrange<StoredZkComplianceProof>(
ZK_COMPLIANCE_PROOFS_KEY,
0,
MAX_ZK_COMPLIANCE_PROOFS - 1,
);
const filtered = (existing ?? []).filter((item) => item.proofId !== record.proofId);
const next = sortCreatedNewestFirst(
[record, ...filtered],
MAX_ZK_COMPLIANCE_PROOFS,
);
await kv.del(ZK_COMPLIANCE_PROOFS_KEY);
if (next.length > 0) {
await kv.lpush(ZK_COMPLIANCE_PROOFS_KEY, ...next.slice().reverse());
}
return record;
} catch (error) {
console.warn("[runtime-store] KV ZK compliance write failed, using local fallback:", error);
}
}
const store = await loadLocalStore();
store.zkComplianceProofs = sortCreatedNewestFirst(
[
record,
...store.zkComplianceProofs.filter((item) => item.proofId !== record.proofId),
],
MAX_ZK_COMPLIANCE_PROOFS,
);
globalStore.__yieldboostRuntimeStore = store;
await writeLocalStoreFile(store);
return record;
}
export async function getZkComplianceProofs(): Promise<StoredZkComplianceProof[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredZkComplianceProof>(
ZK_COMPLIANCE_PROOFS_KEY,
0,
MAX_ZK_COMPLIANCE_PROOFS - 1,
);
return sortCreatedNewestFirst(items ?? [], MAX_ZK_COMPLIANCE_PROOFS);
} catch (error) {
console.warn("[runtime-store] KV ZK compliance read failed, using local fallback:", error);
}
}
return sortCreatedNewestFirst(
(await loadLocalStore()).zkComplianceProofs,
MAX_ZK_COMPLIANCE_PROOFS,
);
}
export async function getLatestZkComplianceProof(input: {
walletAddress?: string;
agentId?: string;
networkKey?: WalletNetworkKey;
} = {}): Promise<StoredZkComplianceProof | null> {
const proofs = await getZkComplianceProofs();
return (
proofs.find(
(proof) =>
(!input.networkKey || proof.networkKey === input.networkKey) &&
(!input.walletAddress || sameWalletAddress(proof.walletAddress, input.walletAddress)) &&
(!input.agentId || proof.agentId === input.agentId),
) ?? null
);
}
export async function getCrossAgentHandshakes(): Promise<StoredCrossAgentHandshake[]> {
if (isRuntimeStoreKvConfigured()) {
try {
const items = await kv.lrange<StoredCrossAgentHandshake>(
CROSS_AGENT_HANDSHAKES_KEY,
0,
MAX_CROSS_AGENT_HANDSHAKES - 1,
);
return sortCreatedNewestFirst(items ?? [], MAX_CROSS_AGENT_HANDSHAKES);
} catch (error) {
console.warn("[runtime-store] KV handshake read failed, using local fallback:", error);
}
}
return sortCreatedNewestFirst(
(await loadLocalStore()).crossAgentHandshakes,
MAX_CROSS_AGENT_HANDSHAKES,
);
}
export async function getLatestCrossAgentHandshake(input: {
walletAddress?: string;
requestingAgent?: string;
respondingAgent?: string;
networkKey?: WalletNetworkKey;
} = {}): Promise<StoredCrossAgentHandshake | null> {
const handshakes = await getCrossAgentHandshakes();