Null Minter

Description:

Smart contract deployed on Ethereum.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

# @version 0.3.10
"""
@title Null Minter
@author Yearn Finance
@license GNU AGPLv3
@notice
    Dummy minter that returns zero values for any future epoch
"""

interface Minter:
    def mint(_epoch: uint256) -> uint256: nonpayable

implements: Minter

@external
@view
def preview(_epoch: uint256) -> uint256:
    """
    @notice Estimate tokens minted in a future epoch
    @param _epoch Epoch number
    @return Estimated tokens minted
    """
    return 0

@external
def mint(_epoch: uint256) -> uint256:
    """
    @notice Mint tokens for a specific epoch
    @param _epoch Epoch number
    @return Amount of tokens minted
    """
    return 0

Tags:
addr:0x1025cf97b8a91cbd8e6d2cbf972437a54d017214|verified:true|block:23597260|tx:0xd4f791c08621c622b4e068ae6b0a12acf277e21997095f2f8b1af82c468d12f2|first_check:1760706252

Submitted on: 2025-10-17 15:04:13

Comments

Log in to comment.

No comments yet.