Skip to content

Commit

Permalink
Merge pull request #10260 from ethereum/bedrock-rockx
Browse files Browse the repository at this point in the history
Add Bedrock (RockX) to pooled staking products [Closes #9792]
  • Loading branch information
corwintines authored May 19, 2023
2 parents 89adf40 + 815bec9 commit aec3cbc
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Staking/StakingProductsCardGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import {
KilnGlyphIcon,
LidoGlyphIcon,
RocketPoolGlyphIcon,
RockXGlyphIcon,
SenseiNodeGlyphIcon,
StafiGlyphIcon,
StakefishGlyphIcon,
Expand Down Expand Up @@ -79,6 +80,7 @@ const getIconFromName = (
kiln: KilnGlyphIcon,
lido: LidoGlyphIcon,
rocketPool: RocketPoolGlyphIcon,
rockX: RockXGlyphIcon,
senseiNode: SenseiNodeGlyphIcon,
stafi: StafiGlyphIcon,
stakewise: StakewiseGlyphIcon,
Expand Down
19 changes: 19 additions & 0 deletions src/components/icons/staking/RockXGlyphIcon.tsx
Original file line number Diff line number Diff line change
@@ -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: [
<path d="M13.0958 13.8588C11.4265 15.5274 11.4265 18.2329 13.0958 19.9016L24.8278 31.6289C26.4971 33.2976 29.2036 33.2975 30.873 31.6289C32.5423 29.9602 32.5424 27.2547 30.873 25.586L22.1637 16.8802L28.0579 10.9882C29.7273 9.31956 29.7273 6.61413 28.0579 4.94542C26.3886 3.27672 23.6821 3.27674 22.0127 4.94542L13.0958 13.8588Z" />,
<path d="M19.1542 19.902C20.8235 18.2333 20.8235 15.5278 19.1542 13.8591L7.42222 2.13188C5.75288 0.463202 3.04635 0.463202 1.37701 2.13188C-0.292335 3.80056 -0.292335 6.50601 1.37701 8.17469L10.0863 16.8806L4.19205 22.7725C2.52271 24.4412 2.52271 27.1466 4.19205 28.8153C5.86139 30.484 8.56792 30.484 10.2373 28.8153L19.1542 19.902Z" />,
],
})
1 change: 1 addition & 0 deletions src/components/icons/staking/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
41 changes: 41 additions & 0 deletions src/data/staking-products.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
]
}

0 comments on commit aec3cbc

Please sign in to comment.