A decentralized exchange prototype deployed on the Tea Sepolia testnet.
TEADEXSWAP is a simple smart contract designed as a testbed for decentralized exchange logic, built with Solidity and deployed using Hardhat. This project is deployed on the Tea Sepolia network for testing and development purposes.
pragma solidity ^0.8.20;
contract TeaDEX {
string public name = "TeaDEX Swap";
function greet() external pure returns (string memory) {
return "Welcome to TeaDEX on Tea Sepolia!";
}
}To deploy this contract on the Tea Sepolia network:
git clone https://github.com/your-username/TEADEXSWAP.git
cd TEADEXSWAPnpm installCreate a .env file:
PRIVATE_KEY=your_private_key_herenpx hardhat run scripts/deploy.js --network teaSepoliaThis project is licensed under the MIT License.