@@ -22,16 +22,21 @@ library ClaimHashFunctionCastLib {
2222 * @param fnIn Function pointer to `ClaimHashLib._toGenericMultichainClaimHashAndTypehash`.
2323 * @return fnOut Modified function used in `ClaimHashLib._toMultichainClaimHashAndTypehash`.
2424 */
25- function usingMultichainClaim (
26- function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
27- fnIn
28- )
25+ function usingMultichainClaim (function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
26+ internal
27+ view returns (bytes32 ))
28+ internal
29+ view returns (
30+ bytes32 ,
31+ bytes32
32+ ) fnIn)
2933 internal
3034 pure
31- returns (
32- function (MultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
33- fnOut
34- )
35+ returns (function (MultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
36+ internal
37+ view returns (bytes32 ))
38+ internal
39+ view returns (bytes32 , bytes32 ) fnOut)
3540 {
3641 assembly ("memory-safe" ) {
3742 fnOut := fnIn
@@ -44,16 +49,21 @@ library ClaimHashFunctionCastLib {
4449 * @param fnIn Function pointer to `ClaimHashLib._toGenericMultichainClaimHashAndTypehash`.
4550 * @return fnOut Modified function used in `ClaimHashLib._toExogenousMultichainClaimHashAndTypehash`.
4651 */
47- function usingExogenousMultichainClaim (
48- function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
49- fnIn
50- )
52+ function usingExogenousMultichainClaim (function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
53+ internal
54+ view returns (bytes32 ))
55+ internal
56+ view returns (
57+ bytes32 ,
58+ bytes32
59+ ) fnIn)
5160 internal
5261 pure
53- returns (
54- function (ExogenousMultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
55- fnOut
56- )
62+ returns (function (ExogenousMultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
63+ internal
64+ view returns (bytes32 ))
65+ internal
66+ view returns (bytes32 , bytes32 ) fnOut)
5767 {
5868 assembly ("memory-safe" ) {
5969 fnOut := fnIn
@@ -66,16 +76,21 @@ library ClaimHashFunctionCastLib {
6676 * @param fnIn Function pointer to `ClaimHashLib._toGenericMultichainClaimHashAndTypehash`.
6777 * @return fnOut Modified function used in `ClaimHashLib._toBatchMultichainClaimHashAndTypehash`.
6878 */
69- function usingBatchMultichainClaim (
70- function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
71- fnIn
72- )
79+ function usingBatchMultichainClaim (function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
80+ internal
81+ view returns (bytes32 ))
82+ internal
83+ view returns (
84+ bytes32 ,
85+ bytes32
86+ ) fnIn)
7387 internal
7488 pure
75- returns (
76- function (BatchMultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
77- fnOut
78- )
89+ returns (function (BatchMultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
90+ internal
91+ view returns (bytes32 ))
92+ internal
93+ view returns (bytes32 , bytes32 ) fnOut)
7994 {
8095 assembly ("memory-safe" ) {
8196 fnOut := fnIn
@@ -88,16 +103,21 @@ library ClaimHashFunctionCastLib {
88103 * @param fnIn Function pointer to `ClaimHashLib._toGenericBatchMultichainClaimHashAndTypehash`.
89104 * @return fnOut Modified function used in `ClaimHashLib._toExogenousBatchMultichainClaimHashAndTypehash`.
90105 */
91- function usingExogenousBatchMultichainClaim (
92- function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
93- fnIn
94- )
106+ function usingExogenousBatchMultichainClaim (function (uint256 , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
107+ internal
108+ view returns (bytes32 ))
109+ internal
110+ view returns (
111+ bytes32 ,
112+ bytes32
113+ ) fnIn)
95114 internal
96115 pure
97- returns (
98- function (ExogenousBatchMultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 ) internal view returns (bytes32 )) internal view returns (bytes32 , bytes32 )
99- fnOut
100- )
116+ returns (function (ExogenousBatchMultichainClaim calldata , uint256 , function (uint256 , uint256 , bytes32 , bytes32 , uint256 )
117+ internal
118+ view returns (bytes32 ))
119+ internal
120+ view returns (bytes32 , bytes32 ) fnOut)
101121 {
102122 assembly ("memory-safe" ) {
103123 fnOut := fnIn
@@ -110,10 +130,10 @@ library ClaimHashFunctionCastLib {
110130 * @param fnIn Function pointer to `HashLib.toCommitmentsHashFromSingleLock`.
111131 * @return fnOut Modified function used in `ClaimHashLib._toMultichainClaimHashAndTypehash`.
112132 */
113- function usingMultichainClaim (function (uint256 ) internal pure returns (uint256 ) fnIn)
133+ function usingMultichainClaim (function (uint256 ) internal pure returns (uint256 ) fnIn)
114134 internal
115135 pure
116- returns (function (MultichainClaim calldata ) internal pure returns (uint256 ) fnOut)
136+ returns (function (MultichainClaim calldata ) internal pure returns (uint256 ) fnOut)
117137 {
118138 assembly ("memory-safe" ) {
119139 fnOut := fnIn
@@ -126,10 +146,10 @@ library ClaimHashFunctionCastLib {
126146 * @param fnIn Function pointer to `CHashLib.toCommitmentsHashFromSingleLock`.
127147 * @return fnOut Modified function used in `ClaimHashLib._toExogenousMultichainClaimHashAndTypehash`.
128148 */
129- function usingExogenousMultichainClaim (function (uint256 ) internal pure returns (uint256 ) fnIn)
149+ function usingExogenousMultichainClaim (function (uint256 ) internal pure returns (uint256 ) fnIn)
130150 internal
131151 pure
132- returns (function (ExogenousMultichainClaim calldata ) internal pure returns (uint256 ) fnOut)
152+ returns (function (ExogenousMultichainClaim calldata ) internal pure returns (uint256 ) fnOut)
133153 {
134154 assembly ("memory-safe" ) {
135155 fnOut := fnIn
0 commit comments