From a304633242c125e6f45c526ec4aef14043ac44a6 Mon Sep 17 00:00:00 2001 From: Nico Serventi Date: Thu, 20 Aug 2026 11:51:41 -0700 Subject: [PATCH 1/2] feat: add FIL One addresses to known addresses Co-Authored-By: Claude Fable 5 --- apps/explorer/src/constants/known-addresses.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/explorer/src/constants/known-addresses.ts b/apps/explorer/src/constants/known-addresses.ts index 57b2ccc5..ba953a91 100644 --- a/apps/explorer/src/constants/known-addresses.ts +++ b/apps/explorer/src/constants/known-addresses.ts @@ -8,4 +8,7 @@ export const knownAddresses: Record = { "0x8408502033c418e1bbc97ce9ac48e5528f371a9f": "FWSS", "0xa53bbc04a0a2b7a7e62a78a24dd6c9280f611b97": "Qave", "0xf88c59cf5ba1e904079079c8ce03148490cb09f8": "Filosign", + "0x9d4f07b948e87941a4bf4ab335d7a7d854843d75": "FIL One Storage", + "0x4f9e434c5842d16f4f9ed92213ba4eb3a6ffc383": "FIL One Delivery Validator", + "0x5b27dbc6efefbb5ba8106fb19433048d60d6878f": "FIL One", }; From 15c879509d5de8bde7c835db283d7210d1e4d689 Mon Sep 17 00:00:00 2001 From: Nico Serventi Date: Mon, 24 Aug 2026 14:01:15 -0700 Subject: [PATCH 2/2] docs: annotate FIL One entries with role and service description Co-Authored-By: Claude Fable 5 --- apps/explorer/src/constants/known-addresses.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/explorer/src/constants/known-addresses.ts b/apps/explorer/src/constants/known-addresses.ts index ba953a91..7fce5b30 100644 --- a/apps/explorer/src/constants/known-addresses.ts +++ b/apps/explorer/src/constants/known-addresses.ts @@ -8,7 +8,13 @@ export const knownAddresses: Record = { "0x8408502033c418e1bbc97ce9ac48e5528f371a9f": "FWSS", "0xa53bbc04a0a2b7a7e62a78a24dd6c9280f611b97": "Qave", "0xf88c59cf5ba1e904079079c8ce03148490cb09f8": "Filosign", + // FIL One (Filecoin Foundation's storage subsidiary) pays its storage vendor + // over Filecoin Pay under a reserved-capacity MSA. + // Operator: named service contract (implements IFilecoinServiceMetadata, + // Sourcify-verified; name() returns "FIL One Storage"). "0x9d4f07b948e87941a4bf4ab335d7a7d854843d75": "FIL One Storage", + // Validator: clamps settlement to owner-signed delivery attestations. "0x4f9e434c5842d16f4f9ed92213ba4eb3a6ffc383": "FIL One Delivery Validator", + // Payer: FIL One's operating wallet (payer on FIL One Storage rails). "0x5b27dbc6efefbb5ba8106fb19433048d60d6878f": "FIL One", };