This project hopes to help everyone find some interesting decentralized websites.
Edit the websites.json file and create a pull request.
The decentralized site list is a JSON file, All list files must conform to the JSON specification.
enum WebsiteType {
ENS = "ENS",
IPNS = "IPNS",
IPFS = "IPFS",
XLOG = "xLog"
}
type WebsiteFeed = {
type: string;
file: string;
}
type Website = {
name: string;
description?: string;
type: WebsiteType;
value: string; // ENS domain or IPFS CID
tags: string[],
feeds: WebsiteFeed[];
}
Here's a simple example:
{
"name": "Vitalik Buterin's website",
"type": "ens",
"value": "vitalik.eth",
"tags": [
"blog"
],
"feeds": [
{
"type": "application/rss+xml",
"file": "feed.xml"
}
]
}
License under the Creative Commons Zero v1.0 Universal.