From a5c9b7a5f5301db5da3cfc56d8a76ab3fdb411da Mon Sep 17 00:00:00 2001 From: Zak Angelle Date: Thu, 15 Apr 2021 13:04:23 -0500 Subject: [PATCH] chore: add protocol cname (#103) --- protocols/compound/index.json | 1 + protocols/compoundgrants/index.json | 1 + protocols/defidollar/index.json | 1 + protocols/gnosis.eth/index.json | 1 + protocols/indexCoop/index.json | 1 + protocols/rally/index.json | 1 + protocols/rarible/index.json | 1 + protocols/synthetix/index.json | 1 + protocols/uniswap/index.json | 1 + protocols/yup.eth/index.json | 2 +- types.ts | 1 + 11 files changed, 11 insertions(+), 1 deletion(-) diff --git a/protocols/compound/index.json b/protocols/compound/index.json index bf88f95..4d3b5d3 100644 --- a/protocols/compound/index.json +++ b/protocols/compound/index.json @@ -1,4 +1,5 @@ { + "cname": "compound", "name": "Compound", "description": "Compound is a decentralized money market protocol to borrow and lend assets.", "path": "compound", diff --git a/protocols/compoundgrants/index.json b/protocols/compoundgrants/index.json index fb3c1c1..85ef9cb 100644 --- a/protocols/compoundgrants/index.json +++ b/protocols/compoundgrants/index.json @@ -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", diff --git a/protocols/defidollar/index.json b/protocols/defidollar/index.json index 6c3564a..999e450 100644 --- a/protocols/defidollar/index.json +++ b/protocols/defidollar/index.json @@ -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", diff --git a/protocols/gnosis.eth/index.json b/protocols/gnosis.eth/index.json index 1342d0f..bc1c348 100644 --- a/protocols/gnosis.eth/index.json +++ b/protocols/gnosis.eth/index.json @@ -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", diff --git a/protocols/indexCoop/index.json b/protocols/indexCoop/index.json index cf5fdee..9692d35 100644 --- a/protocols/indexCoop/index.json +++ b/protocols/indexCoop/index.json @@ -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", diff --git a/protocols/rally/index.json b/protocols/rally/index.json index 5b1f0d0..bda0122 100644 --- a/protocols/rally/index.json +++ b/protocols/rally/index.json @@ -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", diff --git a/protocols/rarible/index.json b/protocols/rarible/index.json index 901a5d8..a1b043e 100644 --- a/protocols/rarible/index.json +++ b/protocols/rarible/index.json @@ -1,4 +1,5 @@ { + "cname": "rarible", "name": "Rarible", "description": "Rarible is the premiere NFT marketplace to mint, buy, and sell digital collectibles.", "path": "rarible", diff --git a/protocols/synthetix/index.json b/protocols/synthetix/index.json index a4ec227..e54da9e 100644 --- a/protocols/synthetix/index.json +++ b/protocols/synthetix/index.json @@ -1,4 +1,5 @@ { + "cname": "synthetix", "name": "Synthetix", "description": "Synthetix is a decentralised synthetic asset issuance protocol built on Ethereum.", "path": "snxgov.eth", diff --git a/protocols/uniswap/index.json b/protocols/uniswap/index.json index d085949..0f1cfef 100644 --- a/protocols/uniswap/index.json +++ b/protocols/uniswap/index.json @@ -1,4 +1,5 @@ { + "cname": "uniswap", "name": "Uniswap", "description": "Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.", "path": "uniswap", diff --git a/protocols/yup.eth/index.json b/protocols/yup.eth/index.json index 6b5fb60..10d6b38 100644 --- a/protocols/yup.eth/index.json +++ b/protocols/yup.eth/index.json @@ -1,5 +1,5 @@ { - + "cname": "yup", "name": "Yup", "description": "Your opinion matters. Curate the web. Earn & influence.", "path": "yup.eth", diff --git a/types.ts b/types.ts index a3ab233..827d5b3 100644 --- a/types.ts +++ b/types.ts @@ -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,