File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
config/environments/mainnet3/rebalancer/USDC Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -496,14 +496,14 @@ export const rebalancer: CommandModuleWithWriteContext<{
496496 runner = await RebalancerRunner . create ( rest , context ) ;
497497 } catch ( e : any ) {
498498 // exit on startup errors
499- errorRed ( ' Rebalancer startup error:' , util . format ( e ) ) ;
499+ errorRed ( ` Rebalancer startup error: ${ util . format ( e ) } ` ) ;
500500 process . exit ( 1 ) ;
501501 }
502502
503503 try {
504504 await runner . run ( ) ;
505505 } catch ( e : any ) {
506- errorRed ( ' Rebalancer error:' , util . format ( e ) ) ;
506+ errorRed ( ` Rebalancer error: ${ util . format ( e ) } ` ) ;
507507 process . exit ( 1 ) ;
508508 }
509509 } ,
Original file line number Diff line number Diff line change @@ -4,35 +4,35 @@ strategy:
44 chains :
55 base :
66 minAmount :
7- min : 3000
8- target : 5000
7+ min : 2000
8+ target : 3000
99 type : ' absolute'
1010 bridgeLockTime : 1800 # 30 mins in seconds
1111 bridgeMinAcceptedAmount : 2000
1212 bridge : ' 0x5C4aFb7e23B1Dc1B409dc1702f89C64527b25975'
1313
1414 ethereum :
1515 minAmount :
16- min : 30000
17- target : 40000
16+ min : 25000
17+ target : 30000
1818 type : ' absolute'
1919 bridgeLockTime : 1800 # 30 mins in seconds
2020 bridgeMinAcceptedAmount : 2000
2121 bridge : ' 0xedCBAa585FD0F80f20073F9958246476466205b8'
2222
2323 optimism :
2424 minAmount :
25- min : 3000
26- target : 5000
25+ min : 2000
26+ target : 3000
2727 type : ' absolute'
2828 bridgeLockTime : 1800 # 30 mins in seconds
2929 bridgeMinAcceptedAmount : 2000
3030 bridge : ' 0xfB7681ECB05F85c383A5ce4439C7dF5ED12c77DE'
3131
3232 arbitrum :
3333 minAmount :
34- min : 3000
35- target : 5000
34+ min : 2000
35+ target : 3000
3636 type : ' absolute'
3737 bridgeLockTime : 1800 # 30 mins in seconds
3838 bridgeMinAcceptedAmount : 2000
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export class RebalancerHelmManager extends HelmManager {
7575 return {
7676 image : {
7777 repository : 'gcr.io/abacus-labs-dev/hyperlane-monorepo' ,
78- tag : 'e0f2a19-20251021-202631 ' ,
78+ tag : '42218c4-20251031-151732 ' ,
7979 } ,
8080 withMetrics : this . withMetrics ,
8181 fullnameOverride : this . helmReleaseName ,
You can’t perform that action at this time.
0 commit comments