forked from 22388o/bitcoinlayers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
20 lines (17 loc) · 1.06 KB
/
constants.ts
File metadata and controls
20 lines (17 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// constants.ts
export enum RiskFactor {
Low = "Low",
Medium = "Medium",
High = "High",
}
export const RISK_FACTOR_CATEGORIES = [
"Unilateral Exits",
"Data Availability",
"Block Production",
"State Validation",
"Upgradability",
];
export const FAQContent = {
contribute: `For now, please join our <a href="https://t.me/+8rv-1I2gkmQ4ZmJh" target="_blank" rel="noopener noreferrer">Telegram</a> group or reach out on <a href="https://twitter.com/bitcoinlayers" target="_blank" rel="noopener noreferrer">Twitter</a> if you'd like to get involved.`,
support: `Bitcoin Layers is currently managed on a volunteer basis by <a href="https://twitter.com/januszg_" target="_blank" rel="noopener noreferrer">Januszg</a> (a pseudonymous contributor) and <a href="https://twitter.com/redvelvetzip" target="_blank" rel="noopener noreferrer">Red Sheehan</a> from Messari. Both have experience working in the Bitcoin space, and have conducted research on Bitcoin scaling protocols. If you would like to support their work, consider donating at the Bitcoin address below.`,
};