Skip to content

Commit 8ce9955

Browse files
authored
Update polygon-gas-station.md
Updated gas station url for testnet
1 parent 9fa32de commit 8ce9955

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Polygon gas station has been deployed both on the Polygon mainnet & Amoy testnet
1717

1818
You can send `GET` requests using the following URLs to fetch gas price recommendations from the gas oracle:
1919

20-
- Amoy testnet: https://gasstation-testnet.polygon.technology/amoy
21-
- zkEVM Cardona: https://gasstation-testnet.polygon.technology/zkevm/cardona
20+
- Amoy testnet: https://gasstation.polygon.technology/amoy
21+
- zkEVM Cardona: https://gasstation.polygon.technology/zkevm/cardona
2222

2323
Use the Amoy testnet below to get gas price recommendations:
2424

@@ -31,7 +31,7 @@ curl https://gasstation-testnet.polygon.technology/amoy
3131
#### JavaScript
3232

3333
```javascript
34-
fetch('https://gasstation-testnet.polygon.technology/amoy')
34+
fetch('https://gasstation.polygon.technology/amoy')
3535
.then(response => response.json())
3636
.then(json => console.log(json))
3737
```
@@ -40,7 +40,7 @@ fetch('https://gasstation-testnet.polygon.technology/amoy')
4040

4141
```python
4242
import requests
43-
requests.get('https://gasstation-testnet.polygon.technology/amoy').json()
43+
requests.get('https://gasstation.polygon.technology/amoy').json()
4444
```
4545

4646
### Mainnet

0 commit comments

Comments
 (0)