cgp-0246: Stabila Season 3 Funding Proposal - #824
Merged
Conversation
6 tasks
0xj4an-Work
approved these changes
Jul 25, 2026
0xGoldo
approved these changes
Jul 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds CGP-0246 — Stabila Season 3 funding request: $360,000 USD as 4,838,709.68 CELO (90-day trailing average price of $0.0744) from the unreleased CELO treasury to the Stabila multisig, per the forum proposal.
Transactions
CeloUnreleasedTreasury.releaseis callable only by the registeredEpochManager, so the Registry entry is temporarily pointed at Governance and restored, following the precedent of cgp-0207, cgp-0232, and cgp-0238:Registry.setAddressFor("EpochManager", Governance)— temporaryCeloUnreleasedTreasury.release(Governance, 4838709680000000000000000)— releases 4,838,709.68 CELO into the Community FundRegistry.setAddressFor("EpochManager", 0xF424B5e85B290b66aC20f8A9EAB75E25a526725E)— restoreGoldToken.increaseAllowance(0x9C257bDC314dc516e673728D70F45444F6e22412, 4838709680000000000000000)— Stabila multisig allowanceincreaseAllowance(rather thanapprove) is used so any allowance remaining from Season 2 would be preserved rather than overwritten. (As of authoring, the Season 2 allowance from cgp-0222 is fully withdrawn — current allowance is 0.)Verification performed
EpochManager,CeloUnreleasedTreasury,Governance,GoldToken) verified against current mainnet state.Test plan
mainnet.jsonimpersonating Governancereleasereverts whileEpochManagerstill points at the real EpochManagerTransfer(treasury -> Governance, 4838709680000000000000000)andReleasedevents emittedEpochManagerRegistry entry restored to0xF424...725Eafter executiontransferFromsucceeds for the full amount; allowance returns to pre-proposal levelNote: native CELO balance movement happens in the transfer precompile (
0x...fd), which vanilla anvil does not implement (silent no-op locally); the fork test asserts the emitted events and allowance storage, which pin down calldata, authorization, and accounting.