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: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.