Web5

Create a Decentralized Identifier (DID)


          let web5;
          let myDid;
          ({ web5, did: myDid } = await Web5.connect());
          
Hit "Run" above to create DID

Edit Profile


          Add your profile name
        
...

Read the data


          const readResult = await record.data.text();
      

Update the message


          const updateResult = await record.update({data: "Hello, I'm updated!"});
        

Delete the message


          const deleteResult = await record.delete();
        
...

Send Data to some other DWN


          look in console. ui is TODO
        
...