Hi, I am trying to use the Merkle DAG features of IPFS javascript API to create a decentralized list of base58 addresses, and a corresponding value. It boils down a verified list of addresses that looks some like this:
verified: { address1: âvalue1â, address2: âvalue2â, âŚ}
example adding member to the DAG:
let cid = await ipfs.dag.put({
verified: {
address: âvalueâ
}
})
The CID for this decentralized table will change with each update to the DAG. Which I will keep track of in my program. In all doesnât seem too difficult. I see itâs fairly easy to create a new IPFS node within my web app, however, the data wonât be persistent, obviously. Whatâs the best way to get this data âpinnedâ so that it is always accessible? Iâm considering using Infura IPFS or https://www.pinata.cloud/, but didnât see any details specifically about pinning a DAG for permanent storage. Any suggestions you have, or pointers to other resources would be greatly appreciated. Thank you!