Skip to main content
PulseScanner.io

Address

0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Current Holdings
$0.00
TXs sent
not counted
First Active
2024-02-05
block 19,537,655
Last Active
12 days ago
block 27,452,048
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchCheckDotsolc 0.8.9+commit.e5eed63aruntime exact · creation exact
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @title IBurnable
 * @author Jeremy Guyet (@jguyet)
 * @dev The IBurnable interface is a function dedicated to
 * the ERC20 to burn tokens.
 */
interface IBurnable {
    /**
     * @dev Destroys `amount` tokens from `msg.sender`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `msg.sender` cannot be the zero address.
     * - `msg.sender` must have at least `amount` tokens.
     */
    function burn(uint256 amount) external returns (bool);
}