@waku/rln 0.1.7-2ed5ddc.0 → 0.1.7-987c6cd.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/bundle/index.js +2 -2
  2. package/bundle/packages/core/dist/lib/connection_manager/connection_limiter.js +1 -1
  3. package/bundle/packages/core/dist/lib/connection_manager/connection_manager.js +2 -1
  4. package/bundle/packages/core/dist/lib/connection_manager/dialer.js +17 -0
  5. package/bundle/packages/core/dist/lib/connection_manager/discovery_dialer.js +1 -1
  6. package/bundle/packages/core/dist/lib/connection_manager/keep_alive_manager.js +1 -1
  7. package/bundle/packages/core/dist/lib/connection_manager/shard_reader.js +1 -1
  8. package/bundle/packages/core/dist/lib/filter/filter.js +1 -1
  9. package/bundle/packages/core/dist/lib/light_push/light_push.js +1 -1
  10. package/bundle/packages/core/dist/lib/message/version_0.js +1 -1
  11. package/bundle/packages/core/dist/lib/metadata/metadata.js +1 -1
  12. package/bundle/packages/core/dist/lib/store/store.js +1 -1
  13. package/bundle/packages/rln/dist/codec.js +1 -1
  14. package/bundle/packages/rln/dist/contract/abi/price_calculator.js +95 -0
  15. package/bundle/packages/rln/dist/contract/constants.js +15 -3
  16. package/bundle/packages/rln/dist/contract/rln_base_contract.js +17 -5
  17. package/bundle/packages/rln/dist/contract/rln_contract.js +3 -3
  18. package/bundle/packages/rln/dist/credentials_manager.js +24 -20
  19. package/bundle/packages/rln/dist/identity.js +8 -6
  20. package/bundle/packages/rln/dist/keystore/keystore.js +39 -12
  21. package/bundle/packages/rln/dist/proof.js +2 -2
  22. package/bundle/packages/rln/dist/rln.js +1 -1
  23. package/bundle/packages/rln/dist/utils/bytes.js +103 -58
  24. package/bundle/packages/rln/dist/utils/epoch.js +1 -1
  25. package/bundle/packages/rln/dist/utils/hash.js +3 -3
  26. package/bundle/packages/rln/dist/zerokit.js +17 -17
  27. package/bundle/packages/utils/dist/{logger/index.js → logger.js} +3 -3
  28. package/dist/.tsbuildinfo +1 -1
  29. package/dist/contract/abi/price_calculator.d.ts +46 -0
  30. package/dist/contract/abi/price_calculator.js +94 -0
  31. package/dist/contract/abi/price_calculator.js.map +1 -0
  32. package/dist/contract/{abi.js → abi/rln.js} +1 -1
  33. package/dist/contract/abi/rln.js.map +1 -0
  34. package/dist/contract/constants.d.ts +57 -1
  35. package/dist/contract/constants.js +14 -2
  36. package/dist/contract/constants.js.map +1 -1
  37. package/dist/contract/price_calculator.test.d.ts +1 -0
  38. package/dist/contract/price_calculator.test.js +28 -0
  39. package/dist/contract/price_calculator.test.js.map +1 -0
  40. package/dist/contract/rln_base_contract.d.ts +7 -0
  41. package/dist/contract/rln_base_contract.js +16 -4
  42. package/dist/contract/rln_base_contract.js.map +1 -1
  43. package/dist/contract/rln_contract.js +2 -2
  44. package/dist/contract/rln_contract.js.map +1 -1
  45. package/dist/contract/{test-setup.d.ts → test_setup.d.ts} +4 -4
  46. package/dist/contract/{test-setup.js → test_setup.js} +4 -4
  47. package/dist/contract/{test-setup.js.map → test_setup.js.map} +1 -1
  48. package/dist/contract/{test-utils.js → test_utils.js} +10 -10
  49. package/dist/contract/{test-utils.js.map → test_utils.js.map} +1 -1
  50. package/dist/credentials_manager.d.ts +4 -0
  51. package/dist/credentials_manager.js +24 -19
  52. package/dist/credentials_manager.js.map +1 -1
  53. package/dist/identity.d.ts +5 -2
  54. package/dist/identity.js +8 -5
  55. package/dist/identity.js.map +1 -1
  56. package/dist/index.d.ts +3 -3
  57. package/dist/index.js +3 -3
  58. package/dist/index.js.map +1 -1
  59. package/dist/keystore/keystore.js +38 -11
  60. package/dist/keystore/keystore.js.map +1 -1
  61. package/dist/proof.js +2 -2
  62. package/dist/proof.js.map +1 -1
  63. package/dist/utils/bytes.d.ts +42 -20
  64. package/dist/utils/bytes.js +102 -57
  65. package/dist/utils/bytes.js.map +1 -1
  66. package/dist/utils/hash.js +5 -5
  67. package/dist/utils/hash.js.map +1 -1
  68. package/dist/utils/index.d.ts +1 -1
  69. package/dist/utils/index.js +1 -1
  70. package/dist/utils/index.js.map +1 -1
  71. package/dist/zerokit.js +17 -17
  72. package/dist/zerokit.js.map +1 -1
  73. package/package.json +1 -1
  74. package/src/contract/abi/price_calculator.ts +93 -0
  75. package/src/contract/constants.ts +18 -2
  76. package/src/contract/price_calculator.test.ts +36 -0
  77. package/src/contract/rln_base_contract.ts +27 -5
  78. package/src/contract/rln_contract.ts +5 -2
  79. package/src/contract/{test-setup.ts → test_setup.ts} +4 -4
  80. package/src/contract/{test-utils.ts → test_utils.ts} +9 -9
  81. package/src/credentials_manager.ts +41 -27
  82. package/src/identity.ts +11 -7
  83. package/src/index.ts +3 -3
  84. package/src/keystore/keystore.ts +52 -23
  85. package/src/proof.ts +2 -2
  86. package/src/utils/bytes.ts +118 -72
  87. package/src/utils/hash.ts +15 -5
  88. package/src/utils/index.ts +1 -6
  89. package/src/zerokit.ts +30 -22
  90. package/dist/contract/abi.js.map +0 -1
  91. /package/bundle/packages/rln/dist/contract/{abi.js → abi/rln.js} +0 -0
  92. /package/dist/contract/{abi.d.ts → abi/rln.d.ts} +0 -0
  93. /package/dist/contract/{test-utils.d.ts → test_utils.d.ts} +0 -0
  94. /package/src/contract/{abi.ts → abi/rln.ts} +0 -0
@@ -5,7 +5,7 @@ import sinon from "sinon";
5
5
  import { createRLN } from "../create.js";
6
6
  import type { IdentityCredential } from "../identity.js";
7
7
 
8
- import { DEFAULT_RATE_LIMIT, LINEA_CONTRACT } from "./constants.js";
8
+ import { DEFAULT_RATE_LIMIT, RLN_CONTRACT } from "./constants.js";
9
9
  import { RLNContract } from "./rln_contract.js";
10
10
 
11
11
  export interface TestRLNInstance {
@@ -42,7 +42,7 @@ export async function initializeRLNContract(
42
42
  mockedRegistryContract: ethers.Contract
43
43
  ): Promise<RLNContract> {
44
44
  const provider = new ethers.providers.JsonRpcProvider();
45
- const voidSigner = new ethers.VoidSigner(LINEA_CONTRACT.address, provider);
45
+ const voidSigner = new ethers.VoidSigner(RLN_CONTRACT.address, provider);
46
46
 
47
47
  const originalRegister = mockedRegistryContract.register;
48
48
  (mockedRegistryContract as any).register = function (...args: any[]) {
@@ -63,7 +63,7 @@ export async function initializeRLNContract(
63
63
  };
64
64
 
65
65
  const contract = await RLNContract.init(rlnInstance, {
66
- address: LINEA_CONTRACT.address,
66
+ address: RLN_CONTRACT.address,
67
67
  signer: voidSigner,
68
68
  rateLimit: DEFAULT_RATE_LIMIT,
69
69
  contract: mockedRegistryContract
@@ -83,4 +83,4 @@ export const TEST_DATA = {
83
83
  ),
84
84
  mockSignature:
85
85
  "0xdeb8a6b00a8e404deb1f52d3aa72ed7f60a2ff4484c737eedaef18a0aacb2dfb4d5d74ac39bb71fa358cf2eb390565a35b026cc6272f2010d4351e17670311c21c"
86
- } as const;
86
+ };
@@ -5,7 +5,7 @@ import sinon from "sinon";
5
5
 
6
6
  import type { IdentityCredential } from "../identity.js";
7
7
 
8
- import { DEFAULT_RATE_LIMIT, LINEA_CONTRACT } from "./constants.js";
8
+ import { DEFAULT_RATE_LIMIT, RLN_CONTRACT } from "./constants.js";
9
9
 
10
10
  export const mockRateLimits = {
11
11
  minRate: 20,
@@ -36,9 +36,9 @@ export function createMockProvider(): MockProvider {
36
36
 
37
37
  export function createMockFilters(): MockFilters {
38
38
  return {
39
- MembershipRegistered: () => ({ address: LINEA_CONTRACT.address }),
40
- MembershipErased: () => ({ address: LINEA_CONTRACT.address }),
41
- MembershipExpired: () => ({ address: LINEA_CONTRACT.address })
39
+ MembershipRegistered: () => ({ address: RLN_CONTRACT.address }),
40
+ MembershipErased: () => ({ address: RLN_CONTRACT.address }),
41
+ MembershipExpired: () => ({ address: RLN_CONTRACT.address })
42
42
  };
43
43
  }
44
44
 
@@ -51,9 +51,9 @@ export function createMockRegistryContract(
51
51
  overrides: ContractOverrides = {}
52
52
  ): ethers.Contract {
53
53
  const filters = {
54
- MembershipRegistered: () => ({ address: LINEA_CONTRACT.address }),
55
- MembershipErased: () => ({ address: LINEA_CONTRACT.address }),
56
- MembershipExpired: () => ({ address: LINEA_CONTRACT.address })
54
+ MembershipRegistered: () => ({ address: RLN_CONTRACT.address }),
55
+ MembershipErased: () => ({ address: RLN_CONTRACT.address }),
56
+ MembershipExpired: () => ({ address: RLN_CONTRACT.address })
57
57
  };
58
58
 
59
59
  const baseContract = {
@@ -89,7 +89,7 @@ export function createMockRegistryContract(
89
89
  format: () => {}
90
90
  })
91
91
  },
92
- address: LINEA_CONTRACT.address
92
+ address: RLN_CONTRACT.address
93
93
  };
94
94
 
95
95
  // Merge overrides while preserving filters
@@ -163,7 +163,7 @@ export function verifyRegistration(
163
163
  expect(decryptedCredentials).to.have.property("identity");
164
164
  expect(decryptedCredentials).to.have.property("membership");
165
165
  expect(decryptedCredentials.membership).to.include({
166
- address: LINEA_CONTRACT.address,
166
+ address: RLN_CONTRACT.address,
167
167
  treeIndex: 1
168
168
  });
169
169
 
@@ -1,9 +1,9 @@
1
1
  import { hmac } from "@noble/hashes/hmac";
2
- import { sha256 } from "@noble/hashes/sha256";
2
+ import { sha256 } from "@noble/hashes/sha2";
3
3
  import { Logger } from "@waku/utils";
4
4
  import { ethers } from "ethers";
5
5
 
6
- import { LINEA_CONTRACT } from "./contract/constants.js";
6
+ import { RLN_CONTRACT, RLN_Q } from "./contract/constants.js";
7
7
  import { RLNBaseContract } from "./contract/rln_base_contract.js";
8
8
  import { IdentityCredential } from "./identity.js";
9
9
  import { Keystore } from "./keystore/index.js";
@@ -13,10 +13,8 @@ import type {
13
13
  } from "./keystore/index.js";
14
14
  import { KeystoreEntity, Password } from "./keystore/types.js";
15
15
  import { RegisterMembershipOptions, StartRLNOptions } from "./types.js";
16
- import {
17
- buildBigIntFromUint8Array,
18
- extractMetaMaskSigner
19
- } from "./utils/index.js";
16
+ import { BytesUtils } from "./utils/bytes.js";
17
+ import { extractMetaMaskSigner } from "./utils/index.js";
20
18
  import { Zerokit } from "./zerokit.js";
21
19
 
22
20
  const log = new Logger("waku:credentials");
@@ -116,7 +114,9 @@ export class RLNCredentialsManager {
116
114
  );
117
115
  } else {
118
116
  log.info("Using local implementation to generate identity");
119
- identity = this.generateSeededIdentityCredential(options.signature);
117
+ identity = await this.generateSeededIdentityCredential(
118
+ options.signature
119
+ );
120
120
  }
121
121
  }
122
122
 
@@ -152,10 +152,10 @@ export class RLNCredentialsManager {
152
152
  const address =
153
153
  credentials?.membership.address ||
154
154
  options.address ||
155
- LINEA_CONTRACT.address;
155
+ RLN_CONTRACT.address;
156
156
 
157
- if (address === LINEA_CONTRACT.address) {
158
- chainId = LINEA_CONTRACT.chainId.toString();
157
+ if (address === RLN_CONTRACT.address) {
158
+ chainId = RLN_CONTRACT.chainId.toString();
159
159
  log.info(`Using Linea contract with chainId: ${chainId}`);
160
160
  }
161
161
 
@@ -249,7 +249,9 @@ export class RLNCredentialsManager {
249
249
  * @param seed A string seed to generate the identity from
250
250
  * @returns IdentityCredential
251
251
  */
252
- private generateSeededIdentityCredential(seed: string): IdentityCredential {
252
+ private async generateSeededIdentityCredential(
253
+ seed: string
254
+ ): Promise<IdentityCredential> {
253
255
  log.info("Generating seeded identity credential");
254
256
  // Convert the seed to bytes
255
257
  const encoder = new TextEncoder();
@@ -257,26 +259,38 @@ export class RLNCredentialsManager {
257
259
 
258
260
  // Generate deterministic values using HMAC-SHA256
259
261
  // We use different context strings for each component to ensure they're different
260
- const idTrapdoor = hmac(sha256, seedBytes, encoder.encode("IDTrapdoor"));
261
- const idNullifier = hmac(sha256, seedBytes, encoder.encode("IDNullifier"));
262
-
263
- // Generate IDSecretHash as a hash of IDTrapdoor and IDNullifier
264
- const combinedBytes = new Uint8Array([...idTrapdoor, ...idNullifier]);
265
- const idSecretHash = sha256(combinedBytes);
262
+ const idTrapdoorBE = hmac(sha256, seedBytes, encoder.encode("IDTrapdoor"));
263
+ const idNullifierBE = hmac(
264
+ sha256,
265
+ seedBytes,
266
+ encoder.encode("IDNullifier")
267
+ );
266
268
 
267
- // Generate IDCommitment as a hash of IDSecretHash
268
- const idCommitment = sha256(idSecretHash);
269
+ const combinedBytes = new Uint8Array([...idTrapdoorBE, ...idNullifierBE]);
270
+ const idSecretHashBE = sha256(combinedBytes);
269
271
 
270
- // Convert IDCommitment to BigInt
271
- const idCommitmentBigInt = buildBigIntFromUint8Array(idCommitment);
272
+ const idCommitmentRawBE = sha256(idSecretHashBE);
273
+ const idCommitmentBE = this.reduceIdCommitment(idCommitmentRawBE);
272
274
 
273
- log.info("Successfully generated identity credential");
275
+ log.info(
276
+ "Successfully generated identity credential, storing in Big Endian format"
277
+ );
274
278
  return new IdentityCredential(
275
- idTrapdoor,
276
- idNullifier,
277
- idSecretHash,
278
- idCommitment,
279
- idCommitmentBigInt
279
+ idTrapdoorBE,
280
+ idNullifierBE,
281
+ idSecretHashBE,
282
+ idCommitmentBE
280
283
  );
281
284
  }
285
+
286
+ /**
287
+ * Helper: take 32-byte BE, reduce mod Q, return 32-byte BE
288
+ */
289
+ private reduceIdCommitment(
290
+ bytesBE: Uint8Array,
291
+ limit: bigint = RLN_Q
292
+ ): Uint8Array {
293
+ const nBE = BytesUtils.buildBigIntFromUint8ArrayBE(bytesBE);
294
+ return BytesUtils.bigIntToUint8Array32BE(nBE % limit);
295
+ }
282
296
  }
package/src/identity.ts CHANGED
@@ -1,13 +1,19 @@
1
- import { buildBigIntFromUint8Array } from "./utils/index.js";
1
+ import { BytesUtils } from "./utils/bytes.js";
2
2
 
3
3
  export class IdentityCredential {
4
+ public IDCommitmentBigInt: bigint;
5
+ /**
6
+ * All variables are in little-endian format
7
+ */
4
8
  public constructor(
5
9
  public readonly IDTrapdoor: Uint8Array,
6
10
  public readonly IDNullifier: Uint8Array,
7
11
  public readonly IDSecretHash: Uint8Array,
8
- public readonly IDCommitment: Uint8Array,
9
- public readonly IDCommitmentBigInt: bigint
10
- ) {}
12
+ public readonly IDCommitment: Uint8Array
13
+ ) {
14
+ this.IDCommitmentBigInt =
15
+ BytesUtils.buildBigIntFromUint8ArrayBE(IDCommitment);
16
+ }
11
17
 
12
18
  public static fromBytes(memKeys: Uint8Array): IdentityCredential {
13
19
  if (memKeys.length < 128) {
@@ -18,14 +24,12 @@ export class IdentityCredential {
18
24
  const idNullifier = memKeys.subarray(32, 64);
19
25
  const idSecretHash = memKeys.subarray(64, 96);
20
26
  const idCommitment = memKeys.subarray(96, 128);
21
- const idCommitmentBigInt = buildBigIntFromUint8Array(idCommitment, 32);
22
27
 
23
28
  return new IdentityCredential(
24
29
  idTrapdoor,
25
30
  idNullifier,
26
31
  idSecretHash,
27
- idCommitment,
28
- idCommitmentBigInt
32
+ idCommitment
29
33
  );
30
34
  }
31
35
  }
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { RLNDecoder, RLNEncoder } from "./codec.js";
2
- import { RLN_ABI } from "./contract/abi.js";
3
- import { LINEA_CONTRACT, RLNContract } from "./contract/index.js";
2
+ import { RLN_ABI } from "./contract/abi/rln.js";
3
+ import { RLN_CONTRACT, RLNContract } from "./contract/index.js";
4
4
  import { RLNBaseContract } from "./contract/rln_base_contract.js";
5
5
  import { createRLN } from "./create.js";
6
6
  import { RLNCredentialsManager } from "./credentials_manager.js";
@@ -23,7 +23,7 @@ export {
23
23
  RLNDecoder,
24
24
  MerkleRootTracker,
25
25
  RLNContract,
26
- LINEA_CONTRACT,
26
+ RLN_CONTRACT,
27
27
  extractMetaMaskSigner,
28
28
  RLN_ABI
29
29
  };
@@ -14,7 +14,7 @@ import {
14
14
  import _ from "lodash";
15
15
  import { v4 as uuidV4 } from "uuid";
16
16
 
17
- import { buildBigIntFromUint8Array } from "../utils/bytes.js";
17
+ import { BytesUtils } from "../utils/bytes.js";
18
18
 
19
19
  import { decryptEipKeystore, keccak256Checksum } from "./cipher.js";
20
20
  import { isCredentialValid, isKeystoreValid } from "./schema_validator.js";
@@ -250,26 +250,35 @@ export class Keystore {
250
250
  const str = bytesToUtf8(bytes);
251
251
  const obj = JSON.parse(str);
252
252
 
253
- // TODO: add runtime validation of nwaku credentials
253
+ // Little Endian
254
+ const idCommitmentLE = Keystore.fromArraylikeToBytes(
255
+ _.get(obj, "identityCredential.idCommitment", [])
256
+ );
257
+ const idTrapdoorLE = Keystore.fromArraylikeToBytes(
258
+ _.get(obj, "identityCredential.idTrapdoor", [])
259
+ );
260
+ const idNullifierLE = Keystore.fromArraylikeToBytes(
261
+ _.get(obj, "identityCredential.idNullifier", [])
262
+ );
263
+ const idSecretHashLE = Keystore.fromArraylikeToBytes(
264
+ _.get(obj, "identityCredential.idSecretHash", [])
265
+ );
266
+
267
+ // Big Endian
268
+ const idCommitmentBE = BytesUtils.switchEndianness(idCommitmentLE);
269
+ const idTrapdoorBE = BytesUtils.switchEndianness(idTrapdoorLE);
270
+ const idNullifierBE = BytesUtils.switchEndianness(idNullifierLE);
271
+ const idSecretHashBE = BytesUtils.switchEndianness(idSecretHashLE);
272
+ const idCommitmentBigInt =
273
+ BytesUtils.buildBigIntFromUint8ArrayBE(idCommitmentBE);
274
+
254
275
  return {
255
276
  identity: {
256
- IDCommitment: Keystore.fromArraylikeToBytes(
257
- _.get(obj, "identityCredential.idCommitment", [])
258
- ),
259
- IDTrapdoor: Keystore.fromArraylikeToBytes(
260
- _.get(obj, "identityCredential.idTrapdoor", [])
261
- ),
262
- IDNullifier: Keystore.fromArraylikeToBytes(
263
- _.get(obj, "identityCredential.idNullifier", [])
264
- ),
265
- IDCommitmentBigInt: buildBigIntFromUint8Array(
266
- Keystore.fromArraylikeToBytes(
267
- _.get(obj, "identityCredential.idCommitment", [])
268
- )
269
- ),
270
- IDSecretHash: Keystore.fromArraylikeToBytes(
271
- _.get(obj, "identityCredential.idSecretHash", [])
272
- )
277
+ IDCommitment: idCommitmentBE,
278
+ IDTrapdoor: idTrapdoorBE,
279
+ IDNullifier: idNullifierBE,
280
+ IDSecretHash: idSecretHashBE,
281
+ IDCommitmentBigInt: idCommitmentBigInt
273
282
  },
274
283
  membership: {
275
284
  treeIndex: _.get(obj, "treeIndex"),
@@ -320,15 +329,35 @@ export class Keystore {
320
329
 
321
330
  // follows nwaku implementation
322
331
  // https://github.com/waku-org/nwaku/blob/f05528d4be3d3c876a8b07f9bb7dfaae8aa8ec6e/waku/waku_keystore/protocol_types.nim#L98
332
+ // IdentityCredential is stored in Big Endian format => switch to Little Endian
323
333
  private static fromIdentityToBytes(options: KeystoreEntity): Uint8Array {
334
+ const { IDCommitment, IDNullifier, IDSecretHash, IDTrapdoor } =
335
+ options.identity;
336
+ const idCommitmentLE = BytesUtils.switchEndianness(IDCommitment);
337
+ const idNullifierLE = BytesUtils.switchEndianness(IDNullifier);
338
+ const idSecretHashLE = BytesUtils.switchEndianness(IDSecretHash);
339
+ const idTrapdoorLE = BytesUtils.switchEndianness(IDTrapdoor);
340
+
341
+ // eslint-disable-next-line no-console
342
+ console.log({
343
+ idCommitmentBE: IDCommitment,
344
+ idCommitmentLE,
345
+ idNullifierBE: IDNullifier,
346
+ idNullifierLE,
347
+ idSecretHashBE: IDSecretHash,
348
+ idSecretHashLE,
349
+ idTrapdoorBE: IDTrapdoor,
350
+ idTrapdoorLE
351
+ });
352
+
324
353
  return utf8ToBytes(
325
354
  JSON.stringify({
326
355
  treeIndex: options.membership.treeIndex,
327
356
  identityCredential: {
328
- idCommitment: Array.from(options.identity.IDCommitment),
329
- idNullifier: Array.from(options.identity.IDNullifier),
330
- idSecretHash: Array.from(options.identity.IDSecretHash),
331
- idTrapdoor: Array.from(options.identity.IDTrapdoor)
357
+ idCommitment: Array.from(idCommitmentLE),
358
+ idNullifier: Array.from(idNullifierLE),
359
+ idSecretHash: Array.from(idSecretHashLE),
360
+ idTrapdoor: Array.from(idTrapdoorLE)
332
361
  },
333
362
  membershipContract: {
334
363
  chainId: options.membership.chainId,
package/src/proof.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { IRateLimitProof } from "@waku/interfaces";
2
2
 
3
- import { concatenate, poseidonHash } from "./utils/index.js";
3
+ import { BytesUtils, poseidonHash } from "./utils/index.js";
4
4
 
5
5
  const proofOffset = 128;
6
6
  const rootOffset = proofOffset + 32;
@@ -57,7 +57,7 @@ export class Proof implements IRateLimitProof {
57
57
  }
58
58
 
59
59
  export function proofToBytes(p: IRateLimitProof): Uint8Array {
60
- return concatenate(
60
+ return BytesUtils.concatenate(
61
61
  p.proof,
62
62
  p.merkleRoot,
63
63
  p.epoch,
@@ -1,84 +1,130 @@
1
- /**
2
- * Concatenate Uint8Arrays
3
- * @param input
4
- * @returns concatenation of all Uint8Array received as input
5
- */
6
- export function concatenate(...input: Uint8Array[]): Uint8Array {
7
- let totalLength = 0;
8
- for (const arr of input) {
9
- totalLength += arr.length;
1
+ export class BytesUtils {
2
+ /**
3
+ * Switches endianness of a byte array
4
+ */
5
+ public static switchEndianness(bytes: Uint8Array): Uint8Array {
6
+ return new Uint8Array([...bytes].reverse());
10
7
  }
11
- const result = new Uint8Array(totalLength);
12
- let offset = 0;
13
- for (const arr of input) {
14
- result.set(arr, offset);
15
- offset += arr.length;
8
+
9
+ /**
10
+ * Builds a BigInt from a big-endian Uint8Array
11
+ * @param bytes The big-endian bytes to convert
12
+ * @returns The resulting BigInt in big-endian format
13
+ */
14
+ public static buildBigIntFromUint8ArrayBE(bytes: Uint8Array): bigint {
15
+ let result = 0n;
16
+ for (let i = 0; i < bytes.length; i++) {
17
+ result = (result << 8n) + BigInt(bytes[i]);
18
+ }
19
+ return result;
16
20
  }
17
- return result;
18
- }
19
21
 
20
- // Adapted from https://github.com/feross/buffer
21
- function checkInt(
22
- buf: Uint8Array,
23
- value: number,
24
- offset: number,
25
- ext: number,
26
- max: number,
27
- min: number
28
- ): void {
29
- if (value > max || value < min)
30
- throw new RangeError('"value" argument is out of bounds');
31
- if (offset + ext > buf.length) throw new RangeError("Index out of range");
32
- }
22
+ /**
23
+ * Switches endianness of a bigint value
24
+ * @param value The bigint value to switch endianness for
25
+ * @returns The bigint value with reversed endianness
26
+ */
27
+ public static switchEndiannessBigInt(value: bigint): bigint {
28
+ // Convert bigint to byte array
29
+ const bytes = [];
30
+ let tempValue = value;
31
+ while (tempValue > 0n) {
32
+ bytes.push(Number(tempValue & 0xffn));
33
+ tempValue >>= 8n;
34
+ }
33
35
 
34
- export function writeUIntLE(
35
- buf: Uint8Array,
36
- value: number,
37
- offset: number,
38
- byteLength: number,
39
- noAssert?: boolean
40
- ): Uint8Array {
41
- value = +value;
42
- offset = offset >>> 0;
43
- byteLength = byteLength >>> 0;
44
- if (!noAssert) {
45
- const maxBytes = Math.pow(2, 8 * byteLength) - 1;
46
- checkInt(buf, value, offset, byteLength, maxBytes, 0);
36
+ // Reverse bytes and convert back to bigint
37
+ return bytes
38
+ .reverse()
39
+ .reduce((acc, byte) => (acc << 8n) + BigInt(byte), 0n);
47
40
  }
48
41
 
49
- let mul = 1;
50
- let i = 0;
51
- buf[offset] = value & 0xff;
52
- while (++i < byteLength && (mul *= 0x100)) {
53
- buf[offset + i] = (value / mul) & 0xff;
42
+ /**
43
+ * Converts a big-endian bigint to a 32-byte big-endian Uint8Array
44
+ * @param value The big-endian bigint to convert
45
+ * @returns A 32-byte big-endian Uint8Array
46
+ */
47
+ public static bigIntToUint8Array32BE(value: bigint): Uint8Array {
48
+ const bytes = new Uint8Array(32);
49
+ for (let i = 31; i >= 0; i--) {
50
+ bytes[i] = Number(value & 0xffn);
51
+ value >>= 8n;
52
+ }
53
+ return bytes;
54
54
  }
55
55
 
56
- return buf;
57
- }
56
+ /**
57
+ * Writes an unsigned integer to a buffer in little-endian format
58
+ */
59
+ public static writeUIntLE(
60
+ buf: Uint8Array,
61
+ value: number,
62
+ offset: number,
63
+ byteLength: number,
64
+ noAssert?: boolean
65
+ ): Uint8Array {
66
+ value = +value;
67
+ offset = offset >>> 0;
68
+ byteLength = byteLength >>> 0;
69
+ if (!noAssert) {
70
+ const maxBytes = Math.pow(2, 8 * byteLength) - 1;
71
+ BytesUtils.checkInt(buf, value, offset, byteLength, maxBytes, 0);
72
+ }
58
73
 
59
- /**
60
- * Transforms Uint8Array into BigInt
61
- * @param array: Uint8Array
62
- * @returns BigInt
63
- */
64
- export function buildBigIntFromUint8Array(
65
- array: Uint8Array,
66
- byteOffset: number = 0
67
- ): bigint {
68
- const dataView = new DataView(array.buffer);
69
- return dataView.getBigUint64(byteOffset, true);
70
- }
74
+ let mul = 1;
75
+ let i = 0;
76
+ buf[offset] = value & 0xff;
77
+ while (++i < byteLength && (mul *= 0x100)) {
78
+ buf[offset + i] = (value / mul) & 0xff;
79
+ }
80
+
81
+ return buf;
82
+ }
83
+
84
+ /**
85
+ * Fills with zeros to set length
86
+ * @param array little endian Uint8Array
87
+ * @param length amount to pad
88
+ * @returns little endian Uint8Array padded with zeros to set length
89
+ */
90
+ public static zeroPadLE(array: Uint8Array, length: number): Uint8Array {
91
+ const result = new Uint8Array(length);
92
+ for (let i = 0; i < length; i++) {
93
+ result[i] = array[i] || 0;
94
+ }
95
+ return result;
96
+ }
97
+
98
+ // Adapted from https://github.com/feross/buffer
99
+ public static checkInt(
100
+ buf: Uint8Array,
101
+ value: number,
102
+ offset: number,
103
+ ext: number,
104
+ max: number,
105
+ min: number
106
+ ): void {
107
+ if (value > max || value < min)
108
+ throw new RangeError('"value" argument is out of bounds');
109
+ if (offset + ext > buf.length) throw new RangeError("Index out of range");
110
+ }
71
111
 
72
- /**
73
- * Fills with zeros to set length
74
- * @param array little endian Uint8Array
75
- * @param length amount to pad
76
- * @returns little endian Uint8Array padded with zeros to set length
77
- */
78
- export function zeroPadLE(array: Uint8Array, length: number): Uint8Array {
79
- const result = new Uint8Array(length);
80
- for (let i = 0; i < length; i++) {
81
- result[i] = array[i] || 0;
112
+ /**
113
+ * Concatenate Uint8Arrays
114
+ * @param input
115
+ * @returns concatenation of all Uint8Array received as input
116
+ */
117
+ public static concatenate(...input: Uint8Array[]): Uint8Array {
118
+ let totalLength = 0;
119
+ for (const arr of input) {
120
+ totalLength += arr.length;
121
+ }
122
+ const result = new Uint8Array(totalLength);
123
+ let offset = 0;
124
+ for (const arr of input) {
125
+ result.set(arr, offset);
126
+ offset += arr.length;
127
+ }
128
+ return result;
82
129
  }
83
- return result;
84
130
  }
package/src/utils/hash.ts CHANGED
@@ -1,15 +1,25 @@
1
1
  import * as zerokitRLN from "@waku/zerokit-rln-wasm";
2
2
 
3
- import { concatenate, writeUIntLE } from "./bytes.js";
3
+ import { BytesUtils } from "./bytes.js";
4
4
 
5
5
  export function poseidonHash(...input: Array<Uint8Array>): Uint8Array {
6
- const inputLen = writeUIntLE(new Uint8Array(8), input.length, 0, 8);
7
- const lenPrefixedData = concatenate(inputLen, ...input);
6
+ const inputLen = BytesUtils.writeUIntLE(
7
+ new Uint8Array(8),
8
+ input.length,
9
+ 0,
10
+ 8
11
+ );
12
+ const lenPrefixedData = BytesUtils.concatenate(inputLen, ...input);
8
13
  return zerokitRLN.poseidonHash(lenPrefixedData);
9
14
  }
10
15
 
11
16
  export function sha256(input: Uint8Array): Uint8Array {
12
- const inputLen = writeUIntLE(new Uint8Array(8), input.length, 0, 8);
13
- const lenPrefixedData = concatenate(inputLen, input);
17
+ const inputLen = BytesUtils.writeUIntLE(
18
+ new Uint8Array(8),
19
+ input.length,
20
+ 0,
21
+ 8
22
+ );
23
+ const lenPrefixedData = BytesUtils.concatenate(inputLen, input);
14
24
  return zerokitRLN.hash(lenPrefixedData);
15
25
  }
@@ -1,9 +1,4 @@
1
1
  export { extractMetaMaskSigner } from "./metamask.js";
2
- export {
3
- concatenate,
4
- writeUIntLE,
5
- buildBigIntFromUint8Array,
6
- zeroPadLE
7
- } from "./bytes.js";
2
+ export { BytesUtils } from "./bytes.js";
8
3
  export { sha256, poseidonHash } from "./hash.js";
9
4
  export { dateToEpoch, epochIntToBytes, epochBytesToInt } from "./epoch.js";