mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-09 11:32:22 +00:00
688a8ed929
Co-authored-by: 0xb337r007 <0xe4e5@proton.me> Co-authored-by: Adam Uhlíř <adam@uhlir.dev>
10 lines
243 B
Solidity
10 lines
243 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.23;
|
|
|
|
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract ERC20A is ERC20 {
|
|
constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {}
|
|
}
|