Implementation of @libp2p/interface-peer-id
$ npm i @libp2p/peer-id
<script>
tagLoading this module through a script tag will make it's exports available as Libp2PPeerId
in the global namespace.
<script src="https://unpkg.com/@libp2p/peer-id/dist/index.min.js"></script>
A basic implementation of a peer id
import { peerIdFromString } from '@libp2p/peer-id'
const peer = peerIdFromString('k51qzi5uqu5dkwkqm42v9j9kqcam2jiuvloi16g72i4i4amoo2m8u3ol3mqu6s')
console.log(peer.toCid()) // CID(bafzaa...)
console.log(peer.toString()) // "12D3K..."
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.