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