Skip to content

Commit 4742d94

Browse files
Merge branch 'main' of https://github.com/0xPolygon/polygon-docs into zkevm/suggest-reorg
2 parents 98bfd55 + 00074ea commit 4742d94

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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

docs/zkEVM/architecture/protocol/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It takes three main components of the Polygon zkEVM protocol to enable transacti
1414

1515
### Trusted sequencer
1616

17-
The trusted sequencer receives L2 transactions from users, orders them, generates blocks of trasactions, fills batches, and submits them to the consensus contract's storage slots in the form of sequences.
17+
The trusted sequencer receives L2 transactions from users, orders them, generates blocks of transactions, fills batches, and submits them to the consensus contract's storage slots in the form of sequences.
1818

1919
The trusted sequencer processes batches and distributes them to L2 network nodes to achieve immediate finality and reduce costs associated with high network usage, all before submitting them to L1.
2020

0 commit comments

Comments
 (0)