Rashmi V Abbigeri
  • NEW!
    NEW!  Connect Ideas Across Notes
    Save time and share insights. With Paragraph Citation, you can quote others’ work with source info built in. If someone cites your note, you’ll see a card showing where it’s used—bringing notes closer together.
    Got it
      • Create new note
      • Create a note from template
        • Sharing URL Link copied
        • /edit
        • View mode
          • Edit mode
          • View mode
          • Book mode
          • Slide mode
          Edit mode View mode Book mode Slide mode
        • Customize slides
        • Note Permission
        • Read
          • Only me
          • Signed-in users
          • Everyone
          Only me Signed-in users Everyone
        • Write
          • Only me
          • Signed-in users
          • Everyone
          Only me Signed-in users Everyone
        • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invite by email
        Invitee

        This note has no invitees

      • Publish Note

        Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

        Your note will be visible on your profile and discoverable by anyone.
        Your note is now live.
        This note is visible on your profile and discoverable online.
        Everyone on the web can find and read all notes of this public team.

        Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

        Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

        Explore these features while you wait
        Complete general settings
        Bookmark and like published notes
        Write a few more notes
        Complete general settings
        Write a few more notes
        See published notes
        Unpublish note
        Please check the box to agree to the Community Guidelines.
        View profile
      • Commenting
        Permission
        Disabled Forbidden Owners Signed-in users Everyone
      • Enable
      • Permission
        • Forbidden
        • Owners
        • Signed-in users
        • Everyone
      • Suggest edit
        Permission
        Disabled Forbidden Owners Signed-in users Everyone
      • Enable
      • Permission
        • Forbidden
        • Owners
        • Signed-in users
      • Emoji Reply
      • Enable
      • Versions and GitHub Sync
      • Note settings
      • Note Insights New
      • Engagement control
      • Make a copy
      • Transfer ownership
      • Delete this note
      • Save as template
      • Insert from template
      • Import from
        • Dropbox
        • Google Drive
        • Gist
        • Clipboard
      • Export to
        • Dropbox
        • Google Drive
        • Gist
      • Download
        • Markdown
        • HTML
        • Raw HTML
    Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
    Create Create new note Create a note from template
    Menu
    Options
    Engagement control Make a copy Transfer ownership Delete this note
    Import from
    Dropbox Google Drive Gist Clipboard
    Export to
    Dropbox Google Drive Gist
    Download
    Markdown HTML Raw HTML
    Back
    Sharing URL Link copied
    /edit
    View mode
    • Edit mode
    • View mode
    • Book mode
    • Slide mode
    Edit mode View mode Book mode Slide mode
    Customize slides
    Note Permission
    Read
    Only me
    • Only me
    • Signed-in users
    • Everyone
    Only me Signed-in users Everyone
    Write
    Only me
    • Only me
    • Signed-in users
    • Everyone
    Only me Signed-in users Everyone
    Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Opengrants <> Stellar Community Fund Pipeline This document outlines the end-to-end process for converting SCF grant data into standardized DAOIP-5 format and computing analytics on the normalized data. --- ## Airtable Sensor Integration The SCF pipeline is **event-driven via a Dagster record-count polling sensor** [(`og_dagster/sensors/scf_sensor.py`)](https://github.com/metagov/opengrants-platform/blob/master/og_dagster/sensors/scf_sensor.py). This is an alternative to webhook-based approach that required creator-level Airtable access not available with the current API token and enhanced from previous manual data indexing approach. ### How It Works Every **2 minutes**, the sensor fetches record IDs from all three SCF Airtable tables and computes an MD5 fingerprint across the combined result. If the fingerprint differs from the last recorded state, the full SCF ETL pipeline (`etl_scf_full_job`: bronze → silver → gold) is triggered automatically. | Property | Value | | --- | --- | | **Poll interval** | Every 2 minutes (`minimum_interval_seconds=120`) | | **Change detection** | MD5 fingerprint over record IDs + counts across all 3 tables | | **Trigger** | `etl_scf_full_job` full bronze → silver → gold run | | **Maximum end-to-end lag** | 10–15 minutes (poll interval + pipeline execution time) | | **First-run behaviour** | Records baseline fingerprint, does not trigger, fires on the next detected change | | **State persistence** | Dagster cursor (JSON), survives restarts | | **Failure handling** | Airtable fetch errors yield `SkipReason`, do not crash the sensor | ### What Triggers a Pipeline Run A run is triggered whenever the total set of record IDs across any of the three tables changes, this covers: - A new round being created in `Build Award Rounds` - A new submission added to `Awarded Submissions [Build Only]` - A new project added to `Awarded Projects [Build Only]` - An existing record being deleted from any of the above Changes to **field values within existing records** (e.g., updating an award amount) do not trigger the sensor, since the fingerprint is based on record IDs and counts only. These changes are picked up on the next scheduled manual snapshot export. ### Sensor Location - **File**: `og_dagster/sensors/scf_sensor.py` - **Registered in**: `og_dagster/sensors/__init__.py` --- ## Pipeline Overview ### Step 1: Source Data Extraction - **Source**: Airtable Base - **URL**: https://airtable.com/app8tLjMIDrjeloWN/shrrNA24K1e0v5Q0R/tbl57OROvn0qQTuiP/viwNf0pOvzy89J0EB - **Tables Extracted**: - Build Award Rounds - Awarded Submissions [Build Only] - Awarded Projects [Build Only] - **Output**: CSV files for each table ### Step 2: File Organization - Save all extracted files to date-stamped folders (e.g., `YYYY_MM_DD`) - Maintains data versioning and audit trail - **Storage**: https://github.com/metagov/opengrants-platform/tree/master/raw_data/SCF/11_November_2025 --- ## Data Processing Architecture ### Medallion (Bronze–Silver–Gold) Model #### Bronze Layer — Raw Data - **Purpose**: Direct ingestion from source systems - **Sources**: Airtable APIs, CSV exports - **Storage**: PostgreSQL raw tables - **Characteristics**: No cleaning or normalization - **Examples**: `bronze_scf_rounds`, `bronze_scf_submissions` #### Silver Layer — Cleaned & Normalized Data - **Purpose**: Standardize schema to [DAOIP-5 specification](https://github.com/metagov/daostar) - **Transformations**: Type enforcement, relationship mapping, metadata quality - **Storage**: PostgreSQL normalized tables - **Output**: DAOIP-5 compliant datasets #### Gold Layer — Analytics & Metrics - **Purpose**: Cross-ecosystem analytics and aggregated metrics - **Storage**: DuckDB for high-performance querying - **Use Cases**: Dashboard integration, funding trend analysis, ecosystem comparisons --- ## Implementation Steps ### Step 3: Bronze Ingestion - **Script**: `scf.py` - **Location**: https://github.com/metagov/opengrants-platform/blob/master/og_dagster/assets/bronze/scf.py - **Function**: Ingests raw SCF data into bronze layer ### Step 4: Silver Normalization - **Schema Mapping**: Defined in YAML configuration - **Config File**: https://github.com/metagov/opengrants-platform/blob/master/og_dagster/configs/schema_maps/active/daoip5_scf.yaml - **Function**: Transforms bronze data to DAOIP-5 standard ### Step 5: Gold Metrics Computation - **Models**: https://github.com/metagov/opengrants-platform/tree/master/dbt_project/models/gold - **Metrics**: https://github.com/metagov/opengrants-platform/tree/master/dbt_project/models/gold/metrics - **Function**: Computes analytical metrics from normalized data --- ## Standard Metrics & Reporting ### Common Metrics (All Grant Programs) - **Program Identity**: Name, Description, Active Since - **Funding Overview**: Total Funds Distributed, Total Applications Awarded - **Project Analysis**: Top 10 Projects Funded, Projects funded by round and time period - **Program Details**: Grant Program Overview, Latest round, Grant procedure, Contact information, Additional links ### Stellar Community Fund Specific Metrics - **Financial Tracking**: Total Awarded vs Total Paid - **Quarterly Analytics**: - Quarterly Projects Awarded - Quarterly Funding Distribution (XLM denominated in USD) - **Round Analysis**: Awarded Submissions by round - **Category Insights**: Awarded projects by category - **Currency Highlight**: XLM as native currency emphasis --- ## For SCF Team Review We'd appreciate your feedback on: 1. Should we adjust any field definitions? 2. Are there any process improvements we can make towards the clarity or efficiency of the data pipeline? 3. What funding metrics or performance insights (including those from other grant programs) would be most valuable for decision making within the SCF program and throughout the Stellar funding ecosystem? We'd appreciate some clarity on: 1. What tools other than Airtable are used in the SCF grant management process? 2. How are milestones tracked for SCF grantees? 3. What is the process of milestone verification? This pipeline ensures your grant data is standardized and ready for cross-ecosystem analysis while maintaining SCF-specific reporting requirements. --- ## Compliance Report | Ecosystem | Snapshot Date | Total Rounds | Compliant Rounds | Compliance Rate | Total Funding (Compliant Rounds) | | --- | --- | --- | --- | --- | --- | | **SCF** | Mar 23, 2026 | 48 (40 finished, 1 in-progress, 7 future) | 40 finished | **100% of finished rounds** | $52,064,066.01 awarded / $48,195,424.76 paid | | **ENS Small Grants** | Mar 24, 2026 | 24 | 24 | **100.0%** | 20,313,064.17 ENS voting power* | | **Gitcoin 2.0** | Mar 17, 2026 | 2,330 | 914† | **39.2%†** | $106.4M match pool (287 rounds with donor activity) | \* ENS funding is denominated in ENS token voting weight, not USD. A USD equivalent is not available from the source data. † The 914 figure counts all rounds with an indexable round name. 1,416 rounds have no round name in metadata and cannot be indexed. 287 rounds have genuine donor activity. -- As of March 2026, SCF data is assessed under two complementary compliance frameworks developed to measure both the breadth and depth of DAOIP-5 coverage. **Round-level indexing compliance** measures how many SCF grant rounds are successfully indexed and available in the DAOIP-5 data standard. SCF achieves **100% compliance across all 40 finished rounds** (SCF #1–#40), meaning every completed cohort is translated into a DAOIP-5 `GrantPool` record with name, dates, funding, and submission data intact. **Field-level schema compliance** measures how many DAOIP-5 fields within those records are populated from genuine Airtable source columns vs hardcoded placeholders. : SCF scores **93%** at the field level. The single open issue blocking 100% required-field compliance is a P0 on `createdAt` in `GrantApplication`, every submission record carries a hardcoded `'2025-01-01T00:00:00Z'` timestamp because the Airtable CSV export does not include per-record creation timestamps. Submission timestamps would be foundational to any planned longitudinal analysis of the SCF program, without them you cannot answer: Are projects applying earlier or later in the submission window? How long does the typical project take to go from first submission to award? Together these two assessments give a complete picture: SCF has excellent round coverage, with a clear and actionable set of field-level improvements remaining. SCF Field Level Compliance: https://github.com/metagov/opengrants-platform/blob/master/docs/compliance/daoip5_compliance_report_2026-03-31.md SCF Round Level Compliance: https://github.com/metagov/opengrants-platform/blob/master/docs/compliance/daoip5_round_compliance_report_2026-03-31.md ---

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Google Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully