πŸ”‘Aggregate

Aggregate objects allow you to store key-value pairs associated with an address.

Keys are strings and values are objects.

The API allows you to create, update (through create with set parameters), and retrieve one or a list of keys and values for an address.

Structure

The aggregate object inherits from the Message object structure. As every other message, the aggregates messages come with their own item_content object declaration:

item_content:
    key: // The indexed key under the content is stored.
    address: // The account address associated with the post.
    content: // An object containing the value associated with the key.
    time: // When the object where created. 

Last updated