Back to leaderboard
Season 1 · DeFi & Open Finance

ArcFund

Borderless payments and savings powered by OPN Chain.

Stage 1, ReviewDeFi & Open Finance

by chautubich · submitted Jun 8, 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.

// SPDX-License-Identifier: MIT pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol";

contract ArcFundToken is ERC20, Ownable {

uint256 public constant MAX_SUPPLY = 100000000 * 10 ** 18;

constructor()
    ERC20("ArcFund Token", "ARC")
    Ownable(msg.sender)
{
    _mint(msg.sender, MAX_SUPPLY);
}

function burn(uint256 amount) external {
    _burn(msg.sender, amount);
}

}

Roadmap

02/03

What ships next.

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

// SPDX-License-Identifier: MIT pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol";

contract ArcFundToken is ERC20, Ownable {

uint256 public constant MAX_SUPPLY = 100000000 * 10 ** 18;

constructor()
    ERC20("ArcFund Token", "ARC")
    Ownable(msg.sender)
{
    _mint(msg.sender, MAX_SUPPLY);
}

function burn(uint256 amount) external {
    _burn(msg.sender, amount);
}

}

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.

  • 01ArcFund TokenPrimary

    0x9db20Ab9dF111E6F5674CF3471804E9189452814

    tx 0x5071cd7b3852f0000f18d04331823ab13f13050813159ed3aaa021047f75941f

    deployed Jun 8, 2026 · block 18147770