@@ -52,9 +52,9 @@ export const incrementHashDigestIterations = <
5252 } : {
5353 /**
5454 * If `true`, the limit will use
55- * {@link ConsensusBch2025.standardHashDigestIterationsPerByte }, otherwise
55+ * {@link ConsensusBch2025.hashDigestIterationsPerByteStandard }, otherwise
5656 * it will use
57- * {@link ConsensusBch2025.nonstandardHashDigestIterationsPerByte }.
57+ * {@link ConsensusBch2025.hashDigestIterationsPerByteNonstandard }.
5858 */
5959 strict : boolean ;
6060 /**
@@ -75,8 +75,8 @@ export const incrementHashDigestIterations = <
7575 ( resultIsHashed ? 1 : 0 ) +
7676 lengthToHashDigestIterationCount ( messageLength ) ;
7777 const maximumIterationsPerByte = strict
78- ? ConsensusBch2025 . standardHashDigestIterationsPerByte
79- : ConsensusBch2025 . nonstandardHashDigestIterationsPerByte ;
78+ ? ConsensusBch2025 . hashDigestIterationsPerByteStandard
79+ : ConsensusBch2025 . hashDigestIterationsPerByteNonstandard ;
8080 const maximumHashDigestIterations = Math . floor (
8181 maximumIterationsPerByte * state . transactionLengthBytes ,
8282 ) ;
@@ -109,9 +109,9 @@ export const opRipemd160ChipLimits =
109109 } : {
110110 /**
111111 * If `true`, the limit will use
112- * {@link ConsensusBch2025.standardHashDigestIterationsPerByte }, otherwise
112+ * {@link ConsensusBch2025.hashDigestIterationsPerByteStandard }, otherwise
113113 * it will use
114- * {@link ConsensusBch2025.nonstandardHashDigestIterationsPerByte }.
114+ * {@link ConsensusBch2025.hashDigestIterationsPerByteNonstandard }.
115115 */
116116 strict : boolean ;
117117 ripemd160 : { hash : Ripemd160 [ 'hash' ] } ;
@@ -140,9 +140,9 @@ export const opSha1ChipLimits =
140140 sha1 : { hash : Sha1 [ 'hash' ] } ;
141141 /**
142142 * If `true`, the limit will use
143- * {@link ConsensusBch2025.standardHashDigestIterationsPerByte }, otherwise
143+ * {@link ConsensusBch2025.hashDigestIterationsPerByteStandard }, otherwise
144144 * it will use
145- * {@link ConsensusBch2025.nonstandardHashDigestIterationsPerByte }.
145+ * {@link ConsensusBch2025.hashDigestIterationsPerByteNonstandard }.
146146 */
147147 strict : boolean ;
148148 } = { sha1 : internalSha1 , strict : true } ,
@@ -172,9 +172,9 @@ export const opSha256ChipLimits =
172172 } ;
173173 /**
174174 * If `true`, the limit will use
175- * {@link ConsensusBch2025.standardHashDigestIterationsPerByte }, otherwise
175+ * {@link ConsensusBch2025.hashDigestIterationsPerByteStandard }, otherwise
176176 * it will use
177- * {@link ConsensusBch2025.nonstandardHashDigestIterationsPerByte }.
177+ * {@link ConsensusBch2025.hashDigestIterationsPerByteNonstandard }.
178178 */
179179 strict : boolean ;
180180 } = { sha256 : internalSha256 , strict : true } ,
@@ -204,9 +204,9 @@ export const opHash160ChipLimits =
204204 ripemd160 : { hash : Ripemd160 [ 'hash' ] } ;
205205 /**
206206 * If `true`, the limit will use
207- * {@link ConsensusBch2025.standardHashDigestIterationsPerByte }, otherwise
207+ * {@link ConsensusBch2025.hashDigestIterationsPerByteStandard }, otherwise
208208 * it will use
209- * {@link ConsensusBch2025.nonstandardHashDigestIterationsPerByte }.
209+ * {@link ConsensusBch2025.hashDigestIterationsPerByteNonstandard }.
210210 */
211211 strict : boolean ;
212212 } = { ripemd160 : internalRipemd160 , sha256 : internalSha256 , strict : true } ,
@@ -237,9 +237,9 @@ export const opHash256ChipLimits =
237237 } ;
238238 /**
239239 * If `true`, the limit will use
240- * {@link ConsensusBch2025.standardHashDigestIterationsPerByte }, otherwise
240+ * {@link ConsensusBch2025.hashDigestIterationsPerByteStandard }, otherwise
241241 * it will use
242- * {@link ConsensusBch2025.nonstandardHashDigestIterationsPerByte }.
242+ * {@link ConsensusBch2025.hashDigestIterationsPerByteNonstandard }.
243243 */
244244 strict : boolean ;
245245 } = { sha256 : internalSha256 , strict : true } ,
0 commit comments