Update Deploy.s.sol (#57)

This commit is contained in:
moebius
2025-03-28 05:43:16 -06:00
committed by GitHub

View File

@@ -51,8 +51,8 @@ contract EthereumMainnet is DeployProtocol {
_nativePoolConfig = PoolConfig({
symbol: 'ETH',
asset: IERC20(Constants.NATIVE_ASSET),
minimumDepositAmount: 0.001 ether,
vettingFeeBPS: 100, // 1%
minimumDepositAmount: 0.01 ether, // ~$200
vettingFeeBPS: 50, // 0.5%
maxRelayFeeBPS: 100 // 1%
});
@@ -67,7 +67,7 @@ contract Gnosis is DeployProtocol {
_nativePoolConfig = PoolConfig({
symbol: 'xDAI',
asset: IERC20(Constants.NATIVE_ASSET),
minimumDepositAmount: 100 ether, // 18 decimals -> 100 xDAI
minimumDepositAmount: 0.1 ether, // 18 decimals -> 100 xDAI
vettingFeeBPS: 100,
maxRelayFeeBPS: 100
});