Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Base contracts to OSS Directory #1203

Closed
ccerv1 opened this issue Dec 4, 2023 · 5 comments
Closed

Add Base contracts to OSS Directory #1203

ccerv1 opened this issue Dec 4, 2023 · 5 comments
Assignees
Labels
c:data Gathering data (e.g. indexing) P0 Highest priority issue

Comments

@ccerv1
Copy link
Member

ccerv1 commented Dec 4, 2023

Here is a great initial source of contracts that includes all RetroPGF3 projects on Base we can start with

@ccerv1 ccerv1 self-assigned this Dec 4, 2023
@ethzoomer
Copy link

Where should they be added? Into the project yaml files formatted like this: ?

- address: "0x..." tags: - contract networks: - base

@ccerv1 ccerv1 added the P1 High priority issue label Jan 3, 2024
@ccerv1 ccerv1 transferred this issue from opensource-observer/oss-directory Apr 8, 2024
@ccerv1 ccerv1 modified the milestones: op, Eco: Optimism Apr 8, 2024
@ryscheng
Copy link
Member

ryscheng commented May 7, 2024

I'd suggest down-scoping this to a 1, just testing with a couple of projects

@ccerv1
Copy link
Member Author

ccerv1 commented May 16, 2024

Super easy to identify tagged deployers on other chains with a query like this:

WITH deployers AS (
  SELECT DISTINCT
    artifact_source_id,
    project_name 
  FROM `oso.artifacts_by_project_v1`
  WHERE artifact_type = 'DEPLOYER' 
)

SELECT
  deployers.project_name,
  b.deployer_address,
  COUNT(DISTINCT b.contract_address) AS count_contracts
FROM deployers
JOIN `oso.stg_base__deployers` b
  ON deployers.artifact_source_id = b.deployer_address
GROUP BY 1,2
ORDER BY 3 DESC

Will test a few projects now...

@ccerv1
Copy link
Member Author

ccerv1 commented May 16, 2024

Currently blocked on #1428

@ccerv1 ccerv1 added P0 Highest priority issue c:data Gathering data (e.g. indexing) and removed P1 High priority issue labels May 20, 2024
@ccerv1
Copy link
Member Author

ccerv1 commented May 20, 2024

@ccerv1 ccerv1 closed this as completed May 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:data Gathering data (e.g. indexing) P0 Highest priority issue
Projects
Status: Done
Development

No branches or pull requests

3 participants