PapayaGetter
Class for using read-only methods of Papaya Contract
constructor
parameters
papayaAddress(
`0x{string}`
)
- smart-contract addressprovider( JsonRpcProvider )
- jsonRpc blockchain provider from ethers.js
usage
allSubscriptions
description
To know the subscriptions of a particular user, use the allSubscription
method, which returns arrays of addresses and encoded subscription data (cost, author’s share, project number).
parameters
user(
string
)
- address of certain user
usage
balanceOf
description
The standard method for ERC 20 shows the balance, but with some changes. Due to the fact that streams change the balance every second, this method will show the current balance, even if there was no synchronization
parameters
projectId(
number
)
- unique number of project
usage
getUserSettings
description
If the settings of a specific user are set, you can familiarize yourself with them using this method
parameters
projectId(
number
)
- number of certain projectIduser(
string
)
- address of certain user
usage
getAllProjectOwners
description
This method returns an array of addresses that are the owners of the projects
usage
getUser
description
This method returns four fields: balance, incoming stream, outgoing stream, last synchronization timestamp. Note: Since user balance synchronization occurs on request, balance data may be outdated.
parameters
user(
string
)
- address of certain user
usage
FLOOR
description
This method returns the floor of every calculation, it is necessary to calculate the value of assets and fees
MAX_PROTOCOL_FEE
description
This method returns the maximum possible fee value
APPROX_LIQUIDATE_GAS
description
This method returns the approximate cost of completing the liquidation if the person does not have subscriptions.
APPROX_SUBSCRIPTION_GAS
description
This method returns the approximate cost of performing liquidation for each subscription
SUBSCRIPTION_THRESHOLD
description
This method returns the maximum possible count of subcriptions per user
COIN_PRICE_FEED
description
This method returns address of coin price feed, that used in smart-contract
TOKEN_PRICE_FEED
description
This method returns address of token price feed, that used in smart-contract
TOKEN
description
This method returns address of underlying token, because we masked it into pp*, where * is an asset name
DECIMALS_SCALE
description
This method returns the number for which the token was needed to be converted to the form 1e18
Last updated