-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathnoBalances.js
49 lines (45 loc) · 2.68 KB
/
noBalances.js
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
import { Paper, Grid, Typography } from '@material-ui/core';
import classes from './ffVest.module.css';
export default function noBalances({ ibff, veIBFF }) {
return (
<Paper elevation={0} className={ classes.containerNone }>
<div className={ classes.noBalancesContainer }>
<Grid container spacing={6}>
<Grid item lg={4} sm={12}>
<div className={classes.contentBox}>
<Typography className={ classes.title }>What is vesting kp3r?</Typography>
<Typography className={ classes.paragraph }>The kp3r token is the emission token of the Fixed Forex ecosystem.</Typography>
<Typography className={ classes.paragraph }>Vesting your kp3r in the Fixed Forex gauge means that you will be locking up your assets in order to gain a voting right in how the protocol emits rewards.</Typography>
<Typography className={ classes.paragraph }>You will also be eligible to receive your portion of the weekly protocol fees.</Typography>
</div>
</Grid>
<Grid item lg={4} sm={12}>
<div className={classes.contentBox}>
<Typography className={ classes.title }>How does vesting work?</Typography>
<Typography className={ classes.paragraph }>Vesting your kp3r in the Fixed Forex gauge requires you to specify 2 parameters:</Typography>
<div className={ classes.paragraph }>
<Typography className={ classes.subTitle }>Vesting Amount</Typography>
<Typography>How many kp3r tokens you will be locking up.</Typography>
</div>
<div className={ classes.paragraph }>
<Typography className={ classes.subTitle }>Vesting Duration</Typography>
<Typography>How long you will be locking the tokens up for. Anywhere from 1 week to 4 years.</Typography>
</div>
<div className={ classes.paragraph }>
<Typography>The more tokens you lock and the longer you lock them for, the more rewards you will receive.</Typography>
<Typography>Want to read more? Read the release article on Medium.</Typography>
</div>
</div>
</Grid>
<Grid item lg={4} sm={12}>
<div className={classes.contentBox}>
<Typography className={ classes.title }>How do I get kp3r?</Typography>
<Typography className={ classes.paragraph }>You can get kp3r tokens by staking your Sushiswap LP tokens in the Faucet contract here.</Typography>
<Typography className={ classes.paragraph }>You can swap your existing assets for kp3r using Sushiswap.</Typography>
</div>
</Grid>
</Grid>
</div>
</Paper>
);
}