SUPERB protocol logo

SUPERB

Live Aug 15

Tokenomics: TBA

SUPERB is the first AI-native hedge fund designed entirely on‑chain and built for the Base ecosystem. At its core is a self‑adjusting agent that analyzes token launches, liquidity shifts, and behavioural patterns across the network, reallocating capital in real time without human intervention. Users participate by vesting $SUPERB, unlocking a continuous stream of $SUPERBx, a Superfluid‑powered yield token that reflects their share of protocol performance. No dashboards to micromanage. No active trades to track. Just transparent, programmable investing built for the next generation of onchain users.

Made by Mutia with love

$npx stream
Initializing...
Ready to stream.
Executing AI strategy
FarcasterXClankerDex ScreenerSuperfluid
// SPDX-License-Identifier: AGPLv3
pragma solidity ^0.8.0;

import {SuperTokenStorage} from "../base/SuperTokenStorage.sol";
import {UUPSProxy} from "../base/UUPSProxy.sol";

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {ISuperToken} from "@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken.sol";
import {ISuperTokenFactory} from "@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory.sol";

/// @title Abstract contract containing a thin layer of abstraction for aux logic.
/// @author jtriley.eth
/// @dev The initial supply may be zero, in the event the token is mintable.
/// Inheriting contracts MUST have an initializer calling this function!
abstract contract SuperTokenBase is SuperTokenStorage, UUPSProxy {

  /// @dev Upgrades the super token with the factory, then initializes.
  /// @param factory super token factory for initialization
  /// @param name super token name
  /// @param symbol super token symbol
  function _initialize(address factory, string memory name, string memory symbol) internal {
    ISuperTokenFactory(factory).initializeCustomSuperToken(address(this));
    ISuperToken(address(this)).initialize(IERC20(address(0)), 18, name, symbol);
  }

  /// @dev Gets totalSupply
  /// @return t total supply
  function _totalSupply() internal view returns (uint256 t) {
    return ISuperToken(address(this)).totalSupply();
  }

  /// @dev Internal mint, calling functions should perform important checks!
  /// @param account Address receiving minted tokens
  /// @param amount Amount of tokens minted
  /// @param userData Optional user data for ERC777 send callback
  function _mint(address account, uint256 amount, bytes memory userData) internal {
    ISuperToken(address(this)).selfMint(account, amount, userData);
  }

  /// @dev Internal burn, calling functions should perform important checks!
  /// @param from Address from which to burn tokens
  /// @param amount Amount to burn
  /// @param userData Optional user data for ERC777 send callback
  function _burn(address from, uint256 amount, bytes memory userData) internal {
    ISuperToken(address(this)).selfBurn(from, amount, userData);
  }

  /// @dev Internal approve, calling functions should perform important checks!
  /// @param account Address of approving party
  /// @param spender Address of spending party
  /// @param amount Approval amount
  function _approve(address account, address spender, uint256 amount) internal {
    ISuperToken(address(this)).selfApproveFor(account, spender, amount);
  }

  /// @dev Internal transferFrom, calling functions should perform important checks!
  /// @param holder Owner of the tranfserred tokens
  /// @param spender Address of spending party (approved/operator)
  /// @param recipient Address of recipient party
  /// @param amount Amount to be tranfserred
  function _transferFrom(
    address holder,
    address spender,
    address recipient,
    uint256 amount
  ) internal {
    ISuperToken(address(this)).selfTransferFrom(holder, spender, recipient, amount);
  }
}

SUPERB Token

Governance and utility token of the SUPERB protocol. Holders can vest $SUPERB to receive SUPERBx streams and may participate in protocol decisions in the future.

On Clanker (TBA)

SUPERBx Token

A non‑transferable yield stream token issued 1:1 when $SUPERB is vested. Used to track real‑time onchain returns, no active management required.

On Basescan

SUPERBx Token (Superfluid)

SUPERBx is streamed using Superfluid’s smart contract framework, enabling continuous, gasless reward flow for vesters. Built directly on Superfluid’s protocol.

On Superfluid

About SUPERB

SUPERB is an AI‑native hedge fund protocol, built fully on‑chain for the Base ecosystem. At its core is an autonomous agent that reallocates capital based on live signals from token launches, liquidity flows and on‑chain user behaviour.

Users participate by vesting $SUPERB, unlocking a continuous yield stream of $SUPERBx via Superfluid. This stream reflects each user’s proportional stake in the protocol’s on‑chain performance. No dashboards. No active trading. No micromanagement. Just real yield, streamed automatically.

Why We Vaulted 50% Before Launch

To protect the protocol and align with our long‑term vision, 50 % of the total supply was vaulted before the official launch. This vault will be claimed on August 15, as originally scheduled.

Here’s why we did it:

  • To protect against sniper bots and speculative manipulation
  • To reduce volatility and avoid early concentration of tokens in a few wallets
  • To reserve funds for the team, future airdrops, community incentives and LP provisioning
  • To keep tokenomics fair, transparent and verifiable on‑chain from day one

Everything is deployed, vaulted and trackable on‑chain. No surprises. No hidden wallets. No shortcuts.

Core Concepts

  • $SUPERB – Governance and staking token
  • $SUPERBx – Real‑time yield stream earned by vesting
  • AI Agent – Analyses on‑chain activity and reallocates treasury capital
  • Superfluid – Streaming layer enabling continuous emissions
  • Clanker – Used to deploy the token securely on Base

Launching August 15

Built by Mutia & Arian.

Focused on security, simplicity and long‑term autonomy.

Built with Astro by devi|dev|io