Skip to main content

SDKs and libraries

TeQoin is EVM-compatible, so you can use standard Ethereum tooling instead of waiting for chain-specific packages.

Smart contracts

  • solc for compilation
  • OpenZeppelin Contracts for audited building blocks
  • Hardhat or Foundry for development and deployment

Frontend and backend apps

  • ethers for contract calls and transactions
  • viem for typed client utilities
  • wagmi for 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:
  1. Use Foundry for contracts.
  2. Use React + Vite for the frontend.
  3. Use ethers for the first integration.
  4. Add Wagmi only when you need richer wallet UX.