Skip to content

Commit 5eb3513

Browse files
achingbrainp-shahimaschad
authored
deps: update libp2p to 0.45.x (#73)
Co-authored-by: Prithvi Shahi <[email protected]> Co-authored-by: chad <[email protected]>
1 parent 4a309e5 commit 5eb3513

File tree

8 files changed

+991
-6492
lines changed

8 files changed

+991
-6492
lines changed

package-lock.json

+848-6,410
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/frontend/next.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
reactStrictMode: true,
4+
productionBrowserSourceMaps: true,
45
}
56

67
module.exports = nextConfig

packages/frontend/package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,27 @@
77
"lint": "next lint"
88
},
99
"dependencies": {
10-
"@chainsafe/libp2p-gossipsub": "6.2.0",
11-
"@chainsafe/libp2p-noise": "^11.0.0",
12-
"@chainsafe/libp2p-yamux": "^3.0.5",
10+
"@chainsafe/libp2p-gossipsub": "^8.0.0",
11+
"@chainsafe/libp2p-noise": "^12.0.1",
12+
"@chainsafe/libp2p-yamux": "^4.0.2",
1313
"@download/blockies": "^1.0.3",
1414
"@headlessui/react": "^1.7.13",
1515
"@heroicons/react": "^2.0.16",
16-
"@libp2p/bootstrap": "^6.0.0",
17-
"@libp2p/kad-dht": "^8.0.6",
18-
"@libp2p/webrtc": "^1.1.2",
19-
"@libp2p/websockets": "^5.0.3",
20-
"@libp2p/webtransport": "^1.0.7",
21-
"@multiformats/mafmt": "^12.1.0",
22-
"@multiformats/multiaddr": "^12.1.1",
16+
"@libp2p/bootstrap": "^8.0.0",
17+
"@libp2p/interface-pubsub": "^4.0.1",
18+
"@libp2p/kad-dht": "^9.3.6",
19+
"@libp2p/webrtc": "^2.0.6",
20+
"@libp2p/websockets": "^6.0.3",
21+
"@libp2p/webtransport": "^2.0.1",
22+
"@multiformats/mafmt": "^12.1.5",
23+
"@multiformats/multiaddr": "^12.1.3",
2324
"@types/node": "18.14.6",
2425
"@types/react": "18.0.28",
2526
"@types/react-dom": "18.0.11",
2627
"debug": "^4.3.4",
2728
"eslint": "8.35.0",
2829
"eslint-config-next": "13.2.3",
29-
"libp2p": "^0.44.0",
30+
"libp2p": "^0.45.5",
3031
"next": "13.2.3",
3132
"private-ip": "^3.0.0",
3233
"react": "18.2.0",

packages/frontend/src/components/chat.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ export default function ChatContainer() {
6262
}
6363
}
6464

65-
libp2p.pubsub.addEventListener('message', messageCB)
65+
libp2p.services.pubsub.addEventListener('message', messageCB)
6666

6767
return () => {
6868
// Cleanup handlers 👇
6969
// libp2p.pubsub.unsubscribe(CHAT_TOPIC)
70-
libp2p.pubsub.removeEventListener('message', messageCB)
70+
libp2p.services.pubsub.removeEventListener('message', messageCB)
7171
}
7272
}, [libp2p, messageHistory, setMessageHistory])
7373

@@ -76,10 +76,10 @@ export default function ChatContainer() {
7676

7777
console.log(
7878
'peers in gossip:',
79-
libp2p.pubsub.getSubscribers(CHAT_TOPIC).toString(),
79+
libp2p.services.pubsub.getSubscribers(CHAT_TOPIC).toString(),
8080
)
8181

82-
const res = await libp2p.pubsub.publish(
82+
const res = await libp2p.services.pubsub.publish(
8383
CHAT_TOPIC,
8484
new TextEncoder().encode(input),
8585
)

packages/frontend/src/context/ctx.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ import type { Libp2p } from 'libp2p'
1010
import { startLibp2p } from '../lib/libp2p'
1111
import { ChatProvider } from './chat-ctx'
1212
import { PeerProvider } from './peer-ctx'
13+
import { ListenAddressesProvider } from './listen-addresses-ctx'
14+
import { PubSub } from '@libp2p/interface-pubsub'
1315

1416
// 👇 The context type will be avilable "anywhere" in the app
1517
interface Libp2pContextInterface {
16-
libp2p: Libp2p
18+
libp2p: Libp2p<{ pubsub: PubSub }>
1719
}
1820
export const libp2pContext = createContext<Libp2pContextInterface>({
1921
// @ts-ignore to avoid having to check isn't undefined everywhere. Can't be undefined because children are conditionally rendered
@@ -25,7 +27,7 @@ interface WrapperProps {
2527
}
2628
let loaded = false
2729
export function AppWrapper({ children }: WrapperProps) {
28-
const [libp2p, setLibp2p] = useState<Libp2p>()
30+
const [libp2p, setLibp2p] = useState<Libp2p<{ pubsub: PubSub }>>()
2931

3032
useEffect(() => {
3133
const init = async () => {
@@ -58,7 +60,9 @@ export function AppWrapper({ children }: WrapperProps) {
5860
<libp2pContext.Provider value={{ libp2p }}>
5961
<ChatProvider>
6062
<PeerProvider>
61-
{children}
63+
<ListenAddressesProvider>
64+
{children}
65+
</ListenAddressesProvider>
6266
</PeerProvider>
6367
</ChatProvider>
6468
</libp2pContext.Provider>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import React, { ReactNode, createContext, useContext, useState } from 'react'
2+
import { Multiaddr } from '@multiformats/multiaddr'
3+
4+
export interface ListenAddresses {
5+
multiaddrs: Multiaddr[]
6+
}
7+
8+
export interface ListenAddressesContextInterface {
9+
listenAddresses: ListenAddresses;
10+
setListenAddresses: (addresses: ListenAddresses) => void;
11+
}
12+
13+
export const listenAddressesContext = createContext<ListenAddressesContextInterface>({
14+
listenAddresses: {
15+
multiaddrs: []
16+
},
17+
setListenAddresses: () => { }
18+
})
19+
20+
export const useListenAddressesContext = () => {
21+
return useContext(listenAddressesContext);
22+
};
23+
24+
export const ListenAddressesProvider = ({ children }: { children: ReactNode }) => {
25+
const [listenAddresses, setListenAddresses] = useState<ListenAddresses>({
26+
multiaddrs: []
27+
});
28+
29+
return (
30+
<listenAddressesContext.Provider value={{ listenAddresses, setListenAddresses }}>
31+
{children}
32+
</listenAddressesContext.Provider>
33+
);
34+
};

packages/frontend/src/lib/libp2p.ts

+48-55
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { createLibp2p, Libp2p } from 'libp2p'
2+
import { identifyService } from 'libp2p/identify'
23
import { noise } from '@chainsafe/libp2p-noise'
34
import { yamux } from '@chainsafe/libp2p-yamux'
45
import { bootstrap } from '@libp2p/bootstrap'
@@ -15,42 +16,47 @@ import { webTransport } from '@libp2p/webtransport'
1516
import { webRTC, webRTCDirect } from '@libp2p/webrtc'
1617
import { CHAT_TOPIC, CIRCUIT_RELAY_CODE, WEBRTC_BOOTSTRAP_NODE, WEBTRANSPORT_BOOTSTRAP_NODE } from './constants'
1718
import * as filters from "@libp2p/websockets/filters"
18-
19-
// @ts-ignore
2019
import { circuitRelayTransport } from 'libp2p/circuit-relay'
2120

22-
2321
export async function startLibp2p() {
2422
// localStorage.debug = 'libp2p*,-*:trace'
2523
// application-specific data lives in the datastore
2624

2725
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:[{
4239
urls: [
4340
'stun:stun.l.google.com:19302',
4441
'stun:global.stun.twilio.com:3478'
4542
]
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+
},
5255
connectionEncryption: [noise()],
5356
streamMuxers: [yamux()],
57+
connectionGater: {
58+
denyDialMultiaddr: async () => false,
59+
},
5460
peerDiscovery: [
5561
bootstrap({
5662
list: [
@@ -59,36 +65,34 @@ export async function startLibp2p() {
5965
],
6066
}),
6167
],
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+
}
7882
})
7983

80-
libp2p.pubsub.subscribe(CHAT_TOPIC)
84+
libp2p.services.pubsub.subscribe(CHAT_TOPIC)
8185

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)
8388

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}`)
8690
})
8791

8892
return libp2p
8993
}
9094

91-
// message IDs are used to dedup inbound messages
95+
// message IDs are used to dedupe inbound messages
9296
// every agent in network should use the same message id function
9397
// messages could be perceived as duplicate if this isnt added (as opposed to rust peer which has unique message ids)
9498
export async function msgIdFnStrictNoSign(msg: Message): Promise<Uint8Array> {
@@ -100,17 +104,6 @@ export async function msgIdFnStrictNoSign(msg: Message): Promise<Uint8Array> {
100104
}
101105

102106

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-
114107
export const connectToMultiaddr =
115108
(libp2p: Libp2p) => async (multiaddr: Multiaddr) => {
116109
console.log(`dialling: ${multiaddr.toString()}`)

packages/frontend/src/pages/index.tsx

+37-9
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,46 @@ import { useCallback, useEffect, useState } from 'react'
88
import Image from 'next/image'
99
import { multiaddr } from '@multiformats/multiaddr'
1010
import { connectToMultiaddr } from '../lib/libp2p'
11-
11+
import { useListenAddressesContext } from '../context/listen-addresses-ctx'
1212

1313
export default function Home() {
1414
const { libp2p } = useLibp2pContext()
1515
const { peerStats, setPeerStats } = usePeerContext()
16+
const { listenAddresses, setListenAddresses } = useListenAddressesContext()
1617
const [maddr, setMultiaddr] = useState('')
1718

1819
useEffect(() => {
19-
const peerConnectedCB = (evt: any) => {
20-
const connection = evt.detail
21-
setPeerStats({ ...peerStats, peerIds: [...peerStats.peerIds, connection.remotePeer], connections: [...peerStats.connections, connection], connected: true })
22-
}
20+
const interval = setInterval(() => {
21+
const connections = libp2p.getConnections()
2322

24-
libp2p.addEventListener('peer:connect', peerConnectedCB)
23+
setPeerStats({
24+
...peerStats,
25+
peerIds: connections.map(conn => conn.remotePeer),
26+
connections: connections,
27+
connected: connections.length > 0,
28+
})
29+
}, 1000)
2530

2631
return () => {
27-
libp2p.removeEventListener('peer:connect', peerConnectedCB)
32+
clearInterval(interval)
2833
}
2934
}, [libp2p, peerStats, setPeerStats])
3035

36+
useEffect(() => {
37+
const interval = setInterval(() => {
38+
const multiaddrs = libp2p.getMultiaddrs()
39+
40+
setListenAddresses({
41+
...listenAddresses,
42+
multiaddrs
43+
})
44+
}, 1000)
45+
46+
return () => {
47+
clearInterval(interval)
48+
}
49+
}, [libp2p, listenAddresses, setListenAddresses])
50+
3151
type PeerProtoTuple = {
3252
peerId: string
3353
protocols: string[]
@@ -54,7 +74,6 @@ export default function Home() {
5474
peerId,
5575
protocols,
5676
}))
57-
5877
}
5978

6079
const handleConnectToMultiaddr = useCallback(
@@ -113,6 +132,16 @@ export default function Home() {
113132
<ul className="my-2 space-y-2 break-all">
114133
<li className="">This PeerID: {libp2p.peerId.toString()}</li>
115134
</ul>
135+
Addresses:
136+
<ul className="my-2 space-y-2 break-all">
137+
{
138+
listenAddresses.multiaddrs.map((ma, index) => {
139+
return (
140+
<li key={`ma-${index}`}>{ma.toString()}</li>
141+
)
142+
})
143+
}
144+
</ul>
116145
<div className="my-6 w-1/2">
117146
<label
118147
htmlFor="peer-id"
@@ -141,7 +170,6 @@ export default function Home() {
141170
</button>
142171
</div>
143172

144-
145173
<div className="my-4 inline-flex items-center text-xl">
146174
Connected:{' '}
147175
{peerStats.connected ? (

0 commit comments

Comments
 (0)