Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dprats committed May 24, 2024
1 parent 697342d commit e49edbd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions roadmap/roadmap.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@
"title": "RPC canister for Ethereum & EVM integration",
"overview": "Integration of ICP with EVM blockchains via a canister that accesses JSON RPC providers through HTTPS outcalls. Works for Ethereum and other EVM chains with RPC providers.",
"description": "This feature is about an RPC-based integration of the Internet Computer with EVM chains, initially targeting the Ethereum network, then also Ethereum L2s and other chains with Ethereum RPC providers. The integration builds a canister smart contract offering a subset of the EVM RPC API on chain, while itself connecting to multiple RPC providers and communicating with them. For security-critical queries multiple RPC providers can be queried and their responses must match unanimously in order to be considered a valid response to the caller of the canister API. This reduces trust in any single entity, thereby making the approach more decentralized.",
"status": "in_progress",
"status": "deployed",
"forum": "",
"proposal": "",
"wiki": "",
Expand All @@ -1182,7 +1182,7 @@
"title": "Threshold ECDSA signing latency & throughput improvements",
"overview": "Reducing the latency of threshold ECDSA signing operations by reducing the number of required consensus rounds through protocol improvements. Also results in a throughput improvement.",
"description": "The ICP's initial implementation of threshold ECDSA, also referred to as chain-key ECDSA, requires seven consensus rounds to compute a signature while consuming an available precomputed value (pre-signature). The protocol can be adapted to require fewer rounds for computing a signature, thus noticeably reducing signing latency. Also, the throughput for threshold signing is expected to increase as a byproduct of the optimizations performed. The optimizations will benefit all applications using chain-key ECDSA.",
"status": "in_progress",
"status": "deployed",
"forum": "",
"proposal": "",
"wiki": "",
Expand All @@ -1201,7 +1201,7 @@
"wiki": "",
"docs": "",
"eta": "",
"status": "in_progress",
"status": "deployed",
"is_community": true,
"in_beta": false,
"milestone_id": "Tritium",
Expand Down
19 changes: 10 additions & 9 deletions src/components/LandingPage/Hero/Cards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,13 @@ export const CardsSection = () => {
className="container-10 grid grid-cols-1 md:grid-cols-2 gap-2"
variants={transitions.container}
>
<CardWithImage
href="/roadmap"
image="/img/home/roadmap-illustration.webp"
>

<CardWithImage href="/chainfusion" image="/img/home/btc-eth.webp">
<div className="tw-heading-7 md:tw-heading-6 mb-2">
A new era in blockchain
Native Multi-chain
</div>
<h2 className="tw-heading-5 md:tw-heading-4 mb-0">
Internet Computer Roadmap
Chain Fusion Technology
</h2>
</CardWithImage>

Expand All @@ -55,12 +53,15 @@ export const CardsSection = () => {
<h2 className="tw-heading-5 md:tw-heading-4 mb-0">Tamperproof and trustworthy AI</h2>
</CardWithImage>

<CardWithImage href="/chainfusion" image="/img/home/btc-eth.webp">
<CardWithImage
href="/roadmap"
image="/img/home/roadmap-illustration.webp"
>
<div className="tw-heading-7 md:tw-heading-6 mb-2">
Native Multi-chain
A new era in blockchain
</div>
<h2 className="tw-heading-5 md:tw-heading-4 mb-0">
Chain Fusion Technology
Internet Computer Roadmap
</h2>
</CardWithImage>

Expand Down

0 comments on commit e49edbd

Please sign in to comment.