import AccordianItem from './accordian-item' import { Input, InputUserSuggest } from './form' import { InputGroup } from 'react-bootstrap' import { BOOST_MIN } from '../lib/constants' import Info from './info' export function AdvPostInitial ({ forward }) { return { boost: '', forward: forward || '' } } export default function AdvPostForm ({ edit }) { return ( options} body={ <> {edit ? 'add boost' : 'boost'}
  1. Boost ranks posts higher temporarily based on the amount
  2. The minimum boost is {BOOST_MIN} sats
  3. Each {BOOST_MIN} sats of boost is equivalent to one trusted upvote
    • e.g. {BOOST_MIN * 2} sats is like 2 votes
  4. The decay of boost "votes" increases at 2x the rate of organic votes
    • i.e. boost votes fall out of ranking faster
  5. 100% of sats from boost are given back to top users as rewards
} name='boost' hint={ranks posts higher temporarily based on the amount} append={sats} /> forward sats to} name='forward' hint={100% of sats will be sent to this user} prepend={@} showValid /> } /> ) }