mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-02-16 05:16:29 +00:00
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_) {}
|
||
|
}
|