Increase tax rate to 25%/hour

This commit is contained in:
Austin Chen 2022-03-31 23:35:46 -07:00
parent 432575ae41
commit 7e33c3a68f
2 changed files with 3 additions and 3 deletions

View File

@ -178,7 +178,7 @@ export function BuySlotModal(props: {
Buy Slot ({formatMoney(value)})
</button>
<div className="-mt-2 text-sm">
Additional fees: {formatMoney(newValue / 10)} per hour
Additional fees: {formatMoney(newValue * 0.25)} per hour
</div>
</Col>
</Modal>
@ -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: '',

View File

@ -77,7 +77,7 @@ function Explanation() {
Every slot has an &quot;assessed value&quot;: what the current holder
thinks their slot is worth.
</li>
<li>Slot holders pay a continuous fee of 10% per hour to Manafold.</li>
<li>Slot holders pay a continuous fee of 25% per hour to Manafold.</li>
<li>
At any time, you can pay the assessed value of a slot to buy it from
the current holder.