- First you will need to install Foundry. NOTE: If you are on a windows machine it is recommended to use WSL
- Install Node.js
git clone https://github.com/yearn/vault-periphery
cd vault-periphery
Deployment of periphery contracts such as the Registry Factory or Address Provider are done using a create2 factory in order to get a deterministic address that is the same on each EVM chain.
This can be done permissionlessly if the most recent contract has not yet been deployed on a chain you would like to use it on.
- Add an Ape account
- Run the deployment the contracts specific deployment script under
scripts/
ape run scripts/deploy_contract_name.py --network YOUR_RPC_URL
- For chains that don't support 1559 tx's you may need to add a
type="0x0"
argument at the end of the deployment tx.- ie
tx = deployer_contract.deployCreate2(salt, init_code, sender=deployer, type="0x0")
- ie
- For chains that don't support 1559 tx's you may need to add a
- The address the contract was deployed at will print in the console and should match any other chain the same version has been deployed on.