gitcoin
Notes
Updated by August 2021
Authors: Danilo Lessa Bernardineli
A table where each row represents independent and valid contributions. Required fields:
A table where each row represents Gitcoin user handles. Required fields:
/*
Obs: normalized_data must contains the following fields:
- grant_id, user_handle, created_on, token_symbol, last_known_ip, amount_per_period, amount_per_period_usdt,
amount_per_period_minus_gas_price
*/
select
grants_contribution.created_on,
grants_contribution.profile_for_clr_id AS user_id, /* user id */
grants_contribution.match, /* CLR match is on or off */
grants_contribution.normalized_data /* JSON string */
from grants_contribution
/*
Collect any user stat, like Github profile info
*/
/* Retrieve */