Skip to content

Commit 94dba81

Browse files
Joe Nyziocritesjosh
Joe Nyzio
andauthored
Metadata SEO (titles + descriptions) (celo-org#223)
* Celo Basics section metadata Added Celo Basics section metadata (title + descriptions) * Title and Description for Celo Basics Finished Metadata (title + description) for Celo Basics section * Title and Description for Wallets Section Added Metadata (title + description) to wallets section. * Why Celo and Welcome updates Changed description for Why Celo/Welcome pages * Remaining Welcome Pages Updated metadata for remaining welcome pages. (Excluding Protocol section - completing next) * Consensus metadata Added metadata to consensus section along with some formatting and header updates * Metadata up to validator rewards Updated metadata up to validator rewards * Metadata > transactions section Added description and titles through 'transaction' section * Finished "Welcome Section" Metadata Finished Metadata for all of Welcome section * Description updates Small updates to descriptions. * welcome page videos Embedded welcome page videos * Remove videos Removed video embeds from welcome page * Metadata Contributor section Completed title + description for contributor section * Integrations Metadata Added titles and descriptions for Integrations section * Metadata for Owners section Updated titles and descriptions for Celo owners section. * Validator Metadata Updates to titles and descriptions in validator section * Metadata developers Updated developers section titles and descriptions * Celo whitepapers Update whitepapers description * Move DApp Gallery + descriptions Moved dapp gallery to top of get started. Small tweaks to description text. * Edits small edits * Formatting updates + ____ + What is Celo + YouTube Embeds + Links * Join the community Added join the community link to welcome page * Updated links Changed links on introduction to celo * Update bridging-native-assets.md * Update bridging-tokens-with-etherscan.md * Update bridging-native-assets.md * Update index.md * Update full-node-incentives.md * Update celo-recovery.md * Update contributing.md * Update hello-contract-remote-node.md * Update hellocontracts.md * Update using-js-keystores.md * Update running-a-full-node-in-alfajores.md * Update running-a-full-node-in-alfajores.md * Update running-a-full-node-in-baklava.md * Update mainnet-network-disclaimer.md * Update celo-economic-model.md Co-authored-by: Josh <[email protected]>
1 parent f6e6a35 commit 94dba81

File tree

176 files changed

+2137
-549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+2137
-549
lines changed

docs/FAQs.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
---
22
title: Celo FAQ
3+
description: Answers to frequently asked questions about Celo.
34
id: faqs
45
---
56

6-
# Celo FAQ
7+
# FAQ
78

8-
Frequently asked questions about Celo.
9+
Answers to frequently asked questions about Celo.
10+
11+
___
912

1013
## Introduction and Overview
1114

Original file line numberDiff line numberDiff line change
@@ -1,60 +1,63 @@
11
---
22
title: Bridge Native Assets with Etherscan
3+
description: How to bridge native assets from ETH and Matic to Celo with Etherscan.
34
---
45

5-
Bridging ETH and Matic to Celo.
6+
import Tabs from '@theme/Tabs';
7+
import TabItem from '@theme/TabItem';
68

7-
---
8-
9-
## How to complete this guide
10-
11-
* **Step 1:** Call the EthHelper (to send tokens)
12-
* **Step 2:** Wait
9+
# Bridge Native Assets with Etherscan
1310

14-
---
15-
16-
## Step 1: Call the EthHelper
11+
How to bridge native assets from ETH and Matic to Celo with Etherscan.
1712

18-
1. Navigate to the [Etherscan](https://etherscan.io/) page for the EthHelper.
13+
___
14+
## Call the EthHelper
1915

20-
:::info
16+
Navigate to the [Etherscan](https://etherscan.io/) (or [Polygonscan](https://polygonscan.com/)) page for the EthHelper.
2117

22-
**On Ethereum:** 0xf1c1413096ff2278C3Df198a28F8D54e0369cF3A
23-
**On Polygon:** 0xc494bFEE14b5E1E118F93CfedF831f40dFA720fA
18+
<Tabs>
19+
<TabItem value="Ethereum" label="On Ethereum" default>
20+
Ethereum EthHelper Address = [0xf1c1413096ff2278C3Df198a28F8D54e0369cF3A](https://etherscan.io/address/0xf1c1413096ff2278C3Df198a28F8D54e0369cF3A)
21+
</TabItem>
22+
<TabItem value="Polygon" label="On Polygon">
23+
Polygon EthHelper Address = [0xc494bFEE14b5E1E118F93CfedF831f40dFA720fA](https://polygonscan.com/address/0xc494bFEE14b5E1E118F93CfedF831f40dFA720fA)
24+
</TabItem>
25+
</Tabs>
2426

25-
:::
26-
27-
2. Open the **Write Contract** pane > **connect your wallet** > then select **sendToEVMLike**
27+
* Open the **Write Contract** pane > **connect your wallet** > then select **sendToEVMLike**
2828
* Optics is designed to support multiple non-EVM chains
2929
* This function helps you send ETH to another chain that uses EVM-style addresses
3030

3131
![Bridging Native Assets with Etherescan](https://github.com/joenyzio/assets/blob/main/celo-docs/bridging-native-assets-with-etherscan/bridging-native-assets-with-etherscan.png?raw=true)
3232

33-
1. For **payableAmount** enter the amount you'd like to send in ETH.
33+
* For **payableAmount** enter the amount you'd like to send in ETH.
3434

35-
:::info
35+
:::tip
3636

3737
1 wei = 1 / 10 ** 18 ETH.
3838

3939
:::
4040

41-
4. For **_domain**, enter the domain ID of the chain to which you'd like to send tokens.
42-
43-
:::info
41+
* For **_domain**, enter the domain ID of the chain to which you'd like to send tokens.
4442

4543
Domain IDs are like phone numbers. They represent the chain you're going to call.
46-
* 1667591279 for **Celo**
47-
* 1886350457 for **Polygon**
48-
* 6648936 for **Ethereum**
4944

50-
:::
45+
<Tabs>
46+
<TabItem value="Celo" label="On Celo" default>
47+
Celo Domain ID = 1667591279
48+
</TabItem>
49+
<TabItem value="Polygon" label="On Polygon">
50+
Polygon Domain ID = 1886350457
51+
</TabItem>
52+
<TabItem value="Ethereum" label="On Ethereum">
53+
Ethereum Domain ID = 6648936
54+
</TabItem>
55+
</Tabs>
5156

52-
5. For **_to**, enter the address of the recipient on the destination chain.
57+
* For **_to**, enter the address of the recipient on the destination chain.
58+
* Select **write** > **sign the transaction** > then **send** it to the network.
5359

54-
6. Select **write** > **sign the transaction** > then **send** it to the network.
55-
56-
---
5760

58-
## Step 2: Wait
61+
## Wait
5962

6063
Wait for a moment for your transaction to finalize on the network.

docs/celo-codebase/protocol/bridging/bridging-to-celo.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
# Bridging to Celo
1+
---
2+
title: Celo Bridges
3+
description: How to bridge from Ethereum, Polygon, and Solana to Celo.
4+
---
25

3-
Bridging to Ethereum, Polygon, and Solana to Celo
6+
# Celo Bridges
47

5-
---
8+
How to bridge assets from Ethereum, Polygon, and Solana to Celo.
9+
10+
___
11+
12+
## Bridges Available on Celo
613

714
There are several bridges developed by the community for bridging tokens from other chains to Celo.
815

Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
11
---
22
title: Bridge Tokens with Etherscan
3+
description: Bridging ERC-20 tokens from Ethereum and Polygon to Celo.
34
---
45

5-
Bridging ERC-20 tokens from Ethereum and Polygon to Celo.
6+
import Tabs from '@theme/Tabs';
7+
import TabItem from '@theme/TabItem';
68

7-
---
8-
9-
## How to complete this guide
9+
# Bridge Tokens with Etherscan
1010

11-
* **Step 1:** Approve the Bridge (for token usage)
12-
* **Step 2:** Call the Bridge (to send tokens)
13-
* **Step 3:** Wait
11+
How to bridge ERC-20 tokens from Ethereum and Polygon to Celo.
1412

15-
---
13+
___
1614

17-
## Step 1: Approve the Bridge
15+
## Approve the Bridge
1816

1917
Start by approving token usage on the bridge.
2018

21-
1. Navigate to the [Etherscan](https://etherscan.io/) page for the token you want to send
22-
2. Open the **Write Contract** pane > **connect your wallet** > and select **approve**
19+
* Navigate to the [Etherscan](https://etherscan.io/) (or [Polygonscan](https://polygonscan.com/)) page for the token you want to send
20+
* Open the **Write Contract** pane > **connect your wallet** > and select **approve**
2321

2422
![Bridging Tokens with Etherescan 1](https://github.com/joenyzio/assets/blob/main/celo-docs/bridging-tokens-with-etherscan/bridging-tokens-with-etherscan-1.png?raw=true)
2523

26-
3. For **spender** enter the BridgeRouter address:
24+
* For **spender** enter the BridgeRouter address:
2725

28-
:::tip
26+
<Tabs>
27+
<TabItem value="Ethereum" label="Ethereum" default>
28+
Ethereum BridgeRouter Address = 0x6a39909e805A3eaDd2b61fFf61147796ca6aBB47
29+
</TabItem>
30+
<TabItem value="Polygon" label="Polygon">
31+
Polygon BridgeRouter Address = 0xf244eA81F715F343040569398A4E7978De656bf6
32+
</TabItem>
33+
</Tabs>
2934

30-
If you're unsure, check the decimals in the Read Contract pane
31-
* **On Ethereum:** 0x6a39909e805A3eaDd2b61fFf61147796ca6aBB47
32-
* **On Polygon:** 0xf244eA81F715F343040569398A4E7978De656bf6
35+
* For **amount** enter the number of tokens you'd like to send in that token's smallest unit.
3336

34-
:::
35-
36-
4. For **amount** enter the number of tokens you'd like to send in that token's smallest unit.
37-
38-
:::info
37+
:::tip
3938

4039
If you're unsure, check the decimals in the Read Contract pane
4140
* For most tokens the number of digits is 18
@@ -49,49 +48,57 @@ Approving too much is usually ok, but not approving enough will cause your next
4948

5049
:::
5150

51+
* Select **write** > sign the transaction > then send it to the network.
5252

53-
5. Select **write** > sign the transaction > then send it to the network.
54-
55-
---
56-
57-
## Step 2: Call the Bridge
53+
## Call the Bridge
5854

5955
You can now start sending tokens on the approved Bridge.
6056

61-
1. Navigate to the [Etherscan](https://etherscan.io/) page for the router
62-
63-
:::info
64-
65-
* **On Ethereum:** 0x6a39909e805A3eaDd2b61fFf61147796ca6aBB47
66-
* **On Polygon:** 0xf244eA81F715F343040569398A4E7978De656bf6
57+
1. Navigate to the appropriate page for the router
6758

68-
:::
59+
<Tabs>
60+
<TabItem value="Ethereum" label="Ethereum" default>
61+
Address = [0x6a39909e805A3eaDd2b61fFf61147796ca6aBB47](https://etherscan.io/address/0x6a39909e805A3eaDd2b61fFf61147796ca6aBB47)
62+
</TabItem>
63+
<TabItem value="Polygon" label="Polygon">
64+
Address = [0xf244eA81F715F343040569398A4E7978De656bf6](https://polygonscan.com/address/0xf244eA81F715F343040569398A4E7978De656bf6)
65+
</TabItem>
66+
</Tabs>
6967

70-
2. Open the **Write as Proxy** pane > connect your wallet > and select send
68+
* Open the **Write as Proxy** pane > connect your wallet > and select send
7169

7270
![Bridging Tokens with Etherescan 2](https://github.com/joenyzio/assets/blob/main/celo-docs/bridging-tokens-with-etherscan/bridging-tokens-with-etherscan-2.png?raw=true)
7371

74-
3. For **_token**, enter the address of the token you want to send
75-
4. For **_amount**, enter the amount of tokens you'd like to send in that token's smallest unit.
72+
* For **_token**, enter the address of the token you want to send
73+
* For **_amount**, enter the amount of tokens you'd like to send in that token's smallest unit.
7674

7775
:::info
7876

7977
This should be the same number you approved earlier.
8078

8179
:::
8280

83-
5. For **_destination**, enter the domain ID of the chain to which you'd like to send tokens.
81+
* For **_destination**, enter the domain ID of the chain to which you'd like to send tokens.
8482

85-
:::info
83+
<Tabs>
84+
<TabItem value="Celo" label="On Celo" default>
85+
Celo Domain ID = 1667591279
86+
</TabItem>
87+
<TabItem value="Polygon" label="On Polygon">
88+
Polygon Domain ID = 1886350457
89+
</TabItem>
90+
<TabItem value="Ethereum" label="On Ethereum">
91+
Ethereum Domain ID = 6648936
92+
</TabItem>
93+
</Tabs>
94+
95+
:::tip
8696

87-
Domain IDs are like phone numbers. They represent the chain you're going to call:
88-
* 1667591279 for **Celo**
89-
* 1886350457 for **Polygon**
90-
* 6648936 for **Ethereum**
97+
Domain IDs are like phone numbers. They represent the chain you're going to call.
9198

9299
:::
93100

94-
6. For **_recipient**, enter the address of the recipient on the destination chain.
101+
* For **_recipient**, enter the address of the recipient on the destination chain.
95102
* To help support future chains with longer addresses, Optics uses 32-byte addresses.
96103
* To convert an Ethereum, Celo, or Polygon address to bytes32 you can add 24 0s after the 0x prefix
97104

@@ -105,10 +112,8 @@ Domain IDs are like phone numbers. They represent the chain you're going to call
105112

106113
:::
107114

108-
7. Select **write** > **sign the transaction** > then **send** it to the network.
109-
110-
---
115+
* Select **write** > **sign the transaction** > then **send** it to the network.
111116

112-
## Step 3: Wait
117+
## Wait
113118

114119
Wait for a moment for your transaction to finalize on the network.

docs/celo-codebase/protocol/bridging/optics-gui-kr.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Optics Bridge GUI - Korean
3+
description: Sending ETH From Ethereum to Celo
34
---
45

56
# Sending ETH From Ethereum to Celo

docs/celo-codebase/protocol/bridging/optics-gui-zh_cn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Optics Bridge GUI
2+
title: Optics Bridge GUI - gui-zh-cn
3+
description: Sending ETH From Ethereum to Celo
34
---
4-
55
# Optics 跨链桥使用指南
66

77
## ETH从以太坊跨链到Celo主网

docs/celo-codebase/protocol/bridging/optics-gui.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
---
22
title: Optics Bridge GUI
3+
description: How to send ETH From Ethereum to Celo using the Optics Bridge GUI.
34
---
45

56
# Optics Bridge GUI
67

8+
How to send ETH From Ethereum to Celo using the Optics Bridge GUI.
9+
10+
___
11+
12+
:::tip
13+
714
Other translations: [zh_cn](./optics-gui-zh_cn.md), [kr](./optics-gui-kr.md)
815

16+
:::
917
## Sending ETH From Ethereum to Celo
1018

1119
- Install Metamask from [https://metamask.io](https://metamask.io).
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
---
2-
title: Consensus Overview
2+
title: Consensus Introduction
3+
description: Overview of Celo's consensus protocol and network validators.
34
slug: /celo-codebase/protocol/consensus
45
---
6+
# Consensus
7+
8+
Overview of Celo's consensus protocol and network validators.
9+
10+
___
11+
12+
## Protocol
513

614
Celo’s consensus protocol is based on an implementation called Istanbul, or IBFT. IBFT was developed by AMIS and [proposed](https://github.com/ethereum/EIPs/issues/650) as an extension to [go-ethereum](https://github.com/ethereum/go-ethereum) but never merged. Variants of IBFT exist in both the [Quorum](https://github.com/jpmorganchase/quorum) and [Pantheon](https://github.com/PegaSysEng/pantheon) clients. We’ve modified Istanbul to bring it up to date with the latest [go-ethereum](https://github.com/ethereum/go-ethereum) releases and we’re fixing [correctness and liveness issues](https://arxiv.org/abs/1901.07160) and improving its scalability and security.
715

16+
## Validators
17+
818
Celo’s consensus protocol is performed by nodes that are selected as validators. There is a maximum cap on the number of active validators that can be changed by governance proposal, which is currently set at 100 validators. The active validator set is determined via the proof-of-stake process and is updated at the end of each epoch, a fixed period of approximately one day.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
11
---
22
title: Locating Nodes
3+
description: How Celo nodes join the network, establish a connection, and communiate their IP address.
34
---
45

5-
All Celo nodes \(including our validators\) are using a variant of Ethereum's V4 discovery protocol to find other nodes within the network. Details of Ethereum's protocol can be found here: [https://github.com/ethereum/devp2p/blob/master/discv4.md](https://github.com/ethereum/devp2p/blob/master/discv4.md).
6+
# Locating Nodes
67

7-
When a node attempts to join the network, it will execute our discovery protocol. It will first send a request to the bootnodes to retrieve a list of other nodes of the network. The bootnodes will then reply with that list, and then the joining node will then send additional requests to nodes in that list to find additional nodes in the network. The main difference in Celo's discovery protocol compared to Ethereum's is that it will require that the joining node's networkID be the same as the bootnodes' \(and the same as all other network's nodes\). Also, all of the messages in Celo's discovery protocol must be hashed with a special salt to be accepted by other nodes. The reason why these changes were made is so that each node within a network will only store information of other nodes that have the same networkID (to distinguish nodes from other networks) and the same special salt \(to distinguish nodes from other blockchains, such as Ethereum\).
8+
How Celo nodes join the network, establish a connection, and communiate their IP address.
9+
10+
___
11+
12+
## V4 Discovery Protocol
13+
14+
All Celo nodes \(including our validators\) are using a variant of Ethereum's V4 discovery protocol to find other nodes within the network. Details of Ethereum's protocol can be found [here](https://github.com/ethereum/devp2p/blob/master/discv4.md).
15+
16+
## Joining the Network
17+
18+
When a node attempts to join the network, it will execute Celo's discovery protocol.
19+
20+
It will first send a request to the bootnodes to retrieve a list of other nodes of the network. The bootnodes will then reply with that list, and then the joining node will then send additional requests to nodes in that list to find additional nodes in the network. The main difference in Celo's discovery protocol compared to Ethereum's is that it will require that the joining node's networkID be the same as the bootnodes' \(and the same as all other network's nodes\).
21+
22+
Also, all of the messages in Celo's discovery protocol must be hashed with a special salt to be accepted by other nodes. The reason why these changes were made is so that each node within a network will only store information of other nodes that have the same networkID (to distinguish nodes from other networks) and the same special salt \(to distinguish nodes from other blockchains, such as Ethereum\).
23+
24+
## Establishing a Connection
825

926
Once a joining node finds other nodes, it will establish direct TCP connections to a subset of them. This will allow that node to sync it's blockchain and transactions. Validators will additionally attempt to establish TCP connections to the rest of the validators, so that it can send consensus messages directly to them, instead of via gossip. The reason that the validators do this is to minimize the latency of messages that are sent and received among the validators, and to ultimately help minimize block time.
1027

11-
The way that validators communicate their IP address to other validators is by periodically gossiping a subprotocol message that we call an _IstanbulAnnounce_ message. That message will contain `n` copies (where `n` is the total number of validators for the current epoch) of the sending validator's IP address where each copy is encrypted with the other validators' public key. Once a validator receives a gossiped _IstanbulAnnounce_ message, it will decrypt the encrypted IP address that was encrypted with its public key, and then establish a TCP connection to it. All consensus related messages will then sent via those direct TCP connections. When an epoch ends, a validator will establish new connections with any newly elected validator and disconnect from any removed validators. If the validator itself is removed from the new epoch's validator set, then it will disconnect with all the validators.
28+
## Communicating IP Address
29+
30+
The way that validators communicate their IP address to other validators is by periodically gossiping a subprotocol message that we call an _IstanbulAnnounce_ message.
31+
32+
That message will contain `n` copies (where `n` is the total number of validators for the current epoch) of the sending validator's IP address where each copy is encrypted with the other validators' public key. Once a validator receives a gossiped _IstanbulAnnounce_ message, it will decrypt the encrypted IP address that was encrypted with its public key, and then establish a TCP connection to it. All consensus related messages will then sent via those direct TCP connections.
33+
34+
When an epoch ends, a validator will establish new connections with any newly elected validator and disconnect from any removed validators. If the validator itself is removed from the new epoch's validator set, then it will disconnect with all the validators.

0 commit comments

Comments
 (0)