1
1
import { createLibp2p , Libp2p } from 'libp2p'
2
+ import { identifyService } from 'libp2p/identify'
2
3
import { noise } from '@chainsafe/libp2p-noise'
3
4
import { yamux } from '@chainsafe/libp2p-yamux'
4
5
import { bootstrap } from '@libp2p/bootstrap'
@@ -15,42 +16,47 @@ import { webTransport } from '@libp2p/webtransport'
15
16
import { webRTC , webRTCDirect } from '@libp2p/webrtc'
16
17
import { CHAT_TOPIC , CIRCUIT_RELAY_CODE , WEBRTC_BOOTSTRAP_NODE , WEBTRANSPORT_BOOTSTRAP_NODE } from './constants'
17
18
import * as filters from "@libp2p/websockets/filters"
18
-
19
- // @ts -ignore
20
19
import { circuitRelayTransport } from 'libp2p/circuit-relay'
21
20
22
-
23
21
export async function startLibp2p ( ) {
24
22
// localStorage.debug = 'libp2p*,-*:trace'
25
23
// application-specific data lives in the datastore
26
24
27
25
const libp2p = await createLibp2p ( {
28
- // set the inbound and outbound stream limits to these values
29
- // because we were seeing a lot of the default limits being hit
30
- dht : kadDHT ( {
31
- protocolPrefix : "/universal-connectivity" ,
32
- maxInboundStreams : 5000 ,
33
- maxOutboundStreams : 5000 ,
34
- clientMode : true
35
- } ) ,
36
- transports : [ webTransport ( ) , webSockets ( {
37
- filter : filters . all ,
38
- } ) , webRTC ( {
39
- rtcConfiguration : {
40
- iceServers :[
41
- {
26
+ addresses : {
27
+ listen : [
28
+ '/webrtc'
29
+ ]
30
+ } ,
31
+ transports : [
32
+ webTransport ( ) ,
33
+ webSockets ( {
34
+ filter : filters . all ,
35
+ } ) ,
36
+ webRTC ( {
37
+ rtcConfiguration : {
38
+ iceServers :[ {
42
39
urls : [
43
40
'stun:stun.l.google.com:19302' ,
44
41
'stun:global.stun.twilio.com:3478'
45
42
]
46
- }
47
- ]
48
- }
49
- } ) , webRTCDirect ( ) , circuitRelayTransport ( {
50
- discoverRelays : 10 ,
51
- } ) , ] ,
43
+ } ]
44
+ }
45
+ } ) ,
46
+ webRTCDirect ( ) ,
47
+ circuitRelayTransport ( {
48
+ discoverRelays : 1 ,
49
+ } )
50
+ ] ,
51
+ connectionManager : {
52
+ maxConnections : 10 ,
53
+ minConnections : 5
54
+ } ,
52
55
connectionEncryption : [ noise ( ) ] ,
53
56
streamMuxers : [ yamux ( ) ] ,
57
+ connectionGater : {
58
+ denyDialMultiaddr : async ( ) => false ,
59
+ } ,
54
60
peerDiscovery : [
55
61
bootstrap ( {
56
62
list : [
@@ -59,36 +65,34 @@ export async function startLibp2p() {
59
65
] ,
60
66
} ) ,
61
67
] ,
62
- pubsub : gossipsub ( {
63
- allowPublishToZeroPeers : true ,
64
- msgIdFn : msgIdFnStrictNoSign ,
65
- ignoreDuplicatePublishError : true ,
66
- } ) ,
67
- identify : {
68
- // these are set because we were seeing a lot of identify and identify push
69
- // stream limits being hit
70
- maxPushOutgoingStreams : 1000 ,
71
- maxPushIncomingStreams : 1000 ,
72
- maxInboundStreams : 1000 ,
73
- maxOutboundStreams : 1000 ,
74
- } ,
75
- autonat : {
76
- startupDelay : 60 * 60 * 24 * 1000 ,
77
- } ,
68
+ services : {
69
+ pubsub : gossipsub ( {
70
+ allowPublishToZeroPeers : true ,
71
+ msgIdFn : msgIdFnStrictNoSign ,
72
+ ignoreDuplicatePublishError : true ,
73
+ } ) ,
74
+ dht : kadDHT ( {
75
+ protocolPrefix : "/universal-connectivity" ,
76
+ maxInboundStreams : 5000 ,
77
+ maxOutboundStreams : 5000 ,
78
+ clientMode : true ,
79
+ } ) ,
80
+ identify : identifyService ( )
81
+ }
78
82
} )
79
83
80
- libp2p . pubsub . subscribe ( CHAT_TOPIC )
84
+ libp2p . services . pubsub . subscribe ( CHAT_TOPIC )
81
85
82
- libp2p . peerStore . addEventListener ( 'change:multiaddrs' , ( { detail : { peerId, multiaddrs} } ) => {
86
+ libp2p . addEventListener ( 'self:peer:update' , ( { detail : { peer } } ) => {
87
+ const multiaddrs = peer . addresses . map ( ( { multiaddr } ) => multiaddr )
83
88
84
- console . log ( `changed multiaddrs: peer ${ peerId . toString ( ) } multiaddrs: ${ multiaddrs } ` )
85
- setWebRTCRelayAddress ( multiaddrs , libp2p . peerId . toString ( ) )
89
+ console . log ( `changed multiaddrs: peer ${ peer . id . toString ( ) } multiaddrs: ${ multiaddrs } ` )
86
90
} )
87
91
88
92
return libp2p
89
93
}
90
94
91
- // message IDs are used to dedup inbound messages
95
+ // message IDs are used to dedupe inbound messages
92
96
// every agent in network should use the same message id function
93
97
// messages could be perceived as duplicate if this isnt added (as opposed to rust peer which has unique message ids)
94
98
export async function msgIdFnStrictNoSign ( msg : Message ) : Promise < Uint8Array > {
@@ -100,17 +104,6 @@ export async function msgIdFnStrictNoSign(msg: Message): Promise<Uint8Array> {
100
104
}
101
105
102
106
103
- export const setWebRTCRelayAddress = ( maddrs : Multiaddr [ ] , peerId : string ) => {
104
- maddrs . forEach ( ( maddr ) => {
105
- if ( maddr . protoCodes ( ) . includes ( CIRCUIT_RELAY_CODE ) ) {
106
-
107
- const webRTCrelayAddress = multiaddr ( maddr . toString ( ) + '/webrtc/p2p/' + peerId )
108
-
109
- console . log ( `Listening on '${ webRTCrelayAddress . toString ( ) } '` )
110
- }
111
- } )
112
- }
113
-
114
107
export const connectToMultiaddr =
115
108
( libp2p : Libp2p ) => async ( multiaddr : Multiaddr ) => {
116
109
console . log ( `dialling: ${ multiaddr . toString ( ) } ` )
0 commit comments