Index Lab — CryptoForge

Streaming Fee Module

AUM fee implementation (inflation-to-recipient, Index Coop pattern).
Contract Details
Categorycontracts
Files10
Price$9.99
Tech Stack
Solidity ^0.8.24 OpenZeppelin v5 Foundry
Chains
Ethereum Arbitrum Base Optimism
Description
AUM-based streaming fee implementation following the Index Coop pattern. Continuously accrues fees via index token inflation directed to a fee recipient. Supports configurable fee rates with governance-controlled caps and a timelock on fee changes to protect index holders.
Features
streaming-fee-module.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/// @title Streaming Fee Module
/// @notice AUM fee implementation (inflation-to-recipient, Index Coop pattern).
contract StreamingFeeModule {
    address public immutable owner;
    uint256 public constant VERSION = 1;

    event Initialized(address indexed deployer);

    constructor() {
        owner = msg.sender;
        emit Initialized(msg.sender);
    }

    // ... full implementation in purchased package
}
$9.99
Buy Now — $9.99