@@ -191,10 +191,10 @@ abstract contract KernelTestBase is TestPlus, Test {
191191
192192 bytes32 digest;
193193 if (isReplayable) {
194- digest = chainAgnosticHashTypedData (address (kernel), "Kernel " , "0.3.2 " , hash);
194+ digest = chainAgnosticHashTypedData (address (kernel), "Kernel " , "0.3.3 " , hash);
195195 } else {
196196 digest =
197- keccak256 (abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), hash));
197+ keccak256 (abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.3 " , address (kernel)), hash));
198198 }
199199
200200 return digest;
@@ -1079,7 +1079,7 @@ abstract contract KernelTestBase is TestPlus, Test {
10791079 function testSignatureRoot (bytes32 hash ) external whenInitialized {
10801080 bytes32 wrappedHash = keccak256 (abi.encode (keccak256 ("Kernel(bytes32 hash) " ), hash));
10811081 bytes32 digest = keccak256 (
1082- abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), wrappedHash)
1082+ abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.3 " , address (kernel)), wrappedHash)
10831083 );
10841084 bytes memory sig = _rootSignDigest (digest, true );
10851085 sig = abi.encodePacked (hex "00 " , sig);
@@ -1108,7 +1108,7 @@ abstract contract KernelTestBase is TestPlus, Test {
11081108
11091109 bytes32 wrappedHash = keccak256 (abi.encode (keccak256 ("Kernel(bytes32 hash) " ), hash));
11101110 bytes32 digest = keccak256 (
1111- abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), wrappedHash)
1111+ abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.3 " , address (kernel)), wrappedHash)
11121112 );
11131113 bytes memory sig = _validatorSignDigest (digest, true );
11141114 sig = abi.encodePacked (hex "01 " , address (enabledValidator), sig);
@@ -1136,7 +1136,7 @@ abstract contract KernelTestBase is TestPlus, Test {
11361136 );
11371137 bytes32 wrappedHash = keccak256 (abi.encode (keccak256 ("Kernel(bytes32 hash) " ), hash));
11381138 bytes32 digest = keccak256 (
1139- abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), wrappedHash)
1139+ abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.3 " , address (kernel)), wrappedHash)
11401140 );
11411141 bytes memory sig = _permissionSignDigest (digest, true );
11421142 sig = abi.encodePacked (hex "02 " , PermissionId.unwrap (enabledPermission), hex "ff " , sig);
0 commit comments