Pool Creation
The PoolDeployer contract facilitates the atomic deployment, initialization and configuration of the all contracts necessary to run a Pool:
PoolManager
, which itself deploys:Pool
- some number of
LoanManager
s
WithdrawalManager
The following pre-requisite configurations are necessary in order to deploy a Pool in the Maple protocol.
- 1.Deploying address is a valid Pool Delegate in
MapleGlobals
. - 2.The provided
PoolManagerFactory
is a valid factory inMapleGlobals
. - 3.The provided
WithdrawalManagerFactory
is a valid factory inMapleGlobals
. - 4.Each provided
LoanManagerFactory
is a valid factory inMapleGlobals
. - 5.The Pool Delegate does not own a
Pool
already. - 6.The Pool Asset is a valid asset in
MapleGlobals
. - 7.The
WithdrawalManager
withdrawal window is shorter than the cycle duration. - 8.The required pool cover can be transferred from the Pool Delegate to the
PoolDelegateCover
.
To deploy a Pool,
PoolDeployer
can be called with the following parameters:poolManagerFactory
.withdrawalManagerFactory
.loanManagerFactories
.asset
- The main asset that the pool denominates in.name
andsymbol
for identification of the pool shares token.- Configuration params:
liquidityCap
- The maximum amount of funds asset that can be deposited in the poolmanagementFeeRate
- The rate of the interest that is sent to pool delegates as management fee.poolCoverAmount
- The amount of pool cover that the pool delegate is required to deposit.cycleDuration
- The duration, in seconds, of each cycle of the withdrawal manager.windowDuration
- The duration, in seconds, of the withdrawal window.initialSupply
- The initial supply of pool tokens.
Before the Pool can start accepting deposits and operating, the Governor needs to call
activatePoolManager
in Globals. This will activate the Pool. This allows the Governor to set up fee parameters, default parameters, and ensure that the requisite cover has been posted by the Pool Delegate before running the Pool.Last modified 3mo ago