File tree Expand file tree Collapse file tree 3 files changed +6
-95
lines changed
Expand file tree Collapse file tree 3 files changed +6
-95
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,19 @@ 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+ For fetching gas price recommendations on Amoy Testnet, below is the guide to do so
20+
21+
1922#### cURL
2023
2124``` bash
22- curl https://gasstation-testnet.polygon.technology/v2
25+ curl https://gasstation-testnet.polygon.technology/amoy
2326```
2427
2528#### JavaScript
2629
2730``` javascript
28- fetch (' https://gasstation-testnet.polygon.technology/v2 ' )
31+ fetch (' https://gasstation-testnet.polygon.technology/amoy ' )
2932 .then (response => response .json ())
3033 .then (json => console .log (json))
3134```
@@ -34,7 +37,7 @@ fetch('https://gasstation-testnet.polygon.technology/v2')
3437
3538``` python
3639import requests
37- requests.get(' https://gasstation-testnet.polygon.technology/v2 ' ).json()
40+ requests.get(' https://gasstation-testnet.polygon.technology/amoy ' ).json()
3841```
3942
4043### 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