TAC offers full EVM compatibility through its Layer 1 blockchain. For reliable development and production environments, we’ve partnered with Ankr to provide enterprise-grade RPC infrastructure.
EVM JSON-RPC: For standard Ethereum-compatible development
Tendermint: Direct access to the consensus layer
Cosmos REST/gRPC: For Cosmos SDK-based interactions
2
Configure Your Application
For EVM application integration using Ankr’s RPC services:
Copy
Ask AI
// Example configuration with ethers.jsimport { ethers } from 'ethers';// Connect via Ankr's RPC endpointconst provider = new ethers.providers.JsonRpcProvider('https://turin.rpc.tac.build');// Test connectionasync function checkConnection() { const blockNumber = await provider.getBlockNumber(); console.log(`Connected to TAC network at block: ${blockNumber}`);}