// SPDX-License-Identifier: MIT pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract trustFamilyToken is ERC20 { constructor() ERC20("Trust Family Token", "TFT") { _mint(msg.sender, 1000000 * 10 ** decimals()); } }