This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol | |
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol) | |
pragma solidity >=0.4.16; | |
/** | |
* @dev Interface of the ERC-20 standard as defined in the ERC. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// Compatible with OpenZeppelin Contracts ^5.4.0 | |
pragma solidity ^0.8.27; | |
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
contract Bitartb is ERC20 { | |
constructor(address recipient) ERC20("bitartb", "bab") { | |
_mint(recipient, 1 * 10 ** decimals()); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol | |
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol) | |
pragma solidity >=0.4.16; | |
/** | |
* @dev Interface of the ERC-20 standard as defined in the ERC. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// Compatible with OpenZeppelin Contracts ^5.4.0 | |
pragma solidity ^0.8.27; | |
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
contract Bitartb is ERC20 { | |
constructor(address recipient) ERC20("bitartb", "bab") { | |
_mint(recipient, 1 * 10 ** decimals()); | |
} |