mirror of
https://github.com/oceanprotocol/community-numbers.git
synced 2024-11-16 01:55:17 +01:00
32 lines
771 B
JavaScript
32 lines
771 B
JavaScript
import fetch from 'node-fetch'
|
|
import { log, logError } from '../utils'
|
|
|
|
const getGitcoin = async () => {
|
|
const response = await fetch(
|
|
'https://gitcoin.co/api/v0.1/bounties/?&org=oceanprotocol'
|
|
)
|
|
|
|
if (response.status !== 200) {
|
|
logError(`Non-200 response code from Gitcoin: ${response.status}`)
|
|
return null
|
|
}
|
|
|
|
const total = await response.json()
|
|
const open = total.filter((item) => item.is_open === true)
|
|
|
|
return { total: total.length, open: open.length }
|
|
}
|
|
|
|
export default async function fetchBounties() {
|
|
const start = Date.now()
|
|
const { total, open } = await getGitcoin()
|
|
|
|
log(
|
|
'✓ Bounties. ' +
|
|
`Total: ${total} bounties. Open: ${open} bounties. ` +
|
|
`Elapsed: ${new Date() - start}ms`
|
|
)
|
|
|
|
return { open, total }
|
|
}
|