product_readiness

This commit is contained in:
tree🌴 2023-10-07 21:39:00 +02:00
parent bc8e192ef7
commit a69001c163
13 changed files with 17 additions and 2 deletions

View file

@ -11,6 +11,8 @@ test:
cache: cache:
deno cache utils/test.js deno cache utils/test.js
# make gen cat=computing-network
gen: gen:
deno run -A utils/gen.js $(cat) deno run -A utils/gen.js $(cat)
gen-all:
make gen cat=computing-network

View file

@ -17,6 +17,8 @@ properties:
pattern: '^[a-z0-9-]+$' pattern: '^[a-z0-9-]+$'
ecosystem: ecosystem:
type: string type: string
product_readiness:
type: string
token: token:
type: object type: object
properties: properties:

View file

@ -5,6 +5,7 @@ description: >-
Alaya is a business sandbox and testing field for the next-generation of Alaya is a business sandbox and testing field for the next-generation of
financial infrastructure of PlatON. financial infrastructure of PlatON.
ecosystem: Ethereum ecosystem: Ethereum
product_readiness: live, 2022
links: links:
github: https://github.com/AlayaNetwork github: https://github.com/AlayaNetwork
team: team:

View file

@ -3,6 +3,7 @@ categories:
- computing-network - computing-network
description: Privacy-enhancing public blockchain with instant finality. description: Privacy-enhancing public blockchain with instant finality.
ecosystem: Aleph ecosystem: Aleph
product_readiness: mainnet
links: links:
github: https://github.com/aleph-zero-foundation github: https://github.com/aleph-zero-foundation
team: team:

View file

@ -6,6 +6,7 @@ description: >-
number generator (RNG), secure wallet, cross-chain bridge, decentralized number generator (RNG), secure wallet, cross-chain bridge, decentralized
custody etc. custody etc.
ecosystem: multichain ecosystem: multichain
product_readiness: mainnet, Q2 2023
links: links:
github: https://github.com/ARPA-Network github: https://github.com/ARPA-Network
team: team:

View file

@ -3,6 +3,7 @@ categories:
- computing-network - computing-network
description: a decentralized, privacy-preserving smart contract platform. description: a decentralized, privacy-preserving smart contract platform.
ecosystem: multichain ecosystem: multichain
product_readiness: mainnet
links: links:
github: https://github.com/findoranetwork github: https://github.com/findoranetwork
team: team:

View file

@ -3,6 +3,7 @@ categories:
- computing-network - computing-network
description: The Secure Processing Layer of Web3. description: The Secure Processing Layer of Web3.
ecosystem: multichain ecosystem: multichain
product_readiness: live
links: {} links: {}
team: team:
anonymous: false anonymous: false

View file

@ -3,6 +3,7 @@ categories:
- computing-network - computing-network
description: Privacy-Enhanced Permissionless Computing Protocol. description: Privacy-Enhanced Permissionless Computing Protocol.
ecosystem: Khala on Kusama ecosystem: Khala on Kusama
product_readiness: testnet, 2020
links: links:
github: https://github.com/Phala-Network github: https://github.com/Phala-Network
team: team:

View file

@ -3,6 +3,7 @@ categories:
- computing-network - computing-network
description: blockchain infrastructure empowering intelligence web3 applications. description: blockchain infrastructure empowering intelligence web3 applications.
ecosystem: multichain ecosystem: multichain
product_readiness: testnet
links: links:
github: https://github.com/phoenixglobal github: https://github.com/phoenixglobal
team: team:

View file

@ -6,6 +6,7 @@ description: >-
is building a decentralized and collaborative AI network and global brain to is building a decentralized and collaborative AI network and global brain to
drive the democratization of AI for safe artificial general intelligence. drive the democratization of AI for safe artificial general intelligence.
ecosystem: Alaya ecosystem: Alaya
product_readiness: live
links: links:
github: https://github.com/PlatONnetwork github: https://github.com/PlatONnetwork
team: team:

View file

@ -6,6 +6,7 @@ description: >-
facilitate secure sharing between different parties so data still can be facilitate secure sharing between different parties so data still can be
processed. processed.
ecosystem: multipurpose ecosystem: multipurpose
product_readiness: '-'
links: {} links: {}
team: team:
anonymous: false anonymous: false

View file

@ -3,6 +3,7 @@ categories:
- computing-network - computing-network
description: Decentralized, Private Computing. description: Decentralized, Private Computing.
ecosystem: Aleo ecosystem: Aleo
product_readiness: testnet
links: {} links: {}
team: team:
anonymous: false anonymous: false

View file

@ -41,6 +41,7 @@ async function genCat(cat) {
categories: [cat], categories: [cat],
description: p.Description, description: p.Description,
ecosystem: p.Ecosystem, ecosystem: p.Ecosystem,
product_readiness: p.ProductReadiness,
links: { links: {
github: p.GitHub && p.GitHub !== '-' ? p.GitHub : undefined, github: p.GitHub && p.GitHub !== '-' ? p.GitHub : undefined,
}, },