...logy/in...](https://blog.breez.technology/introducing-strike-a-simple-fast-and-safe-bitcoin-card-750ffa67df80)
>- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~
...C20.sol";
contract MyToken is ERC20 {
// Constructor to set the name and symbol for the token
constructor(uint256 initialSupply) ERC20("MyToken", "MTK") {
_mint(msg.sender, initialSupply * 10 ** decimals());
}
}
```
### 说明:
- `import "@openzeppelin/contracts/token/ERC20...