Skip to content

Commit 7915d99

Browse files
authored
Merge pull request #747 from yingjingyang/main
translate task 29
2 parents 63793fa + d855e07 commit 7915d99

File tree

1 file changed

+51
-54
lines changed

1 file changed

+51
-54
lines changed
Lines changed: 51 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,111 @@
11
# Polygon
2+
Polygon is not just wants to provide a scaling solution, but wants to create an ecosystem that links all of the different scaling solutions, such as Plasma, Optimistic, rollups and ZK rollups.
23

3-
Polygon 的目标不是提供一两个扩展解决方案,而是创建一个生态系统,使其能够轻松连接多个不同的扩展解决方案——从具有不同共识机制的侧链到第二层网络,如 Plasma、Optimistic rollups 和 ZK rollups。
4+
Right now, Polygon supports two types of Ethereum-compatible networks: stand-alone network && secured chain:
5+
- Stand-alone networks rely on their own security, for example, they have their own consensus model, such as Proof of Stake (PoS) or Delegated Proof of Stake (DPoS)
6+
- Secured chains use a "security-as-a-service" model. It can be provided directly by Ethereum, for example through fraud proofs used by Plasma, or by specialized verification nodes. These validation nodes run in the Polygon ecosystem and can be shared by multiple projects - a concept similar to Poca's shared security model
47

5-
Polygon 支持与以太坊兼容的两种区块链网络:独立网络(stand-alone network)和安全链(secured chain)
6-
- 独立网络依赖于它们自己的安全性,例如,它们可以有自己的共识模型,如权益证明(PoS)或委托权益证明(DPoS)
7-
- 安全链使用“安全即服务”模型。它可以由以太坊直接提供,例如通过 Plasma 使用的欺诈证明(fraud proofs),或由专业验证节点提供。这些验证节点运行在 Polygon 生态系统中,可以被多个项目共享——这个概念类似于波卡的共享安全模型
8-
9-
当谈到 Polygon 的架构时,我们需要关注的主要要点是它被刻意地设计成通用和抽象的。这允许其他希望扩展的应用程序选择最适合其需求的扩展解决方案。
8+
The main point to focus on when it comes to Polygon's architecture is that it is deliberately designed to be generic and abstract. This allows other applications that wish to extend to choose the extended solution that best suits their needs.
109

1110
<center><img src="https://github.com/Dapp-Learning-DAO/Dapp-Learning-Arsenal/blob/main/images/basic/29-Polygon(matic)-layer2/matic.jpeg?raw=true" /></center>
1211

1312
<br/>
1413
<br/>
1514

16-
## Polygon 扩容方案
15+
## Polygon scaling solution
1716

1817
<center>
1918
<img src="https://img.chainnews.com/material/images/a0172d4158f8e2529fd3d04d8142e818.jpg-article" alt="matic.jpeg" style="zoom:50%;" />
2019
</center>
2120

22-
## Matic Plasma Chain
21+
## Polygon Plasma Chain
2322

2423
---
2524

26-
[(Polygon Plasma Chain)](https://docs.matic.network/docs/develop/ethereum-matic/plasma/getting-started) Plasma 允许使用者将交易从主链转移到子链,从而实现快速和廉价的交易。Plasma 的一个缺点是用户从第 2 层网络中提取资金需要很长的等待时间。Plasma 不能用于扩展通用的智能合约。
25+
[(Polygon Plasma Chain)](https://docs.polygon.technology/docs/develop/ethereum-polygon/plasma/getting-started/)
26+
Users can transfer assets from Ethereum network to polygon network through Plasma, on which the fee is very low.
27+
But here is a drawback with it. That users need to wait for a long time when withdraw asset back to Ethereum network.
2728

28-
## Matic PoS Chain
29+
## Polygon State Transfer
2930

3031
---
3132

32-
[(Polygon PoS Chain)](https://docs.matic.network/docs/develop/ethereum-matic/pos/getting-started/) Matic PoS Chain 是一个未经许可的侧链,它与以太坊链并行运行。该链由具有自身验证节点的权益证明共识机制来保护。尽管 Matic PoS Chain 有自己的共识机制,但在验证节点 staking 和检查点方面,它也依赖于以太坊的安全性。
33-
34-
## Polygon Hermez ZKRollup
35-
36-
---
33+
[(Polygon State Transfer)](https://docs.polygon.technology/docs/develop/l1-l2-communication/state-transfer)
34+
Polygon validators continuously monitor a contract on Ethereum chain called StateSender. Each time a registered contract on Ethereum chain calls this contract, it emits an event. Using this event Polygon validators relay the data to another contract on Polygon chain. This StateSync mechanism is used to send data from Ethereum to Polygon.
3735

38-
[(Hermez ZKEvm)](https://www.chainnews.com/articles/018319341743.htm) 基于简洁的有效性证明(又称零知识证明)的以太坊第 2 层解决方案,在以太坊上定期提交和验证。
36+
Polygon validators also periodically submit a hash of all transactions on Polygon chain to Ethereum chain. This Checkpoint can be used to verify any transaction that happened on Polygon. Once a transaction is verified to have happened on Polygon chain, action can be taked accordingly on Ethereum.
3937

4038
## Polygon SDK
4139

4240
---
4341

44-
[(Polygon SDK)](https://polygon.technology/polygon-sdk/) 一个模块化和可扩展的框架,用于构建兼容 Ethereum 的区块链网络,用 Golang 编写。
42+
[(Polygon SDK)](https://polygon.technology/polygon-sdk/) A modular and scalable framework for building Ethereum-compatible blockchain networks, written in Golang.
4543

4644
## Polygon Avail
4745

4846
---
4947

50-
[(Polygon Data Avail)](https://blog.polygon.technology/introducing-avail-by-polygon-a-robust-general-purpose-scalable-data-availability-layer-98bc9814c048) Avail 是一个通用的、可扩展的、专注于数据可用性的区块链,针对独立链、侧链和链外扩展解决方案。
48+
[(Polygon Data Avail)](https://blog.polygon.technology/introducing-avail-by-polygon-a-robust-general-purpose-scalable-data-availability-layer-98bc9814c048) Avail is a general-purpose, scalable data availability-focused blockchain targeted for standalone chains, sidechains, and off-chain scaling solutions.
5149

5250
<br/>
5351
<br/>
5452

55-
# 参考资源
53+
# References
5654

57-
## 1 综合资源
55+
## 1 Resources
5856

5957
---
6058

61-
### Polygon 介绍
59+
### Polygon Introduction
6260

63-
- [Polygon 精简介绍](https://biquan365.com/12636.html)
64-
- [Polygon 基础介绍和使用教程](https://www.yuque.com/docs/share/8e737364-c380-418e-af21-0f07095fe900)
65-
- [Polygon 架构](https://docs.matic.network/docs/contribute/matic-architecture)
66-
- [Polygon 上的 Meta-transactions](https://docs.matic.network/docs/develop/metatransactions/getting-started)
67-
- [Matic Network 白皮书中文版](https://www.chainnews.com/articles/022315243415.htm)
61+
- [Polygon brief introudction](https://biquan365.com/12636.html)
62+
- [Polygon tutorial](https://www.yuque.com/docs/share/8e737364-c380-418e-af21-0f07095fe900)
63+
- [Polygon framework](https://docs.matic.network/docs/contribute/matic-architecture)
64+
- [Polygon Meta-transactions](https://docs.matic.network/docs/develop/metatransactions/getting-started)
65+
- [Matic Network WhitePaper](https://www.chainnews.com/articles/022315243415.htm)
6866

69-
### 官方网站
67+
### Official Website
7068

71-
- [Polygon 官网](https://polygon.technology/)
72-
- [Polygon 网络浏览器](https://polygonscan.com/)
73-
- [Polygon 文档](https://docs.matic.network/)
74-
- [Awesome Polygon (所有在 Polygon 网络上部署的项目)](http://awesomepolygon.com/)
69+
- [Polygon website](https://polygon.technology/)
70+
- [Polygon scan](https://polygonscan.com/)
71+
- [Polygon official docs](https://docs.matic.network/)
72+
- [Awesome Polygon (Projects deployed on polygon)](http://awesomepolygon.com/)
7573

76-
### 开发者入口
74+
### Developer Portal
7775

78-
- [Polygon 开发入门](https://docs.matic.network/docs/develop/getting-started)
79-
- [Matic 主网](https://rpc-mainnet.maticvigil.com)
80-
- [Mumbai 测试网](https://rpc-mumbai.maticvigil.com)
81-
- [Polygon 测试币](https://faucet.matic.network/)
76+
- [Polygon development docs](https://docs.matic.network/docs/develop/getting-started)
77+
- [Matic mainnet](https://rpc-mainnet.maticvigil.com)
78+
- [Mumbai testnet](https://rpc-mumbai.maticvigil.com)
79+
- [Polygon faucet](https://faucet.matic.network/)
8280

83-
## 2 Polygon 申请
81+
## 2 Polygon Application
8482

8583
---
8684

87-
- [Polygon 官宣申请表](https://airtable.com/shrDaWf1UYNzkhTbg)
88-
- [Polygon Grant 申请](https://polygon.technology/developer-support-program/)
85+
- [Polygon Official Application Form](https://airtable.com/shrDaWf1UYNzkhTbg)
86+
- [Polygon Grant](https://polygon.technology/developer-support-program/)
8987

90-
## 3 Polygon 开发者资源
88+
## 3 Polygon development resources
9189

9290
---
9391

9492
### How to
9593

96-
- [如何使用预言机](https://docs.matic.network/docs/develop/oracles/getting-started)
97-
- [如何使用 Chainlink](https://docs.matic.network/docs/develop/oracles/chainlink)
98-
- [如何接入支付工具](https://docs.matic.network/docs/develop/fiat-on-ramp)
99-
- [如何使用 TheGraph](https://docs.matic.network/docs/develop/graph)
100-
- [如何使用 hardhat](https://docs.matic.network/docs/develop/hardhat/)
101-
- [如何设置 Infura RPC](https://www.youtube.com/watch?v=jz6idHfMGvk)
94+
- [Polygon oracle](https://docs.matic.network/docs/develop/oracles/getting-started)
95+
- [Polygon With Chainlink](https://docs.matic.network/docs/develop/oracles/chainlink)
96+
- [Polygon With TheGraph](https://docs.matic.network/docs/develop/graph)
97+
- [Polygon With hardhat](https://docs.matic.network/docs/develop/hardhat/)
98+
- [Polygon Infura RPC Setup](https://www.youtube.com/watch?v=jz6idHfMGvk)
10299

103-
### 工具
100+
### Tools
104101

105-
- [Gas 费预测](https://docs.matic.network/docs/develop/tools/matic-gas-station/#usage)
106-
- [Polygon 网络浏览器的 APIs](https://polygonscan.com/apis)
102+
- [Gas estimate](https://docs.matic.network/docs/develop/tools/matic-gas-station/#usage)
103+
- [Polygon scan APIs](https://polygonscan.com/apis)
107104
- [Matic.js SDK](https://github.com/maticnetwork/matic.js)
108-
- [Alchemy 开发者工具套件](https://www.alchemy.com/)
109-
- [Decentology Dapp 模版](https://dappstarter.decentology.com/)
105+
- [Alchemy Developer Tool Suite](https://www.alchemy.com/)
106+
- [Decentology Dapp Template](https://dappstarter.decentology.com/)
110107

111-
### 教程
108+
### Tutorial
112109

113-
- [在 Polygon 上创建 NFT,资产部署在 IPFS 上](https://medium.com/pinata/how-to-create-layer-2-nfts-with-polygon-and-ipfs-aef998ff8ef2)
114-
- [以太坊二层 Polygon 网络 NFT 开发教程](https://cloud.tencent.com/developer/article/1828250)
110+
- [Create NFT on polygon,upload images to IPFS](https://medium.com/pinata/how-to-create-layer-2-nfts-with-polygon-and-ipfs-aef998ff8ef2)
111+
- [How to create NFT on polygon](https://cloud.tencent.com/developer/article/1828250)

0 commit comments

Comments
 (0)