Skip to content

Commit 8a68dca

Browse files
authored
chore(components/RewardSimulator) Update defualt values (#435)
1 parent 296613a commit 8a68dca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

components/RewardSimulator.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const RewardSimulator: React.FC = () => {
66
const [publisherStake, setPublisherStake] = useState(200);
77
const [delegatorStake, setDelegatorStake] = useState(300);
88
const [maxCap, setMaxCap] = useState(500);
9-
const [delegatorFee, setDelegatorFee] = useState(2);
9+
const [delegatorFee, setDelegatorFee] = useState(20);
1010
const [rewardRate, setRewardRate] = useState(10);
1111

1212
const [publisherReward, setPublisherReward] = useState(0);
@@ -113,7 +113,9 @@ const RewardSimulator: React.FC = () => {
113113
</p>
114114
</div>
115115
<div className="flex-1 ml-6">
116-
<h4 className="font-semibold mb-2">Calculated Reward Rates:</h4>
116+
<h4 className="font-semibold mb-2">
117+
Calculated Reward Rates(Yearly):
118+
</h4>
117119
<p>
118120
<Latex>{`Publisher Reward Rate ($r^p_p$): ${publisherRewardRate}%`}</Latex>
119121
</p>

0 commit comments

Comments
 (0)