File tree Expand file tree Collapse file tree 3 files changed +5
-95
lines changed
Expand file tree Collapse file tree 3 files changed +5
-95
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,18 @@ You can send `GET` requests using the following URLs to fetch gas price recommen
1616- Amoy testnet: https://gasstation-testnet.polygon.technology/amoy
1717- zkEVM Cardona: https://gasstation-testnet.polygon.technology/zkevm/cardona
1818
19+ Use the Amoy testnet below to get gas price recommendations:
20+
1921#### cURL
2022
2123``` bash
22- curl https://gasstation-testnet.polygon.technology/v2
24+ curl https://gasstation-testnet.polygon.technology/amoy
2325```
2426
2527#### JavaScript
2628
2729``` javascript
28- fetch (' https://gasstation-testnet.polygon.technology/v2 ' )
30+ fetch (' https://gasstation-testnet.polygon.technology/amoy ' )
2931 .then (response => response .json ())
3032 .then (json => console .log (json))
3133```
@@ -34,7 +36,7 @@ fetch('https://gasstation-testnet.polygon.technology/v2')
3436
3537``` python
3638import requests
37- requests.get(' https://gasstation-testnet.polygon.technology/v2 ' ).json()
39+ requests.get(' https://gasstation-testnet.polygon.technology/amoy ' ).json()
3840```
3941
4042### Mainnet
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7272 - Get started :
7373 - Get started : zkEVM/get-started/index.md
7474 - Quick start : zkEVM/get-started/quick-start.md
75- - Gas station : zkEVM/get-started/zkevm-gas-station.md
7675 - Setup nodes :
7776 - Setup local zkNode : zkEVM/get-started/setup-nodes/local-node.md
7877 - Setup production zkNode : zkEVM/get-started/setup-nodes/production-node.md
You can’t perform that action at this time.
0 commit comments