You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

3.4 KiB

layout permalink
learn /:collection/:path.html

Work with Storage

{:.no_toc}

The Blockstack Platform stores application data in the Gaia Storage System. Transactional metadata is stored on the Blockstack blockchain and user application data is stored in Gaia storage. Storing data off of the blockchain ensures that Blockstack applications can provide users with high performance and high availability for data reads and writes without introducing central trust parties.

  • TOC {:toc}

{% include note.html content="

  • Blockstack Gaia Storage APIs and on-disk format will change in upcoming pre-releases breaking backward compatibility. File encryption is currently opt-in on a file by file basis.
  • Certain storage features such as collections are not implemented in the current version. These features will be rolled out in future updates.
" %}

Creating a file

You use the UserSession.putFile

var userSession = new UserSession()
let options = {
  encrypt: false
}
 userSession.putFile("/hello.txt", "hello world!", options)
 .then(() => {
    // /hello.txt exists now, and has the contents "hello world!".
 })

Creating an encrypted file

You use the

var userSession = new UserSession()

 let options = {
   encrypt: true
 }

 userSession.putFile("/message.txt", "Secret hello!", options)
 .then(() => {
    // message.txt exists now, and has the contents "hello world!".
 })

Reading a file

You use the

var userSession = new UserSession()

 let options = {
   decrypt: false
 }
 
 userSession.getFile("/hello.txt", options)
 .then((fileContents) => {
    // get the contents of the file /hello.txt
    assert(fileContents === "hello world!")
 });

Reading an encrypted file

You use the

var userSession = new UserSession()

 let options = {
   decrypt: true
 }

 userSession.getFile("/message.txt", options)
 .then((fileContents) => {
    // get & decrypt the contents of the file /message.txt
    assert(fileContents === "Secret hello!")
 });

Reading another user's unencrypted file

In order for files to be publicly readable, the app must request the publish_data scope during authentication.

 let options = {
   user: 'ryan.id', // the Blockstack ID of the user for which to lookup the file
   app: 'http://BlockstackApp.com' // origin of the app this file is stored for
 }

var userSession = new UserSession()
userSession.putFile("/hello.txt", "hello world!", options)
 .then((fileContents) => {
    // get the contents of the file /message.txt
    assert(fileContents === "hello world!")
 });

Delete a file

You use the UserSession.deleteFile from the application's data store.


var userSession = new UserSession()

 userSession.deleteFile("/hello.txt")
 .then(() => {
    // /hello.txt is now removed.
 })

{:.no_toc}

To learn more about the guarantees provided by Gaia, see [Storage write and read]({{ site.baseurl }}/storage/write-to-read.html#)