Symbol for the new pool’s LP token. This value will be concatenated with the factory symbol
_coins
address[4]
List of addresses of the coins being used in the pool
_A
uint256
Amplification coefficient
_fee
uint256
Trade fee, given as an integer with 1e10 precision
_asset_type
uint256
Asset type of the pool as an integer. 0 = USD, 1 = ETH, 2 = BTC, 3 = Other
_implementation_idx
uint256
Index of the implementation to use. All possible implementations for a pool of N_COINS can be publicly accessed via plain_implementations(N_COINS)
Source code
eventPlainPoolDeployed:coins:address[MAX_PLAIN_COINS]A:uint256fee:uint256deployer:addressMAX_PLAIN_COINS:constant(int128)=4# max coins in a plain pool@externaldefdeploy_plain_pool(_name:String[32],_symbol:String[10],_coins:address[MAX_PLAIN_COINS],_A:uint256,_fee:uint256,_asset_type:uint256=0,_implementation_idx:uint256=0,)->address:""" @notice Deploy a new plain pool @param _name Name of the new plain pool @param _symbol Symbol for the new plain pool - will be concatenated with factory symbol @param _coins List of addresses of the coins being used in the pool. @param _A Amplification co-efficient - a lower value here means less tolerance for imbalance within the pool's assets. Suggested values include: * Uncollateralized algorithmic stablecoins: 5-10 * Non-redeemable, collateralized assets: 100 * Redeemable assets: 200-400 @param _fee Trade fee, given as an integer with 1e10 precision. The minimum fee is 0.04% (4000000), the maximum is 1% (100000000). 50% of the fee is distributed to veCRV holders. @param _asset_type Asset type for pool, as an integer 0 = USD, 1 = ETH, 2 = BTC, 3 = Other @param _implementation_idx Index of the implementation to use. All possible implementations for a pool of N_COINS can be publicly accessed via `plain_implementations(N_COINS)` @return Address of the deployed pool """# fee must be between 0.04% and 1%assert_fee>=4000000and_fee<=100000000,"Invalid fee"n_coins:uint256=MAX_PLAIN_COINSrate_multipliers:uint256[MAX_PLAIN_COINS]=empty(uint256[MAX_PLAIN_COINS])decimals:uint256[MAX_PLAIN_COINS]=empty(uint256[MAX_PLAIN_COINS])foriinrange(MAX_PLAIN_COINS):coin:address=_coins[i]ifcoin==ZERO_ADDRESS:asserti>1,"Insufficient coins"n_coins=ibreakassertself.base_pool_assets[coin]==False,"Invalid asset, deploy a metapool"if_coins[i]==0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE:asserti==0,"ETH must be first coin"decimals[0]=18else:decimals[i]=ERC20(coin).decimals()assertdecimals[i]<19,"Max 18 decimals for coins"rate_multipliers[i]=10**(36-decimals[i])forxinrange(i,i+MAX_PLAIN_COINS):ifx+1==MAX_PLAIN_COINS:breakif_coins[x+1]==ZERO_ADDRESS:breakassertcoin!=_coins[x+1],"Duplicate coins"implementation:address=self.plain_implementations[n_coins][_implementation_idx]assertimplementation!=ZERO_ADDRESS,"Invalid implementation index"pool:address=create_forwarder_to(implementation)CurvePlainPool(pool).initialize(_name,_symbol,_coins,rate_multipliers,_A,_fee)length:uint256=self.pool_countself.pool_list[length]=poolself.pool_count=length+1self.pool_data[pool].decimals=decimalsself.pool_data[pool].n_coins=n_coinsself.pool_data[pool].base_pool=ZERO_ADDRESSself.pool_data[pool].implementation=implementationif_asset_type!=0:self.pool_data[pool].asset_type=_asset_typeforiinrange(MAX_PLAIN_COINS):coin:address=_coins[i]ifcoin==ZERO_ADDRESS:breakself.pool_data[pool].coins[i]=coinraw_call(coin,concat(method_id("approve(address,uint256)"),convert(pool,bytes32),convert(MAX_UINT256,bytes32)))forjinrange(MAX_PLAIN_COINS):ifi<j:swappable_coin:address=_coins[j]key:uint256=bitwise_xor(convert(coin,uint256),convert(swappable_coin,uint256))length=self.market_counts[key]self.markets[key][length]=poolself.market_counts[key]=length+1logPlainPoolDeployed(_coins,_A,_fee,msg.sender)returnpool
Symbol for the new metapool’s LP token. This value will be concatenated with the base pool symbol.
_coin
address
Address of the coin being used in the metapool
_A
uint256
Amplification coefficient
_fee
uint256
Trade fee, given as an integer with 1e10 precision
_implementation_idx
uint256
Index of the implementation to use. All possible implementations for a pool of N_COINS can be publicly accessed via plain_implementations(N_COINS)
Source code
eventMetaPoolDeployed:coin:addressbase_pool:addressA:uint256fee:uint256deployer:address@externaldefdeploy_metapool(_base_pool:address,_name:String[32],_symbol:String[10],_coin:address,_A:uint256,_fee:uint256,_implementation_idx:uint256=0,)->address:""" @notice Deploy a new metapool @param _base_pool Address of the base pool to use within the metapool @param _name Name of the new metapool @param _symbol Symbol for the new metapool - will be concatenated with the base pool symbol @param _coin Address of the coin being used in the metapool @param _A Amplification co-efficient - a higher value here means less tolerance for imbalance within the pool's assets. Suggested values include: * Uncollateralized algorithmic stablecoins: 5-10 * Non-redeemable, collateralized assets: 100 * Redeemable assets: 200-400 @param _fee Trade fee, given as an integer with 1e10 precision. The minimum fee is 0.04% (4000000), the maximum is 1% (100000000). 50% of the fee is distributed to veCRV holders. @param _implementation_idx Index of the implementation to use. All possible implementations for a BASE_POOL can be publicly accessed via `metapool_implementations(BASE_POOL)` @return Address of the deployed pool """# fee must be between 0.04% and 1%assert_fee>=4000000and_fee<=100000000,"Invalid fee"implementation:address=self.base_pool_data[_base_pool].implementations[_implementation_idx]assertimplementation!=ZERO_ADDRESS,"Invalid implementation index"# things break if a token has >18 decimalsdecimals:uint256=ERC20(_coin).decimals()assertdecimals<19,"Max 18 decimals for coins"pool:address=create_forwarder_to(implementation)CurvePool(pool).initialize(_name,_symbol,_coin,10**(36-decimals),_A,_fee)ERC20(_coin).approve(pool,MAX_UINT256)# add pool to pool_listlength:uint256=self.pool_countself.pool_list[length]=poolself.pool_count=length+1base_lp_token:address=self.base_pool_data[_base_pool].lp_tokenself.pool_data[pool].decimals=[decimals,0,0,0]self.pool_data[pool].n_coins=2self.pool_data[pool].base_pool=_base_poolself.pool_data[pool].coins[0]=_coinself.pool_data[pool].coins[1]=self.base_pool_data[_base_pool].lp_tokenself.pool_data[pool].implementation=implementationis_finished:bool=Falseforiinrange(MAX_COINS):swappable_coin:address=self.base_pool_data[_base_pool].coins[i]ifswappable_coin==ZERO_ADDRESS:is_finished=Trueswappable_coin=base_lp_tokenkey:uint256=bitwise_xor(convert(_coin,uint256),convert(swappable_coin,uint256))length=self.market_counts[key]self.markets[key][length]=poolself.market_counts[key]=length+1ifis_finished:breaklogMetaPoolDeployed(_coin,_base_pool,_A,_fee,msg.sender)returnpool
>>>Factory.deploy_metapool(_base_pool:'0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7',
_name:"crvUSD/3CRV",
_symbol:"crvUSD3CRV",
_coin:'0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E',
_A:200,
_fee:4000000,
_implementation_idx:uint256=0,
)'returns address of the deployed pool'
Function to deploy a liquidity gauge for a factory pool.
Returns: Deployed gauge (address).
Emits: LiquidityGaugeDeployed
Input
Type
Description
_pool
address
Factory pool address to deploy a gauge for
Source code
eventLiquidityGaugeDeployed:pool:addressgauge:address@externaldefdeploy_gauge(_pool:address)->address:""" @notice Deploy a liquidity gauge for a factory pool @param _pool Factory pool address to deploy a gauge for @return Address of the deployed gauge """assertself.pool_data[_pool].coins[0]!=ZERO_ADDRESS,"Unknown pool"assertself.pool_data[_pool].liquidity_gauge==ZERO_ADDRESS,"Gauge already deployed"implementation:address=self.gauge_implementationassertimplementation!=ZERO_ADDRESS,"Gauge implementation not set"gauge:address=create_forwarder_to(implementation)LiquidityGauge(gauge).initialize(_pool)self.pool_data[_pool].liquidity_gauge=gaugelogLiquidityGaugeDeployed(_pool,gauge)returngauge