Skip to content

Commit 4f43668

Browse files
committed
Gas Station docs updated
1 parent f63ef47 commit 4f43668

File tree

3 files changed

+6
-95
lines changed

3 files changed

+6
-95
lines changed

docs/tools/gas/polygon-gas-station.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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
3639
import 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

docs/zkEVM/get-started/zkevm-gas-station.md

Lines changed: 0 additions & 91 deletions
This file was deleted.

mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ nav:
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

0 commit comments

Comments
 (0)