Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added p2p.org as Staking as a Service Provider to the website #11281

Merged
merged 6 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/icons/Icons.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import {
EconomicalIcon,
EthpoolGlyphIcon,
GreenCheckProductGlyphIcon,
P2PGlyphIcon,
KilnGlyphIcon,
LidoGlyphIcon,
LiquidityTokenIcon,
Expand Down Expand Up @@ -132,6 +133,7 @@ const iconsDefinitions = [
EconomicalIcon,
EthpoolGlyphIcon,
GreenCheckProductGlyphIcon,
P2PGlyphIcon,
KilnGlyphIcon,
LidoGlyphIcon,
LiquidityTokenIcon,
Expand Down
28 changes: 28 additions & 0 deletions src/components/icons/staking/P2PGlyphIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from "react"
import { createIcon } from "@chakra-ui/react"

export const P2PGlyphIcon = createIcon({
displayName: "P2PGlyphIcon",
viewBox: "0 0 32 32",
defaultProps: {
width: "32px",
height: "32px",
fill: "currentColor",
},
path: [
<path
fillRule="evenodd"
clipRule="evenodd"
d="M0.621212 13.3628C0.554269 13.3628 0.5 13.4148 0.5 13.479V16.965C0.5 17.0291 0.554268 17.0812 0.621212 17.0812H10.0758C10.1427 17.0812 10.197 17.0291 10.197 16.965V13.479C10.197 13.4148 10.1427 13.3628 10.0758 13.3628H0.621212ZM8.92424 15.9192C8.95771 15.9192 8.98485 15.8932 8.98485 15.8611V14.5829C8.98485 14.5508 8.95771 14.5248 8.92424 14.5248H1.77273C1.73926 14.5248 1.71212 14.5508 1.71212 14.5829V15.8611C1.71212 15.8932 1.73926 15.9192 1.77273 15.9192H8.92424Z"
/>,
<path d="M1.71212 18.5918C1.71212 18.5276 1.65785 18.4756 1.59091 18.4756H0.621212C0.554269 18.4756 0.5 18.5276 0.5 18.5918V19.5214C0.5 19.5855 0.554269 19.6376 0.621212 19.6376H1.59091C1.65785 19.6376 1.71212 19.5855 1.71212 19.5214V18.5918Z" />,
<path d="M24.0152 18.5918C24.0152 18.5276 23.9609 18.4756 23.8939 18.4756H22.9242C22.8573 18.4756 22.803 18.5276 22.803 18.5918V19.5214C22.803 19.5855 22.8573 19.6376 22.9242 19.6376H23.8939C23.9609 19.6376 24.0152 19.5855 24.0152 19.5214V18.5918Z" />,
<path d="M11.6515 18.5918C11.6515 18.5276 11.7058 18.4756 11.7727 18.4756H21.2273C21.2942 18.4756 21.3485 18.5276 21.3485 18.5918V19.5214C21.3485 19.5855 21.2942 19.6376 21.2273 19.6376H11.7727C11.7058 19.6376 11.6515 19.5855 11.6515 19.5214V18.5918Z" />,
<path
fillRule="evenodd"
clipRule="evenodd"
d="M22.803 13.479C22.803 13.4148 22.8573 13.3628 22.9242 13.3628H32.3788C32.4457 13.3628 32.5 13.4148 32.5 13.479V16.965C32.5 17.0291 32.4457 17.0812 32.3788 17.0812H22.9242C22.8573 17.0812 22.803 17.0291 22.803 16.965V13.479ZM31.2273 14.5248C31.2607 14.5248 31.2879 14.5508 31.2879 14.5829V15.8611C31.2879 15.8932 31.2607 15.9192 31.2273 15.9192H24.0758C24.0423 15.9192 24.0152 15.8932 24.0152 15.8611V14.5829C24.0152 14.5508 24.0423 14.5248 24.0758 14.5248H31.2273Z"
/>,
<path d="M11.7727 13.3628C11.7058 13.3628 11.6515 13.4148 11.6515 13.479V14.4086C11.6515 14.4728 11.7058 14.5248 11.7727 14.5248H20.0758C20.1092 14.5248 20.1364 14.5508 20.1364 14.5829V15.8611C20.1364 15.8932 20.1092 15.9192 20.0758 15.9192H11.7727C11.7058 15.9192 11.6515 15.9712 11.6515 16.0354V16.965C11.6515 17.0291 11.7058 17.0812 11.7727 17.0812H21.2273C21.2942 17.0812 21.3485 17.0291 21.3485 16.965V13.479C21.3485 13.4148 21.2942 13.3628 21.2273 13.3628H11.7727Z" />,
],
})
1 change: 1 addition & 0 deletions src/components/icons/staking/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export * from "./DockerGlyphIcon"
export * from "./EconomicalIcon"
export * from "./EthpoolGlyphIcon"
export * from "./GreenCheckProductGlyphIcon"
export * from "./P2PGlyphIcon"
export * from "./KilnGlyphIcon"
export * from "./LaunchnodesGlyphIcon"
export * from "./LidoGlyphIcon"
Expand Down
43 changes: 43 additions & 0 deletions src/data/staking-products.json
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,49 @@
"eventName": "Clicked stakefish go to link"
}
},
{
"name": "P2P.org",
"imageName": "P2P",
"hue": 227,
"launchDate": "2023-01-10",
"url": "https://p2p.org/networks/ethereum/",
"audits": [
{
"name": "Mixbytes (v1)",
"url": "https://github.com/mixbytes/audits_public/blob/79cd8153bfb6098227b43dfba8d061881a94a248/P2P.org/ETH2%20Depositor%20%26%20ETH%20Staking%20Fee%20Distributor%20(v.1)/P2P.org_ETH2%20Depositor%20%26%20ETH%20Staking%20Fee%20Distributor%20Smart%20Contracts%20Audit%20Report.pdf"
},
{
"name": "Mixbytes (v2)",
"url": "https://github.com/mixbytes/audits_public/blob/79cd8153bfb6098227b43dfba8d061881a94a248/P2P.org/ETH2%20Depositor%20%26%20ETH%20Staking%20Fee%20Distributor%20(v.2)/ETH2%20Depositor%20%26%20ETH%20Staking%20Fee%20Distributor%20Security%20Audit%20Report%20(v.2).pdf"
}
],
"minEth": 32,
"additionalStake": null,
"additionalStakeUnit": null,
"monthlyFee": 5,
"monthlyFeeUnit": "%",
"isFoss": false,
"hasBugBounty": false,
"isTrustless": true,
"isPermissionless": true,
"pctMajorityExecutionClient": 50,
"pctMajorityConsensusClient": 30,
"isSelfCustody": false,
"platforms": ["Browser"],
"ui": ["GUI"],
"socials": {
"linkedin": "https://www.linkedin.com/company/p2p-org/",
"twitter": "https://twitter.com/P2Pvalidator",
"telegram": "https://t.me/P2Pstaking",
"github": "https://github.com/p2p-org",
"youtube": "https://www.youtube.com/channel/UC9pRzyJx5YrUNfmg1vLZ-bQ/"
},
"matomo": {
"eventCategory": "StakingProductCard",
"eventAction": "Clicked",
"eventName": "Clicked P2P (saas) go to link"
}
},
{
"name": "Kiln",
"imageName": "Kiln",
Expand Down
Loading