You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the node addresses look like /ip4/0.0.0.0/tcp/11781/ipfs/12D3KooWSzvx4mxBSGhLzqS3gLp4wrGqivLuNghZadTgH1R1fbVR, which uses IPFS protocol. There are several evidence showing that IPFS is deprecated and it's replaced by P2P.
Evidence 1, in multiformats/go-multiaddr/protocols.go source code,
P_P2P = 0x01A5
P_IPFS = 0x01A5 // alias for backwards compatability
Evidence 2, Python version libp2p has nothing about IPFS, and all its example and test code use p2p.
Current problem is that if we continue using IPFS, I'm not sure if py-libp2p can parse the nodes' addresses.
The text was updated successfully, but these errors were encountered:
I believe this is solved by updating the LibP2P version which sort of split the main core repo into a bunch of smaller repos. The core repo is now deprecated.
Currently the node addresses look like
/ip4/0.0.0.0/tcp/11781/ipfs/12D3KooWSzvx4mxBSGhLzqS3gLp4wrGqivLuNghZadTgH1R1fbVR
, which uses IPFS protocol. There are several evidence showing that IPFS is deprecated and it's replaced by P2P.Evidence 1, in multiformats/go-multiaddr/protocols.go source code,
Evidence 2, Python version libp2p has nothing about IPFS, and all its example and test code use p2p.
Current problem is that if we continue using IPFS, I'm not sure if py-libp2p can parse the nodes' addresses.
The text was updated successfully, but these errors were encountered: