3
3
const browser = require ( 'webextension-polyfill' )
4
4
5
5
const { optionDefaults } = require ( '../../options' )
6
- const chromeSocketsBundle = require ( './libp2p-bundle' )
7
6
const mergeOptions = require ( 'merge-options' )
8
7
const getPort = require ( 'get-port' )
9
8
const { getIPv4, getIPv6 } = require ( 'webrtc-ips' )
10
9
10
+ const Libp2p = require ( 'libp2p' )
11
+ const TCP = require ( 'libp2p-tcp' )
12
+ const MulticastDNS = require ( 'libp2p-mdns' )
13
+
11
14
const multiaddr = require ( 'multiaddr' )
12
15
const maToUri = require ( 'multiaddr-to-uri' )
13
16
const multiaddr2httpUrl = ( ma ) => maToUri ( ma . includes ( '/http' ) ? ma : multiaddr ( ma ) . encapsulate ( '/http' ) )
14
17
18
+ const debug = require ( 'debug' )
19
+ const log = debug ( 'ipfs-companion:client:embedded:config' )
20
+ log . error = debug ( 'ipfs-companion:client:embedded:config:error' )
21
+
15
22
// additional default js-ipfs config specific to runtime with chrome.sockets APIs
16
23
const chromeDefaultOpts = {
17
24
config : {
@@ -25,11 +32,10 @@ const chromeDefaultOpts = {
25
32
Swarm : [
26
33
// optional ws-star signaling provides a backup for non-LAN peer discovery
27
34
// (this will be removed when autorelay and DHT are stable in js-ipfs)
28
- '/dns4/ws -star.discovery.libp2p.io/tcp/443/wss/p2p-websocket -star'
35
+ '/dns4/wrtc -star.discovery.libp2p.io/tcp/443/wss/p2p-webrtc -star'
29
36
] ,
30
37
// Delegated Content and Peer Routing: https://github.com/ipfs/js-ipfs/pull/2195
31
- Delegates : // [] // TODO: enable delegates
32
- [
38
+ Delegates : [
33
39
'/dns4/node1.delegate.ipfs.io/tcp/443/https' ,
34
40
'/dns4/node0.delegate.ipfs.io/tcp/443/https'
35
41
]
@@ -42,8 +48,8 @@ const chromeDefaultOpts = {
42
48
} ,
43
49
Swarm : {
44
50
ConnMgr : {
45
- LowWater : 100 ,
46
- HighWater : 250
51
+ LowWater : 50 ,
52
+ HighWater : 150
47
53
}
48
54
} ,
49
55
Bootstrap : [
@@ -113,7 +119,36 @@ async function buildConfig (opts, log) {
113
119
// merge configs
114
120
const finalOpts = {
115
121
start : false ,
116
- libp2p : chromeSocketsBundle
122
+ // a function that customizes libp2p config: https://github.com/ipfs/js-ipfs/pull/2591
123
+ libp2p : ( { libp2pOptions, peerInfo } ) => {
124
+ libp2pOptions . modules = mergeOptions . call ( { concatArrays : true } , libp2pOptions . modules , {
125
+ transports : [ TCP ]
126
+ } )
127
+
128
+ libp2pOptions . modules = mergeOptions . call ( { concatArrays : true } , libp2pOptions . modules , {
129
+ peerDiscovery : [ MulticastDNS ]
130
+ } )
131
+
132
+ libp2pOptions . config = mergeOptions ( libp2pOptions . config , {
133
+ peerDiscovery : {
134
+ autoDial : true ,
135
+ mdns : {
136
+ enabled : true
137
+ } ,
138
+ bootstrap : {
139
+ enabled : true
140
+ } ,
141
+ webRTCStar : {
142
+ enabled : true
143
+ }
144
+ }
145
+ } )
146
+
147
+ libp2pOptions . metrics = { enabled : false }
148
+
149
+ log ( 'initializing libp2p with libp2pOptions' , libp2pOptions )
150
+ return new Libp2p ( libp2pOptions )
151
+ }
117
152
}
118
153
const ipfsNodeConfig = mergeOptions ( defaultOpts , userOpts , chromeOpts , finalOpts )
119
154
0 commit comments