Documentation Index
Fetch the complete documentation index at: https://docs.teqoin.io/llms.txt
Use this file to discover all available pages before exploring further.
SDKs and libraries
TeQoin is EVM-compatible, so you can use standard Ethereum tooling instead of waiting for chain-specific packages.Recommended stack
Smart contracts
solcfor compilation- OpenZeppelin Contracts for audited building blocks
- Hardhat or Foundry for development and deployment
Frontend and backend apps
ethersfor contract calls and transactionsviemfor typed client utilitieswagmifor React wallet state and hooks
Install examples
Hardhat
Foundry
Frontend libraries
Picking a stack
Use this rule of thumb:| Need | Best fit |
|---|---|
| Fastest contract iteration | Foundry |
| Familiar JavaScript workflow | Hardhat |
| Small frontend app | ethers |
| React production app | wagmi + viem |
Network configuration snippet
Good defaults for new teams
If you are starting from scratch:- Use Foundry for contracts.
- Use React + Vite for the frontend.
- Use ethers for the first integration.
- Add Wagmi only when you need richer wallet UX.