You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/concepts/glossary.md
+49-8Lines changed: 49 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,10 @@ related:
18
18
19
19
Announcing is a function of the IPFS networking layer in [libp2p](#libp2p), wherein a peer can tell other peers that it has data blocks available.
20
20
21
+
### ADL
22
+
23
+
ADL is short for _Advanced Data Layout_, a concept in [IPLD](#ipld). See [IPLD docs](https://ipld.io/glossary/#adl).
24
+
21
25
## B
22
26
23
27
### Bitswap
@@ -34,9 +38,9 @@ A Blockchain is a growing list of records, known as blocks, that are linked usin
34
38
35
39
### Block
36
40
37
-
A Block is a binary blob of data, identified by a [CID](#cid).
41
+
A Block is a binary blob of data identified by a [CID](#cid). It could be raw bytes of arbitrary data or a chunk of serialized binary data encoded with [IPLD](#ipld)[codec](#codec).
38
42
39
-
### Bootstrap Node
43
+
### Bootstrap node
40
44
41
45
A Bootstrap Node is a trusted peer on the IPFS network through which an IPFS node learns about other peers on the network. [More about Bootstrapping](../how-to/modify-bootstrap-list.md)
42
46
@@ -58,6 +62,14 @@ Version 0 (v0) of the IPFS content identifier. This CID is 46 characters in leng
58
62
59
63
Version 1 (v1) of the IPFS content identifier. This CID version contains some leading identifiers which provide for forward-compatibility. Able to support different formats for future versions of CID. [More about CID v1](../concepts/content-addressing.md#version-1-v1)
60
64
65
+
### Codec
66
+
67
+
A function that encodes or decodes serial data into and from some data model. In IPFS, we use an agreed-upon codec table implemented as part of [Multicodec](#multicodec).
68
+
69
+
### Content addressing
70
+
71
+
A way to store information so a device can retrieve the data based on its content, not its location. [Learn how IPFS uses content addressing](/concepts/how-ipfs-works/#content-addressing).
72
+
61
73
### CRDT
62
74
63
75
A Conflict-Free Replicated Data Type (CRDT) is a type of specially-designed data structure used to achieve strong eventual consistency (SEC) and monotonicity (absence of rollbacks). [More about CRDT](https://github.com/ipfs/research-CRDT)
@@ -70,23 +82,32 @@ A Daemon is a computer program that typically runs in the background. The IPFS d
70
82
71
83
### DAG
72
84
73
-
A Directed Acyclic Graph (DAG) is a computer science data structure adapted for use with versioned file systems, blockchains, and for modeling many different kinds of information. [More about DAG](https://en.wikipedia.org/wiki/Directed_acyclic_graph)
85
+
A Directed Acyclic Graph (DAG) is a computer science data structure adapted for use with versioned file systems, blockchains, and for modeling many different kinds of information. [IPLD](#ipld) data in IPFS is naturally a DAG. [More about DAG on Wikipedia](https://en.wikipedia.org/wiki/Directed_acyclic_graph).
86
+
87
+
88
+
### Data model
89
+
90
+
Did you mean [IPLD Data Model](https://ipld.io/glossary/#data-model)?
74
91
75
92
### DataStore
76
93
77
94
The Datastore is the on-disk storage system used by an IPFS node. Configuration parameters control the location, size, construction, and operation of the datastore. [More about Datastore](https://github.com/ipfs/go-ipfs/blob/master/docs/config.md#datastore)
78
95
79
96
### DHT
80
97
81
-
A Distributed Hash Table (DHT) is a distributed key-value store where keys are cryptographic hashes. In IPFS, each peer is responsible for a subset of the IPFS DHT. [More about DHT](dht.md)
98
+
A _Distributed Hash Table_ (DHT) is a distributed key-value store where keys are cryptographic hashes. In IPFS, each peer is responsible for a subset of the IPFS DHT. [More about DHT](dht.md)
99
+
100
+
### DMT
101
+
102
+
Short for _Data Model Tree_, a term coined by the IPLD team. [More about DMT in IPLD docs](https://ipld.io/glossary/#dmt)
82
103
83
104
### Dialing
84
105
85
106
Dialing is a function of the IPFS networking layer in [libp2p](#libp2p), wherein a connection is opened to another peer. Together, an implementation of dialing and [listening](#listening) forms a [transport](#transport).
86
107
87
108
### DNSLink
88
109
89
-
DNSLink is a protocol to link content and services directly from DNS. A DNSLink address looks like an IPNS address, but it uses a domain name in place of a hashed public key, like /ipns/mydomain.org. [More about DNSLink](https://dnslink.io/)
110
+
DNSLink is a protocol to link content and services directly from DNS. A DNSLink address looks like an IPNS address, but it uses a domain name instead of a hashed public key, like `/ipns/en.wikipedia-on-ipfs.org`. [More about DNSLink](https://dnslink.dev/)
90
111
91
112
### DWeb
92
113
@@ -160,6 +181,10 @@ The libp2p project is a modular system of protocols, specifications, and librari
160
181
161
182
Listening is a function of the IPFS networking layer in libp2p, wherein an incoming connection is accepted from another peer. Together, an implementation of [dialing](#dialing) and listening forms a [transport](#transport).
162
183
184
+
### Link
185
+
186
+
In IPFS and [IPLD](#ipld), a _link_ usually means a pointer to some [CID](#cid).
187
+
163
188
## M
164
189
165
190
### Merkle-DAG
@@ -184,7 +209,7 @@ Multibase is a protocol for disambiguating the encoding of base-encoded (e.g. ba
184
209
185
210
### Multicodec
186
211
187
-
Multicodec is an identifier indicating the format of the target content. It helps people and software know how to interpret that content after the content is fetched. In IPFS, it is backed by an agreed-upon codec table. It is designed for use in binary representations, such as keys or identifiers (i.e [CIDv1](#cid)). [More about Multicodec](https://github.com/multiformats/multicodec#readme)
212
+
Multicodec is an identifier indicating the format of the target content. It helps people and software know how to interpret that content after it has been fetched. In IPFS, it is backed by an agreed-upon [codec](#codec) table. Multicodecs are designed for use in binary representations, such as keys or identifiers (i.e.[CIDv1](#cid)). [More about Multicodec](https://github.com/multiformats/multicodec#readme)
188
213
189
214
### Multihash
190
215
@@ -198,11 +223,11 @@ The Multiformats project is a collection of protocols that aim to future-proof s
198
223
199
224
### Node
200
225
201
-
A Node or [peer](#peer) is the IPFS program that you run on your local computer to store/cache files and then connect to the IPFS network (by running the [daemon](#daemon)). [More about Node](../how-to/command-line-quick-start.md#take-your-node-online)
226
+
In IPFS, a node or [peer](#peer) is the IPFS program that you run on your local computer to store files and then connect to the IPFS network. [More about IPFS Node](../how-to/command-line-quick-start.md#take-your-node-online).
202
227
203
228
### Node (in graphs)
204
229
205
-
A node, in the context of [graphs](#graph), is a point that may be linked to by other nodes using edges or links.
230
+
In an IPLD [graph](#graph) context, a node is a point that may be linked to by other nodes using edges or links.
206
231
207
232
For example, in a family tree each person is a _node_, while each branch connecting one person to another is an _edge_.
208
233
@@ -266,6 +291,14 @@ B C D
266
291
267
292
## S
268
293
294
+
### Schemas
295
+
296
+
In IPFS, IPLD Schemas are a system for describing data with structural types. [More about IPLD Schemas](https://ipld.io/glossary/#schemas)
297
+
298
+
### Selectors
299
+
300
+
IPLD selectors are a form of graph query over IPLD data. They can also be thought of as a way to specify a [traversal](#traversal). [More about IPLD Selectors](https://ipld.io/glossary/#selectors)
301
+
269
302
### SFS
270
303
271
304
A Self-certifying File System (SFS) is a distributed file system that doesn't require special permissions for data exchange. It is self-certifying because data served to a client is authenticated by the file name (which is signed by the server). [More about SFS](https://en.wikipedia.org/wiki/Self-certifying_File_System)
@@ -274,6 +307,10 @@ A Self-certifying File System (SFS) is a distributed file system that doesn't re
274
307
275
308
The signing of data cryptographically allows for trusting of data from untrusted sources. Cryptographically signed values can be passed through an untrusted channel, and any tampering of the data can be detected. [More about Digital signature](https://en.wikipedia.org/wiki/Digital_signature)
276
309
310
+
### Substrate
311
+
312
+
A vocabulary term in [IPLD](#ipld), related to [ADLs](#adl). [More in IPLD glossary](https://ipld.io/glossary/#substrate)
313
+
277
314
### Swarm
278
315
279
316
The Swarm is a term for the network of IPFS peers with which your local node has connections. Swarm addresses are addresses that your local node will listen on for connections from other IPFS peers. [More about Swarm addresses](../how-to/configure-node.md#addresses)
@@ -284,6 +321,10 @@ The Swarm is a term for the network of IPFS peers with which your local node has
284
321
285
322
In [libp2p](#libp2p), transport refers to the technology that lets us move data from one machine to another. This may be a TCP network, a WebSocket connection in a browser, or anything else capable of implementing the transport interface.
286
323
324
+
### Traversal
325
+
326
+
In [IPLD](#ipld), the act of walking across the [Data Model](#data-model). [More in IPLD glossary](https://ipld.io/glossary/#substrate)
0 commit comments