You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This RPC is provided “as is” without warranties of any kind. Use is at your own risk, Chainlink Labs and its
@@ -18,7 +21,7 @@ import { Aside } from "@components"
18
21
19
22
## Overview
20
23
21
-
To enhance the HyperEVM developer experience we are providing free public access to our professionally hosted Testnet RPC endpoint. Developers can use this to build Hyperliquid applications and as a testnet RPC endpoint in the browser wallet. For mainnet deployments, see available mainnet RPC urls on the [Hyperliquid docs](https://hyperliquid.gitbook.io/hyperliquid-docs/builder-tools/hyperevm-tools).
24
+
To enhance the HyperEVM developer experience, we provide free public access to our professionally hosted Testnet RPC endpoint. Developers can use this endpoint to build Hyperliquid applications and configure it as a testnet RPC in browser wallets. For mainnet deployments, see available mainnet RPC URLs on the [Hyperliquid docs](https://hyperliquid.gitbook.io/hyperliquid-docs/builder-tools/hyperevm-tools).
22
25
23
26
## RPC Endpoint Details
24
27
@@ -34,6 +37,8 @@ You can use this endpoint in your dApps, scripts, or backend services with any s
34
37
35
38
### Ethers.js (JavaScript/TypeScript)
36
39
40
+
[Ethers.js](https://docs.ethers.org/v6/) is a library for interacting with Ethereum and EVM-compatible chains.
41
+
37
42
```javascript
38
43
import { ethers } from"ethers"
39
44
@@ -48,16 +53,21 @@ async function getBlock() {
48
53
getBlock()
49
54
```
50
55
51
-
### Web3.js (JavaScript/TypeScript)
56
+
### Viem (JavaScript/TypeScript)
57
+
58
+
[Viem](https://viem.sh/) is a TypeScript library for interacting with Ethereum and EVM-compatible chains. It provides modular, type-safe APIs as an alternative to ethers.js.
0 commit comments