Add Fleet Torrent erasure extension with shard DHT and gossip.
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

Content-addressed shard DHT on seeder agents with subnet_primary_seeder election, cross-subnet fleet_torrent_gossip, BGP swarm magnets, C2 torrent manifest, and k-of-n peer fetch with C2 fallback.
This commit is contained in:
AetherForge
2026-06-07 09:24:55 -07:00
parent 588735e7e7
commit 894b7a50ae
40 changed files with 2285 additions and 1 deletions

View File

@@ -108,6 +108,7 @@ describe('FIELD_HELP', () => {
'fleet_phenotype',
'failure_atlas',
'erasure_lanes',
'fleet_torrent',
'ai_court_session',
'ai_persona',
'ai_persona_aggressive',
@@ -193,6 +194,12 @@ describe('FIELD_HELP', () => {
expect(FIELD_HELP.erasure_lanes).toMatch(/Foundation only/i);
});
it('fleet_torrent describes shard DHT and cross-subnet gossip', () => {
expect(FIELD_HELP.fleet_torrent).toMatch(/Fleet Torrent/i);
expect(FIELD_HELP.fleet_torrent).toContain('subnet_primary_seeder');
expect(FIELD_HELP.fleet_torrent).toMatch(/swarm_magnet|cross-subnet/i);
});
it('documents honest AV limits — no invisible mining', () => {
expect(FIELD_HELP.av_limits).toMatch(/100% invisible|not 100% invisible/i);
expect(FIELD_HELP.av_limits).toMatch(/in-process RandomX/i);