diff --git a/functions/src/place-bet.ts b/functions/src/place-bet.ts
index 404fda50..d98430c1 100644
--- a/functions/src/place-bet.ts
+++ b/functions/src/place-bet.ts
@@ -135,7 +135,7 @@ export const placebet = newEndpoint({}, async (req, auth) => {
!isFinite(newP) ||
Math.min(...Object.values(newPool ?? {})) < CPMM_MIN_POOL_QTY)
) {
- throw new APIError(400, 'Bet too large for current liquidity pool.')
+ throw new APIError(400, 'Trade too large for current liquidity pool.')
}
const betDoc = contractDoc.collection('bets').doc()
diff --git a/web/components/answers/answer-bet-panel.tsx b/web/components/answers/answer-bet-panel.tsx
index ace06b6c..dbf7ff11 100644
--- a/web/components/answers/answer-bet-panel.tsx
+++ b/web/components/answers/answer-bet-panel.tsx
@@ -120,7 +120,7 @@ export function AnswerBetPanel(props: {
- Bet on {isModal ? `"${answer.text}"` : 'this answer'}
+ Buy answer: {isModal ? `"${answer.text}"` : 'this answer'}
{!isModal && (
diff --git a/web/components/arrange-home.tsx b/web/components/arrange-home.tsx
index 2c43788c..2f49d144 100644
--- a/web/components/arrange-home.tsx
+++ b/web/components/arrange-home.tsx
@@ -112,7 +112,7 @@ export const getHomeItems = (
{ label: 'Trending', id: 'score' },
{ label: 'Newest', id: 'newest' },
{ label: 'Close date', id: 'close-date' },
- { label: 'Your bets', id: 'your-bets' },
+ { label: 'Your trades', id: 'your-bets' },
...groups.map((g) => ({
label: g.name,
id: g.id,
diff --git a/web/components/bet-button.tsx b/web/components/bet-button.tsx
index 7d84bbc0..77b17678 100644
--- a/web/components/bet-button.tsx
+++ b/web/components/bet-button.tsx
@@ -38,7 +38,7 @@ export default function BetButton(props: {
className={clsx('my-auto inline-flex min-w-[75px] ', btnClassName)}
onClick={() => setOpen(true)}
>
- Bet
+ Trade
) : (
diff --git a/web/components/bet-panel.tsx b/web/components/bet-panel.tsx
index c48e92a9..1f2b9bd3 100644
--- a/web/components/bet-panel.tsx
+++ b/web/components/bet-panel.tsx
@@ -281,7 +281,7 @@ function BuyPanel(props: {
title="Whoa, there!"
text={`You might not want to spend ${formatPercent(
bankrollFraction
- )} of your balance on a single bet. \n\nCurrent balance: ${formatMoney(
+ )} of your balance on a single trade. \n\nCurrent balance: ${formatMoney(
user?.balance ?? 0
)}`}
/>
@@ -379,11 +379,11 @@ function BuyPanel(props: {
)}
onClick={betDisabled ? undefined : submitBet}
>
- {isSubmitting ? 'Submitting...' : 'Submit bet'}
+ {isSubmitting ? 'Submitting...' : 'Submit trade'}
)}
- {wasSubmitted && Bet submitted!
}
+ {wasSubmitted && Trade submitted!
}
)
}
@@ -569,7 +569,7 @@ function LimitOrderPanel(props: {
- Bet {isPseudoNumeric ? : } up to
+ Buy {isPseudoNumeric ? : } up to
- Bet {isPseudoNumeric ? : } down to
+ Buy {isPseudoNumeric ? : } down to
- Bet
+ Trade
{!hideToggle && (
- Your bets
+ Your trades
)}
diff --git a/web/components/contract/contract-details.tsx b/web/components/contract/contract-details.tsx
index 48528029..c383d349 100644
--- a/web/components/contract/contract-details.tsx
+++ b/web/components/contract/contract-details.tsx
@@ -294,7 +294,7 @@ export function ExtraMobileContractDetails(props: {
{volumeTranslation}
diff --git a/web/components/contract/contract-info-dialog.tsx b/web/components/contract/contract-info-dialog.tsx
index f376a04a..ae586725 100644
--- a/web/components/contract/contract-info-dialog.tsx
+++ b/web/components/contract/contract-info-dialog.tsx
@@ -135,7 +135,7 @@ export function ContractInfoDialog(props: {
*/}
- Bettors |
+ Traders |
{bettorsCount} |
diff --git a/web/components/contract/contract-leaderboard.tsx b/web/components/contract/contract-leaderboard.tsx
index ce5c7da6..1eaf7043 100644
--- a/web/components/contract/contract-leaderboard.tsx
+++ b/web/components/contract/contract-leaderboard.tsx
@@ -49,7 +49,7 @@ export function ContractLeaderboard(props: {
return users && users.length > 0 ? (
{!user ? (
diff --git a/web/components/play-money-disclaimer.tsx b/web/components/play-money-disclaimer.tsx
index 6ee16c1e..a3bda242 100644
--- a/web/components/play-money-disclaimer.tsx
+++ b/web/components/play-money-disclaimer.tsx
@@ -4,6 +4,6 @@ export const PlayMoneyDisclaimer = () => (
)
diff --git a/web/components/profile/loans-modal.tsx b/web/components/profile/loans-modal.tsx
index 46be649a..24b23e5b 100644
--- a/web/components/profile/loans-modal.tsx
+++ b/web/components/profile/loans-modal.tsx
@@ -11,7 +11,7 @@ export function LoansModal(props: {
🏦
- Daily loans on your bets
+ Daily loans on your trades
• What are daily loans?
diff --git a/web/components/resolution-panel.tsx b/web/components/resolution-panel.tsx
index fe062d06..5a7b993e 100644
--- a/web/components/resolution-panel.tsx
+++ b/web/components/resolution-panel.tsx
@@ -83,14 +83,14 @@ export function ResolutionPanel(props: {
{outcome === 'YES' ? (
<>
- Winnings will be paid out to YES bettors.
+ Winnings will be paid out to traders who bought YES.
{/*
You will earn {earnedFees}. */}
>
) : outcome === 'NO' ? (
<>
- Winnings will be paid out to NO bettors.
+ Winnings will be paid out to traders who bought NO.
{/*
You will earn {earnedFees}. */}
diff --git a/web/components/user-page.tsx b/web/components/user-page.tsx
index 2d4db1eb..81aed562 100644
--- a/web/components/user-page.tsx
+++ b/web/components/user-page.tsx
@@ -260,7 +260,7 @@ export function UserPage(props: { user: User }) {
),
},
{
- title: 'Bets',
+ title: 'Trades',
content: (
<>
diff --git a/web/components/yes-no-selector.tsx b/web/components/yes-no-selector.tsx
index aaf1764e..719308bf 100644
--- a/web/components/yes-no-selector.tsx
+++ b/web/components/yes-no-selector.tsx
@@ -193,7 +193,7 @@ export function BuyButton(props: { className?: string; onClick?: () => void }) {
)}
onClick={onClick}
>
- Bet
+ Buy
)
}
diff --git a/web/pages/experimental/home/index.tsx b/web/pages/experimental/home/index.tsx
index 0f02b002..fb0b488d 100644
--- a/web/pages/experimental/home/index.tsx
+++ b/web/pages/experimental/home/index.tsx
@@ -86,7 +86,7 @@ const Home = (props: { auth: { user: User } | null }) => {
return (
)}