Stableswap-NG Factory: Overview
The CurveStableswapFactoryNG.vy allows the permissionless deployment of up to eight-coin plain- and metapools, as well as gauges. **Liquidity pool and LP token share the same contract.**For more details, see here: Stableswap-NG Documentation.
Asset Types
Stableswap-NG pools supports various tokens with different asset types. New asset types can be added by the admin of the contract via the add_asset_type method.
For a list of all supported assets, please see Deployer API.
asset_types
CurveStableswapFactoryNG.asset_types(arg0: uint8) -> String[20]Getter for name of the different asset types.
Returns: asset type (String[20])
| Input | Type | Description |
|---|---|---|
arg0 | uint8 | Index value of the asset type |
<>Source code▼
asset_types: public(HashMap[uint8, String[20]])
▶Example▼
>>> CurveStableswapFactoryNG.asset_types(0)
'Standard'
>>> CurveStableswapFactoryNG.asset_types(1)
'Oracle'
add_asset_type
CurveStableSwapFactoryNG.add_asset_type(_id: uint8, _name: String[10])This function is only callable by the admin of the contract.
Function to add a new asset type.
| Input | Type | Description |
|---|---|---|
_id | uint8 | Asset type ID |
_name | String[10] | Name of the new asset type |
<>Source code▼
asset_types: public(HashMap[uint8, String[20]])
@external
def add_asset_type(_id: uint8, _name: String[10]):
"""
@notice Admin only method that adds a new asset type.
@param _id asset type id.
@param _name Name of the asset type.
"""
assert msg.sender == self.admin # dev: admin only
self.asset_types[_id] = _name
Base Pools
Stableswap pools also allow the deployment of metapools (an asset paired against a base pool). When deploying a new Factory, the existing base pools must be manually added to the contract for them to be used for metapools.
Limitations when adding new base pools:
- Rebasing tokens are not allowed in a base pool.
- Can not add a base pool that contains native tokens (e.g., ETH).
- As much as possible: Use standard
ERC20tokens.
add_base_pool
CurveStableSwapFactoryNG.add_base_pool(_base_pool: address, _base_lp_token: address, _asset_types: DynArray[uint8, MAX_COINS], _n_coins: uint256):This function is only callable by the admin of the contract.
Function to add a new base pool.
Emits: BasePoolAdded
| Input | Type | Description |
|---|---|---|
_base_pool | address | Pool address to add as a base pool |
_base_lp_token | address | LP token address of the pool |
_asset_types | DynArray[uint8, MAX_COINS] | Array of asset types of the pool |
_n_coins | uint256 | Number of coins in the base pool |
<>Source code▼
event BasePoolAdded:
base_pool: address
@external
def add_base_pool(
_base_pool: address,
_base_lp_token: address,
_asset_types: DynArray[uint8, MAX_COINS],
_n_coins: uint256,
):
"""
@notice Add a base pool to the registry, which may be used in factory metapools
@dev 1. Only callable by admin
1. Rebasing tokens are not allowed in the base pool.
2. Do not add base pool which contains native tokens (e.g. ETH).
3. As much as possible: use standard ERC20 tokens.
Should you choose to deviate from these recommendations, audits are advised.
@param _base_pool Pool address to add
@param _asset_types Asset type for pool, as an integer
"""
assert msg.sender == self.admin # dev: admin-only function
assert 2 not in _asset_types # dev: rebasing tokens cannot be in base pool
assert len(self.base_pool_data[_base_pool].coins) == 0 # dev: pool exists
assert _n_coins < MAX_COINS # dev: base pool can only have (MAX_COINS - 1) coins.
# add pool to pool_list
length: uint256 = self.base_pool_count
self.base_pool_list[length] = _base_pool
self.base_pool_count = length + 1
self.base_pool_data[_base_pool].lp_token = _base_lp_token
self.base_pool_data[_base_pool].n_coins = _n_coins
self.base_pool_data[_base_pool].asset_types = _asset_types
decimals: uint256 = 0
coins: DynArray[address, MAX_COINS] = empty(DynArray[address, MAX_COINS])
coin: address = empty(address)
for i in range(MAX_COINS):
if i == _n_coins:
break
coin = CurvePool(_base_pool).coins(i)
assert coin != 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE # dev: native token is not supported
self.base_pool_data[_base_pool].coins.append(coin)
self.base_pool_assets[coin] = True
decimals += (ERC20(coin).decimals() << i*8)
self.base_pool_data[_base_pool].decimals = decimals
log BasePoolAdded(_base_pool)
base_pool_list
CurveStableSwapFactoryNG.base_pool_list(arg0: uint256) -> address: viewThis function is only callable by the admin of the contract.
Getter for the base pool at index arg0.
| Input | Type | Description |
|---|---|---|
arg0 | uint256 | Index of the base pool |
<>Source code▼
base_pool_list: public(address[4294967296]) # list of base pools
▶Example▼
>>> CurveStableSwapFactoryNG.base_pool_list(0)
'0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7'
Implementations
The Stableswap-NG Factory makes use of blueprint contractsto deploy its contracts from the implementations.
**Implementation contracts are upgradable.**They can either be replaced, or additional implementation contracts can be added. Therefore, please always make sure to check the most recent ones.
It utilizes five different implementations:
pool_implementations, containing multiple blueprint contracts that are used to deploy plain pools.metapool_implementations, containing multiple blueprint contracts that are used to deploy metapools.math_implementation, containing math functions used in the AMM.gauge_implementation, containing a blueprint contract that is used when deploying gauges for pools.1views_implementation, containing a view methods contract relevant for integrators and users looking to interact with the AMMs.
More on the Math Implementation and Views Implementation.
Query Implementations
pool_implementations
CurveStableSwapFactoryNG.pool_implementations(arg0: uint256) -> address: viewGetter for the pool implementations. There might be multiple pool implementations base on various circumstances.
Returns: implementation (address).
| Input | Type | Description |
|---|---|---|
arg0 | uint256 | index value of the implementation |
<>Source code▼
# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
▶Example▼
>>> CurveStableSwapFactoryNG.pool_implementation(0)
'0x3E3B5F27bbf5CC967E074b70E9f4046e31663181'
metapool_implementations
CurveStableSwapFactoryNG.metapool_implementations(arg0: uint256) -> address: viewGetter for the pool implementations at index arg0. This variable can hold multiple implementations which may be tailored for specific setups.
Returns: pool implementation (address).
| Input | Type | Description |
|---|---|---|
arg0 | uint256 | Index of the pool implementation |
<>Source code▼
# index -> implementation address
metapool_implementations: public(HashMap[uint256, address])
▶Example▼
>>> CurveStableSwapFactoryNG.metapool_implementation(0)
'0x19bd1AB34d6ABB584b9C1D5519093bfAA7f6c7d2'
math_implementations
CurveStableSwapFactoryNG.math_implementations() -> address: viewGetter for the math implementation.
Returns: math implementation (address).
<>Source code▼
# index -> implementation address
math_implementation: public(address)
▶Example▼
>>> CurveStableSwapFactoryNG.math_implementation()
'0x20D1c021525C85D9617Ccc64D8f547d5f730118A'
gauge_implementations
CurveStableSwapFactoryNG.gauge_implementations() -> address: viewGetter for the gauge implementation.
Returns: gauge implementation (address).
<>Source code▼
# index -> implementation address
gauge_implementation: public(address)
▶Example▼
>>> CurveStableSwapFactoryNG.gauge_implementation()
'0xF5617D4f7514bE35fce829a1C19AE7f6c9106979'
views_implementation
CurveStableSwapFactoryNG.views_implementations() -> address: viewGetter for the views implementation.
Returns: views implementation (address).
<>Source code▼
# index -> implementation address
views_implementation: public(address)
▶Example▼
>>> CurveStableSwapFactoryNG.views_implementation()
'0x87DD13Dd25a1DBde0E1EdcF5B8Fa6cfff7eABCaD'
Setting New Implementations
New implementation can be by the admin of the contract using the following functions:
set_pool_implementations
CurveStableSwapFactoryNG.set_pool_implementations(_implementation_index: uint256, _implementation: address,):This function is only callable by the admin of the contract.
Function to set/add a new pool implementation. Existing implementations can be overritten or additionly implementations at another (not set index) can be added.2
| Input | Type | Description |
|---|---|---|
_implementation_index | uint256 | Index value at which the new implementation is set |
_implementation | address | Implementation contract address |
<>Source code▼
# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
@external
def set_pool_implementations(
_implementation_index: uint256,
_implementation: address,
):
"""
@notice Set implementation contracts for pools
@dev Only callable by admin
@param _implementation_index Implementation index where implementation is stored
@param _implementation Implementation address to use when deploying plain pools
"""
assert msg.sender == self.admin # dev: admin-only function
self.pool_implementations[_implementation_index] = _implementation
▶Example▼
>>> CurveStableSwapFactoryNG.set_pool_implementations('todo')
set_metapool_implementations
CurveStableSwapFactoryNG.set_pool_implementations(_implementation_index: uint256, _implementation: address,):This function is only callable by the admin of the contract.
Function to set/add a new metapool implementation. Existing implementations can be overritten or additionly implementations at another (not set index) can be added.3
| Input | Type | Description |
|---|---|---|
_implementation_index | uint256 | Index value at which the new implementation is set |
_implementation | address | Implementation contract address |
<>Source code▼
# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
metapool_implementations: public(HashMap[uint256, address])
math_implementation: public(address)
gauge_implementation: public(address)
views_implementation: public(address)
@external
def set_metapool_implementations(
_implementation_index: uint256,
_implementation: address,
):
"""
@notice Set implementation contracts for metapools
@dev Only callable by admin
@param _implementation_index Implementation index where implementation is stored
@param _implementation Implementation address to use when deploying meta pools
"""
assert msg.sender == self.admin # dev: admin-only function
self.metapool_implementations[_implementation_index] = _implementation
▶Example▼
>>> CurveStableSwapFactoryNG.set_metapool_implementations('todo')
set_math_implementation
CurveStableSwapFactoryNG.set_math_implementation(_math_implementation: address):This function is only callable by the admin of the contract.
Function to set a new math implementation. There can only be one math implementation.
| Input | Type | Description |
|---|---|---|
_math_implementation | address | New math implementation contract address |
<>Source code▼
# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
metapool_implementations: public(HashMap[uint256, address])
math_implementation: public(address)
gauge_implementation: public(address)
views_implementation: public(address)
@external
def set_math_implementation(_math_implementation: address):
"""
@notice Set implementation contracts for StableSwap Math
@dev Only callable by admin
@param _math_implementation Address of the math implementation contract
"""
assert msg.sender == self.admin # dev: admin-only function
self.math_implementation = _math_implementation
▶Example▼
>>> CurveStableSwapFactoryNG.set_math_implementations('todo')
set_gauge_implementations
CurveStableSwapFactoryNG.set_gauge_implementation(_gauge_implementation: address):This function is only callable by the admin of the contract. There can only be one gauge implementation.
Function to set a new gauge implementation.
| Input | Type | Description |
|---|---|---|
_gauge_implementation | address | New gauge implementation contract address |
<>Source code▼
# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
metapool_implementations: public(HashMap[uint256, address])
math_implementation: public(address)
gauge_implementation: public(address)
views_implementation: public(address)
@external
def set_gauge_implementation(_gauge_implementation: address):
"""
@notice Set implementation contracts for liquidity gauge
@dev Only callable by admin
@param _gauge_implementation Address of the gauge blueprint implementation contract
"""
assert msg.sender == self.admin # dev: admin-only function
self.gauge_implementation = _gauge_implementation
▶Example▼
>>> CurveStableSwapFactoryNG.set_gauge_implementations('todo')
set_views_implementation
CurveStableSwapFactoryNG.set_views_implementation(_views_implementation: address):This function is only callable by the admin of the contract. There can only be one views implementation.
Function to set a new views implementation.
| Input | Type | Description |
|---|---|---|
_views_implementation | address | New views implementation contract address |
<>Source code▼
# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
metapool_implementations: public(HashMap[uint256, address])
math_implementation: public(address)
gauge_implementation: public(address)
views_implementation: public(address)
@external
def set_views_implementation(_views_implementation: address):
"""
@notice Set implementation contracts for Views methods
@dev Only callable by admin
@param _views_implementation Implementation address of views contract
"""
assert msg.sender == self.admin # dev: admin-only function
self.views_implementation = _views_implementation
▶Example▼
>>> CurveStableSwapFactoryNG.set_views_implementations('todo')