// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract USDT is ERC20 { constructor() ERC20("United State Dolar", "USDT") { _mint(msg.sender, 100_000_000_000 * 10 ** 6); } function decimals() public view virtual override returns (uint8) { return 6; } }