mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
update computing-network
This commit is contained in:
parent
5172c55527
commit
bc8e192ef7
8 changed files with 25 additions and 18 deletions
|
@ -5,6 +5,7 @@ description: Privacy-enhancing public blockchain with instant finality.
|
|||
ecosystem: Aleph
|
||||
links:
|
||||
github: https://github.com/aleph-zero-foundation
|
||||
linkedin: https://alephzero.org/the-team
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: https://alephzero.org/the-team
|
||||
|
|
|
@ -5,6 +5,7 @@ description: a decentralized, privacy-preserving smart contract platform.
|
|||
ecosystem: multichain
|
||||
links:
|
||||
github: https://github.com/findoranetwork
|
||||
linkedin: https://findora.org/team/
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: https://findora.org/team/
|
||||
|
|
|
@ -3,8 +3,9 @@ categories:
|
|||
- computing-network
|
||||
description: The Secure Processing Layer of Web3.
|
||||
ecosystem: multichain
|
||||
links:
|
||||
linkedin: >-
|
||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU
|
||||
links: {}
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: >-
|
||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU
|
||||
|
|
|
@ -5,6 +5,7 @@ description: Privacy-Enhanced Permissionless Computing Protocol.
|
|||
ecosystem: Khala on Kusama
|
||||
links:
|
||||
github: https://github.com/Phala-Network
|
||||
linkedin: https://www.phala.network/en/aboutUs/
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: https://www.phala.network/en/aboutUs/
|
||||
|
|
|
@ -8,7 +8,8 @@ description: >-
|
|||
ecosystem: Alaya
|
||||
links:
|
||||
github: https://github.com/PlatONnetwork
|
||||
linkedin: >-
|
||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: >-
|
||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz
|
||||
|
|
|
@ -6,8 +6,8 @@ description: >-
|
|||
facilitate secure sharing between different parties so data still can be
|
||||
processed.
|
||||
ecosystem: multipurpose
|
||||
links:
|
||||
github: '-'
|
||||
linkedin: https://www.privasea.tech/about
|
||||
links: {}
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: https://www.privasea.tech/about
|
||||
|
|
|
@ -3,9 +3,9 @@ categories:
|
|||
- computing-network
|
||||
description: Decentralized, Private Computing.
|
||||
ecosystem: Aleo
|
||||
links:
|
||||
github: '-'
|
||||
linkedin: >-
|
||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2242785598%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=6tr
|
||||
links: {}
|
||||
team:
|
||||
anonymous: false
|
||||
company:
|
||||
link: >-
|
||||
https://www.linkedin.com/search/results/people/?currentCompany=%5B%2242785598%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=6tr
|
||||
|
|
|
@ -42,13 +42,15 @@ async function genCat(cat) {
|
|||
description: p.Description,
|
||||
ecosystem: p.Ecosystem,
|
||||
links: {
|
||||
github: p.GitHub,
|
||||
linkedin: p.TeamLink,
|
||||
github: p.GitHub && p.GitHub !== '-' ? p.GitHub : undefined,
|
||||
},
|
||||
team: {
|
||||
anonymous: p.Team !== "Public",
|
||||
anonymous: p.Team !== "Public"
|
||||
},
|
||||
};
|
||||
if (p.TeamLink && p.TeamLink !== '') {
|
||||
out.team.company = { link: p.TeamLink }
|
||||
}
|
||||
const yml = yaml.dump(out);
|
||||
await Deno.writeTextFile(`${pDir}/index.yaml`, yml);
|
||||
//console.log(id, yml)
|
||||
|
|
Loading…
Reference in a new issue