Skip to content

Commit 52569f8

Browse files
committed
remove gsoc page section numbering
1 parent b03925e commit 52569f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/documentation/gsoc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To use the example scripts below, you need:
4242
- A light node for sending GSOC messages.
4343
- The batch ID of a usable postage batch. If you don't have one already, you will need to [buy a batch](/docs/storage/#purchasing-storage) to upload data. If you do have one, you will need to [get and save](/docs/storage/#selecting-a-batch) its batch ID.
4444

45-
## 1. Create an Identifier (Receiver and Sender)
45+
## Create an Identifier (Receiver and Sender)
4646

4747
Identifiers in GSOC are similar to topics in PSS — they define the stream of messages a receiver node is subscribed to. The sender must use the same identifier so that their messages are received.
4848

@@ -66,7 +66,7 @@ const identifier = Identifier.fromString('chat:v1')
6666
- Use any hex string to initialize a new `Identifier` object .
6767
- Use `Identifier.fromString()` to generate an identifier derived from your string of choice (allows for easy to remember human readable identifiers `"notifications"`, `"chat:user1"`).
6868

69-
## 2. Get Target Overlay (Receiver Node)
69+
## Get Target Overlay (Receiver Node)
7070

7171
This step **is performed by the receiving full node** to retrieve its overlay address. This overlay address is then shared with the sender node to use as a target overlay for its GSOC messages:
7272

@@ -100,7 +100,7 @@ Underlay: [
100100

101101
The `Overlay` should be saved and shared with sender nodes.
102102

103-
## 3. Set Up a Listener (Receiver Node)
103+
## Set Up a Listener (Receiver Node)
104104

105105
This must be run on a full node. It mines a key that lands within its own neighborhood and starts listening.
106106

@@ -129,7 +129,7 @@ async function listen() {
129129
listen()
130130
```
131131

132-
## 4. Send a Message (Sender Node)
132+
## Send a Message (Sender Node)
133133

134134
The sending node must have a ***usable postage batch id*** and also know the ***target overlay address*** and ***identifier*** in order to send a message:
135135

0 commit comments

Comments
 (0)