diff --git a/src/components/Staking/StakingProductsCardGrid.tsx b/src/components/Staking/StakingProductsCardGrid.tsx
index 3302b972c78..d3bcc0f572a 100644
--- a/src/components/Staking/StakingProductsCardGrid.tsx
+++ b/src/components/Staking/StakingProductsCardGrid.tsx
@@ -35,6 +35,7 @@ import {
KilnGlyphIcon,
LidoGlyphIcon,
RocketPoolGlyphIcon,
+ RockXGlyphIcon,
SenseiNodeGlyphIcon,
StafiGlyphIcon,
StakefishGlyphIcon,
@@ -79,6 +80,7 @@ const getIconFromName = (
kiln: KilnGlyphIcon,
lido: LidoGlyphIcon,
rocketPool: RocketPoolGlyphIcon,
+ rockX: RockXGlyphIcon,
senseiNode: SenseiNodeGlyphIcon,
stafi: StafiGlyphIcon,
stakewise: StakewiseGlyphIcon,
diff --git a/src/components/icons/staking/RockXGlyphIcon.tsx b/src/components/icons/staking/RockXGlyphIcon.tsx
new file mode 100644
index 00000000000..7af6e7a1698
--- /dev/null
+++ b/src/components/icons/staking/RockXGlyphIcon.tsx
@@ -0,0 +1,19 @@
+import React from "react"
+import { createIcon } from "@chakra-ui/react"
+import { commonIconDefaultProps } from "../utils"
+
+export const RockXGlyphIcon = createIcon({
+ displayName: "RockXGlyphIcon",
+ viewBox: "0 0 33 33",
+ defaultProps: {
+ width: "33px",
+ height: "33px",
+ fill: "currentColor",
+ fillOpacity: "0.66",
+ ...commonIconDefaultProps,
+ },
+ path: [
+ ,
+ ,
+ ],
+})
diff --git a/src/components/icons/staking/index.ts b/src/components/icons/staking/index.ts
index 8c5bf394ce1..acb52285e7a 100644
--- a/src/components/icons/staking/index.ts
+++ b/src/components/icons/staking/index.ts
@@ -20,6 +20,7 @@ export * from "./MultiClientIcon"
export * from "./OpenSourceStakingIcon"
export * from "./PermissionlessIcon"
export * from "./RocketPoolGlyphIcon"
+export * from "./RockXGlyphIcon"
export * from "./SelfCustodyIcon"
export * from "./SquidGlyphIcon"
export * from "./SenseiNodeGlyphIcon"
diff --git a/src/data/staking-products.json b/src/data/staking-products.json
index 1479d13ecda..25a63868667 100644
--- a/src/data/staking-products.json
+++ b/src/data/staking-products.json
@@ -815,6 +815,47 @@
"eventAction": "Clicked",
"eventName": "Clicked StaFi go to link"
}
+ },
+ {
+ "name": "Bedrock",
+ "imageName": "rockX",
+ "hue": 224,
+ "launchDate": "2022-09-29",
+ "url": "https://bedrock.rockx.com/",
+ "audits": [
+ {
+ "name": "PeckSheild",
+ "url": "https://github.com/RockX-SG/stake/blob/main/PeckShield-Audit-Report-RockXStaking-v1.0.pdf"
+ }
+ ],
+ "minEth": 0,
+ "feePercentage": 10,
+ "tokens": [
+ {
+ "name": "Universal ETH",
+ "symbol": "uniETH",
+ "address": "0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4"
+ }
+ ],
+ "isFoss": true,
+ "hasBugBounty": false,
+ "isTrustless": true,
+ "hasPermissionlessNodes": false,
+ "pctMajorityClient": 100,
+ "platforms": ["Browser"],
+ "ui": ["GUI"],
+ "socials": {
+ "discord": "https://discord.gg/YJzs4UwsTp",
+ "twitter": "ttps://twitter.com/rockx_official",
+ "github": "https://github.com/RockX-SG/stake",
+ "linkedin": "https://www.linkedin.com/company/rockx-official",
+ "youtube": "https://www.youtube.com/@rockx_official"
+ },
+ "matomo": {
+ "eventCategory": "StakingProductCard",
+ "eventAction": "Clicked",
+ "eventName": "Clicked Bedrock go to link"
+ }
}
]
}