docs: add SolidRPC node provider - #1154
Conversation
|
Thanks for contributing to Uniswap Docs! 🦄 Quick heads up on how this repo works: the docs you see on developers.uniswap.org are built from a separate source repo. When we accept a change here, we port it over there, so your fix might show up on the live site before it lands in this repo. Updates to this repo come in batches on a regular cadence. When yours is included, you'll be credited as a co-author on the commit, so the contribution counts on your GitHub profile and in Uniswap/docs. We review every PR but can't merge everything. Either way, someone from the docs team will follow up here once we've taken a look. One legal bit: by submitting a PR you agree your contribution is licensed under the repo's MIT license. |
| ## SolidRPC | ||
|
|
||
| [SolidRPC](https://solidrpc.io) provides managed EVM JSON-RPC over HTTPS for Unichain, with upstream routing, failover, monitoring, and recovery handled behind a single integration. Authenticated plans support production workloads and historical access. | ||
|
|
||
| See the [SolidRPC documentation](https://solidrpc.io/docs) to get started. | ||
|
|
||
| ### Supported networks | ||
|
|
||
| - [Unichain Mainnet](https://solidrpc.io/docs/networks) |
There was a problem hiding this comment.
Flagging for human verification: this introduces a new, previously-unlisted third-party domain (solidrpc.io) into the docs, including a live link a reader could click to send traffic/credentials to it. I wasn't able to fetch the site in this sandbox to confirm it's a legitimate, operational RPC provider with real Unichain support (vs. a placeholder/parked domain or promotional listing). Before merging, please have a maintainer independently confirm:
solidrpc.ioresolves and is operated by a real RPC servicesolidrpc.io/docsandsolidrpc.io/docs/networksexist and actually list Unichain Mainnet- The service doesn't overlap with an existing spam-listing pattern seen in other provider-directory PRs
No contract addresses or chain IDs are affected, but new external domains added to official docs warrant the same scrutiny.
There was a problem hiding this comment.
Thanks for flagging this. I'm the SolidRPC operator and the author of this listing. Here are public references for the maintainer's independent verification:
- Service website
- Documentation
- Supported networks, which lists Unichain Mainnet with chain ID 130
- Dedicated Unichain documentation, including the authenticated HTTPS endpoint and request examples
I rechecked the live service on September 8, 2026. The keyless demo endpoint returned 0x82 (130) for eth_chainId. A separate eth_getBlockByNumber("latest", false) call returned block 58118996, timestamp 2026-09-08T11:35:55Z; the head advanced between checks.
The basic chain-ID check is reproducible without creating an account or sharing credentials:
curl --fail-with-body https://rpc.solidrpc.io/demo/evm/130 \
-H 'Content-Type: application/json' \
--data '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'Expected response: {"jsonrpc":"2.0","id":1,"result":"0x82"}. This is a rate-limited demo route for verification; the documented customer endpoint uses the customer's own API key. The proposed listing is for Unichain Mainnet over HTTPS, not a request to send third-party credentials or wallet secrets to the service.
I understand that the independent domain/spam-pattern review still needs to be completed by a maintainer; these links and checks are supporting evidence, not a substitute for that review.
Review summarySmall, self-contained content change to
One item worth a maintainer's eye (left as an inline comment): this PR adds a brand-new, previously-unlisted domain ( Otherwise this looks like a clean, low-risk documentation update. |
Summary
Adds SolidRPC to the Unichain node provider directory.
The entry lists authenticated HTTPS access for Unichain Mainnet, with upstream routing, failover, monitoring, and recovery handled behind a single integration.
The introductory callout was also clarified because provider capabilities vary and SolidRPC does not advertise WebSocket support.
Type of change
How has this been verified?
git diff --checkApplicable screenshots
Not applicable — documentation-only provider entry.
Anything else reviewers should know?
The entry lists Unichain Mainnet only. It does not claim Unichain Sepolia, public keyless, or WebSocket support.