@@ -65,17 +65,22 @@ contract BridgeCreator is Ownable {
65
65
}
66
66
67
67
function _createBridge (
68
+ bytes32 create2Salt ,
68
69
address adminProxy ,
69
70
BridgeTemplates memory templates ,
70
71
bool isDelayBufferable
71
72
) internal returns (BridgeContracts memory ) {
72
73
BridgeContracts memory frame;
73
74
frame.bridge = IBridge (
74
- address (new TransparentUpgradeableProxy (address (templates.bridge), adminProxy, "" ))
75
+ address (
76
+ new TransparentUpgradeableProxy {salt: create2Salt}(
77
+ address (templates.bridge), adminProxy, ""
78
+ )
79
+ )
75
80
);
76
81
frame.sequencerInbox = ISequencerInbox (
77
82
address (
78
- new TransparentUpgradeableProxy (
83
+ new TransparentUpgradeableProxy {salt: create2Salt} (
79
84
address (
80
85
isDelayBufferable
81
86
? templates.delayBufferableSequencerInbox
@@ -87,15 +92,25 @@ contract BridgeCreator is Ownable {
87
92
)
88
93
);
89
94
frame.inbox = IInboxBase (
90
- address (new TransparentUpgradeableProxy (address (templates.inbox), adminProxy, "" ))
95
+ address (
96
+ new TransparentUpgradeableProxy {salt: create2Salt}(
97
+ address (templates.inbox), adminProxy, ""
98
+ )
99
+ )
91
100
);
92
101
frame.rollupEventInbox = IRollupEventInbox (
93
102
address (
94
- new TransparentUpgradeableProxy (address (templates.rollupEventInbox), adminProxy, "" )
103
+ new TransparentUpgradeableProxy {salt: create2Salt}(
104
+ address (templates.rollupEventInbox), adminProxy, ""
105
+ )
95
106
)
96
107
);
97
108
frame.outbox = IOutbox (
98
- address (new TransparentUpgradeableProxy (address (templates.outbox), adminProxy, "" ))
109
+ address (
110
+ new TransparentUpgradeableProxy {salt: create2Salt}(
111
+ address (templates.outbox), adminProxy, ""
112
+ )
113
+ )
99
114
);
100
115
return frame;
101
116
}
@@ -107,11 +122,14 @@ contract BridgeCreator is Ownable {
107
122
ISequencerInbox.MaxTimeVariation calldata maxTimeVariation ,
108
123
BufferConfig calldata bufferConfig
109
124
) external returns (BridgeContracts memory ) {
125
+ // use create2 salt to ensure deterministic addresses
126
+ bytes32 create2Salt = keccak256 (abi.encode (msg .data , msg .sender ));
110
127
// create delay bufferable sequencer inbox if threshold is non-zero
111
128
bool isDelayBufferable = bufferConfig.threshold != 0 ;
112
129
113
130
// create ETH-based bridge if address zero is provided for native token, otherwise create ERC20-based bridge
114
131
BridgeContracts memory frame = _createBridge (
132
+ create2Salt,
115
133
adminProxy,
116
134
nativeToken == address (0 ) ? ethBasedTemplates : erc20BasedTemplates,
117
135
isDelayBufferable
0 commit comments