manifold/common/contest.ts
2022-08-22 17:37:40 -07:00

23 lines
754 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

type Contest = {
link: string
description: string
submissionLink: string
fileName: string
closeTime: string
}
export const 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)