Skip to content

Commit f61e4dd

Browse files
authored
feat: add Tempo mainnet candidate and testnet chain RPC urls (#794)
Add [Tempo](https://tempo.xyz/) chains: - **tempo** (Chain ID: 4217) - RPC: https://rpc.mainnet.tempo.xyz - **tempo_moderato** (Chain ID: 42431) - RPC: https://rpc.moderato.tempo.xyz - **tempo_andantino** (Chain ID: 42429) - RPC: https://rpc.testnet.tempo.xyz
1 parent 887e872 commit f61e4dd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/StdChains.sol

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,14 @@ abstract contract StdChains {
282282
setChainWithDefaultRpcUrl(
283283
"unichain_sepolia", ChainData("Unichain Sepolia", 1301, "https://sepolia.unichain.org")
284284
);
285+
286+
setChainWithDefaultRpcUrl("tempo", ChainData("Tempo", 4217, "https://rpc.mainnet.tempo.xyz"));
287+
setChainWithDefaultRpcUrl(
288+
"tempo_moderato", ChainData("Tempo Moderato", 42431, "https://rpc.moderato.tempo.xyz")
289+
);
290+
setChainWithDefaultRpcUrl(
291+
"tempo_andantino", ChainData("Tempo Andantino", 42429, "https://rpc.testnet.tempo.xyz")
292+
);
285293
}
286294

287295
// set chain info, with priority to chainAlias' rpc url in foundry.toml

0 commit comments

Comments
 (0)