Skip to content

Commit e003760

Browse files
updated params
1 parent 7871c43 commit e003760

12 files changed

+256
-54
lines changed

deploy/scripts/mainnet/22_msusd_proxy_oft.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
3939
contract: MsUSDSynthetic,
4040
readMethod: 'maxBridgedInSupply',
4141
writeMethod: 'updateMaxBridgedInSupply',
42-
writeArgs: [parseEther('1000').toString()],
42+
writeArgs: [parseEther('10000000').toString()],
4343
})
4444

4545
await updateParamIfNeeded(hre, {
4646
contract: MsUSDSynthetic,
4747
readMethod: 'maxBridgedOutSupply',
4848
writeMethod: 'updateMaxBridgedOutSupply',
49-
writeArgs: [parseEther('1000').toString()],
49+
writeArgs: [parseEther('10000000').toString()],
5050
})
5151

5252
await updateParamIfNeeded(hre, {

deploy/scripts/mainnet/23_mseth_proxy_oft.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
3939
contract: MsETHSynthetic,
4040
readMethod: 'maxBridgedInSupply',
4141
writeMethod: 'updateMaxBridgedInSupply',
42-
writeArgs: [parseEther('1').toString()],
42+
writeArgs: [parseEther('4500').toString()],
4343
})
4444

4545
await updateParamIfNeeded(hre, {
4646
contract: MsETHSynthetic,
4747
readMethod: 'maxBridgedOutSupply',
4848
writeMethod: 'updateMaxBridgedOutSupply',
49-
writeArgs: [parseEther('1').toString()],
49+
writeArgs: [parseEther('4500').toString()],
5050
})
5151

5252
await updateParamIfNeeded(hre, {

deploy/scripts/mainnet/26_cross_chain_dispatcher.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
9393
contract: CrossChainDispatcher,
9494
readMethod: 'flashRepayCallbackTxGasLimit',
9595
writeMethod: 'updateFlashRepayCallbackTxGasLimit',
96-
writeArgs: ['1500000'],
96+
writeArgs: ['1000000'],
9797
})
9898

9999
await updateParamIfNeeded(hre, {
100100
contract: CrossChainDispatcher,
101101
readMethod: 'flashRepaySwapTxGasLimit',
102102
writeMethod: 'updateFlashRepaySwapTxGasLimit',
103-
writeArgs: ['1500000'],
103+
writeArgs: ['1250000'],
104104
})
105105

106106
await updateParamIfNeeded(hre, {

deploy/scripts/optimism/16_msusd_proxy_oft.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
3939
contract: MsUSDSynthetic,
4040
readMethod: 'maxBridgedInSupply',
4141
writeMethod: 'updateMaxBridgedInSupply',
42-
writeArgs: [parseEther('1000').toString()],
42+
writeArgs: [parseEther('10000000').toString()],
4343
})
4444

4545
await updateParamIfNeeded(hre, {
4646
contract: MsUSDSynthetic,
4747
readMethod: 'maxBridgedOutSupply',
4848
writeMethod: 'updateMaxBridgedOutSupply',
49-
writeArgs: [parseEther('1000').toString()],
49+
writeArgs: [parseEther('10000000').toString()],
5050
})
5151

5252
await updateParamIfNeeded(hre, {

deploy/scripts/optimism/17_mseth_proxy_oft.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
3939
contract: MsETHSynthetic,
4040
readMethod: 'maxBridgedInSupply',
4141
writeMethod: 'updateMaxBridgedInSupply',
42-
writeArgs: [parseEther('1').toString()],
42+
writeArgs: [parseEther('4500').toString()],
4343
})
4444

4545
await updateParamIfNeeded(hre, {
4646
contract: MsETHSynthetic,
4747
readMethod: 'maxBridgedOutSupply',
4848
writeMethod: 'updateMaxBridgedOutSupply',
49-
writeArgs: [parseEther('1').toString()],
49+
writeArgs: [parseEther('4500').toString()],
5050
})
5151

5252
await updateParamIfNeeded(hre, {

deploy/scripts/optimism/20_cross_chain_dispatcher.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
9393
contract: CrossChainDispatcher,
9494
readMethod: 'flashRepayCallbackTxGasLimit',
9595
writeMethod: 'updateFlashRepayCallbackTxGasLimit',
96-
writeArgs: ['1500000'],
96+
writeArgs: ['1000000'],
9797
})
9898

9999
await updateParamIfNeeded(hre, {
100100
contract: CrossChainDispatcher,
101101
readMethod: 'flashRepaySwapTxGasLimit',
102102
writeMethod: 'updateFlashRepaySwapTxGasLimit',
103-
writeArgs: ['1500000'],
103+
writeArgs: ['1250000'],
104104
})
105105

106106
await updateParamIfNeeded(hre, {

deployments/mainnet/CrossChainDispatcher.json

+12-7
Large diffs are not rendered by default.

deployments/mainnet/PoolRegistry.json

+35-2
Large diffs are not rendered by default.

deployments/mainnet/SmartFarmingManager.json

+75-12
Large diffs are not rendered by default.

deployments/optimism/CrossChainDispatcher.json

+12-7
Large diffs are not rendered by default.

deployments/optimism/PoolRegistry.json

+35-2
Large diffs are not rendered by default.

deployments/optimism/SmartFarmingManager.json

+75-12
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)