MaverickV2Factory
Inherits: IMaverickV2Factory, IMaverickV2FactoryAdmin, Ownable
Pool Factory contract. Deploys both permissionless and permissioned Maverick V2 pools using deterministic create2 addresses. Deployed pools can be looked up by their parameters or by the token pair. This contract is ownable with the owner having permission to set protocol fee for all pools and collect protocol fee proceeds from pools.
State Variables
poolLists
Mapping elements are [tokenA][tokenB] -> list of pools.
poolListsPermissioned
Mapping elements are [accessor][tokenA][tokenB] -> list of pools.
isFactoryPool
Bool indicating whether the pool was deployed from this factory.
isFactoryPoolPermissioned
Bool indicating whether the pool was deployed from this factory.
protocolFeeRatioD3
Proportion of protocol fee to collect on each swap. Value is in 3-decimal format with a maximum value of 0.25e3.
protocolLendingFeeRateD18
Fee rate charged by the protocol for flashloans. Value is in 18-decimal format with a maximum value of 0.02e18.
deployParameters
Called by deployer library to initialize a pool.
protocolFeeReceiver
Address that receives the protocol fee when users call claimProtocolFeeForPool
.
allPools
Array of all permissionless pools.
allPoolsPermissioned
Array of all permissioned pools.
Functions
constructor
setProtocolFeeRatio
Set the protocol fee ratio.
Parameters
setProtocolLendingFeeRate
Set the protocol lending fee rate.
Parameters
setProtocolFeeReceiver
Set the protocol fee receiver address. If protocol fee is non-zero, user will be able to permissionlessly push protocol fee from a given pool to this address.
transferOwnership
Transfer ownership of the contract to a new owner.
Parameters
renounceOwnership
Renounce ownership of the contract.
claimProtocolFeeForPool
Claim protocol fee for a pool and transfer it to the protocolFeeReceiver.
Parameters
claimProtocolFeeForPool
Claim protocol fee for a pool and transfer it to the protocolFeeReceiver.
Parameters
updateProtocolFeeRatioForPool
Update the protocol fee ratio for a pool. Can be called permissionlessly allowing any user to sync the pool protocol fee value with the factory protocol fee value.
Parameters
updateProtocolLendingFeeRateForPool
Update the protocol lending fee rate for a pool. Can be called permissionlessly allowing any user to sync the pool protocol lending fee rate value with the factory value.
Parameters
create
Create a new MaverickV2Pool with symmetric swap fees.
Parameters
createPermissioned
Create a new MaverickV2PoolPermissioned with symmetric swap fees.
Parameters
owner
Get the current factory owner.
lookup
Lookup a pool for given parameters.
lookup
Lookup a pool for given parameters.
Lookup a pool for given parameters.
Lookup a pool for given parameters.
Lookup a pool for given parameters.
Lookup a pool for given parameters.
Address of a permissionless pool.
Address of a permissionless pool.
_slice
Prune array from storage to subset of array with range [startIndex, endIndex).
Parameters
Returns
_createChecks
Check create pool parameters to ensure they are valid. Reverts on an invalid paramter sets.
_checkProtocolFeeRatio
Checks the validity of the protocol fee ratio.
_checkProtocolLendingFeeRate
Checks the validity of the protocol lending fee rate.
Last updated