chore: add protocol cname (#103)

This commit is contained in:
Zak Angelle 2021-04-15 13:04:23 -05:00 committed by GitHub
parent 37c2df2264
commit a5c9b7a5f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,5 @@
{
"cname": "compound",
"name": "Compound",
"description": "Compound is a decentralized money market protocol to borrow and lend assets.",
"path": "compound",

View File

@ -1,4 +1,5 @@
{
"cname": "compoundgrants",
"name": "Compound Grants",
"description": "The Compound Grants Program is a 4/7 multisig controlled committee that will deploy a maximum of $1mm per quarter and run for two quarters.",
"path": "compoundgrants.eth",

View File

@ -1,4 +1,5 @@
{
"cname": "defidollar",
"name": "DefiDollar DAO",
"description": "DUSD is a stablecoin controlled by a DAO using DeFi primitives to remain pegged to the Dollar.",
"path": "defidollar",

View File

@ -1,4 +1,5 @@
{
"cname": "gnosis",
"name": "Gnosis",
"description": "GnosisDAO uses Gnosis products to transparently guide decisions on development, support, and governance of its token ecosystem.",
"path": "gnosis.eth",

View File

@ -1,4 +1,5 @@
{
"cname": "indexCoop",
"name": "Index",
"description": "The Index Coop is an autonomous asset manager governed, maintained, and upgraded by INDEX token holders.",
"path": "index",

View File

@ -1,4 +1,5 @@
{
"cname": "rally",
"name": "Rally",
"description": "Rally is a decentralized network enabling creators to monetize and align themselves with their community.",
"path": "rally",

View File

@ -1,4 +1,5 @@
{
"cname": "rarible",
"name": "Rarible",
"description": "Rarible is the premiere NFT marketplace to mint, buy, and sell digital collectibles.",
"path": "rarible",

View File

@ -1,4 +1,5 @@
{
"cname": "synthetix",
"name": "Synthetix",
"description": "Synthetix is a decentralised synthetic asset issuance protocol built on Ethereum.",
"path": "snxgov.eth",

View File

@ -1,4 +1,5 @@
{
"cname": "uniswap",
"name": "Uniswap",
"description": "Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.",
"path": "uniswap",

View File

@ -1,5 +1,5 @@
{
"cname": "yup",
"name": "Yup",
"description": "Your opinion matters. Curate the web. Earn & influence.",
"path": "yup.eth",

View File

@ -1,6 +1,7 @@
import * as t from "io-ts";
export const ProtocolIo = t.type({
cname: t.string,
name: t.string,
description: t.string,
path: t.string,