Increase tax rate to 25%/hour
This commit is contained in:
parent
432575ae41
commit
7e33c3a68f
|
@ -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: '',
|
||||
|
|
|
@ -77,7 +77,7 @@ function Explanation() {
|
|||
Every slot has an "assessed value": 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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user