Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 6e394d8

Browse files
committed
remove old icons
1 parent 5ae4727 commit 6e394d8

12 files changed

+8
-396
lines changed

docs/consensus/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Subspace is powered by *Dilithium* - a lightweight and secure consensus mechanis
1111

1212
In PoAS, farmers (not miners) store as many unique pieces of the blockchain history as their disk space allows. PoAS incentivizes the storage of the blockchain history, resolving the key mechanism design failure which has hindered scalability and led to centralization within Proof-of-Capacity blockchains like Filecoin and Chia. Since PoAS consensus is based on storage, rather than compute power or wealth, it is eco-friendly while remaining accessible to ordinary people with available disk space. This allows it to combine the high security of Bitcoin-style Proof-of-Work with the energy-efficiency of Ethereum-style Proof-of-Stake. It also turns out that PoAS provides the basis for a more generic solution to the problem of blockchain bloat.
1313

14-
![ConsensusPhases](../../src/Images/Consensus_Phases.png)
14+
<!-- ![ConsensusPhases](../../src/Images/Consensus_Phases.png) -->
1515

1616
Formally, PoAS is a three phase protocol, consisting of:
1717
- a recurring deterministic **Archiving** phase (given new blocks of the chain, constructing a canonical history)

src/components/HomepageFeatures/index.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import styles from './styles.module.css';
44

55
type FeatureItem = {
66
title: string;
7-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
7+
// Svg: React.ComponentType<React.ComponentProps<'svg'>>;
88
description: JSX.Element;
99
};
1010

1111
const FeatureList: FeatureItem[] = [
1212
{
1313
title: 'Free & Fair Consensus',
14-
Svg: require('@site/static/img/lightweight.svg').default,
14+
// Svg: require('@site/static/img/lightweight.svg').default,
1515
description: (
1616
<>
1717
Energy-intensive mining and capital-intensive staking are replaced with a new form of disk-based farming.
@@ -20,7 +20,7 @@ const FeatureList: FeatureItem[] = [
2020
},
2121
{
2222
title: 'No Compromises Scalability',
23-
Svg: require('@site/static/img/easy-to-setup.svg').default,
23+
// Svg: require('@site/static/img/easy-to-setup.svg').default,
2424
description: (
2525
<>
2626
We leverage key academic research to achieve Internet scale without sacrificing security or decentralization.
@@ -29,7 +29,7 @@ const FeatureList: FeatureItem[] = [
2929
},
3030
{
3131
title: 'Radically Decentralized',
32-
Svg: require('@site/static/img/frequent-rewards.svg').default,
32+
// Svg: require('@site/static/img/frequent-rewards.svg').default,
3333
description: (
3434
<>
3535
Designed from first-principles for maximum decentralization, community ownership and on-chain governance.
@@ -38,12 +38,12 @@ const FeatureList: FeatureItem[] = [
3838
},
3939
];
4040

41-
function Feature({title, Svg, description}: FeatureItem) {
41+
function Feature({title, description}: FeatureItem) {
4242
return (
4343
<div className={clsx('col col--4')}>
44-
<div className="text--center">
44+
{/* <div className="text--center">
4545
<Svg className={styles.featureSvg} role="img" />
46-
</div>
46+
</div> */}
4747
<div className="text--center padding-horiz--md">
4848
<h3>{title}</h3>
4949
<p>{description}</p>

static/img/develop-dark.svg

-1
This file was deleted.

static/img/develop-light.svg

-1
This file was deleted.

static/img/get-started-dark.svg

-1
This file was deleted.

0 commit comments

Comments
 (0)