- $118,750 DAI main award pot
- $6,250 DAI gas optimization award pot
- Join C4 Discord to register
- Submit findings using the C4 form
- Read our guidelines for more details
- Starts May 05, 2022 00:00 UTC
- Ends May 18, 2022 23:59 UTC
This contest is open for two weeks to give wardens time to understand the protocol properly. Submissions can be made any time during the contest. Representatives from Alchemix will be available in the Code Arena Discord to answer any questions during the contest period. The focus for the contest is to try and find any logic errors or ways to drain funds from the protocol in a way that is advantageous for an attacker at the expense of users with funds invested in the protocol. Wardens should assume that governance variables are set sensibly (unless they can find a way to change the value of a governance variable, and not counting social engineering approaches for this).
Alchemix Finance is a future-yield-backed synthetic asset platform and community DAO. The platform gives you advances on your yield farming via a synthetic token that represents a fungible claim on any underlying collateral in the Alchemix protocol. The DAO will focus on funding projects that will help the Alchemix ecosystem grow, as well as the greater Ethereum community.
- ALCX, the protocol governance token used to incentivize pool liquidity for synthetic assets
- gALCX, an autocompounding wrapper for the single-sided farm that can be used in governance
- alUSD, a synthetic stablecoin pegged to $1 issued to users as an advance on their future yield
- alETH, a synthetic token pegged to 1 ETH issued to users as an advance on their future yield
All the contracts in the contracts-full
folder are to be reviewed. The contracts-hardhat
is a subset of this that you can use to run the test suite. Any contracts not in this list are to be ignored for this contest. To deeply understand the protocol, wardens may find helpful the user docs, developer docs, our Medium posts, or a popular YouTube explainer focusing on V1. The audit report from Runtime Verification also contains valuable insight into protocol invariants.
The synthetic token minted by the protocol as an advance on user's yield.
An upgradeable version that is compatible with crosschain bridges.
An autocompounding wrapper for ALCX that is the crosschain native token.
An upgradeable version that is compatible with crosschain bridges.
The AlchemistV2 is the core contract in any Alchemix debt-system that holds Account data and issues that system's debt tokens. The AlchemistV2 is flexible enough to accept deposits in the form of either yield-bearing-assets or underlying collateral assets (and wrapping said underlying tokens into their yield-bearing form).
An Account in the Alchemist has multiple components. The first 2 data-points to understand are balances and debt. Balances is a mapping of yieldTokens to the Account's respective balance of Alchemist-shares. Shares represent a user's deposit of yieldTokens in the AlchemistV2, and provide an accounting abstraction that helps the AlchemistV2 avoid bank-run scenarios. Debt is an int256 type that represents both the account's debt (positive values) and credit (negative values). An Account manages its debt by tracking the lastAccruedWeights of the various depositedTokens that it is holding. An Account also has the ability to track mintAllowances and withdrawAllowances that allow 3rd-party accounts to mint and withdraw its assets.
An interface contract to buffer funds between the Alchemist and the Transmuter. The TransmuterBuffer sits between the Alchemist and Transmuter, buffering funds that are passed to it as a result of calls to repay(), liquidate(), or harvest(). Each TransmuterBuffer handles a single synthetic type, and all collateral types underlying that synthetic. The TransmuterBuffer has configurable flow rates that determine the maximum rate that collateral can be passed to its transmuter. Funds that are held in the TransmuterBuffer but have not yet been exchanged in the Transmuter can be redeposited into the Alchemist to boost yield for depositors, or sent to the Elixir. Funds that have been exchanged into the Transmuter must remain in the TransmuterBuffer.
The TransmuterV2 is the main contract in any Alchemix debt-system that helps put upward pressure on the price of the debt-token relative to its collateral asset(s) by allowing any market participant to exchange the supported debt-token for underlying collateral at a 1:1 rate. Each TransmuterV2 supports a single debtToken and a single underlyingToken as collateral, and is able to exchange the debtToken for only that underlyingToken. The TransmuterV2 recieves underlyingTokens from the AlchemistV2 (via the TransmuterBuffer) whenever any of the repay(), liquidate(), or harvest() functions are called. The repaid, liquidated, or harvested collateral is first sent to the TransmuterBuffer, where excess funds that are not exchanged in the TransmuterV2 can be deposited back into the AlchemistV2 to boost yields for Alchemist depositors, or be deployed elsewhere (like the Elixir AMO) to help maintain the peg. After a user deposits debtTokens into the TransmuterV2, they recieve "exchanged tokens" into their account over time, representing the amount of debtToken that has been implicitly converted to underlyingToken that have dripped into the TransmuterV2. This rate of conversion is, at most, the rate that collateral is exchanged into the TransmuterV2 multiplied by their overall percent stake of debtTokens in the TransmuterV2. While collateral recieved from harvest() calls has a relatively stable rate, collateral recieved from repay() and liquidate() functions are entirely user dependent, causing the overall transmutation rate to potentially fluctuate. Additionally, there is a configurable flow rate in the TransmuterBuffer that can be used to control the flow of transmutable collateral. It acts as another cap on the speed at which funds are exchanged into the TransmuterV2.
The above 3 contracts are the main logic controllers in any Alchemix debt system. In order to ensure that AlchemixV2 is easily upgradeable should any issues arise, they have each been proxied using TransmuterUpgradeableProxy.
An adapter to invest user tokens into Yearn.
An adapter to invest user tokens into Fuse.
An adapter to invest user tokens into Lido's wstETH.
An adapter to invest user tokens into Rocket Pool's rETH.
An adapter to invest user tokens into Vesper.
A helper contract for admins to migrate funds from the V1 Transmuter to the V2 Transmuter or AMO.
An automated market operator to ensure peg stability on alETH and ETH.
An automated market operator to ensure peg stability on alUSD and stablecoins.
Both the EthAssetManager and ThreePoolAssetManager are considered Elixirs. They operate on the assets of separate AlchemixV2 debt systems, but perform essentially the same tasks. Their 2 main modes of operating are:
- Add underlyingTokens to the curve pool and deposit the resulting curve LP tokens into Convex.
- Withdraw curve LP tokens from Convex and recall underlyingTokens from the curve pool.
Each Elixir receives underlyingTokens from its associated TransmuterBuffer
A staking contract to give ALCX rewards to various LP and single-sided stakers.
Turns ETH into WETH and deposits into the Alchemist. Also withdraws WETH from the Alchemist and exchanges it for ETH to send to the designated receiver.
Lets users zap into a leveraged collateralized debt position on alETH.
Lets users zap into a leveraged collateralized debt position on alUSD.
A whitelist used for the beta stage of protocol release, restricts access to all EOAs and certain whitelisted contracts.
A fixed point math library.
A library to limit debt taken out in a certain timeframe.
More fixed point math helpers.
Transforms values between int256 and uint256.
Implementation of the set datatype.
Implements a linked-list system for use in calculating users' earned yield as it accrues.
Helper methods for interacting with a broad range of contracts that don't implement the ERC20 spec precisely.
Securing user funds is the top priority. On top of that, ensuring all accounting logic functions exactly as specified without any reentrancy vulnerabilities. We encourage wardens to focus on the flow of funds throughout the entire yield generation process.
We would like wardens to focus on any core functional logic, boundary case errors or similar issues which could be utilized by an attacker to take funds away from clients who have funds deposited in the protocol. We would also encourage focus on any mathematical accounting that could cause users to receive more or less credit than they should. That said, any errors may be submitted by wardens for review and potential reward as per the normal issue impact prioritization. Gas optimizations are welcome but not the main focus of this contest and thus at most 10% of the contest reward will be allocated to gas optimizations. For gas optimizations the most important flows are client deposit and withdrawal flows.
If wardens are unclear on which areas to look at or which areas are important please feel free to ask in the contest Discord channel.
A full suite of unit tests is provided for the repo. As Alchemix is in the process of migrating from Hardhat to Foundry, some slight configuration tweaks may be needed to run the suite.
A working instance of Alchemix v2 has been deployed on Ethereum mainnet in a beta launch, with deposit caps on all vaults. Mint functionality Mint functionality is open for all synthetics, and users are welcome to use and play around with the protocol. But if you want to do do an extensive amount of interactions with the protocol, we would kindly ask you to do so on a fork. All issues should be reported privately via code4rena rather than demonstrated on mainnet to maintain eligibility.
The following contracts are deployed:
Contract | Address |
---|---|
alUSD Alchemist | 0x5C6374a2ac4EBC38DeA0Fc1F8716e5Ea1AdD94dd |
alETH Alchemist | 0x062Bf725dC4cDF947aa79Ca2aaCCD4F385b13b5c |
Transmuter (DAI) | 0xA840C73a004026710471F727252a9a2800a5197F |
Transmuter (USDC) | 0x49930AD9eBbbc0EB120CCF1a318c3aE5Bb24Df55 |
Transmuter (USDT) | 0xfC30820ba6d045b95D13a5B8dF4fB0E6B5bdF5b9 |
Transmuter (ETH) | 0x03323143a5f0D0679026C2a9fB6b0391e4D64811 |
TransmuterBuffer (alETH) | 0xbc2FB245594a68c927C930FBE2d00680A8C90B9e |
TransmuterBuffer (alUSD) | 0x1EEd2DbeB9fc23Ab483F447F38F289cA15f79Bac |
alUSD AMO | 0x9735f7d3ea56b454b24ffd74c58e9bd85cfad31b |
alETH AMO | 0xe761bf731a06fe8259fee05897b2687d56933110 |
alUSD Conduit | 0xf65a1e41d0491621596d4b61b85e73e38cf7e424 |
alETH Conduit | 0xefc8a5a82d09d1068d26ad57e2f57c0037c4f20f |
yDAI Adapter | 0xA7AA5BE408B817A516b40Daea7a919664f13f193 |
yUSDC Adapter | 0x1D28D426e4e20B9d43130C23252b8eD6F9cB388E |
yDAI Adapter | 0x5951f159eF502f0571A5D7e136a580DcadEa42Eb |
rETH Adapter | 0x7A172816C0560964E6aD54EF54AFABB035614047 |
wstETH Adapter | 0x3c2c6FA5398CDD933465F6fD04F3575f7201BCF8 |
gALCX | 0x93dede06ae3b5590af1d4c111bc54c3f717e4b35 |
Alchemist Whitelist | 0x78537a6CeBa16f412E123a90472C6E0e9A8F1132 |
Transmuter Whitelist (DAI) | 0xdd8AC2d5A739Bb4a591C5b0c7e613B810fE83fF1 |
Transmuter Whitelist(USDC) | 0x35b2c16de6F283Ab0949964d90cCf930f378ade6 |
Transmuter Whitelist (USDT) | 0x46f992D00C2Dfb6FbbbB64d69Ab353c2fC435ACE |
Autoleverage alETH | 0x0256fc7ba8d1513be9661c504f36e075942d9a49 |
Autoleverage alUSD | 0xe3cfdbfa339b749c6df27854e11df3398b12d56e |
Set your node version to version 16, the current LTS.
yarn install
npx hardhat typechain
npx hardhat compile
npx hardhat test
This will run everything in the test-hardhat
folder against the contracts subset contained in contracts-hardhat
. Note that there are additional contracts within contracts-full
that were developed and tested using forge, so these are not compatible with the hardhat test suite but are still within contest scope.