File tree Expand file tree Collapse file tree 1 file changed +31
-3
lines changed Expand file tree Collapse file tree 1 file changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -1139,6 +1139,35 @@ contract GetDeployed is VersionedScript {
1139
1139
implUCS00 = implUCS00.serialize ("args " , bytes (hex "" ));
1140
1140
impls.serialize (implOf (ucs00).toHexString (), implUCS00);
1141
1141
1142
+ string memory implUCS03Send = "implUCS03Send " ;
1143
+ implUCS03Send.serialize (
1144
+ "contract " ,
1145
+ string ("contracts/apps/ucs/03-zkgm/Zkgm.sol:UCS03ZkgmSendImpl " )
1146
+ );
1147
+ implUCS03Send = implUCS03Send.serialize (
1148
+ "args " ,
1149
+ abi.encode (
1150
+ handler,
1151
+ weth,
1152
+ nativeTokenName,
1153
+ nativeTokenSymbol,
1154
+ nativeTokenDecimals
1155
+ )
1156
+ );
1157
+ impls.serialize (
1158
+ UCS03Zkgm (payable (ucs03)).SEND_IMPL ().toHexString (), implUCS03Send
1159
+ );
1160
+
1161
+ string memory implUCS03Stake = "implUCS03Stake " ;
1162
+ implUCS03Stake.serialize (
1163
+ "contract " ,
1164
+ string ("contracts/apps/ucs/03-zkgm/Zkgm.sol:UCS03ZkgmStakeImpl " )
1165
+ );
1166
+ implUCS03Stake = implUCS03Stake.serialize ("args " , abi.encode (handler));
1167
+ impls.serialize (
1168
+ UCS03Zkgm (payable (ucs03)).STAKE_IMPL ().toHexString (), implUCS03Stake
1169
+ );
1170
+
1142
1171
string memory implUCS03 = "implUCS03 " ;
1143
1172
implUCS03.serialize (
1144
1173
"contract " , string ("contracts/apps/ucs/03-zkgm/Zkgm.sol:UCS03Zkgm " )
@@ -1150,9 +1179,8 @@ contract GetDeployed is VersionedScript {
1150
1179
weth,
1151
1180
zkgmERC20,
1152
1181
rateLimitEnabled,
1153
- nativeTokenName,
1154
- nativeTokenSymbol,
1155
- nativeTokenDecimals
1182
+ UCS03Zkgm (payable (ucs03)).SEND_IMPL (),
1183
+ UCS03Zkgm (payable (ucs03)).STAKE_IMPL ()
1156
1184
)
1157
1185
);
1158
1186
impls = impls.serialize (implOf (ucs03).toHexString (), implUCS03);
You can’t perform that action at this time.
0 commit comments