File tree 4 files changed +21
-0
lines changed
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ of the [MetaMask developer page](https://metamask.io/developer/).
11
11
12
12
## April 2025
13
13
14
+ - Documented [ Ethereum Hoodi testnet] ( /services/get-started/endpoints/#ethereum ) support. ([ #1977 ] ( https://github.com/MetaMask/metamask-docs/pull/1977 ) )
14
15
- Documented [ how to use deeplinks] ( /sdk/guides/use-deeplinks ) .
15
16
([ #1928 ] ( https://github.com/MetaMask/metamask-docs/pull/1928 ) )
16
17
- Documented [ MetaMask SDK + Dynamic SDK integration] ( /sdk/quickstart/javascript-dynamic ) .
Original file line number Diff line number Diff line change @@ -66,12 +66,20 @@ Ensure that you replace `<YOUR-API-KEY>` with an API key from your [MetaMask Dev
66
66
67
67
## Ethereum
68
68
69
+ :::warning Holesky deprecation
70
+ The Holesky testnet will be deprecated from the Infura service on May 1, 2025.
71
+ Switch to the Hoodi testnet, now available on Infura via
72
+ [ Decentralized Infrastructure Network (DIN)] ( https://www.infura.io/solutions/decentralized-infrastructure-service ) .
73
+ :::
74
+
69
75
| Network | Description | URL |
70
76
| -------------------| -------------------------| ------------------------------------------------|
71
77
| Mainnet | JSON-RPC over HTTPS | ` https://mainnet.infura.io/v3/<YOUR-API-KEY> ` |
72
78
| Mainnet | JSON-RPC over WebSocket | ` wss://mainnet.infura.io/ws/v3/<YOUR-API-KEY> ` |
73
79
| Testnet (Holesky) | JSON-RPC over HTTPS | ` https://holesky.infura.io/v3/<YOUR-API-KEY> ` |
74
80
| Testnet (Holesky) | JSON-RPC over WebSocket | ` wss://holesky.infura.io/ws/v3/<YOUR-API-KEY> ` |
81
+ | Testnet (Hoodi) | JSON-RPC over HTTPS | ` https://hoodi.infura.io/v3/<YOUR-API-KEY> ` |
82
+ | Testnet (Hoodi) | JSON-RPC over WebSocket | ` wss://hoodi.infura.io/ws/v3/<YOUR-API-KEY> ` |
75
83
| Testnet (Sepolia) | JSON-RPC over HTTPS | ` https://sepolia.infura.io/v3/<YOUR-API-KEY> ` |
76
84
| Testnet (Sepolia) | JSON-RPC over WebSocket | ` wss://sepolia.infura.io/ws/v3/<YOUR-API-KEY> ` |
77
85
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ import CardList from '@site/src/components/CardList'
6
6
7
7
# Ethereum
8
8
9
+ :::warning Holesky deprecation
10
+ The Holesky testnet will be deprecated from the Infura service on May 1, 2025.
11
+ Switch to the Hoodi testnet, now available on Infura via
12
+ [ Decentralized Infrastructure Network (DIN)] ( https://www.infura.io/solutions/decentralized-infrastructure-service ) .
13
+ :::
14
+
9
15
Ethereum is a decentralized, open-source blockchain network with [ Turing-complete] ( https://en.wikipedia.org/wiki/Turing_completeness )
10
16
smart contract functionality. Ether (ETH) is the native cryptocurrency.
11
17
Original file line number Diff line number Diff line change 2
2
title : JSON-RPC methods
3
3
---
4
4
5
+ :::warning Holesky deprecation
6
+ The Holesky testnet will be deprecated from the Infura service on May 1, 2025.
7
+ Switch to the Hoodi testnet, now available on Infura via
8
+ [ Decentralized Infrastructure Network (DIN)] ( https://www.infura.io/solutions/decentralized-infrastructure-service ) .
9
+ :::
10
+
5
11
import ErrorCodes from "../../_ partials/error-codes.mdx";
6
12
7
13
<ErrorCodes />
You can’t perform that action at this time.
0 commit comments