-
Notifications
You must be signed in to change notification settings - Fork 1
/
protocolCustomContent.tsx
161 lines (158 loc) · 5.28 KB
/
protocolCustomContent.tsx
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
152
153
154
155
156
157
158
159
160
161
import React from "react"
import ProtocolText from "../types/ProtocolText";
// { ptAddress: ProtocolText }
const protocolCustomContent: Record<string, ProtocolText> = {
"0x6def54ae7e38992a7d1ab60d279483ba7f7b0aeb": {
YT: "Each YT is entitled to all the extra yield and point on top of one weETH deposit in Karak (with the multiplier).",
pendingPoints: (
<>
Integration of Ether.fi Points portfolio is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://www.ether.fi/"
target="_blank"
className="underline"
>
Ether.fi dashboard
</a>
.
</>
),
},
"0xe617fc640413171100c32cc8dbf69fc7928d895e": {
YT: "Each YT is entitled to all the yield and Points of 1 WBTC deposited in Bedrock (with the multiplier).",
pendingPoints: (
<>
Points portfolio integration is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://app.bedrock.technology/unibtc"
target="_blank"
className="underline"
>
Bedrock dashboard
</a>
.
</>
),
},
"0xf58e22d224e465fb65f4257573b58dbfb0f704a0": {
YT: "Each YT is entitled to all the extra yield and point on top of one rUSD deposit in f(x) protocol (with the multiplier).",
pendingPoints: (
<>
Points portfolio integration is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://fx.aladdin.club/earn"
target="_blank"
className="underline"
>
f(x) protocol dashboard
</a>
.
</>
),
},
"0x470f623e8bc3c870f96516b8cbfc6a27e253424d": {
YT: "Each YT is entitled to all the extra yield and point on top of one wstETH deposit in Amphor (with the multiplier).",
pendingPoints: (
<>
Points portfolio integration is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://app.amphor.io/account"
target="_blank"
className="underline"
>
Amphor dashboard
</a>
.
</>
),
helpText: (
<>
Symbiotic Points distribution on the underlying Mellow LRTs
depends on the deposit queue status.{" "}
<a
href="https://x.com/mellowprotocol/status/1800838102006591680"
target="_blank"
className="underline"
>
Learn more here.
</a>
</>
),
},
"0xd4c0ab44698bca5070624ef62c66b1f4d1488551": {
YT: "Each YT is entitled to all the yield and Points of 1 WETH deposited in Bedrock (with the multiplier).",
pendingPoints: (
<>
Points portfolio integration is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://app.bedrock.technology/unieth"
target="_blank"
className="underline"
>
Bedrock dashboard
</a>
.
</>
),
},
"0x8f01036563831feabbf3bee396d99b117c032428": {
YT: "Each YT is entitled to all the extra yield and point on top of one wstETH deposit in Amphor (with the multiplier).",
pendingPoints: (
<>
Points portfolio integration is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://app.amphor.io/earn"
target="_blank"
className="underline"
>
Amphor dashboard
</a>
.
</>
),
helpText: (
<>
Actual distribution of the Points may vary depending on the
vault allocations.
</>
),
},
"0xad3debad39c8e387f59fa025edf16f10e7aa656f": {
YT: "Each YT is entitled to all the yield and Points of 1 WBTC deposited in Bedrock (with the multiplier).",
pendingPoints: (
<>
Points portfolio integration is underway.
<br />
<br />
View your Points on the{" "}
<a
href="https://app.bedrock.technology/unibtc"
target="_blank"
className="underline"
>
Bedrock dashboard
</a>
.
</>
),
},
}
export default protocolCustomContent