From befb3e05fd057a1fa13f0869f91853003faa417f Mon Sep 17 00:00:00 2001 From: Michael Buntarman Date: Sat, 14 Mar 2026 10:34:42 +0700 Subject: [PATCH] docs: view RPC endpoint alternatives --- docs/testnet-wallet-funding.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/docs/testnet-wallet-funding.md b/docs/testnet-wallet-funding.md index 14626d5b..8aa0cf61 100644 --- a/docs/testnet-wallet-funding.md +++ b/docs/testnet-wallet-funding.md @@ -34,7 +34,7 @@ Follow the installation guide: [https://getfoundry.sh/introduction/installation] ```bash cast send 0x1591DeAa21710E0BA6CC1b15F49620C9F65B2dEd \ "mint(uint256)" 1000000000000000000000 \ - --rpc-url wss://0xrpc.io/hoodi \ + --rpc-url https://rpc.hoodi.ethpandaops.io \ --private-key YOUR_PRIVATE_KEY ``` @@ -51,7 +51,7 @@ This mints 1000 TT2 tokens. Adjust the amount as needed: ```bash cast send 0x263ce78fef26600e4e428cebc91c2a52484b4fbf \ "mint(uint256)" 1000000000000000000000 \ - --rpc-url wss://0xrpc.io/hoodi \ + --rpc-url https://rpc.hoodi.ethpandaops.io \ --private-key YOUR_PRIVATE_KEY ``` @@ -63,12 +63,21 @@ After minting tokens on Hoodi, deposit them to TRUF.NETWORK using the web interf Connect your wallet and follow the deposit flow. +## Alternative RPC Endpoints + +You can use any Hoodi RPC endpoint. Here are some alternatives (see [ChainList](https://chainlist.org/chain/560048) for more): + +| Endpoint | Provider | +|----------|----------| +| `https://ethereum-hoodi-rpc.publicnode.com` | PublicNode | +| `https://rpc.sentio.xyz/hoodi` | Sentio | + ## Quick Reference ```bash # Mint 1000 TT2 (USDC) -cast send 0x1591DeAa21710E0BA6CC1b15F49620C9F65B2dEd "mint(uint256)" 1000000000000000000000 --rpc-url wss://0xrpc.io/hoodi --private-key YOUR_PRIVATE_KEY +cast send 0x1591DeAa21710E0BA6CC1b15F49620C9F65B2dEd "mint(uint256)" 1000000000000000000000 --rpc-url https://rpc.hoodi.ethpandaops.io --private-key YOUR_PRIVATE_KEY # Mint 1000 TT (TRUF) -cast send 0x263ce78fef26600e4e428cebc91c2a52484b4fbf "mint(uint256)" 1000000000000000000000 --rpc-url wss://0xrpc.io/hoodi --private-key YOUR_PRIVATE_KEY +cast send 0x263ce78fef26600e4e428cebc91c2a52484b4fbf "mint(uint256)" 1000000000000000000000 --rpc-url https://rpc.hoodi.ethpandaops.io --private-key YOUR_PRIVATE_KEY ```