OPN Funding Round
A transparent native OPN funding round primitive for community campaigns.
by borshslav · submitted Jun 2, 2026
Community votes
0
Voting opens when this submission reaches the Top 10 stage.
Overall score
—/ 100
Weighted average across the 5 judging criteria.
Description
01/03
What the builder said.
Written by the team, rendered as the markdown they typed in the submission wizard.
Project overview
OPN Funding Round is a simple community funding primitive deployed on OPN Chain. It lets users fund a round with native OPN while the contract records each funding entry, contributor amount, and timestamp on-chain.
The idea is to model the basic layer of a transparent funding campaign: users contribute, the contract tracks totals, and the round activity can be checked publicly.
Why it matters
Funding rounds are common in Web3 communities, grants, builder campaigns, and shared ecosystem initiatives. Before adding complex voting or allocation logic, a project needs a clean way to record who funded a round and how much was contributed.
This build focuses on that first layer.
Contract behavior
- The user calls
fundRound()and sends native OPN. - The contract creates a funding entry for that wallet.
- Each entry stores amount and funding time.
- The contract tracks total funded amount by user.
- The contract also tracks total round funding and total entry count.
- Anyone can read basic round statistics through
getRoundStats().
OPN Chain proof
The contract was deployed on OPN Chain during the Season 1 window. A live fundRound() transaction was executed, giving the submission both deployment proof and interaction proof.
Roadmap
02/03
What ships next.
The builder's own next-quarter plan. Use it to gauge follow-through and ambition.
Current stage
The first version of OPN Funding Round is focused on a clear funding record for community campaigns:
- Deploy the funding round contract on OPN Chain.
- Test the
fundRound()function with native OPN. - Store each funding entry amount and timestamp on-chain.
- Track total funded amount by user.
- Track total round funding and total entry count.
- Submit the build for Season 1 review.
Next practical step
The next step is to move the funding flow from Remix into a simple user interface:
- Add a wallet-connected funding page.
- Let users contribute to a round from the interface.
- Show contribution history for the connected wallet.
- Display total round funding and total entries.
- Add explorer links for each funding transaction.
Product direction
After the basic interface is ready, the funding round can become more useful for community and builder campaigns:
- Add named funding rounds.
- Add round descriptions and funding goals.
- Add ERC-20 contribution support.
- Add public round pages for transparent tracking.
- Improve events for dashboards and analytics.
Longer-term idea
The long-term direction is to make this a lightweight funding campaign tool for OPN Chain, where builders and communities can create transparent funding rounds, track contributions, and show campaign activity directly on-chain.
On-chain proof
03/03
1 contract on OPN Chain.
The chain itself confirmed every deployment is valid, signed by the builder's wallet, and inside the season's window.