Skip to content

Commit 33202f4

Browse files
authored
Merge pull request #10041 from ethereum/sensei-node
List Sensei Node as SaaS product
2 parents 58c91d6 + 64c6c1e commit 33202f4

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed

src/components/Staking/StakingProductsCardGrid.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import {
3535
KilnGlyphIcon,
3636
LidoGlyphIcon,
3737
RocketPoolGlyphIcon,
38+
SenseiNodeGlyphIcon,
3839
StafiGlyphIcon,
3940
StakefishGlyphIcon,
4041
StakewiseGlyphIcon,
@@ -77,6 +78,7 @@ const getIconFromName = (
7778
kiln: KilnGlyphIcon,
7879
lido: LidoGlyphIcon,
7980
rocketPool: RocketPoolGlyphIcon,
81+
senseiNode: SenseiNodeGlyphIcon,
8082
stafi: StafiGlyphIcon,
8183
stakewise: StakewiseGlyphIcon,
8284
stereum: StereumGlyphIcon,
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import React from "react"
2+
import { createIcon } from "@chakra-ui/react"
3+
import { commonIconDefaultProps } from "../utils"
4+
5+
export const SenseiNodeGlyphIcon = createIcon({
6+
displayName: "SenseiNodeGlyphIcon",
7+
viewBox: "0 0 23 32",
8+
defaultProps: {
9+
width: "32px",
10+
height: "32px",
11+
...commonIconDefaultProps,
12+
},
13+
path: [
14+
<path d="M22.7664 21.7955C19.6836 18.1969 14.4691 11.8451 11.3965 8.23824C11.1442 7.94022 10.9343 7.9236 10.633 8.17827C10.034 8.70883 9.43684 9.22368 8.81471 9.74686C8.28873 10.1981 8.28504 10.2866 8.73154 10.8052L17.5417 21.3387C17.9319 21.7917 17.9282 21.8803 17.4891 22.2614C15.7907 23.7193 14.0895 25.1762 12.3856 26.6322C11.9733 26.9885 11.8134 26.9683 11.451 26.54C10.229 25.0969 9.0116 23.651 7.78311 22.2098C6.52225 20.7297 5.2537 19.2534 3.97744 17.7807L2.16935 15.6817C2.13151 15.6381 2.08127 15.6071 2.0253 15.5928C1.96934 15.5785 1.91032 15.5816 1.85616 15.6016C1.80201 15.6217 1.75527 15.6578 1.7222 15.705C1.68913 15.7523 1.67131 15.8086 1.67111 15.8662L1.60548 20.4798C1.60487 20.5475 1.62921 20.6132 1.67388 20.6642L1.75338 20.7566V20.7667C4.86299 24.3651 7.89126 27.9637 11.0092 31.5621C11.4492 32.0613 11.5731 32.0733 12.0778 31.6461C15.6145 28.632 19.1579 25.6234 22.7082 22.6204C23.0215 22.3407 23.0419 22.1174 22.7664 21.7955Z" />,
15+
<path d="M11.4197 23.3298C11.684 23.6499 11.9272 23.6472 12.2248 23.3926C12.8247 22.8527 13.4607 22.3305 14.0588 21.7796C14.4867 21.43 14.4961 21.2721 14.1318 20.8468L5.38807 10.6418C5.02943 10.2109 5.03775 10.0309 5.4648 9.66464C7.12869 8.23752 8.79504 6.81101 10.4639 5.38515C10.9584 4.96808 11.0859 4.98101 11.4982 5.46635L17.6139 12.6634C17.908 13.0103 18.2021 13.3567 18.4968 13.7024C18.5073 13.7362 18.5247 13.7676 18.5475 13.7946L20.6404 16.2148C20.678 16.2585 20.7283 16.2897 20.7842 16.3042C20.8402 16.3185 20.8992 16.3155 20.9534 16.2954C21.0075 16.2753 21.0543 16.2391 21.0872 16.1917C21.1202 16.1443 21.1378 16.088 21.1377 16.0303L21.2034 11.4168C21.2035 11.3491 21.1793 11.2836 21.1348 11.2323L20.7651 10.7986C20.7572 10.7899 20.7485 10.7819 20.7393 10.7746C17.7183 7.25269 14.9092 3.87101 11.8578 0.348136C11.4594 -0.113213 11.4446 -0.095683 10.9972 0.280779C7.45253 3.28139 3.90909 6.28323 0.366855 9.28632C-0.0953342 9.684 -0.114746 9.78827 0.274417 10.2431C2.39618 12.7455 4.51915 15.2461 6.64339 17.7447C7.55205 18.8169 10.4944 22.2484 11.4197 23.3298Z" />,
16+
],
17+
})

src/components/icons/staking/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export * from "./OpenSourceStakingIcon"
2121
export * from "./PermissionlessIcon"
2222
export * from "./RocketPoolGlyphIcon"
2323
export * from "./SelfCustodyIcon"
24+
export * from "./SenseiNodeGlyphIcon"
2425
export * from "./StafiGlyphIcon"
2526
export * from "./StakefishGlyphIcon"
2627
export * from "./StakewiseGlyphIcon"

src/data/staking-products.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,40 @@
473473
"eventAction": "Clicked",
474474
"eventName": "Clicked Abyss Finance go to link"
475475
}
476+
},
477+
{
478+
"name": "Sensei Node",
479+
"imageName": "senseiNode",
480+
"hue": 137,
481+
"launchDate": "2022-11-01",
482+
"url": "https://www.senseinode.com/",
483+
"audits": [
484+
{
485+
"name": "Coinspect",
486+
"url": "https://www.coinspect.com/doc/Coinspect%20-%20Smart%20Contract%20Audit%20-%20SenseiStake%20v221028.pdf"
487+
}
488+
],
489+
"minEth": 32,
490+
"monthlyFee": "10",
491+
"monthlyFeeUnit": "%",
492+
"isFoss": true,
493+
"hasBugBounty": false,
494+
"isTrustless": false,
495+
"isPermissionless": true,
496+
"pctMajorityClient": null,
497+
"isSelfCustody": true,
498+
"platforms": ["Browser"],
499+
"ui": ["GUI"],
500+
"socials": {
501+
"twitter": "https://twitter.com/senseinode",
502+
"medium": "https://medium.com/@senseinode",
503+
"github": "https://github.com/Sensei-Node"
504+
},
505+
"matomo": {
506+
"eventCategory": "StakingProductCard",
507+
"eventAction": "Clicked",
508+
"eventName": "Clicked Sensei Node go to link"
509+
}
476510
}
477511
],
478512
"pools": [

0 commit comments

Comments
 (0)