Skip to content

Commit c2c66ad

Browse files
Merge pull request 0xPolygon#446 from KENILSHAHH/main
Gas Station docs updated
2 parents f63ef47 + 89cba60 commit c2c66ad

File tree

3 files changed

+5
-95
lines changed

3 files changed

+5
-95
lines changed

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

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

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)