From c1c3a360fd9b2c20222a80630f6384ec70771efd Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Sun, 25 Sep 2022 13:08:34 -0400 Subject: [PATCH] Add CART contest to /tournaments --- functions/src/scripts/contest/create-markets.ts | 5 +++-- web/pages/tournaments/index.tsx | 9 ++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/functions/src/scripts/contest/create-markets.ts b/functions/src/scripts/contest/create-markets.ts index f0d4962c..ba7245fe 100644 --- a/functions/src/scripts/contest/create-markets.ts +++ b/functions/src/scripts/contest/create-markets.ts @@ -30,8 +30,9 @@ async function postMarket(submission: CEPSubmission) { initialProb: 10, // Super secret options: // groupId: 'y2hcaGybXT1UfobK3XTx', // [DEV] CEP Tournament - groupId: 'h3MhjYbSSG6HbxY8ZTwE', // [DEV] CART // groupId: 'cMcpBQ2p452jEcJD2SFw', // [PROD] Predict CEP + groupId: 'h3MhjYbSSG6HbxY8ZTwE', // [DEV] CART + // groupId: 'K86LmEmidMKdyCHdHNv4', // [PROD] CART visibility: 'unlisted', // TODO: Increase liquidity? }), @@ -41,7 +42,7 @@ async function postMarket(submission: CEPSubmission) { } async function postAll() { - for (const submission of data.slice(3, 6)) { + for (const submission of data.slice(0, 3)) { await postMarket(submission) } } diff --git a/web/pages/tournaments/index.tsx b/web/pages/tournaments/index.tsx index 8378b185..0b9dbc80 100644 --- a/web/pages/tournaments/index.tsx +++ b/web/pages/tournaments/index.tsx @@ -107,7 +107,14 @@ const tourneys: Tourney[] = [ groupId: 'SxGRqXRpV3RAQKudbcNb', }, - // Tournaments without awards get featured belows + // Tournaments without awards get featured below + { + title: 'Criticism and Red Teaming Contest', + blurb: + 'Which criticisms of Effective Altruism have been the most valuable?', + endTime: toDate('Sep 30, 2022'), + groupId: 'K86LmEmidMKdyCHdHNv4', + }, { title: 'SF 2022 Ballot', blurb: 'Which ballot initiatives will pass this year in SF and CA?',