Quick Start
Get started with TAC development in minutes, building hybrid dApps that connect TON and EVM ecosystems.
Install create-tac-app
The fastest way to bootstrap a TAC project is using our CLI tool:
This will create a new directory with a fully configured TAC project.
Configure your environment
Make sure you have:
- Node.js v14.16.0 or higher
- An Ethereum wallet with some testnet TAC tokens for deployment
- TON wallet for testing (Tonkeeper or TON Space recommended)
You can get testnet TAC tokens from the TAC Testnet Faucet.
Deploy contracts
Navigate to the contracts directory and deploy them to the TAC testnet:
Make sure to include your ethereum private key
environment variables in your
.env
file.
Take note of the deployed contract addresses displayed in the console: - SimpleMessage contract address - MessageProxy contract address
Update frontend configuration
Open lib/contract_address.ts
in your project and update it with your deployed contract addresses:
Start the development server
Return to the project root and start the Next.js development server:
Your TAC application is now running at http://localhost:3000.
Connect your TON wallet
Open your application in the browser and connect your TON wallet using the TON Connect button. The starter app includes a basic messaging example that demonstrates cross-chain communication from TON to EVM.
Build your dApp
Now you can start building your hybrid dApp by:
- Modifying the smart contracts in the
contracts
directory - Updating the frontend in the
pages
andcomponents
directories - Leveraging the TAC SDK’s cross-chain messaging capabilities
The starter app includes reusable components for TON wallet connection and TAC SDK integration.