Back to leaderboard
Season 1 · DeFi & Open Finance

OPN Pulse

Real-time yield optimizer that makes frequent harvesting actually profitable on OPN Chain

Stage 1, ReviewDeFi & Open Finance

by nurhidayat · submitted Jun 3, 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.

What we built

OPN Pulse is a real-time yield optimizer built for OPN Chain.

It is an ERC-4626 vault that automatically splits user deposits across two yield strategies. Yield accrues on-chain every second, and anyone can trigger harvesting and rebalancing at any time.

Why OPN Chain

Frequent harvesting is the main feature of this product.

On most chains this is too expensive because of gas and slow blocks. OPN Chain’s ~1 second finality and very low predictable fees make frequent compounding practical and profitable.

The whole system is designed around this advantage. Without OPN’s performance, the core value would disappear.

Key Features

  • On-chain per-second yield accrual
  • Permissionless harvest and rebalance with keeper incentives
  • Live dashboard showing TVL, total harvests, and exact seconds since last harvest
  • One-click deposit and capital deployment

Technical Highlights

The main function anyone can call:

function harvestAndRebalance() external;

Strategies are registered with their allocation weights at deployment:

vault.addStrategy(lendingStrategy, 6000); // 60%
vault.addStrategy(dexStrategy, 4000);     // 40%

Every strategy must follow this interface:

interface IStrategy { 
function deposit(uint256 amount) external;
    function withdraw(uint256 amount) external;
    function harvest() external returns (uint256 profit);
    function totalAssets() external view returns (uint256);
}

All logic lives on-chain. The design depends on OPN’s fast blocks and low fees to make repeated calls cheap.

On-Chain Verification

The following contracts were deployed by this wallet inside the Season 1 window:

PulseVault:        0x41a4640745cFeF401FCAfED8269CcEA8Bd71def3
LendingStrategy:   0x928c5716a7D54a4bf6006666f6A4e86BcAB45cfe
DexStrategy:       0x82Ae3f146e8825bd5C5233a6bCF4a9adD2266352

Dozens of deposits and on-chain harvests/rebalances have already been executed with the same wallet to prove real usage and activity.

Links

• GitHub: https://github.com/nurhidayat1234/opn-pulse • Live Demo: https://opn-pulse.vercel.app/

Roadmap

02/03

What ships next.

The builder's own next-quarter plan. Use it to gauge follow-through and ambition.

Roadmap

Q3 2026 – Strengthen Core (Season 1 Focus)

  • Replace mock strategies with real yield sources as soon as protocols go live on OPN Chain.
  • Add on-chain APY calculation and historical performance tracking directly in the vault.
  • Increase on-chain activity: target 50+ verified harvests and multiple user deposits during the refinement window
    (building on the dozens already executed).
  • Polish dashboard: add charts, mobile responsiveness, and better error handling.
  • Submit for Top 25 and gather structured feedback from the IOPn team.

Q4 2026 – Cross-Season Preparation

  • Begin integration with OPN identity primitives (preparing for Season 2: Identity & Reputation).
  • Add support for boosted rates based on on-chain reputation or builder credentials (NeoID / NeoCard).
  • Explore RWA yield opportunities (Season 3 alignment) by creating a dedicated RWA strategy module.
  • Deploy to OPN mainnet once it is stable and has sufficient liquidity.
  • Open the project for external keepers and small community contributions.

2027 and Beyond – Multi-Season Builder

  • Full participation across remaining seasons (AI & Compute, Gaming & Ownership, Open Track).
  • Build a permissionless "Strategy Marketplace" where other builders can plug in their own yield strategies.
  • Integrate EIP-7702 smart accounts for gasless or batched harvesting sessions.
  • Establish OPN Pulse as a reference implementation for real-time DeFi primitives on sovereign chains.
  • Pursue institutional partnerships and GTM support through the IOPn ecosystem (free zone license, subsidized compute, investor intros).

This roadmap is designed to compound credentials across all six seasons while delivering real utility on OPN Chain from day one.

On-chain proof

03/03

3 contracts on OPN Chain.

The chain itself confirmed every deployment is valid, signed by the builder's wallet, and inside the season's window.

  • 01OPN Pulse VaultPrimary

    0x41a4640745cFeF401FCAfED8269CcEA8Bd71def3

    tx 0x040e6dd32600c0ca397ddc16ae189030cb65cdde84deed269d2734f4ec4d24c9

    deployed Jun 3, 2026 · block 17842563

  • 02MockLendingStrategy

    0x928c5716a7D54a4bf6006666f6A4e86BcAB45cfe

    tx 0xe36f9bdd5578cecb05ac1d3c42ae4ff152c7d92482331e23edd7d70c35d204ac

    deployed Jun 3, 2026 · block 17842567

  • 03MockDexStrategy

    0x82Ae3f146e8825bd5C5233a6bCF4a9adD2266352

    tx 0xe8811ddd8cffafef3536175a31b230827c6dfa418f68f014dbca3fcc20bef371

    deployed Jun 3, 2026 · block 17842571