Upload script to bulk-resolve markets from API
This commit is contained in:
parent
77a5f8b9dd
commit
7c34805eeb
63
functions/src/scripts/contest/bulk-resolve-markets.ts
Normal file
63
functions/src/scripts/contest/bulk-resolve-markets.ts
Normal file
|
@ -0,0 +1,63 @@
|
|||
// Run with `npx ts-node src/scripts/contest/resolve-markets.ts`
|
||||
|
||||
const DOMAIN = 'dev.manifold.markets'
|
||||
// Dev API key for Cause Exploration Prizes (@CEP)
|
||||
const API_KEY = '188f014c-0ba2-4c35-9e6d-88252e281dbf'
|
||||
const GROUP_SLUG = 'cart-contest'
|
||||
|
||||
// Can just curl /v0/group/{slug} to get a group
|
||||
async function getGroupBySlug(slug: string) {
|
||||
const resp = await fetch(`https://${DOMAIN}/api/v0/group/${slug}`)
|
||||
return await resp.json()
|
||||
}
|
||||
|
||||
async function getMarketsByGroupId(id: string) {
|
||||
// API structure: /v0/group/by-id/[id]/markets
|
||||
const resp = await fetch(`https://${DOMAIN}/api/v0/group/by-id/${id}/markets`)
|
||||
return await resp.json()
|
||||
}
|
||||
|
||||
/* Example curl request:
|
||||
# Resolve a binary market
|
||||
$ curl https://manifold.markets/api/v0/market/{marketId}/resolve -X POST \
|
||||
-H 'Content-Type: application/json' \
|
||||
-H 'Authorization: Key {...}' \
|
||||
--data-raw '{"outcome": "YES"}'
|
||||
*/
|
||||
async function resolveMarketById(
|
||||
id: string,
|
||||
outcome: 'YES' | 'NO' | 'MKT' | 'CANCEL'
|
||||
) {
|
||||
const resp = await fetch(`https://${DOMAIN}/api/v0/market/${id}/resolve`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
Authorization: `Key ${API_KEY}`,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
outcome,
|
||||
}),
|
||||
})
|
||||
return await resp.json()
|
||||
}
|
||||
|
||||
async function main() {
|
||||
const group = await getGroupBySlug(GROUP_SLUG)
|
||||
const markets = await getMarketsByGroupId(group.id)
|
||||
|
||||
// Count up some metrics
|
||||
console.log('Number of markets', markets.length)
|
||||
console.log(
|
||||
'Number of resolved markets',
|
||||
markets.filter((m: any) => m.isResolved).length
|
||||
)
|
||||
|
||||
// Resolve each market to NO
|
||||
for (const market of markets) {
|
||||
if (!market.isResolved) {
|
||||
console.log(`Resolving market ${market.url} to NO`)
|
||||
const resp = await resolveMarketById(market.id, 'NO')
|
||||
}
|
||||
}
|
||||
}
|
||||
main()
|
Loading…
Reference in New Issue
Block a user