Marketplace Pools
Last updated
Last updated
Oceanpoint enables everyone to crowd fund their own whitelabel marketplace using the so called Marketplace Pool. The idea behind this pool is that a certified partner that wants to run a white-label marketplace and might lack the funding to do so on their own can raise funds from the community in order to acquire a total of 100.000 sBST (Received from the Governance pool). The 100.000 sBST would mean a 100% discount on the whitelabel marketplace subscription fee.
The certified partner needs to initiate the marketplace pool with at least 10.000 sBST as collateral their side and a lockup period for which the tokens the users deposit are locked.
Once the pool is initiated by the CP, Oceanpoint will need to configure the marketplace pool campaign, which is made up of start time, the duration of the campaign and also the initial max amount each user can contribute. This is done to ensure that enough users have a chance of participating rather than a single whale filling up the entire pool. The max pledge amount increase over time the longer the pool is already running.
The owner of the pool can either allow the certified partner to withdraw the sBST for their use if the campaign is successful or it can liquidate the certified partner collateral in case of a failed campaign.
If a campaign is successful, rewards will be added to the marketplace pool and distribute among all participants.
Event | Description |
---|---|
The certified partner needs to initialize the pool in order for users to participate. During the initialization the certified partner needs to add collateral which will get returned in case the pool is considered as successful. A pool is considered successful if 100.000 sBST are added. Otherwise a pool is considered as failed and the certified partner will lose the collateral via a liquidation.
MIN_AMOUNT_DEPOSITED
: 10.000 sBST
MAX_AMOUNT_DEPOSITED
: 99.000 sBST
MIN_LOCK_PERIOD
: 90 days
MAX_LOCK_PERIOD
: 365 days
Marketplace Pool
amount
: Amount of sBST a certified partner adds as collateral.
lockPeriod
: Duration in seconds of how long users are locked.
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used to configure and enable user deposits to the pool.
Marketplace Pool
start
: Time when users are allowed to deposit in the pool as timestamp.
duration
: Duration in seconds of how long the investment period last.
maxPledge
: Starting maximum amount in sBST a user can contribute. This increase over time.
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used by the user to contribute sBST to the pool during an ongoing campaign.
Marketplace Pool
amount
: Amount of sBST a user want to contribute.
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used by the user in order to contribute more sBST to the pool after a campaign finished. While the campaign is still ongoing users can use depositInCampaign.
Marketplace Pool
amount
: Amount of sBST a user want to add to his existing stake.
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used by the owner of the pool to allow the certified partner to withdraw his collateral.
Marketplace Pool
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used by the owner of the pool to liquidate the collateral of the certified partner.
Marketplace Pool
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used by the owner of the pool to extend to lock period for a vertified partner.
Marketplace Pool
extendBy
: Duration in seconds of how long to extend the Certified Partner lock period.
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used to add rewards to successful pools. A pool is considered as successful if it reach 100.000 sBST.
Marketplace Pool
amount
: Amount of sBST added as rewards to a successful pool
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Gets the total amount of sBST that was deposit to the pool.
Marketplace Pool
RETURN
: The number of total sBST from deposits (integer).
Solidity
Web3 1.2.6
Gets the total amount of sBST that was added as collateral to the pool by the certified partner.
Marketplace Pool
RETURN
: The number of total sBST collateral (integer).
Solidity
Web3 1.2.6
Gets the time at which the lock period for users participating in the pool is over.
Marketplace Pool
RETURN
: The timestamp when the user lock period ends (integer).
Solidity
Web3 1.2.6
Gets the amount of pending rewards for a given wallet in case a campaign was successful.
Marketplace Pool
wallet
: The account that we want to check unclaimed rewards for.
RETURN
: The timestamp when the user lock period ends (integer).
Solidity
Web3 1.2.6
Used by the participant of the pool to withdraw his sBST and rewards. Rewards are only available if the pool campaign was successful.
Marketplace Pool
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Used to deposit sBST to the pool.
Marketplace Pool
amount
: Amount of sBST to deposit to the pool.
RETURN
: No return, reverts on error.
Solidity
Web3 1.2.6
Capped(uint256 lockEnd)
An event emitted when a pool was successful and will receive rewards.
PoolCampaignConfigured(uint256 startTime, uint256 duration, uint256 maxPledge)
An event emitted when a pool is configured
Deposit(address indexed owner, uint256 inAmount, uint256 outAmount)
An event emitted when a deposit has been made
Withdraw(address indexed owner, uint256 inAmount, uint256 outAmount, uint256 reward)
An event emitted when a withdraw has been made
Reward(address indexed from, uint256 amount)
An event emitted when a reward is added to the pool