Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit a542882

Browse files
authored
feat: remove all esoteric ipld formats (#3360)
We bundle ipld formats for ethereum, zcash, bitcoin and git though they speak beyond the files part of the Interplanetary File System. Since #3347 we can now configure extra IPLD formats in the http client, in-process and daemon nodes, we no longer have to bundle these formats for them to be supported, instead the user can choose to configure their node with the formats they require. This makes the behaviour of core the same in node as it is in the browser and also means we don't waste time installing deps our users may not use. If they do use them, they can configure the node as they see fit. BREAKING CHANGE: only dag-pb, dag-cbor and raw formats are supported out of the box, any others will need to be configured during node startup.
1 parent 5d394c2 commit a542882

File tree

13 files changed

+60
-60
lines changed

13 files changed

+60
-60
lines changed

examples/explore-ethereum-blockchain/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"ipfs": "^0.51.0",
1414
"ipfs-http-client": "^48.0.0",
1515
"ipfsd-ctl": "^7.0.2",
16+
"ipld-ethereum": "^5.0.1",
1617
"test-ipfs-example": "^2.0.3"
1718
}
1819
}

examples/explore-ethereum-blockchain/test.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@ const df = createFactory({
1515
async function runTest () {
1616
const ipfsd = await df.spawn({
1717
type: 'proc',
18-
test: true
18+
test: true,
19+
ipfsOptions: {
20+
ipld: {
21+
formats: [
22+
...Object.values(require('ipld-ethereum'))
23+
]
24+
}
25+
}
1926
})
2027

2128
const cids = []

examples/traverse-ipld-graphs/README.md

+26
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,32 @@ $ npm install
1616
$ npm run build
1717
```
1818

19+
## IPLD Formats
20+
21+
[IPLD](https://docs.ipld.io/) can read many datatypes, all of which are represented as blocks in the blockstore of your IPFS node. In order to turn a block into a data structure it can use, IPLD uses different codecs to turn `Uint8Arrays` into JavaScript objects and back.
22+
23+
By default IPFS is bundled with [dag-pb](https://www.npmjs.com/package/ipld-dag-pb), [dag-cbor](https://www.npmjs.com/package/ipld-dag-cbor) and [raw](https://www.npmjs.com/package/ipld-raw) codecs which allow reading UnixFS files and JavaScript objects from the blockstore.
24+
25+
To configure other types, we must pass the `ipld.formats` option to the `IPFS.create()` function:
26+
27+
```javascript
28+
const IPFS = require('ipfs')
29+
30+
const node = await IPFS.create({
31+
ipld: {
32+
formats: [
33+
require('ipld-git'),
34+
require('ipld-zcash'),
35+
require('ipld-bitcoin'),
36+
...Object.values(require('ipld-ethereum')) // this format exports multiple codecs so flatten into a list
37+
// etc, etc
38+
]
39+
}
40+
})
41+
```
42+
43+
See [ipld/interface-ipld-format](https://github.com/ipld/interface-ipld-format) for a list of modules that implement the `ipld-format` interface.
44+
1945
## [create nodes to build a graph](./put.js)
2046

2147
## [retrieve a node from a graph](./get.js)

examples/traverse-ipld-graphs/create-node.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ function createNode (options) {
1515
API: '/ip4/127.0.0.1/tcp/0',
1616
Gateway: '/ip4/127.0.0.1/tcp/0'
1717
}
18-
}
18+
},
19+
ipld: options.ipld
1920
})
2021
}
2122

examples/traverse-ipld-graphs/eth.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ const fs = require('fs').promises
99
const uint8ArrayToString = require('uint8arrays/to-string')
1010

1111
async function main () {
12-
const ipfs = await createNode()
12+
const ipfs = await createNode({
13+
ipld: {
14+
formats: [
15+
...Object.values(require('ipld-ethereum'))
16+
]
17+
}
18+
})
1319

1420
console.log('\nStart of the example:')
1521

examples/traverse-ipld-graphs/git.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ const fs = require('fs').promises
99
const uint8ArrayToString = require('uint8arrays/to-string')
1010

1111
async function main () {
12-
const ipfs = await createNode()
12+
const ipfs = await createNode({
13+
ipld: {
14+
formats: [
15+
require('ipld-git')
16+
]
17+
}
18+
})
1319

1420
console.log('\nStart of the example:')
1521

examples/traverse-ipld-graphs/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
"ipfs": "^0.51.0",
1818
"ipld-block": "^0.10.1",
1919
"ipld-dag-pb": "^0.20.0",
20+
"ipld-git": "^0.6.1",
21+
"ipld-ethereum": "^5.0.1",
2022
"multihashing-async": "^2.0.1"
2123
}
2224
}

packages/ipfs-core/package.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"./src/runtime/libp2p-pubsub-routers-nodejs.js": "./src/runtime/libp2p-pubsub-routers-browser.js",
2323
"./src/runtime/preload-nodejs.js": "./src/runtime/preload-browser.js",
2424
"./src/runtime/repo-nodejs.js": "./src/runtime/repo-browser.js",
25-
"./src/runtime/ipld-nodejs.js": "./src/runtime/ipld-browser.js",
2625
"./test/utils/create-repo-nodejs.js": "./test/utils/create-repo-browser.js",
2726
"ipfs-utils/src/files/glob-source": false
2827
},
@@ -78,14 +77,10 @@
7877
"ipfs-unixfs-importer": "^3.0.4",
7978
"ipfs-utils": "^4.0.0",
8079
"ipld": "^0.27.2",
81-
"ipld-bitcoin": "^0.4.0",
8280
"ipld-block": "^0.10.1",
8381
"ipld-dag-cbor": "^0.17.0",
8482
"ipld-dag-pb": "^0.20.0",
85-
"ipld-ethereum": "^5.0.1",
86-
"ipld-git": "^0.6.1",
8783
"ipld-raw": "^6.0.0",
88-
"ipld-zcash": "^0.5.0",
8984
"ipns": "^0.8.0",
9085
"is-domain-name": "^1.0.1",
9186
"is-ipfs": "^2.0.0",
@@ -129,6 +124,7 @@
129124
"delay": "^4.4.0",
130125
"interface-ipfs-core": "^0.141.0",
131126
"ipfsd-ctl": "^7.0.2",
127+
"ipld-git": "^0.6.1",
132128
"iso-random-stream": "^1.1.1",
133129
"iso-url": "^0.4.7",
134130
"nanoid": "^3.1.12",

packages/ipfs-core/src/components/init.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const BlockService = require('ipfs-block-service')
2424
* @typedef {import('.').IPLD} IPLD
2525
*/
2626
const Ipld = require('ipld')
27-
const getDefaultIpldOptions = require('../runtime/ipld-nodejs')
27+
const getDefaultIpldOptions = require('../runtime/ipld')
2828

2929
const createPreloader = require('../preload')
3030
const { ERR_REPO_NOT_INITIALIZED } = require('ipfs-repo').errors
@@ -486,8 +486,8 @@ function createApi ({
486486
* @property {import('.').IPLDConfig} [ipld] - Modify the default IPLD config. This object
487487
* will be *merged* with the default config; it will not replace it. Check IPLD
488488
* [docs](https://github.com/ipld/js-ipld#ipld-constructor) for more information
489-
* on the available options. (Default: [`ipld-nodejs.js`]
490-
* (https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld-nodejs.js) in Node.js, [`ipld-browser.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld-browser.js)
489+
* on the available options. (Default: [`ipld.js`]
490+
* (https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld.js)
491491
* in browsers)
492492
* @property {object|Function} [libp2p] - The libp2p option allows you to build
493493
* your libp2p node by configuration, or via a bundle function. If you are

packages/ipfs-core/src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ module.exports = {
135135
* @property {import('./components').IPLDConfig} [ipld] - Modify the default IPLD config. This object
136136
* will be *merged* with the default config; it will not replace it. Check IPLD
137137
* [docs](https://github.com/ipld/js-ipld#ipld-constructor) for more information
138-
* on the available options. (Default: [`ipld-nodejs.js`]
139-
* (https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld-nodejs.js) in Node.js, [`ipld-browser.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld-browser.js)
138+
* on the available options. (Default: [`ipld.js`]
139+
* (https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld.js)
140140
* in browsers)
141141
* @property {object|Function} [libp2p] - The libp2p option allows you to build
142142
* your libp2p node by configuration, or via a bundle function. If you are

packages/ipfs-core/src/runtime/ipld-browser.js

-15
This file was deleted.

packages/ipfs-core/src/runtime/ipld-nodejs.js packages/ipfs-core/src/runtime/ipld.js

-30
Original file line numberDiff line numberDiff line change
@@ -12,36 +12,6 @@ const IpldFormats = {
1212
},
1313
get [multicodec.RAW] () {
1414
return require('ipld-raw')
15-
},
16-
get [multicodec.BITCOIN_BLOCK] () {
17-
return require('ipld-bitcoin')
18-
},
19-
get [multicodec.ETH_ACCOUNT_SNAPSHOT] () {
20-
return require('ipld-ethereum').ethAccountSnapshot
21-
},
22-
get [multicodec.ETH_BLOCK] () {
23-
return require('ipld-ethereum').ethBlock
24-
},
25-
get [multicodec.ETH_BLOCK_LIST] () {
26-
return require('ipld-ethereum').ethBlockList
27-
},
28-
get [multicodec.ETH_STATE_TRIE] () {
29-
return require('ipld-ethereum').ethStateTrie
30-
},
31-
get [multicodec.ETH_STORAGE_TRIE] () {
32-
return require('ipld-ethereum').ethStorageTrie
33-
},
34-
get [multicodec.ETH_TX] () {
35-
return require('ipld-ethereum').ethTx
36-
},
37-
get [multicodec.ETH_TX_TRIE] () {
38-
return require('ipld-ethereum').ethTxTrie
39-
},
40-
get [multicodec.GIT_RAW] () {
41-
return require('ipld-git')
42-
},
43-
get [multicodec.ZCASH_BLOCK] () {
44-
return require('ipld-zcash')
4515
}
4616
}
4717

packages/ipfs/docs/MODULE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Modify the default IPFS node config. This object will be *merged* with the defau
187187
188188
| Type | Default |
189189
|------|---------|
190-
| object | [`ipld-nodejs.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld-nodejs.js) in Node.js, [`ipld-browser.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld-browser.js) in browsers |
190+
| object | [`ipld.js`](https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs/src/core/runtime/ipld.js) |
191191
192192
Modify the default IPLD config. This object will be *merged* with the default config; it will not replace it. Check IPLD [docs](https://github.com/ipld/js-ipld#ipld-constructor) for more information on the available options.
193193

0 commit comments

Comments
 (0)