-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MintingOfInput #44
Comments
USDTpeggedToken Smart ContractThe OverviewThe contract is built using the OpenZeppelin library and inherits from Contract DetailsConstructorThe contract is deployed with the following parameters:
Functions
Usage
Note
Please tailor this README document to match your specific project's requirements and provide users with clear instructions on how to interact with your smart contract. |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
contract USDTpeggedToken is ERC20, Ownable {
using ECDSA for bytes32;
}
The text was updated successfully, but these errors were encountered: