"limit bet" => "limit order"

This commit is contained in:
mantikoros 2022-07-12 16:46:03 -05:00
parent 5fd42df1ed
commit 24896e44b4
6 changed files with 11 additions and 9 deletions

View File

@ -21,7 +21,7 @@ export const cancelbet = newEndpoint({}, async (req, auth) => {
if (bet.userId !== auth.uid)
throw new APIError(400, 'Not authorized to cancel bet.')
if (bet.limitProb === undefined)
throw new APIError(400, 'Not a limit bet: Cannot cancel.')
throw new APIError(400, 'Not a limit order: Cannot cancel.')
if (bet.isCancelled) throw new APIError(400, 'Bet already cancelled.')
trans.update(betDoc.ref, { isCancelled: true })

View File

@ -186,7 +186,7 @@ export const updateMakers = (
const totalAmount = sumBy(fills, 'amount')
const isFilled = floatingEqual(totalAmount, bet.orderAmount)
log('Updated a matched limit bet.')
log('Updated a matched limit order.')
trans.update(contractDoc.collection('bets').doc(bet.id), {
fills,
isFilled,

View File

@ -71,7 +71,7 @@ export function BetPanel(props: {
>
<Row className="align-center justify-between">
<div className="mb-6 text-2xl">
{isLimitOrder ? <>Limit bet</> : <>Place your bet</>}
{isLimitOrder ? <>Limit order</> : <>Place your bet</>}
</div>
<button
className="btn btn-ghost btn-sm text-sm normal-case"
@ -120,7 +120,7 @@ export function SimpleBetPanel(props: {
<Col className={clsx('rounded-b-md rounded-t-md bg-white px-8 py-6')}>
<Row className="justify-between">
<div className="mb-6 text-2xl">
{isLimitOrder ? <>Limit bet</> : <>Place your bet</>}
{isLimitOrder ? <>Limit order</> : <>Place your bet</>}
</div>
<button
@ -385,7 +385,9 @@ function BuyPanel(props: {
</button>
)}
{wasSubmitted && <div className="mt-4">Bet submitted!</div>}
{wasSubmitted && (
<div className="mt-4">{isLimitOrder ? 'Order' : 'Bet'} submitted!</div>
)}
</>
)
}

View File

@ -190,7 +190,7 @@ export function BetsList(props: {
onChange={(e) => setFilter(e.target.value as BetFilter)}
>
<option value="open">Open</option>
<option value="limit_bet">Limit bets</option>
<option value="limit_bet">Limit orders</option>
<option value="sold">Sold</option>
<option value="closed">Closed</option>
<option value="resolved">Resolved</option>
@ -364,7 +364,7 @@ function ContractBets(props: {
{contract.mechanism === 'cpmm-1' && limitBets.length > 0 && (
<>
<div className="bg-gray-50 px-4 py-2">Your limit bets</div>
<div className="bg-gray-50 px-4 py-2">Your limit orders</div>
<LimitBets
className="max-w-md px-2 py-0 sm:px-4"
contract={contract}

View File

@ -30,7 +30,7 @@ export function LimitBets(props: {
'gap-2 overflow-hidden rounded bg-white px-4 py-3'
)}
>
{!hideLabel && <div className="px-2 py-3 text-2xl">Your limit bets</div>}
{!hideLabel && <div className="px-2 py-3 text-2xl">Your limit orders</div>}
<table className="table-compact table w-full rounded text-gray-500">
<tbody>
{recentBets.map((bet) => (

View File

@ -817,7 +817,7 @@ function NotificationTextLabel(props: {
<span className="text-primary">
{formatMoney(parseInt(sourceText))}
</span>{' '}
<span>of your limit bet was filled</span>
<span>of your limit order was filled</span>
</>
)
}