Skip to content

Commit 486cc52

Browse files
authored
Merge pull request 0xPolygon#544 from vkpatva/patch-1
doc: updated test net gasstation url in documentation
2 parents 9fa32de + 7d408bc commit 486cc52

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ 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

2525
#### cURL
2626

2727
```bash
28-
curl https://gasstation-testnet.polygon.technology/amoy
28+
curl https://gasstation.polygon.technology/amoy
2929
```
3030

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)