forked from boardroom-inc/protocol-Info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
151 lines (150 loc) · 4.2 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// supported protocols
export const protocols = {
compound: {
name: "Compound",
path: "compound",
description:
"Compound is a decentralized money market protocol to borrow and lend assets.",
suffix: "COMP",
folder: "compound",
},
uniswap: {
name: "Uniswap",
path: "uniswap",
description:
"Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.",
suffix: "UNI",
folder: "uniswap",
},
synthetix: {
name: "Synthetix",
path: "snxgov.eth",
description:
"Synthetix is a decentralised synthetic asset issuance protocol built on Ethereum.",
suffix: "SC-NFT",
folder: "synthetix",
safeAddress: "0x438679ECE13EDB95aDD18Ed02dDbf5e2418FF730",
},
yearn: {
name: "Yearn",
path: "yearn",
description:
"yEarn is an automated liquidity aggregator offering a number of yield farming opportunities.",
suffix: "YFI",
folder: "yearn",
},
powerpool: {
name: "Powerpool",
path: "powerpool",
description:
"PowerPool is a cross-chain lending protocol for governance tokens.",
suffix: "CVP",
folder: "compound",
},
rarible: {
name: "Rarible",
path: "rarible",
description:
"Rarible is the premiere NFT marketplace to mint, buy, and sell digital collectibles.",
suffix: "RARI",
folder: "rarible",
},
pooltogether: {
name: "PoolTogether",
path: "pooltogether",
description:
"PoolTogether is a protocol enabling governance-managed, no-loss prize games on Ethereum.",
suffix: "PcDAI",
folder: "pooltogether",
},
"gnosis.eth": {
name: "Gnosis",
path: "gnosis.eth",
description:
"GnosisDAO uses Gnosis products to transparently guide decisions on development, support, and governance of its token ecosystem.",
suffix: "GNO",
folder: "gnosis.eth",
},
defidollar: {
name: "DefiDollar DAO",
path: "defidollar",
description:
"DUSD is a stablecoin controlled by a DAO using DeFi primitives to remain pegged to the Dollar.",
suffix: "DFD",
folder: "defidollar",
},
indexCoop: {
name: "Index",
path: "index",
description:
"The Index Coop is an autonomous asset manager governed, maintained, and upgraded by INDEX token holders.",
suffix: "INDEX",
folder: "indexCoop",
},
rally: {
name: "Rally",
path: 'rally',
description: "Rally’s is a decentralized network enabling creators to monetize and align themselves with their community.",
suffix: "RLY",
folder: 'rally'
},
siren: {
name: "Siren",
path: "siren",
description:
"Siren is a distributed protocol for creating, trading, and redeeming fully-collateralized options contracts.",
suffix: "SI",
folder: "siren",
},
aave: {
name: "Aave",
path: "aave",
description:
"Aave is an open source and non-custodial protocol enabling the creation of money markets.",
suffix: "LEND",
folder: "aave",
},
balancer: {
name: "Balancer",
path: "balancer",
description: "Balancer is a non-custodial portfolio manager, liquidity provider, and price sensor.",
suffix: "BAL",
folder: "balancer",
},
yamv2: {
name: "Yam",
path: "yamv2",
description: "Yam is an experiment in fair farming, governance, and elasticity controlled by the community.",
suffix: "YAM",
folder: "yamv2",
},
"yup.eth": {
name: "Yup",
path: "yup.eth",
description: "Your opinion matters. Curate the web. Earn & influence.",
suffix: "YUP",
folder: "yup",
snapshotSpaceName: "yup.eth",
safeAddress: "0xbd5224f66D5ce49a8Afefc14a76248D158D14c6F",
},
"gov.dhedge.eth": {
name: "dHEDGE",
path: "gov.dhedge.eth",
description: "Non-custodial, decentralized asset management for synthetic assets on Ethereum",
suffix: "DHT",
folder: "dhedge",
snapshotSpaceName: "gov.dhedge.eth",
},
};
export const protocolBranding = {
pooltogether: {
"--background-primary-nav": "#290b5a",
"--color-text-nav": "#e7e8eb",
"--background-switcher-active": "#341762",
},
defidollar: {
"--background-primary-nav": "#212529",
"--color-text-nav": "#e7e8eb",
"--background-switcher-active": "#5553e8",
},
};