"winnings" => "trader profits"
This commit is contained in:
parent
d439a2e1c0
commit
f7b981c55c
|
@ -81,19 +81,19 @@ export function ResolutionPanel(props: {
|
|||
{outcome === 'YES' ? (
|
||||
<>
|
||||
Winnings will be paid out to YES bettors. You earn{' '}
|
||||
{CREATOR_FEE * 100}%.
|
||||
{CREATOR_FEE * 100}% of trader profits.
|
||||
</>
|
||||
) : outcome === 'NO' ? (
|
||||
<>
|
||||
Winnings will be paid out to NO bettors. You earn{' '}
|
||||
{CREATOR_FEE * 100}%.
|
||||
{CREATOR_FEE * 100}% of trader profits.
|
||||
</>
|
||||
) : outcome === 'CANCEL' ? (
|
||||
<>The pool will be returned to traders with no fees.</>
|
||||
) : outcome === 'MKT' ? (
|
||||
<>
|
||||
Traders will be paid out at the probability you specify. You earn{' '}
|
||||
{CREATOR_FEE * 100}%.
|
||||
{CREATOR_FEE * 100}% of trader profits.
|
||||
</>
|
||||
) : (
|
||||
<>Resolving this market will immediately pay out traders.</>
|
||||
|
|
|
@ -133,7 +133,7 @@ function Contents() {
|
|||
<h3 id="how-are-markets-resolved-">How are markets resolved?</h3>
|
||||
<p>
|
||||
The creator of the prediction market decides the outcome and earns{' '}
|
||||
{CREATOR_FEE * 100}% of the winnings as a commission for creating and
|
||||
{CREATOR_FEE * 100}% of trader profits. as a commission for creating and
|
||||
resolving the market.
|
||||
</p>
|
||||
<p>
|
||||
|
|
|
@ -177,7 +177,7 @@ export function NewContract(props: { question: string; tag?: string }) {
|
|||
<span>Market ante</span>
|
||||
<InfoTooltip
|
||||
text={`Subsidize your market to encourage trading. Ante bets are set to match your initial probability.
|
||||
You earn ${CREATOR_FEE * 100}% of the winnings.`}
|
||||
You earn ${CREATOR_FEE * 100}% of trader profits.`}
|
||||
/>
|
||||
</label>
|
||||
<AmountInput
|
||||
|
|
Loading…
Reference in New Issue
Block a user