


Node RPC
A high-performance node infrastructure designed to scale with your dapp wherever your users are.
Single Node RPC to run and scale multichain dapps
Run and scale high-performance dapps on the only customizable node infrastructure for all major EVM chains, L2s, and rollups.
up to 99.99% uptime SLA
as low as 0.01% error rate
on over 60+ networks
<100ms median latency
100% accurate gas estimates
<50ms avg. sim. exec. time

Developer-friendly node infrastructure
Extend your node RPC to create advanced dapp capabilities and a great user experience without additional infrastructure overhead.
Integrate once, scale without limitations
Get all the standard capabilities to scale and expand your dapp across chains with a single Node RPC.

Pro dapps run on Tenderly Node RPC
Integrate and scale within seconds
Add Node RPC to your development frameworks, client libraries, or dapp UI libraries with ready-made code snippets. Start using the best-performing node infrastructure across your projects within seconds.
- Hardhat
- Viem
- Ethers
- Wagmi
123456789101112131415161718192021
// Integration Instructions: https://docs.tenderly.co/node/integrations-smart-contract-frameworks/hardhat
import { HardhatUserConfig, task, types } from 'hardhat/config';
import '@nomicfoundation/hardhat-toolbox';
import * as tenderly from '@tenderly/hardhat-tenderly';
import * as dotenv from 'dotenv';
dotenv.configure();
tenderly.setup({ automaticVerifications: true });
const config: HardhatUserConfig = {
solidity: '0.8.19',
defaultNetwork: 'tenderly',
networks: {
tenderly: {
url: 'https://optimism.gateway.tenderly.co/****',
chainId: 10,
},
},
tenderly: { username: '*****', project: 'project' },
};
123456789101112
// Integration Instructions: https://docs.tenderly.co/node/integrations-chain-interaction/viem
import { createPublicClient, http } from "viem";
import { mainnet } from "viem/chains";
const client = createPublicClient({
chain: mainnet,
transport: http(
"https://mainnet.gateway.tenderly.co/$TENDERLY_NODE_ACCESS_KEY"
),
});
console.log("Block Number", await client.getBlockNumber());
123456789101112131415
// Integration Instructions: https://docs.tenderly.co/node/integrations-chain-interaction/ethers
import { ethers } from "ethers";
const RPC_URL = "https://mainnet.gateway.tenderly.co/$TENDERLY_NODE_ACCESS_KEY"
async function executeMethod() {
// Initialize an ethers provider instance
const provider = new ethers.JsonRpcProvider(RPC_URL);
const blockNumber = await provider.getBlockNumber();
console.log(blockNumber);
}
await executeMethod();
1234567891011121314151617181920
// Integration Instructions: https://docs.tenderly.co/node/integrations-dapp-ui/wagmi
import { createConfig, http } from 'wagmi';
import { mainnet } from 'wagmi/chains';
import { injected, metaMask, safe, walletConnect } from 'wagmi/connectors';
const projectId = "WALLETCONNECT_PROJECT_ID";
const rpcUrl = "https://mainnet.gateway.tenderly.co/$TENDERLY_NODE_ACCESS_KEY";
export const config = createConfig({
chains: [mainnet],
connectors: [
injected(),
walletConnect({ projectId }),
metaMask(),
safe(),
],
transports: {
[mainnet.id]: rpcUrl,
},
})