Skip to content

Gitcoin

Evaluate all projects funded in a Gitcoin grants round.

ts
{ kind: 'gitcoin', roundId: string, chainId?: number }
FieldTypeRequiredDescription
roundIdstringGrants round contract address
chainIdnumberChain ID (default: 42161 — Arbitrum One)

Example

ts
const run = client.run({
  kind: 'gitcoin',
  roundId: '0x1234567890abcdef1234567890abcdef12345678',
  chainId: 42161,
});

Supported chains

ChainID
Arbitrum One42161
Optimism10
Ethereum Mainnet1

Notes

  • The Scout Agent queries the Gitcoin Grants Stack API to enumerate all applications in the round.
  • Each application is resolved to a GitHub repository for evidence collection.
  • Projects without a linked GitHub repo are evaluated on website evidence only.

Released under the MIT License.