Skip to content

Commit a1438c4

Browse files
committed
rollout script and disable fork test
Signed-off-by: Stefan Adolf <[email protected]>
1 parent b703822 commit a1438c4

File tree

3 files changed

+243
-243
lines changed

3 files changed

+243
-243
lines changed

script/prod/RolloutTokenizerV13.s.sol renamed to script/prod/RolloutTokenizerV14.s.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ pragma solidity ^0.8.18;
33

44
import "forge-std/Script.sol";
55
import { Tokenizer } from "../../src/Tokenizer.sol";
6-
import { IPToken } from "../../src/IPToken.sol";
6+
import { WrappedIPToken } from "../../src/WrappedIPToken.sol";
77
import { console } from "forge-std/console.sol";
88

9-
contract RolloutTokenizerV13 is Script {
9+
contract RolloutTokenizerV14 is Script {
1010
function run() public {
1111
vm.startBroadcast();
1212

13-
IPToken newIpTokenImplementation = new IPToken();
13+
WrappedIPToken wrappedIpTokenImplementation = new WrappedIPToken();
1414
Tokenizer newTokenizerImplementation = new Tokenizer();
1515

16-
bytes memory upgradeCallData = abi.encodeWithSelector(Tokenizer.reinit.selector, address(newIpTokenImplementation));
16+
bytes memory upgradeCallData = abi.encodeWithSelector(Tokenizer.reinit.selector, address(wrappedIpTokenImplementation));
1717

18-
console.log("NEWTOKENIMPLEMENTATION=%s", address(newIpTokenImplementation));
18+
console.log("WRAPPEDTOKENIMPLEMENTATION=%s", address(wrappedIpTokenImplementation));
1919
console.log("NEWTOKENIZER=%s", address(newTokenizerImplementation));
2020
console.logBytes(upgradeCallData);
2121

test/Forking/Tokenizer13UpgradeForkTest.t.sol

Lines changed: 0 additions & 238 deletions
This file was deleted.

0 commit comments

Comments
 (0)