Skip to content

Commit

Permalink
fix: clean up and description update
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaShWoof committed Jul 5, 2024
1 parent 2a4d6e6 commit 20dd095
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default migration('1719910152_configurate_and_ens', {
}
];

const description = '# Initialize cDAIv3 on Ethereum Mainnet\n\n## Proposal summary\n\nFranklinDAO team with advice support from Woof Software team proposes deployment of Compound III to the Ethereum Mainnet network. This proposal takes the governance steps recommended and necessary to initialize a Compound III DAI market on Ethereum Mainnet; upon execution, cDAIv3 will be ready for use. Simulations have confirmed the market’s readiness, as much as possible, using the [Comet scenario suite](https://github.com/compound-finance/comet/tree/main/scenario). The new parameters include setting the risk parameters based off of the [recommendations from Gauntlet](https://www.comp.xyz/t/gauntlet-dai-v3-comet-on-mainnet-recommendation/5380/1).\n\nFurther detailed information can be found on the corresponding [proposal pull request](https://github.com/compound-finance/comet/pull/879), [deploy market GitHub action run](<>) and [forum discussion](https://www.comp.xyz/t/gauntlet-dai-v3-comet-on-mainnet-recommendation/5380).\n\n\n## Proposal Actions\n\nThe first proposal action sets the CometFactory for the new Comet instance in the existing Configurator.\n\nThe second action configures the Comet instance in the Configurator.\n\nThe third action deploys an instance of the newly configured factory and upgrades the Comet instance to use that implementation.\n\nThe fourth action configures the existing rewards contract for the newly deployed Comet instance.\n\nThe fifth action reduces Compound’s [cDAI](https://etherscan.io/address/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643) reserves and transfers it to Timelock, in order to seed the market reserves for the cDAIv3 Comet.\n\nThe sixth action transfers reserves from Timelock to the cDAIv3 Comet.\n\nThe seventh action updates the ENS TXT record `v3-official-markets` on `v3-additional-grants.compound-community-licenses.eth`, updating the official markets JSON to include the new Ethereum Mainnet cDAIv3 market.';
const description = '# Initialize cDAIv3 on Ethereum Mainnet\n\n## Proposal summary\n\nCompound Growth Program [AlphaGrowth] proposes the deployment of Compound III to the Mainnet network. This proposal takes the governance steps recommended and necessary to initialize a Compound III DAI market on Mainnet; upon execution, cDAIv3 will be ready for use. Simulations have confirmed the market’s readiness, as much as possible, using the [Comet scenario suite](https://github.com/compound-finance/comet/tree/main/scenario). The new parameters include setting the risk parameters based off of the [recommendations from Gauntlet](https://www.comp.xyz/t/gauntlet-dai-v3-comet-on-mainnet-recommendation/5380/1).\n\nFurther detailed information can be found on the corresponding [proposal pull request](https://github.com/compound-finance/comet/pull/879), [deploy market GitHub action run](<>) and [forum discussion](https://www.comp.xyz/t/gauntlet-dai-v3-comet-on-mainnet-recommendation/5380).\n\n\n## Proposal Actions\n\nThe first proposal action sets the CometFactory for the new Comet instance in the existing Configurator.\n\nThe second action configures the Comet instance in the Configurator.\n\nThe third action deploys an instance of the newly configured factory and upgrades the Comet instance to use that implementation.\n\nThe fourth action configures the existing rewards contract for the newly deployed Comet instance.\n\nThe fifth action reduces Compound’s [cDAI](https://etherscan.io/address/0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643) reserves and transfers it to Timelock, in order to seed the market reserves for the cDAIv3 Comet.\n\nThe sixth action transfers reserves from Timelock to the cDAIv3 Comet.\n\nThe seventh action updates the ENS TXT record `v3-official-markets` on `v3-additional-grants.compound-community-licenses.eth`, updating the official markets JSON to include the new Ethereum Mainnet cDAIv3 market.';
const txn = await deploymentManager.retry(
async () => trace((await governor.propose(...await proposal(actions, description))))
);
Expand Down
6 changes: 2 additions & 4 deletions scenario/SupplyScenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -506,8 +506,7 @@ scenario(
/ERC20: insufficient allowance/,
/transfer amount exceeds spender allowance/,
/Dai\/insufficient-allowance/,
symbol === 'WETH' ? /Transaction reverted without a reason string/ : /.^/,
symbol === 'WBTC' ? /Transaction reverted without a reason string/ : /.^/
symbol === 'WETH' ? /Transaction reverted without a reason string/ : /.^/
]
);
}
Expand Down Expand Up @@ -591,8 +590,7 @@ scenario(
[
/transfer amount exceeds balance/,
/Dai\/insufficient-balance/,
symbol === 'WETH' ? /Transaction reverted without a reason string/ : /.^/,
symbol === 'WBTC' ? /Transaction reverted without a reason string/ : /.^/
symbol === 'WETH' ? /Transaction reverted without a reason string/ : /.^/
]
);
}
Expand Down

0 comments on commit 20dd095

Please sign in to comment.