diff --git a/web/components/manaboard.tsx b/web/components/manaboard.tsx
index e230116b..27f4a491 100644
--- a/web/components/manaboard.tsx
+++ b/web/components/manaboard.tsx
@@ -178,7 +178,7 @@ export function BuySlotModal(props: {
Buy Slot ({formatMoney(value)})
- Additional fees: {formatMoney(newValue / 10)} per hour
+ Additional fees: {formatMoney(newValue * 0.25)} per hour
@@ -232,7 +232,7 @@ function taxTransaction(options: {
const APRIL_FOOLS_PT = 1648796400000
const elapsedMs = Date.now() - (createdTime || APRIL_FOOLS_PT)
const elapsedHours = elapsedMs / 1000 / 60 / 60
- const tax = elapsedHours * (value / 10)
+ const tax = elapsedHours * value * 0.25
return {
id: '',
diff --git a/web/pages/leaderboards.tsx b/web/pages/leaderboards.tsx
index ed56fd33..553656a8 100644
--- a/web/pages/leaderboards.tsx
+++ b/web/pages/leaderboards.tsx
@@ -77,7 +77,7 @@ function Explanation() {
Every slot has an "assessed value": what the current holder
thinks their slot is worth.
- Slot holders pay a continuous fee of 10% per hour to Manafold.
+ Slot holders pay a continuous fee of 25% per hour to Manafold.
At any time, you can pay the assessed value of a slot to buy it from
the current holder.