Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mod test {
3, // randomness
4, // serialized_event[0]
5, // serialized_event[1]
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // serialized_event padding
0, 0, 0, 0, 0, 0, 0, 0, 0, // serialized_event padding
2, // bounded_vec_len
6, // event_commitment
7, // tx_hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ mod test {
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000003,
0x0000000000000000000000000000000000000000000000000000000000000004,
0x0000000000000000000000000000000000000000000000000000000000000005,
Expand Down Expand Up @@ -224,8 +222,6 @@ mod test {
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
];

assert_eq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ mod test {
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000002,
0x0000000000000000000000000000000000000000000000000000000000000006,
0x0000000000000000000000000000000000000000000000000000000000000007,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ mod test {
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000000,
0x0000000000000000000000000000000000000000000000000000000000000003,
0x000000000000000000000000000000000000000000000000000000000000007b,
0x0000000000000000000000000000000000000000000000000000000000000004,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
InvalidNote has a packed length of 11 fields, which exceeds the maximum allowed length of 10 fields
InvalidNote has a packed length of 10 fields, which exceeds the maximum allowed length of 9 fields
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ pub contract ContractInstanceRegistry {
};
let payload = event.serialize_non_standard();
debug_log_format("ContractInstancePublished: {}", payload);
let padded_log = payload.concat([0; 3]);
// We pad the payload with [0] to match the length required by emit_private_log. Since the log is not
// encrypted, padding with zero rather than a random value is acceptable (we don't care about privacy here).
let padded_log = payload.concat([0]);
let length = payload.len();
context.emit_private_log(padded_log, length);

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3,542 changes: 1,707 additions & 1,835 deletions noir-projects/noir-protocol-circuits/crates/rollup-tx-base-private/Prover.toml

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ pub global SCOPED_KEY_VALIDATION_REQUEST_AND_GENERATOR_LENGTH: u32 =
KEY_VALIDATION_REQUEST_AND_GENERATOR_LENGTH + 1;
pub global PARTIAL_STATE_REFERENCE_LENGTH: u32 = 6;
pub global TREE_LEAF_READ_REQUEST_LENGTH: u32 = 2;
pub global PRIVATE_LOG_SIZE_IN_FIELDS: u32 = 18; // This is currently affected by the size of the log overhead defined in aztec-nr/aztec/src/messages/payload.nr.
pub global PRIVATE_LOG_SIZE_IN_FIELDS: u32 = 16;
pub global PRIVATE_LOG_LENGTH: u32 = PRIVATE_LOG_SIZE_IN_FIELDS + 1 /* length */;
pub global PRIVATE_LOG_DATA_LENGTH: u32 = PRIVATE_LOG_LENGTH
+ 1 /* note_hash_counter */
Expand Down
24 changes: 12 additions & 12 deletions yarn-project/constants/src/constants.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ export const KEY_VALIDATION_REQUEST_AND_GENERATOR_LENGTH = 5;
export const SCOPED_KEY_VALIDATION_REQUEST_AND_GENERATOR_LENGTH = 6;
export const PARTIAL_STATE_REFERENCE_LENGTH = 6;
export const TREE_LEAF_READ_REQUEST_LENGTH = 2;
export const PRIVATE_LOG_SIZE_IN_FIELDS = 18;
export const PRIVATE_LOG_LENGTH = 19;
export const PRIVATE_LOG_DATA_LENGTH = 21;
export const PRIVATE_LOG_CIPHERTEXT_LEN = 17;
export const SCOPED_PRIVATE_LOG_DATA_LENGTH = 22;
export const PRIVATE_LOG_SIZE_IN_FIELDS = 16;
export const PRIVATE_LOG_LENGTH = 17;
export const PRIVATE_LOG_DATA_LENGTH = 19;
export const PRIVATE_LOG_CIPHERTEXT_LEN = 15;
export const SCOPED_PRIVATE_LOG_DATA_LENGTH = 20;
export const FLAT_PUBLIC_LOGS_HEADER_LENGTH = 1;
export const FLAT_PUBLIC_LOGS_PAYLOAD_LENGTH = 4096;
export const PUBLIC_LOGS_LENGTH = 4097;
Expand Down Expand Up @@ -199,27 +199,27 @@ export const BLOCK_HEADER_LENGTH = 22;
export const CHECKPOINT_HEADER_LENGTH = 12;
export const CHECKPOINT_HEADER_SIZE_IN_BYTES = 316;
export const SCOPED_READ_REQUEST_LEN = 3;
export const PRIVATE_CIRCUIT_PUBLIC_INPUTS_LENGTH = 902;
export const PRIVATE_CIRCUIT_PUBLIC_INPUTS_LENGTH = 870;
export const PRIVATE_CONTEXT_INPUTS_LENGTH = 37;
export const FEE_RECIPIENT_LENGTH = 2;
export const HIDING_KERNEL_IO_PUBLIC_INPUTS_SIZE = 28;
export const PAIRING_POINTS_SIZE = 8;
export const IPA_CLAIM_SIZE = 6;
export const PUBLIC_DATA_READ_LENGTH = 3;
export const PRIVATE_VALIDATION_REQUESTS_LENGTH = 771;
export const PRIVATE_TO_ROLLUP_ACCUMULATED_DATA_LENGTH = 1371;
export const PRIVATE_TO_ROLLUP_ACCUMULATED_DATA_LENGTH = 1243;
export const TX_CONSTANT_DATA_LENGTH = 34;
export const COMBINED_CONSTANT_DATA_LENGTH = 43;
export const PRIVATE_ACCUMULATED_DATA_LENGTH = 2187;
export const PRIVATE_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 3001;
export const PRIVATE_TO_PUBLIC_ACCUMULATED_DATA_LENGTH = 1499;
export const PRIVATE_ACCUMULATED_DATA_LENGTH = 2059;
export const PRIVATE_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 2873;
export const PRIVATE_TO_PUBLIC_ACCUMULATED_DATA_LENGTH = 1371;
export const PRIVATE_TO_AVM_ACCUMULATED_DATA_LENGTH = 152;
export const NUM_PRIVATE_TO_AVM_ACCUMULATED_DATA_ARRAYS = 3;
export const NUM_AVM_ACCUMULATED_DATA_ARRAYS = 4;
export const NUM_PUBLIC_CALL_REQUEST_ARRAYS = 3;
export const AVM_ACCUMULATED_DATA_LENGTH = 4377;
export const PRIVATE_TO_PUBLIC_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 3040;
export const PRIVATE_TO_ROLLUP_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 1409;
export const PRIVATE_TO_PUBLIC_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 2784;
export const PRIVATE_TO_ROLLUP_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 1281;
export const AVM_CIRCUIT_PUBLIC_INPUTS_LENGTH = 5008;
export const BLOCK_CONSTANT_DATA_LENGTH = 16;
export const CHECKPOINT_CONSTANT_DATA_LENGTH = 10;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
1a7e1badb79abdd38c684b3c8306ffe7ecb33c69e3380d9855730aaaa83a21a805650f24b850738443a2e8cf5a34e350a5f41b1075972878a3f4cc481a9a302800000000000000000000000000000000000000000000000000000000000000010a53f8cfa2a61512e1c8d878802da7c78f5224f0369f1173d993ee4c829bb72d037d5ea1cc24c1498cc5fa893cd5296f3e5d6a7e41523a097160ee1a05ee601f00062af54a4b02c6770263f664799a863289cb9724ca6b9216cc0419429f1f641f6c04b4aa42fde3561534fd987218d16bbd4c850b969a9f168fff3ef172203504e6bc33b8556a32b6f2f250b3324853183aba2ff0db2af38efed4c6d8e4e87026baaa4e8ca31df27b07e8f448c9b44255f26e8fbf4fd15808cdb15d443bf7820cc85a55f3496d1c759baa34c05b7ca0796c0d644f855277b611eddaba93ab5c1682684ccb9502231752b133a68c86db71567d8effdac53db0cf5ce03b7a86be2b4730cf8bc0eb2f11ba9c123b99bdfd9c2921ea00f8b956ff2c00c9b2c7feb42235292c03494bed9af94c8b2aa5b2356dc849e81dd04cf346482390bade957910ffd4a42aee2b45178cd98a3bab141a6d03312215a59b0d5d0f844c38935dc300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f
1a7e1badb79abdd38c684b3c8306ffe7ecb33c69e3380d9855730aaaa83a21a82785d7da77733c88ddaeefe9345930bb0b001a7faaba3b22c2c017ce5f29b516000000000000000000000000000000000000000000000000000000000000000127343111c619695290b401d49165994937d880b32d8a6ecb08162a3169be64211c4d0827b38db9a623f4d957d089da4c425b354476348ddc2f3cb97e0e7c404001562a73cc06da97feea76113fd919fcb8c104238cc42280b42e43e374daca9d05df3fd25dc45847037d3742166ca551bcfebe240e093b52cb56ed42a2acde3e2f2b2b5186516dd8e63505eee81525001432b5b452cd3840212010411efa44360cbad427b9d2339bee6e317b983a472205e0e52c7b85d24de688364a236fc8df0ee16b98ebd5a79e87dc45a7a7e867cc733878577fc687d1e23487cf3a2792c81da244c3bd25d12244065ceebbacd2347c20ca1d6d4a202d31816213a3d94b2e108397ba0cb87714b43e66228a183e2a27827ddd2a1593de9058556e7b3b6be122154865e56388bb93e992b2a79d623647b1753af5accb9ae0d3bd2a340c55b4030a237678b86ca6c352871cf421ca83e4a378846a2910733ed78684eee08ba4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

exports[`ContractClassPublishedEvent parses an event as emitted by the ContractClassRegistry 1`] = `
ContractClassPublishedEvent {
"artifactHash": Fr<0x1aea67fcb10d51ee52231ef876a9d07f82f7cccab9347740de1554de26d12e80>,
"contractClassId": Fr<0x037d5ea1cc24c1498cc5fa893cd5296f3e5d6a7e41523a097160ee1a05ee601f>,
"artifactHash": Fr<0x2cb4e92d9525cfe56e290130399b702338371dd28fb03c43182874fbc23296a2>,
"contractClassId": Fr<0x1c4d0827b38db9a623f4d957d089da4c425b354476348ddc2f3cb97e0e7c4040>,
"packedPublicBytecode": Buffer<0x27000204012800000104804c270000044c2500000041270202040127020304001f0a00020003004b2d084b01250000008e270201044c27020204003b0e000200012c0000430030644e72e131a029b85045b68181585d2833e84879b9709143e1f593f00000002900004404ffffffff2700450403270046040027004700002700480101270049040127004a0402262500000a3f2902000200324de62f0a2a01020327020404002702060403002a0406052d0801020008010501270302040100220202052d0e040500220502052d0e04052702050403002a02050427020401002902000500d9b5157824020003000000f523000004a92d08010327020604030008010601270303040100220302061f30004a0049000600220349072d0b07060022034a082d0b08071e020003001e020008001e020009002d08010a27020b04030008010b0127030a040100220a020b360e0009000b0000220a490c2d0b0c0b00220a4a0d2d0b0d0c1c0a0b0a00042a0a0c0d2402000b0000018227020a04003c060a012d08010a27020b04030008010b0127030a040100220a020b360e0009000b0200220a490b2d0b0b0900220a4a0c2d0b0c0b1c0a090a00042a0a0b0c24020009000001ce27020a04003c060a012d08010927020a04020008010a012703090401002209020a1f3000490046000a002209490b2d0b0b0a1c0a0a0b041c0a0b09002d08010a27020b04030008010b0127030a040100220a020b1f30004a0049000b00220a490e2d0b0e0b00220a4a0f2d0b0f0e2902000a00d52de36b2b02000f00000000000000000300000000000000002d08011027021104050008011101270310040100221002112d0a11122d0e0a1200221202122d0e0b1200221202122d0e0e1200221202122d0e0f122d0b100a00220a020a2d0e0a102d08010a27020b04050008010b0127030a0401002210020b00220a020e3f0f000b000e00220a490e2d0b0e0b2902000a0016f8af272d08010e27020f04040008010f0127030e040100220e020f2d0a0f102d0e0a1000221002102d0e091000221002102d0e0b1027020a040f2d08000f2d0a0e102d0845110008000a002500000a652d0200002d0a10090a2a0c090a2402000a000003352500000dca0a220d47091e02000a010a220a430b160a0b0c1c0a0c0e00042a0e0a0c0a2a0b040a2402000a0000036827020e04003c060e010a2a0d0c0a122a090a0b2402000b0000037f2500000ddc2d08010927020a04040008010a012703090401002209020a2d0a0a0b2d0e050b00220b020b2d0e060b00220b020b2d0e070b00220902063903200044004400030045000620020003210200062d080109002209020c2d0b0c0c2d0a0c0b27020d0403002a090d0a223200060046000a2d0a060b2703090401002209020c2d0e0b0c00220c020c2d0e0b0c27020d0403002a0b0d0c0008010c012d0a0b070622070207240200030000045b230000042e2d0b090300220302032d0e030900220902082d0b08082d0a080627020a0403002a090a033c0e0603230000045b0a22074603240200030000047127020604003c0606011e02000300340200032d0b020300220302032d0e030200220202072d0b07072d0a07062702080403002a0208033b0e0006000323000004a929020003005bd9f2da0a2a01030627020300022902000700ef52534d24020006000004d2230000063c2d08010627020804030008010801270306040100220602081f30004a0049000800220649092d0b09080022064a0a2d0b0a091e020006001e02000a001e02000b001e02000c002902000d00036d527f2d08010e27020f04040008010f0127030e040100220e020f2d0a0f102d0e0d1000221002102d0e0c1000221002102d0e0b1027020c040f2d08000f2d0a0e102d0845110008000c002500000a652d0200002d0a100b330a000b000c2402000c000005892500000dee2d08010b27020c04040008010c0127030b040100220b020c2d0a0c0d2d0e070d00220d020d2d0e030d00220d020d2d0e080d27020c040d2d08000d2d0a0b0e2d08450f0008000c002500000a652d0200002d0a0e080a2208470b0a2a0b040c2402000c000005f52500000e001e02000b002f2a0008000b000c002a0c090b300a000b00082d0b020800220802082d0e0802002202020b2d0b0b0b2d0a0b0927020c0403002a020c083b0e00090008230000063c0a2a010506240200060000064e230000073d2d08010527020604030008010601270305040100220502061f30004a0049000600220549082d0b08060022054a092d0b09081e020005001e020009002d08010a27020b04040008010b0127030a040100220a020b2d0a0b0c2d0e070c00220c020c2d0e030c00220c020c2d0e060c27020b040c2d08000c2d0a0a0d2d08450e0008000b002500000a652d0200002d0a0d060a2206470a0a2a0a040b2402000b000006f62500000e001e02000a002f2a0006000a000b002a0b080a300a000a00062d0b020600220602062d0e0602002202020a2d0b0a0a2d0a0a0827020b0403002a020b063b0e00080006230000073d2902000200bb19097e0a2a010205240200050000075823000008792d08010227020504020008010501270302040100220202051f3000490049000500220249062d0b06051e020002001e020006001e02000809240200080000079d2500000e122d08010827020904040008010901270308040100220802092d0a090a2d0e070a00220a020a2d0e030a00220a020a2d0e050a27020504092d0800092d0a080a2d08450b00080005002500000a652d0200002d0a0a030a220347050a2a05040724020007000008092500000e001e020005002f2a00030005000727020504012702090403002a0509082d0801030008010801270303040100220302082d0e050800220802082d0e05082702080403002a0308052d0a05082d0e070800220302082d0b08082d0a08072702090403002a0309053b0e0007000523000008792702020255270203026e270205026b270206026f27020702772702080220270209027327020a026527020b026c27020c026327020d027427020e027227020f027b270210027d2d080111270212041c0008011201270311040100221102122d0a12132d0e021300221302132d0e031300221302132d0e051300221302132d0e031300221302132d0e061300221302132d0e071300221302132d0e031300221302132d0e081300221302132d0e091300221302132d0e0a1300221302132d0e0b1300221302132d0e0a1300221302132d0e0c1300221302132d0e0d1300221302132d0e061300221302132d0e0e1300221302132d0e081300221302132d0e0f1300221302132d0e091300221302132d0e0a1300221302132d0e0b1300221302132d0e0a1300221302132d0e0c1300221302132d0e0d1300221302132d0e061300221302132d0e0e1300221302132d0e101327020200010a220448032402000300000a3f270205041e2d080106270207041e00080107012d0a06072a03000705ada372c6faa6847300220702070022110208270209041b2d0208032d0207042d0209052500000e24270208041b002a0708072d0e020700220702072d0e010700220702073c0e05062800000404784c0c000004032400000300000a642a01000105dac5f5d6b44a326d3c040201262500000a3f1c0a0204002b0200050000000000000000010000000000000000042a0405062d08010400000102012d08010527020704050008010701270305040100220502072d0a07082d0c470800220802082d0c470800220802082d0c470800220802082d0e06082d0e050406220245052d0846032300000adf0c2a0305062402000600000c5f2300000af106220245050422054506022a0206030a22034605160a05062402000500000bf92300000b16022a0203050e2a0302072402000700000b2d2500000e562d0b040700220749092d0b09080c220545092402000900000b4c2500000e68002201020a002a0a050b2d0b0b09002a08090a2d02070327000404052500000e7a2d08050800220849092d0e0a092d0e08040c284903072402000700000b902300000bf90022084a072d0b070300220549070e2a0507092402000900000bb02500000ed90c220745052402000500000bc22500000e680022010209002a09070a2d0b0a05002a0305012d02080327000404052500000e7a2d0805030022034a052d0e01052d0e03042300000bf90a22024601122a0106022402000200000c102300000c4d2d0b04012d0b010200220202022d0e02012d080102270203040500080103012703020401002201020300220202053f0f000300052d0e02042300000c4d2d0b040100220149032d0b03022d0a0201262d0b040600220649082d0b08070422034508062208450a0a2a0a03092402000900000c882500000eeb0c220845092402000900000c9a2500000e68002201020a002a0a080b2d0b0b09002a07090a2d02060327000404052500000e7a2d08050700220749092d0e0a090022074a092d0b090600220849090e2a08090a2402000a00000ce82500000ed90c2209450a2402000a00000cfa2500000e68002201020b002a0b090c2d0b0c0a002a060a092d02070327000404052500000e7a2d0805060022064a0a2d0e090a00220645092d0b09070022084a090e2a08090a2402000a00000d482500000ed90c220945082402000800000d5a2500000e68002201020a002a0a090b2d0b0b08002a0708092d02060327000404052500000e7a2d08050700220745082d0e09082d0b070600220602062d0e06072d080106270208040500080108012703060401002207020800220602093f0f000800092d0e060400220349062d0a06032300000adf2a010001058a553a2c2b67c8ef3c040201262a01000105c80d73736ecdb4e13c040201262a0100010506613b3d0b9dbd333c040201262a01000105babb21d7823318643c040201262a01000105c5cc62b50ed35c303c0402012600000305072d0003082d0004090a0008070a2400000a00000e552d0108062d040609000008020800000902092300000e31262a010001051bbc65d03fdceadc3c040201262a01000105e408504502b58c1f3c040201262d0103060a000602072400000700000e902300000e992d0003052300000ed82d000105000001040100000304092d00030a2d00050b0a000a090c2400000c00000ed32d010a082d04080b00000a020a00000b020b2300000eaf2701050401262a01000105d007ebf4cbc667903c040201262a0100010505041b9920af604c3c04020126>,
"privateFunctionsRoot": Fr<0x07384c6097aa4239853eed6fa6261193bea69a1e41f21a2f86116e41eb43568f>,
"privateFunctionsRoot": Fr<0x0d94be96ff9ca79df85dff513ffd14582d3cddc68fc4d865ff530cc6b646fbb6>,
"version": 1,
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

exports[`ContractInstancePublishedEvent parses an event as emitted by the ClassInstanceRegistry 1`] = `
ContractInstancePublishedEvent {
"address": "0x05650f24b850738443a2e8cf5a34e350a5f41b1075972878a3f4cc481a9a3028",
"contractClassId": "0x037d5ea1cc24c1498cc5fa893cd5296f3e5d6a7e41523a097160ee1a05ee601f",
"address": "0x2785d7da77733c88ddaeefe9345930bb0b001a7faaba3b22c2c017ce5f29b516",
"contractClassId": "0x1c4d0827b38db9a623f4d957d089da4c425b354476348ddc2f3cb97e0e7c4040",
"deployer": "0x0000000000000000000000000000000000000000000000000000000000000000",
"initializationHash": "0x00062af54a4b02c6770263f664799a863289cb9724ca6b9216cc0419429f1f64",
"initializationHash": "0x01562a73cc06da97feea76113fd919fcb8c104238cc42280b42e43e374daca9d",
"publicKeys": PublicKeys {
"masterIncomingViewingPublicKey": "0x26baaa4e8ca31df27b07e8f448c9b44255f26e8fbf4fd15808cdb15d443bf7820cc85a55f3496d1c759baa34c05b7ca0796c0d644f855277b611eddaba93ab5c",
"masterNullifierPublicKey": "0x1f6c04b4aa42fde3561534fd987218d16bbd4c850b969a9f168fff3ef172203504e6bc33b8556a32b6f2f250b3324853183aba2ff0db2af38efed4c6d8e4e870",
"masterOutgoingViewingPublicKey": "0x1682684ccb9502231752b133a68c86db71567d8effdac53db0cf5ce03b7a86be2b4730cf8bc0eb2f11ba9c123b99bdfd9c2921ea00f8b956ff2c00c9b2c7feb4",
"masterTaggingPublicKey": "0x2235292c03494bed9af94c8b2aa5b2356dc849e81dd04cf346482390bade957910ffd4a42aee2b45178cd98a3bab141a6d03312215a59b0d5d0f844c38935dc3",
"masterIncomingViewingPublicKey": "0x0cbad427b9d2339bee6e317b983a472205e0e52c7b85d24de688364a236fc8df0ee16b98ebd5a79e87dc45a7a7e867cc733878577fc687d1e23487cf3a2792c8",
"masterNullifierPublicKey": "0x05df3fd25dc45847037d3742166ca551bcfebe240e093b52cb56ed42a2acde3e2f2b2b5186516dd8e63505eee81525001432b5b452cd3840212010411efa4436",
"masterOutgoingViewingPublicKey": "0x1da244c3bd25d12244065ceebbacd2347c20ca1d6d4a202d31816213a3d94b2e108397ba0cb87714b43e66228a183e2a27827ddd2a1593de9058556e7b3b6be1",
"masterTaggingPublicKey": "0x22154865e56388bb93e992b2a79d623647b1753af5accb9ae0d3bd2a340c55b4030a237678b86ca6c352871cf421ca83e4a378846a2910733ed78684eee08ba4",
},
"salt": "0x0a53f8cfa2a61512e1c8d878802da7c78f5224f0369f1173d993ee4c829bb72d",
"salt": "0x27343111c619695290b401d49165994937d880b32d8a6ecb08162a3169be6421",
"version": 1,
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ describe('EventValidationRequest', () => {
0,
0,
0,
0,
0, // serialized_event padding end
2, // bounded_vec_len
6, // event_commitment
Expand Down
Loading
Loading