Smart Contract
DxChain 3.0 is fully compatible with smart contract technologies that run on Ethereum.
Last updated
Was this helpful?
DxChain 3.0 is fully compatible with smart contract technologies that run on Ethereum.
Last updated
Was this helpful?
Was this helpful?
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract TestToken is ERC20("TestToken", "TT") {}