This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 3 files changed +2
-23
lines changed 3 files changed +2
-23
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,6 @@ const Progress = require('progress')
11
11
const byteman = require ( 'byteman' )
12
12
const promisify = require ( 'promisify-es6' )
13
13
14
- // All known IPLD formats
15
- const ipldBitcoin = require ( 'ipld-bitcoin' )
16
- const ipldDagCbor = require ( 'ipld-dag-cbor' )
17
- const ipldDagPb = require ( 'ipld-dag-pb' )
18
- const ipldEthAccountSnapshot = require ( 'ipld-ethereum' ) . ethAccountSnapshot
19
- const ipldEthBlock = require ( 'ipld-ethereum' ) . ethBlock
20
- const ipldEthBlockList = require ( 'ipld-ethereum' ) . ethBlockList
21
- const ipldEthStateTrie = require ( 'ipld-ethereum' ) . ethStateTrie
22
- const ipldEthStorageTrie = require ( 'ipld-ethereum' ) . ethStorageTrie
23
- const ipldEthTrie = require ( 'ipld-ethereum' ) . ethTxTrie
24
- const ipldEthTx = require ( 'ipld-ethereum' ) . ethTx
25
- const ipldGit = require ( 'ipld-git' )
26
- const ipldRaw = require ( 'ipld-raw' )
27
- const ipldZcash = require ( 'ipld-zcash' )
28
-
29
14
exports = module . exports
30
15
31
16
exports . isDaemonOn = isDaemonOn
Original file line number Diff line number Diff line change @@ -87,9 +87,7 @@ class IPFS extends EventEmitter {
87
87
multiaddr : multiaddr ,
88
88
multibase : multibase ,
89
89
multihash : multihash ,
90
- CID : CID ,
91
- dagPB : ipldDagPb ,
92
- dagCBOR : ipldDagCbor
90
+ CID : CID
93
91
}
94
92
95
93
// IPFS Core Internals
Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ const isIPFS = require('is-ipfs')
15
15
const multiaddr = require ( 'multiaddr' )
16
16
const multibase = require ( 'multibase' )
17
17
const multihash = require ( 'multihashes' )
18
- const ipldDagCbor = require ( 'ipld-dag-cbor' )
19
- const ipldDagPb = require ( 'ipld-dag-pb' )
20
18
const CID = require ( 'cids' )
21
19
const IPFS = require ( '../../src/core' )
22
20
@@ -122,9 +120,7 @@ describe('init', () => {
122
120
multiaddr : multiaddr ,
123
121
multibase : multibase ,
124
122
multihash : multihash ,
125
- CID : CID ,
126
- dagPB : ipldDagPb ,
127
- dagCBOR : ipldDagCbor
123
+ CID : CID
128
124
} )
129
125
} )
130
126
You can’t perform that action at this time.
0 commit comments