PapayaInteraction
Class for using writable methods of Papaya Contract
constructor
parameters
papayaAddress(
`0x{string}`
)
- smart-contract addressprovider( JsonRpcProvider )
- jsonRpc blockchain provider from ethers.jssecretKey(
string
)
- wallet private key
usage
claimProjectId
description
This method assigns a unique number to your wallet, it needed for current functionality of projects
usage
setDefaultSettings
description
The default settings are the fee settings that will be set for all users of your project
parameters
initialized(
boolean
)
- unambiguously determine that the settings have been setprojectFee(
number
)
- the amount of feeprojectId(
number
)
- unique number of project
usage
setSettingsForUser
description
The settings of a specific user allow you to set up the fee more precisely in relation to a specific wallet, this is necessary, for example, in cases of interaction with opinion leaders
parameters
user(
string
)
- address of certain userinitialized(
boolean
)
- unambiguously determine that the settings have been setprojectFee(
number
)
- the amount of feeprojectId(
number
)
- unique number of project
usage
deposit
description
Allows depositing funds into the contract. To use this method, you must first approve the necessary amount of tokens for the Papaya contract.
parameters
amount(
number
)
- amount of fundsisPermit2(
boolean
)
- a flag indicating the specificity of the token
usage
depositFor
description
This method is used if you need to deposit funds into another user's account, this is necessary in case of integration of third-party paid systems, for example fiat on ramp
parameters
amount(
number
)
- amount of fundsto(
string
)
- address of receieverisPermit2(
boolean
)
- a flag indicating the specificity of the token
usage
withdraw
description
Allows withdrawing your funds at any time. When this method is called, your balance will be synchronized, and you can withdraw any available amount.
parameters
amount (
number
)
- amount of funds
usage
withdrawTo
description
This method is used if you want to withdraw your funds to another wallet
parameters
to(
string
)
- address of receiveramount(
number
)
- amount of funds
usage
pay
description
Allows sending funds without using the subscription mechanism, similar to the classic transfer method.
parameters
to(
string
)
- address of receiveramount(
number
)
- amount of funds
usage
subscribe
description
Responsible for creating and modifying subscriptions. Since it is impossible to efficiently predefine costs, users need to specify how much they want to pay monthly, for example.
parameters
author(
string
)
- address of certain authorsubscriptionRate(
number
)
- the size of a per-second subscriptionprojectId(
number
)
- unique number of project
usage
unsubscribe
description
Responsible for disabling a subscription. This method can be called at any time to stop payments from an individual user.
parameters
author(
string
)
- address of certain author
usage
liquidate
description
This method gives you access to liquidation mechanism. More information here
parameters
target(
string
)
- address of user that would be liquidated
usage
Last updated