Skip to content

Instantly share code, notes, and snippets.

@bodrovis
Last active January 16, 2023 15:58
Show Gist options
  • Select an option

  • Save bodrovis/c963c3eab8df5b9557482c472120b05b to your computer and use it in GitHub Desktop.

Select an option

Save bodrovis/c963c3eab8df5b9557482c472120b05b to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
interface IERC20Metadata is IERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment