mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
9 lines
138 B
JavaScript
9 lines
138 B
JavaScript
'use strict'
|
|
|
|
const getIpfsPeerId = async (ipfs) => {
|
|
const peerId = await ipfs.id()
|
|
return peerId.id
|
|
}
|
|
|
|
export default getIpfsPeerId
|