File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lazer/contracts/evm/script Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -176,14 +176,14 @@ contract PythLazerDeployScript is Script {
176176 }
177177
178178 function run () public {
179- address impl = deployImplementation ("tazer :impl " );
180- deployProxy ("tazer :proxy " , impl);
179+ address impl = deployImplementation ("lazer :impl " );
180+ deployProxy ("lazer :proxy " , impl);
181181 }
182182
183183 function migrate () public {
184184 // Deploys new version and updates proxy to use new address
185- address proxyAddress = getProxyAddress ("tazer :proxy " );
186- address newImpl = deployImplementation ("tazer :impl " );
185+ address proxyAddress = getProxyAddress ("lazer :proxy " );
186+ address newImpl = deployImplementation ("lazer :impl " );
187187 bytes memory migrateCall = abi.encodeWithSignature ("migrate() " );
188188 vm.startBroadcast ();
189189 UUPSUpgradeable proxy = UUPSUpgradeable (proxyAddress);
You can’t perform that action at this time.
0 commit comments