Subscriptions
allSubscriptions
To retrieve the subscriptions of a specific user, use the allSubscriptions
method. It returns arrays containing addresses and encoded subscription data (cost, author’s share, project number).
subscriptions
To obtain encoded data for a specific subscription, use the subscriptions
method. It returns two values: a flag indicating presence and encoded data if the subscription exists.
users
To get information about a user, use the users
method. This returns four fields: balance, incoming stream, outgoing stream, and the last synchronization timestamp.
To calculate the balance yourself, determine the difference between incoming and outgoing streams and multiply by the time elapsed since the last synchronization timestamp. Alternatively, use the balanceOf method for up-to-date data.
Last updated