insights icon indicating copy to clipboard operation
insights copied to clipboard

[Impact Metric Submission]: Number of Farcaster users per month

Open BenraouaneSoufiane opened this issue 1 year ago • 0 comments

Number of Farcaster users per month

Tags

  • farcaster
  • optimistic

Brief description

This IM calculated from farcaster subproject from the profile database, where the number of rows explain the total users, I count them & classify the registration date by months, order them to be humain-readable, it explain also the total txs per month beacuse each farcaster registration invoke new transaction from the user address to farcaster IdRegistry address on th OP mainnet

SQL code block

SELECT count(*) as number_of_users,
DATE (TIMESTAMP_TRUNC(last_updated_at, MONTH)) AS months
FROM `opensource-observer.farcaster.profiles`
GROUP BY months ORDER BY months ASC

BenraouaneSoufiane avatar May 11 '24 16:05 BenraouaneSoufiane