manifold/common/contest.ts

25 lines
800 B
TypeScript
Raw Normal View History

2022-08-02 08:36:43 +00:00
import { GROUP_CHAT_SLUG } from 'common/group'
2022-08-08 19:32:10 +00:00
type Contest = {
link: string
description: string
submissionLink: string
fileName: string
closeTime: string
2022-08-02 08:36:43 +00:00
}
2022-08-08 19:32:10 +00:00
export let contest_data: { [name: string]: Contest } = {}
contest_data['cause-exploration-prize'] = {
link: 'https://www.causeexplorationprizes.com/',
description:
'Open Philanthropys contest to find ideas for the best ways to use their resources, with focus on new areas to support, health development, and worldview investigations.',
submissionLink:
'https://forum.effectivealtruism.org/topics/cause-exploration-prizes',
//name of file that stores json of submissions under lib/util/contests
fileName: 'causeExploration',
closeTime: '2022-09-01',
}
export const CONTEST_SLUGS = Object.keys(contest_data)