From 511f0c2e007002652cab9258114472ff2f1fca9d Mon Sep 17 00:00:00 2001 From: Chris Berry Date: Wed, 14 Jan 2026 17:48:26 +0000 Subject: [PATCH 1/4] Add Bitwise SaaS. --- src/components/icons/Icons.stories.tsx | 2 + .../icons/staking/bitwise-glyph.svg | 3 ++ src/components/icons/staking/index.ts | 2 + src/data/staking-products.json | 38 +++++++++++++++++++ 4 files changed, 45 insertions(+) create mode 100644 src/components/icons/staking/bitwise-glyph.svg diff --git a/src/components/icons/Icons.stories.tsx b/src/components/icons/Icons.stories.tsx index 7164fd3f251..3b9ed5b22fb 100644 --- a/src/components/icons/Icons.stories.tsx +++ b/src/components/icons/Icons.stories.tsx @@ -29,6 +29,7 @@ import { AvadoGlyphIcon, BattleTestedIcon, BedrockGlyphIcon, + BitwiseGlyphIcon, BugBountyIcon, CautionProductGlyph, ChainLaboGlyphIcon, @@ -106,6 +107,7 @@ const iconsDefinitions = [ { label: "AuditedIcon", Icon: AuditedIcon }, { label: "AvadoGlyphIcon", Icon: AvadoGlyphIcon }, { label: "BattleTestedIcon", Icon: BattleTestedIcon }, + { label: "BitwiseGlyphIcon", Icon: BitwiseGlyphIcon }, { label: "BedrockGlyphIcon", Icon: BedrockGlyphIcon }, { label: "BrowserIcon", Icon: BrowserIcon }, { label: "BugBountyIcon", Icon: BugBountyIcon }, diff --git a/src/components/icons/staking/bitwise-glyph.svg b/src/components/icons/staking/bitwise-glyph.svg new file mode 100644 index 00000000000..e300cbc45b6 --- /dev/null +++ b/src/components/icons/staking/bitwise-glyph.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/icons/staking/index.ts b/src/components/icons/staking/index.ts index b36f2311e18..0789b7eac4f 100644 --- a/src/components/icons/staking/index.ts +++ b/src/components/icons/staking/index.ts @@ -5,6 +5,7 @@ import AuditedIcon from "./audited.svg" import AvadoGlyphIcon from "./avado-glyph.svg" import BattleTestedIcon from "./battle-tested.svg" import BedrockGlyphIcon from "./bedrock-glyph.svg" +import BitwiseGlyphIcon from "./bitwise-glyph.svg" import BugBountyIcon from "./bug-bounty.svg" import CautionProductGlyph from "./caution-product-glyph.svg" import ChainLaboGlyphIcon from "./chain-labo-glyph.svg" @@ -54,6 +55,7 @@ export { AvadoGlyphIcon, BattleTestedIcon, BedrockGlyphIcon, + BitwiseGlyphIcon, BugBountyIcon, CautionProductGlyph, ChainLaboGlyphIcon, diff --git a/src/data/staking-products.json b/src/data/staking-products.json index c8ba855a540..3c9b58ee044 100644 --- a/src/data/staking-products.json +++ b/src/data/staking-products.json @@ -869,6 +869,44 @@ "eventAction": "Clicked", "eventName": "Clicked Serenita go to link" } + }, + { + "name": "Bitwise", + "imageName": "Bitwise", + "hue": 231, + "launchDate": "2020-12-01", + "url": "https://www.attestant.io/", + "audits": [ + { + "name": "Batch Validator Depositor", + "url": "https://dedaub.com/audits/ethereum-foundation/ef-batch-validator-depositor-april-02-2025/" + } + ], + "minEth": 1000, + "additionalStake": null, + "additionalStakeUnit": null, + "monthlyFee": null, + "monthlyFeeUnit": null, + "isFoss": true, + "hasBugBounty": false, + "isTrustless": true, + "isPermissionless": true, + "pctMajorityExecutionClient": 0, + "pctMajorityConsensusClient": 0, + "isSelfCustody": true, + "platforms": ["Browser"], + "ui": ["GUI"], + "socials": { + "linkedin": "https://www.linkedin.com/company/attestant/", + "twitter": " https://x.com/AttestantIO", + "telegram": "https://t.me/attestant", + "github": "https://github.com/attestantio" + }, + "matomo": { + "eventCategory": "StakingProductCard", + "eventAction": "Clicked", + "eventName": "Clicked Bitwise go to link" + } } ], "pools": [ From 6f1b8873b21c9aba5f49c72c4141bd05d3141bc7 Mon Sep 17 00:00:00 2001 From: Chris Berry Date: Mon, 19 Jan 2026 14:11:14 +0000 Subject: [PATCH 2/4] Add Attestant audit links. --- src/data/staking-products.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/staking-products.json b/src/data/staking-products.json index 3c9b58ee044..f935a6aa02c 100644 --- a/src/data/staking-products.json +++ b/src/data/staking-products.json @@ -878,7 +878,11 @@ "url": "https://www.attestant.io/", "audits": [ { - "name": "Batch Validator Depositor", + "name": "SOC 2 Type II & ISO 27001", + "url": "https://www.attestant.io/certifications/" + }, + { + "name": "Dedaub - Batch Validator Depositor", "url": "https://dedaub.com/audits/ethereum-foundation/ef-batch-validator-depositor-april-02-2025/" } ], From cae0e70f780dc9e4cb067a9be0cda7370e001640 Mon Sep 17 00:00:00 2001 From: wackerow <54227730+wackerow@users.noreply.github.com> Date: Thu, 22 Jan 2026 08:45:59 -0800 Subject: [PATCH 3/4] patch: use currentColor for svg Fixes dark mode responsiveness --- src/components/icons/staking/bitwise-glyph.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/icons/staking/bitwise-glyph.svg b/src/components/icons/staking/bitwise-glyph.svg index e300cbc45b6..3c3bb7eb4d6 100644 --- a/src/components/icons/staking/bitwise-glyph.svg +++ b/src/components/icons/staking/bitwise-glyph.svg @@ -1,3 +1,3 @@ - + -