Skip to content

Commit 8c3e665

Browse files
authored
Merge pull request #10998 from ChainLabo/chainlabo_staking_10281
adding ChainLabo saas [Closes #10281]
2 parents 9cf58ca + 8d4e1fa commit 8c3e665

File tree

4 files changed

+55
-4
lines changed

4 files changed

+55
-4
lines changed

docs/ds-implementation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ Follow the new component directory structure:
1717
```markdown
1818
src/
1919
└── components/
20-
└── ComponentA/
21-
├── index.tsx
22-
├── ComponentA.stories.tsx
23-
└── // Any other files as applicable (utils, child components, useHook, etc.)
20+
└── ComponentA/
21+
├── index.tsx
22+
├── ComponentA.stories.tsx
23+
└── // Any other files as applicable (utils, child components, useHook, etc.)
2424
```
2525

2626
## Components creation/modification from the DS
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+
4+
export const ChainLaboGlyphIcon = createIcon({
5+
displayName: "ChainLaboGlyphIcon",
6+
viewBox: "0 0 32 32",
7+
defaultProps: {
8+
width: "32px",
9+
height: "32px",
10+
},
11+
path: [
12+
<path
13+
fill="currentColor"
14+
d="M20.18 1.09A15.85 15.85 0 0 0 13.2.73a1.6 1.6 0 0 0 .46 3.15h.02l.11-.02a12.71 12.71 0 0 1 14.12 8.37v.01a1.57 1.57 0 0 1 .05 1 1.58 1.58 0 0 1-1.16 1.12h-.01a1.6 1.6 0 0 1-.79-.01 1.58 1.58 0 0 1-1.07-1.03h-.01a9.52 9.52 0 0 0-6.46-6.1 1.6 1.6 0 0 0-.86 3.06 6.36 6.36 0 1 1-3.41 12.25 6.35 6.35 0 0 1-4.37-4.26l-.01-.03a1.6 1.6 0 0 0-3.04.08 1.6 1.6 0 0 0 0 .86 9.54 9.54 0 0 0 18.32-.21l.05-.22.01-.03.02-.06a1.59 1.59 0 0 1 1.8-1.14l.15.04a1.6 1.6 0 0 1 1.13 1.86l-.02.1-.08.3a12.64 12.64 0 0 1-3.9 6.18l-.1.1a1.58 1.58 0 0 0-.27 1.97l.1.13a1.59 1.59 0 0 0 .84.57 1.58 1.58 0 0 0 1.45-.32 15.9 15.9 0 0 0-6.1-27.36m.95 28.47a1.57 1.57 0 0 0-1.02-.88 1.63 1.63 0 0 0-.77-.02h-.02l-.12.04a1.59 1.59 0 0 0-1.05 1.08 1.59 1.59 0 1 0 3.03-.09l-.05-.13m-11.34-2A12.72 12.72 0 0 1 3.65 13l.02-.08a1.6 1.6 0 0 0-1.1-1.96 1.6 1.6 0 0 0-1.93 1.02v.01l-.04.1-.01.05A15.91 15.91 0 0 0 8.1 30.27a1.6 1.6 0 0 0 1.68-2.7M8.5 14.1a1.59 1.59 0 1 0-.92-2.37l-.08.14a1.59 1.59 0 0 0 1 2.23"
15+
/>,
16+
],
17+
})

src/components/icons/staking/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export * from "./EconomicalIcon"
1313
export * from "./EthpoolGlyphIcon"
1414
export * from "./GreenCheckProductGlyphIcon"
1515
export * from "./KilnGlyphIcon"
16+
export * from "./ChainLaboGlyphIcon"
1617
export * from "./LaunchnodesGlyphIcon"
1718
export * from "./LidoGlyphIcon"
1819
export * from "./LiquidityTokenIcon"

src/data/staking-products.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,39 @@
356356
}
357357
],
358358
"saas": [
359+
{
360+
"name": "ChainLabo",
361+
"imageName": "ChainLabo",
362+
"hue": 248,
363+
"launchDate": "2023-04-01",
364+
"url": "https://www.chainlabo.com/",
365+
"audits": [],
366+
"minEth": 32,
367+
"additionalStake": null,
368+
"additionalStakeUnit": null,
369+
"monthlyFee": 200,
370+
"monthlyFeeUnit": "CHF",
371+
"isFoss": false,
372+
"hasBugBounty": false,
373+
"isTrustless": true,
374+
"isPermissionless": false,
375+
"pctMajorityExecutionClient": 100,
376+
"pctMajorityConsensusClient": 0,
377+
"isSelfCustody": true,
378+
"platforms": ["Browser"],
379+
"ui": ["GUI"],
380+
"socials": {
381+
"discord": "https://discord.gg/3xmHwXxk",
382+
"twitter": "https://twitter.com/ChainLabo",
383+
"github": "https://github.com/ChainLabo",
384+
"telegram": "https://web.telegram.org/a/#-1919442359"
385+
},
386+
"matomo": {
387+
"eventCategory": "StakingProductCard",
388+
"eventAction": "Clicked",
389+
"eventName": "Clicked ChainLabo go to link"
390+
}
391+
},
359392
{
360393
"name": "stakefish",
361394
"imageName": "Stakefish",

0 commit comments

Comments
 (0)