@aztec/stdlib 0.0.1-commit.7ac86ea28 → 0.0.1-commit.7b86788
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.
- package/dest/abi/decoder.d.ts +1 -1
- package/dest/abi/decoder.d.ts.map +1 -1
- package/dest/abi/decoder.js +1 -4
- package/dest/abi/encoder.d.ts +1 -1
- package/dest/abi/encoder.d.ts.map +1 -1
- package/dest/abi/encoder.js +9 -5
- package/dest/avm/avm.d.ts +300 -300
- package/dest/avm/avm_proving_request.d.ts +166 -166
- package/dest/avm/revert_code.d.ts +16 -1
- package/dest/avm/revert_code.d.ts.map +1 -1
- package/dest/avm/revert_code.js +15 -5
- package/dest/block/l2_block_stream/l2_block_stream.d.ts +1 -1
- package/dest/block/l2_block_stream/l2_block_stream.d.ts.map +1 -1
- package/dest/block/l2_block_stream/l2_block_stream.js +10 -0
- package/dest/ha-signing/config.d.ts +101 -0
- package/dest/ha-signing/config.d.ts.map +1 -0
- package/dest/ha-signing/config.js +92 -0
- package/dest/ha-signing/index.d.ts +3 -0
- package/dest/ha-signing/index.d.ts.map +1 -0
- package/dest/ha-signing/index.js +2 -0
- package/dest/ha-signing/types.d.ts +85 -0
- package/dest/ha-signing/types.d.ts.map +1 -0
- package/dest/ha-signing/types.js +32 -0
- package/dest/interfaces/p2p.d.ts +3 -8
- package/dest/interfaces/p2p.d.ts.map +1 -1
- package/dest/interfaces/validator.d.ts +2 -2
- package/dest/interfaces/validator.d.ts.map +1 -1
- package/dest/interfaces/validator.js +1 -1
- package/dest/kernel/hints/build_note_hash_read_request_hints.d.ts +3 -3
- package/dest/kernel/hints/build_note_hash_read_request_hints.d.ts.map +1 -1
- package/dest/kernel/hints/build_note_hash_read_request_hints.js +13 -10
- package/dest/kernel/hints/build_nullifier_read_request_hints.d.ts +3 -3
- package/dest/kernel/hints/build_nullifier_read_request_hints.d.ts.map +1 -1
- package/dest/kernel/hints/build_nullifier_read_request_hints.js +13 -10
- package/dest/kernel/hints/build_transient_data_hints.d.ts +5 -2
- package/dest/kernel/hints/build_transient_data_hints.d.ts.map +1 -1
- package/dest/kernel/hints/build_transient_data_hints.js +9 -3
- package/dest/logs/debug_log_store.d.ts +30 -0
- package/dest/logs/debug_log_store.d.ts.map +1 -0
- package/dest/logs/debug_log_store.js +30 -0
- package/dest/logs/extended_directional_app_tagging_secret.d.ts +47 -0
- package/dest/logs/extended_directional_app_tagging_secret.d.ts.map +1 -0
- package/dest/logs/{directional_app_tagging_secret.js → extended_directional_app_tagging_secret.js} +23 -15
- package/dest/logs/index.d.ts +3 -2
- package/dest/logs/index.d.ts.map +1 -1
- package/dest/logs/index.js +2 -1
- package/dest/logs/pre_tag.d.ts +16 -11
- package/dest/logs/pre_tag.d.ts.map +1 -1
- package/dest/logs/pre_tag.js +2 -2
- package/dest/logs/siloed_tag.d.ts +5 -3
- package/dest/logs/siloed_tag.d.ts.map +1 -1
- package/dest/logs/siloed_tag.js +6 -1
- package/dest/logs/tag.js +1 -1
- package/dest/p2p/attestation_utils.d.ts +11 -1
- package/dest/p2p/attestation_utils.d.ts.map +1 -1
- package/dest/p2p/attestation_utils.js +45 -0
- package/dest/p2p/block_proposal.d.ts +2 -2
- package/dest/p2p/block_proposal.d.ts.map +1 -1
- package/dest/p2p/block_proposal.js +1 -1
- package/dest/p2p/checkpoint_proposal.d.ts +2 -2
- package/dest/p2p/checkpoint_proposal.d.ts.map +1 -1
- package/dest/p2p/checkpoint_proposal.js +1 -1
- package/dest/p2p/client_type.d.ts +2 -5
- package/dest/p2p/client_type.d.ts.map +1 -1
- package/dest/p2p/client_type.js +0 -7
- package/dest/p2p/index.d.ts +1 -2
- package/dest/p2p/index.d.ts.map +1 -1
- package/dest/p2p/index.js +0 -1
- package/dest/p2p/topic_type.d.ts +3 -4
- package/dest/p2p/topic_type.d.ts.map +1 -1
- package/dest/p2p/topic_type.js +7 -24
- package/dest/tests/factories.d.ts +3 -1
- package/dest/tests/factories.d.ts.map +1 -1
- package/dest/tests/factories.js +8 -0
- package/dest/tests/mocks.d.ts +2 -2
- package/dest/tests/mocks.d.ts.map +1 -1
- package/dest/tests/mocks.js +5 -5
- package/dest/tx/tx_receipt.d.ts +16 -2
- package/dest/tx/tx_receipt.d.ts.map +1 -1
- package/dest/tx/tx_receipt.js +11 -3
- package/package.json +10 -10
- package/src/abi/decoder.ts +1 -4
- package/src/abi/encoder.ts +8 -5
- package/src/avm/revert_code.ts +15 -0
- package/src/block/l2_block_stream/l2_block_stream.ts +21 -0
- package/src/ha-signing/config.ts +149 -0
- package/src/ha-signing/index.ts +18 -0
- package/src/ha-signing/types.ts +112 -0
- package/src/interfaces/p2p.ts +2 -13
- package/src/interfaces/validator.ts +1 -1
- package/src/kernel/hints/build_note_hash_read_request_hints.ts +14 -18
- package/src/kernel/hints/build_nullifier_read_request_hints.ts +15 -18
- package/src/kernel/hints/build_transient_data_hints.ts +17 -2
- package/src/logs/debug_log_store.ts +54 -0
- package/src/logs/{directional_app_tagging_secret.ts → extended_directional_app_tagging_secret.ts} +24 -16
- package/src/logs/index.ts +2 -1
- package/src/logs/pre_tag.ts +5 -5
- package/src/logs/siloed_tag.ts +8 -2
- package/src/logs/tag.ts +1 -1
- package/src/p2p/attestation_utils.ts +56 -0
- package/src/p2p/block_proposal.ts +1 -1
- package/src/p2p/checkpoint_proposal.ts +1 -1
- package/src/p2p/client_type.ts +0 -6
- package/src/p2p/index.ts +0 -1
- package/src/p2p/topic_type.ts +8 -15
- package/src/tests/factories.ts +9 -0
- package/src/tests/mocks.ts +7 -3
- package/src/tx/tx_receipt.ts +10 -0
- package/dest/logs/directional_app_tagging_secret.d.ts +0 -40
- package/dest/logs/directional_app_tagging_secret.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tx_receipt.d.ts","sourceRoot":"","sources":["../../src/tx/tx_receipt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,iCAAiC,CAAC;AAIjF,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,KAAK,MAAM,EAAW,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAEtC,2CAA2C;AAC3C,oBAAY,QAAQ;IAClB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,MAAM,WAAW;IACjB,SAAS,cAAc;CACxB;AAED,iDAAiD;AACjD,eAAO,MAAM,gBAAgB,EAAE,QAAQ,EAOtC,CAAC;AAEF,yDAAyD;AACzD,oBAAY,iBAAiB;IAC3B,OAAO,YAAY;IACnB,kBAAkB,uBAAuB;IACzC,iBAAiB,sBAAsB;IACvC,aAAa,kBAAkB;CAChC;AAED;;;;;GAKG;AACH,qBAAa,SAAS;IAElB,6CAA6C;IACtC,MAAM,EAAE,MAAM;IACrB,mDAAmD;IAC5C,MAAM,EAAE,QAAQ;IACvB,+EAA+E;IACxE,eAAe,EAAE,iBAAiB,GAAG,SAAS;IACrD,gDAAgD;IACzC,KAAK,EAAE,MAAM,GAAG,SAAS;IAChC,oDAAoD;IAC7C,cAAc,CAAC;IACtB,wDAAwD;IACjD,SAAS,CAAC;IACjB,8DAA8D;IACvD,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"tx_receipt.d.ts","sourceRoot":"","sources":["../../src/tx/tx_receipt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAqB,MAAM,iCAAiC,CAAC;AAIjF,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,KAAK,MAAM,EAAW,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAEtC,2CAA2C;AAC3C,oBAAY,QAAQ;IAClB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,MAAM,WAAW;IACjB,SAAS,cAAc;CACxB;AAED,iDAAiD;AACjD,eAAO,MAAM,gBAAgB,EAAE,QAAQ,EAOtC,CAAC;AAEF,yDAAyD;AACzD,oBAAY,iBAAiB;IAC3B,OAAO,YAAY;IACnB,kBAAkB,uBAAuB;IACzC,iBAAiB,sBAAsB;IACvC,aAAa,kBAAkB;CAChC;AAED;;;;;GAKG;AACH,qBAAa,SAAS;IAElB,6CAA6C;IACtC,MAAM,EAAE,MAAM;IACrB,mDAAmD;IAC5C,MAAM,EAAE,QAAQ;IACvB,+EAA+E;IACxE,eAAe,EAAE,iBAAiB,GAAG,SAAS;IACrD,gDAAgD;IACzC,KAAK,EAAE,MAAM,GAAG,SAAS;IAChC,oDAAoD;IAC7C,cAAc,CAAC;IACtB,wDAAwD;IACjD,SAAS,CAAC;IACjB,8DAA8D;IACvD,WAAW,CAAC;IACnB;;;;OAIG;IACI,SAAS,CAAC;IApBnB;IACE,6CAA6C;IACtC,MAAM,EAAE,MAAM;IACrB,mDAAmD;IAC5C,MAAM,EAAE,QAAQ;IACvB,+EAA+E;IACxE,eAAe,EAAE,iBAAiB,GAAG,SAAS;IACrD,gDAAgD;IACzC,KAAK,EAAE,MAAM,GAAG,SAAS;IAChC,oDAAoD;IAC7C,cAAc,CAAC,oBAAQ;IAC9B,wDAAwD;IACjD,SAAS,CAAC,uBAAW;IAC5B,8DAA8D;IACvD,WAAW,CAAC,yBAAa;IAChC;;;;OAIG;IACI,SAAS,CAAC,wBAAY,EAC3B;IAEJ,iEAAiE;IACjE,qBAAqB,IAAI,OAAO,CAE/B;IAED,0DAA0D;IAC1D,oBAAoB,IAAI,OAAO,CAE9B;IAED,mHAAmH;IACnH,OAAO,IAAI,OAAO,CAOjB;IAED,kDAAkD;IAClD,SAAS,IAAI,OAAO,CAEnB;IAED,mDAAmD;IACnD,SAAS,IAAI,OAAO,CAEnB;IAED,MAAM,CAAC,KAAK,cAEX;IAED,MAAM,KAAK,MAAM,IAAI,MAAM,CAAC,SAAS,CAAC,CAarC;IAED,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE;QAClB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,QAAQ,CAAC;QACjB,eAAe,CAAC,EAAE,iBAAiB,CAAC;QACpC,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,SAAS,CAAC,EAAE,SAAS,CAAC;QACtB,WAAW,CAAC,EAAE,WAAW,CAAC;QAC1B,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;KACxB,aAWA;IAED,OAAc,6BAA6B,CAAC,UAAU,EAAE,UAAU,GAAG,iBAAiB,CAYrF;CACF"}
|
package/dest/tx/tx_receipt.js
CHANGED
|
@@ -2,6 +2,7 @@ import { BlockNumberSchema } from '@aztec/foundation/branded-types';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { RevertCode } from '../avm/revert_code.js';
|
|
4
4
|
import { BlockHash } from '../block/block_hash.js';
|
|
5
|
+
import { DebugLog } from '../logs/debug_log.js';
|
|
5
6
|
import { schemas } from '../schemas/schemas.js';
|
|
6
7
|
import { TxHash } from './tx_hash.js';
|
|
7
8
|
/** Block inclusion/finalization status. */ export var TxStatus = /*#__PURE__*/ function(TxStatus) {
|
|
@@ -41,7 +42,12 @@ import { TxHash } from './tx_hash.js';
|
|
|
41
42
|
transactionFee;
|
|
42
43
|
blockHash;
|
|
43
44
|
blockNumber;
|
|
44
|
-
|
|
45
|
+
debugLogs;
|
|
46
|
+
constructor(/** A unique identifier for a transaction. */ txHash, /** The transaction's block finalization status. */ status, /** The execution result of the transaction, only set when tx is in a block. */ executionResult, /** Description of transaction error, if any. */ error, /** The transaction fee paid for the transaction. */ transactionFee, /** The hash of the block containing the transaction. */ blockHash, /** The block number in which the transaction was included. */ blockNumber, /**
|
|
47
|
+
* Debug logs collected during public function execution. Served only when the node is in test mode and placed on
|
|
48
|
+
* the receipt only because it's a convenient place for it (the logs are printed out by the wallet when a mined
|
|
49
|
+
* tx receipt is obtained).
|
|
50
|
+
*/ debugLogs){
|
|
45
51
|
this.txHash = txHash;
|
|
46
52
|
this.status = status;
|
|
47
53
|
this.executionResult = executionResult;
|
|
@@ -49,6 +55,7 @@ import { TxHash } from './tx_hash.js';
|
|
|
49
55
|
this.transactionFee = transactionFee;
|
|
50
56
|
this.blockHash = blockHash;
|
|
51
57
|
this.blockNumber = blockNumber;
|
|
58
|
+
this.debugLogs = debugLogs;
|
|
52
59
|
}
|
|
53
60
|
/** Returns true if the transaction was executed successfully. */ hasExecutionSucceeded() {
|
|
54
61
|
return this.executionResult === "success";
|
|
@@ -76,11 +83,12 @@ import { TxHash } from './tx_hash.js';
|
|
|
76
83
|
error: z.string().optional(),
|
|
77
84
|
blockHash: BlockHash.schema.optional(),
|
|
78
85
|
blockNumber: BlockNumberSchema.optional(),
|
|
79
|
-
transactionFee: schemas.BigInt.optional()
|
|
86
|
+
transactionFee: schemas.BigInt.optional(),
|
|
87
|
+
debugLogs: z.array(DebugLog.schema).optional()
|
|
80
88
|
}).transform((fields)=>TxReceipt.from(fields));
|
|
81
89
|
}
|
|
82
90
|
static from(fields) {
|
|
83
|
-
return new TxReceipt(fields.txHash, fields.status, fields.executionResult, fields.error, fields.transactionFee, fields.blockHash, fields.blockNumber);
|
|
91
|
+
return new TxReceipt(fields.txHash, fields.status, fields.executionResult, fields.error, fields.transactionFee, fields.blockHash, fields.blockNumber, fields.debugLogs);
|
|
84
92
|
}
|
|
85
93
|
static executionResultFromRevertCode(revertCode) {
|
|
86
94
|
if (revertCode.equals(RevertCode.OK)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/stdlib",
|
|
3
|
-
"version": "0.0.1-commit.
|
|
3
|
+
"version": "0.0.1-commit.7b86788",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"inherits": [
|
|
6
6
|
"../package.common.json",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"./database-version/version": "./dest/database-version/database_version.js",
|
|
56
56
|
"./database-version/manager": "./dest/database-version/version_manager.js",
|
|
57
57
|
"./validators": "./dest/validators/index.js",
|
|
58
|
+
"./ha-signing": "./dest/ha-signing/index.js",
|
|
58
59
|
"./file-store": "./dest/file-store/index.js",
|
|
59
60
|
"./snapshots": "./dest/snapshots/index.js",
|
|
60
61
|
"./update-checker": "./dest/update-checker/index.js",
|
|
@@ -90,16 +91,15 @@
|
|
|
90
91
|
},
|
|
91
92
|
"dependencies": {
|
|
92
93
|
"@aws-sdk/client-s3": "^3.892.0",
|
|
93
|
-
"@aztec/bb.js": "0.0.1-commit.
|
|
94
|
-
"@aztec/blob-lib": "0.0.1-commit.
|
|
95
|
-
"@aztec/constants": "0.0.1-commit.
|
|
96
|
-
"@aztec/ethereum": "0.0.1-commit.
|
|
97
|
-
"@aztec/foundation": "0.0.1-commit.
|
|
98
|
-
"@aztec/l1-artifacts": "0.0.1-commit.
|
|
99
|
-
"@aztec/noir-noirc_abi": "0.0.1-commit.
|
|
100
|
-
"@aztec/validator-ha-signer": "0.0.1-commit.7ac86ea28",
|
|
94
|
+
"@aztec/bb.js": "0.0.1-commit.7b86788",
|
|
95
|
+
"@aztec/blob-lib": "0.0.1-commit.7b86788",
|
|
96
|
+
"@aztec/constants": "0.0.1-commit.7b86788",
|
|
97
|
+
"@aztec/ethereum": "0.0.1-commit.7b86788",
|
|
98
|
+
"@aztec/foundation": "0.0.1-commit.7b86788",
|
|
99
|
+
"@aztec/l1-artifacts": "0.0.1-commit.7b86788",
|
|
100
|
+
"@aztec/noir-noirc_abi": "0.0.1-commit.7b86788",
|
|
101
101
|
"@google-cloud/storage": "^7.15.0",
|
|
102
|
-
"axios": "^1.
|
|
102
|
+
"axios": "^1.13.5",
|
|
103
103
|
"json-stringify-deterministic": "1.0.12",
|
|
104
104
|
"lodash.chunk": "^4.2.0",
|
|
105
105
|
"lodash.isequal": "^4.5.0",
|
package/src/abi/decoder.ts
CHANGED
|
@@ -135,10 +135,7 @@ export class FunctionSignatureDecoder {
|
|
|
135
135
|
case 'field':
|
|
136
136
|
return 'Field';
|
|
137
137
|
case 'integer':
|
|
138
|
-
|
|
139
|
-
throw new Error('Unsupported type: signed integer');
|
|
140
|
-
}
|
|
141
|
-
return `u${param.width}`;
|
|
138
|
+
return param.sign === 'signed' ? `i${param.width}` : `u${param.width}`;
|
|
142
139
|
case 'boolean':
|
|
143
140
|
return 'bool';
|
|
144
141
|
case 'array':
|
package/src/abi/encoder.ts
CHANGED
|
@@ -123,14 +123,17 @@ class ArgumentEncoder {
|
|
|
123
123
|
}
|
|
124
124
|
break;
|
|
125
125
|
}
|
|
126
|
-
case 'integer':
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
126
|
+
case 'integer': {
|
|
127
|
+
const value = BigInt(arg);
|
|
128
|
+
if (abiType.sign === 'signed' && value < 0n) {
|
|
129
|
+
// Convert negative values to two's complement representation
|
|
130
|
+
const twosComplement = value + (1n << BigInt(abiType.width));
|
|
131
|
+
this.flattened.push(new Fr(twosComplement));
|
|
130
132
|
} else {
|
|
131
|
-
this.flattened.push(new Fr(
|
|
133
|
+
this.flattened.push(new Fr(value));
|
|
132
134
|
}
|
|
133
135
|
break;
|
|
136
|
+
}
|
|
134
137
|
default:
|
|
135
138
|
throw new Error(`Unsupported type: ${abiType.kind}`);
|
|
136
139
|
}
|
package/src/avm/revert_code.ts
CHANGED
|
@@ -5,10 +5,25 @@ import { BufferReader, FieldReader } from '@aztec/foundation/serialize';
|
|
|
5
5
|
import { inspect } from 'util';
|
|
6
6
|
import { z } from 'zod';
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* Tracks which revertible phases of a transaction's public execution reverted.
|
|
10
|
+
*
|
|
11
|
+
* A transaction executes in three sequential phases:
|
|
12
|
+
* 1. SETUP – non-revertible; if this fails the entire transaction is rejected.
|
|
13
|
+
* 2. APP_LOGIC – revertible; its state changes are rolled back on failure.
|
|
14
|
+
* 3. TEARDOWN – revertible; always runs (even after app-logic revert) so the fee-payment contract can clean up.
|
|
15
|
+
*
|
|
16
|
+
* Only APP_LOGIC and TEARDOWN can produce a revert code. SETUP failures throw instead and discard the transaction
|
|
17
|
+
* entirely.
|
|
18
|
+
*/
|
|
8
19
|
export enum RevertCodeEnum {
|
|
20
|
+
/** All phases completed successfully; no state was rolled back. */
|
|
9
21
|
OK = 0,
|
|
22
|
+
/** APP_LOGIC reverted; its state changes were discarded. If present, TEARDOWN still ran and succeeded. */
|
|
10
23
|
APP_LOGIC_REVERTED = 1,
|
|
24
|
+
/** TEARDOWN reverted; its state changes were discarded. APP_LOGIC succeeded. */
|
|
11
25
|
TEARDOWN_REVERTED = 2,
|
|
26
|
+
/** Both APP_LOGIC and TEARDOWN reverted; only SETUP effects are kept. */
|
|
12
27
|
BOTH_REVERTED = 3,
|
|
13
28
|
}
|
|
14
29
|
|
|
@@ -109,6 +109,27 @@ export class L2BlockStream {
|
|
|
109
109
|
|
|
110
110
|
let nextBlockNumber = latestBlockNumber + 1;
|
|
111
111
|
let nextCheckpointToEmit = CheckpointNumber(localTips.checkpointed.checkpoint.number + 1);
|
|
112
|
+
|
|
113
|
+
// When startingBlock is set, also skip ahead for checkpoints.
|
|
114
|
+
if (
|
|
115
|
+
this.opts.startingBlock !== undefined &&
|
|
116
|
+
this.opts.startingBlock >= 1 &&
|
|
117
|
+
nextCheckpointToEmit <= sourceTips.checkpointed.checkpoint.number
|
|
118
|
+
) {
|
|
119
|
+
const startingBlockCheckpoints = await this.l2BlockSource.getCheckpointedBlocks(
|
|
120
|
+
BlockNumber(this.opts.startingBlock),
|
|
121
|
+
1,
|
|
122
|
+
);
|
|
123
|
+
if (startingBlockCheckpoints.length > 0) {
|
|
124
|
+
nextCheckpointToEmit = CheckpointNumber(
|
|
125
|
+
Math.max(nextCheckpointToEmit, startingBlockCheckpoints[0].checkpointNumber),
|
|
126
|
+
);
|
|
127
|
+
} else {
|
|
128
|
+
// startingBlock is past all checkpointed blocks; skip Loop 1 entirely.
|
|
129
|
+
nextCheckpointToEmit = CheckpointNumber(sourceTips.checkpointed.checkpoint.number + 1);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
112
133
|
if (this.opts.skipFinalized) {
|
|
113
134
|
// When skipping finalized blocks we need to provide reliable reorg detection while fetching as few blocks as
|
|
114
135
|
// possible. Finalized blocks cannot be reorged by definition, so we can skip most of them. We do need the very
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import type { L1ContractAddresses } from '@aztec/ethereum/l1-contract-addresses';
|
|
2
|
+
import {
|
|
3
|
+
type ConfigMappingsType,
|
|
4
|
+
booleanConfigHelper,
|
|
5
|
+
getConfigFromMappings,
|
|
6
|
+
getDefaultConfig,
|
|
7
|
+
numberConfigHelper,
|
|
8
|
+
optionalNumberConfigHelper,
|
|
9
|
+
} from '@aztec/foundation/config';
|
|
10
|
+
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
11
|
+
import type { ZodFor } from '@aztec/foundation/schemas';
|
|
12
|
+
|
|
13
|
+
import { z } from 'zod';
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Configuration for the Validator HA Signer
|
|
17
|
+
*
|
|
18
|
+
* This config is used for distributed locking and slashing protection
|
|
19
|
+
* when running multiple validator nodes in a high-availability setup.
|
|
20
|
+
*/
|
|
21
|
+
export interface ValidatorHASignerConfig {
|
|
22
|
+
/** Whether HA signing / slashing protection is enabled */
|
|
23
|
+
haSigningEnabled: boolean;
|
|
24
|
+
/** L1 contract addresses (rollup address required) */
|
|
25
|
+
l1Contracts: Pick<L1ContractAddresses, 'rollupAddress'>;
|
|
26
|
+
/** Unique identifier for this node */
|
|
27
|
+
nodeId: string;
|
|
28
|
+
/** How long to wait between polls when a duty is being signed (ms) */
|
|
29
|
+
pollingIntervalMs: number;
|
|
30
|
+
/** Maximum time to wait for a duty being signed to complete (ms) */
|
|
31
|
+
signingTimeoutMs: number;
|
|
32
|
+
/** Maximum age of a stuck duty in ms (defaults to 2x hardcoded Aztec slot duration if not set) */
|
|
33
|
+
maxStuckDutiesAgeMs?: number;
|
|
34
|
+
/** Optional: clean up old duties after this many hours (disabled if not set) */
|
|
35
|
+
cleanupOldDutiesAfterHours?: number;
|
|
36
|
+
/**
|
|
37
|
+
* PostgreSQL connection string
|
|
38
|
+
* Format: postgresql://user:password@host:port/database
|
|
39
|
+
*/
|
|
40
|
+
databaseUrl?: string;
|
|
41
|
+
/**
|
|
42
|
+
* PostgreSQL connection pool configuration
|
|
43
|
+
*/
|
|
44
|
+
/** Maximum number of clients in the pool (default: 10) */
|
|
45
|
+
poolMaxCount?: number;
|
|
46
|
+
/** Minimum number of clients in the pool (default: 0) */
|
|
47
|
+
poolMinCount?: number;
|
|
48
|
+
/** Idle timeout in milliseconds (default: 10000) */
|
|
49
|
+
poolIdleTimeoutMs?: number;
|
|
50
|
+
/** Connection timeout in milliseconds (default: 0, no timeout) */
|
|
51
|
+
poolConnectionTimeoutMs?: number;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export const validatorHASignerConfigMappings: ConfigMappingsType<ValidatorHASignerConfig> = {
|
|
55
|
+
haSigningEnabled: {
|
|
56
|
+
env: 'VALIDATOR_HA_SIGNING_ENABLED',
|
|
57
|
+
description: 'Whether HA signing / slashing protection is enabled',
|
|
58
|
+
...booleanConfigHelper(false),
|
|
59
|
+
},
|
|
60
|
+
l1Contracts: {
|
|
61
|
+
description: 'L1 contract addresses (rollup address required)',
|
|
62
|
+
nested: {
|
|
63
|
+
rollupAddress: {
|
|
64
|
+
description: 'The Ethereum address of the rollup contract (must be set programmatically)',
|
|
65
|
+
parseEnv: (val: string) => EthAddress.fromString(val),
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
nodeId: {
|
|
70
|
+
env: 'VALIDATOR_HA_NODE_ID',
|
|
71
|
+
description: 'The unique identifier for this node',
|
|
72
|
+
defaultValue: '',
|
|
73
|
+
},
|
|
74
|
+
pollingIntervalMs: {
|
|
75
|
+
env: 'VALIDATOR_HA_POLLING_INTERVAL_MS',
|
|
76
|
+
description: 'The number of ms to wait between polls when a duty is being signed',
|
|
77
|
+
...numberConfigHelper(100),
|
|
78
|
+
},
|
|
79
|
+
signingTimeoutMs: {
|
|
80
|
+
env: 'VALIDATOR_HA_SIGNING_TIMEOUT_MS',
|
|
81
|
+
description: 'The maximum time to wait for a duty being signed to complete',
|
|
82
|
+
...numberConfigHelper(3_000),
|
|
83
|
+
},
|
|
84
|
+
maxStuckDutiesAgeMs: {
|
|
85
|
+
env: 'VALIDATOR_HA_MAX_STUCK_DUTIES_AGE_MS',
|
|
86
|
+
description: 'The maximum age of a stuck duty in ms (defaults to 2x Aztec slot duration)',
|
|
87
|
+
...optionalNumberConfigHelper(),
|
|
88
|
+
},
|
|
89
|
+
cleanupOldDutiesAfterHours: {
|
|
90
|
+
env: 'VALIDATOR_HA_OLD_DUTIES_MAX_AGE_H',
|
|
91
|
+
description: 'Optional: clean up old duties after this many hours (disabled if not set)',
|
|
92
|
+
...optionalNumberConfigHelper(),
|
|
93
|
+
},
|
|
94
|
+
databaseUrl: {
|
|
95
|
+
env: 'VALIDATOR_HA_DATABASE_URL',
|
|
96
|
+
description:
|
|
97
|
+
'PostgreSQL connection string for validator HA signer (format: postgresql://user:password@host:port/database)',
|
|
98
|
+
},
|
|
99
|
+
poolMaxCount: {
|
|
100
|
+
env: 'VALIDATOR_HA_POOL_MAX',
|
|
101
|
+
description: 'Maximum number of clients in the pool',
|
|
102
|
+
...numberConfigHelper(10),
|
|
103
|
+
},
|
|
104
|
+
poolMinCount: {
|
|
105
|
+
env: 'VALIDATOR_HA_POOL_MIN',
|
|
106
|
+
description: 'Minimum number of clients in the pool',
|
|
107
|
+
...numberConfigHelper(0),
|
|
108
|
+
},
|
|
109
|
+
poolIdleTimeoutMs: {
|
|
110
|
+
env: 'VALIDATOR_HA_POOL_IDLE_TIMEOUT_MS',
|
|
111
|
+
description: 'Idle timeout in milliseconds',
|
|
112
|
+
...numberConfigHelper(10_000),
|
|
113
|
+
},
|
|
114
|
+
poolConnectionTimeoutMs: {
|
|
115
|
+
env: 'VALIDATOR_HA_POOL_CONNECTION_TIMEOUT_MS',
|
|
116
|
+
description: 'Connection timeout in milliseconds (0 means no timeout)',
|
|
117
|
+
...numberConfigHelper(0),
|
|
118
|
+
},
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
export const defaultValidatorHASignerConfig: ValidatorHASignerConfig = getDefaultConfig(
|
|
122
|
+
validatorHASignerConfigMappings,
|
|
123
|
+
);
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Returns the validator HA signer configuration from environment variables.
|
|
127
|
+
* Note: If an environment variable is not set, the default value is used.
|
|
128
|
+
* @returns The validator HA signer configuration.
|
|
129
|
+
*/
|
|
130
|
+
export function getConfigEnvVars(): ValidatorHASignerConfig {
|
|
131
|
+
return getConfigFromMappings<ValidatorHASignerConfig>(validatorHASignerConfigMappings);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export const ValidatorHASignerConfigSchema = z.object({
|
|
135
|
+
haSigningEnabled: z.boolean(),
|
|
136
|
+
l1Contracts: z.object({
|
|
137
|
+
rollupAddress: z.instanceof(EthAddress),
|
|
138
|
+
}),
|
|
139
|
+
nodeId: z.string(),
|
|
140
|
+
pollingIntervalMs: z.number().min(0),
|
|
141
|
+
signingTimeoutMs: z.number().min(0),
|
|
142
|
+
maxStuckDutiesAgeMs: z.number().min(0).optional(),
|
|
143
|
+
cleanupOldDutiesAfterHours: z.number().min(0).optional(),
|
|
144
|
+
databaseUrl: z.string().optional(),
|
|
145
|
+
poolMaxCount: z.number().min(0).optional(),
|
|
146
|
+
poolMinCount: z.number().min(0).optional(),
|
|
147
|
+
poolIdleTimeoutMs: z.number().min(0).optional(),
|
|
148
|
+
poolConnectionTimeoutMs: z.number().min(0).optional(),
|
|
149
|
+
}) satisfies ZodFor<ValidatorHASignerConfig>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export {
|
|
2
|
+
type ValidatorHASignerConfig,
|
|
3
|
+
ValidatorHASignerConfigSchema,
|
|
4
|
+
defaultValidatorHASignerConfig,
|
|
5
|
+
getConfigEnvVars,
|
|
6
|
+
validatorHASignerConfigMappings,
|
|
7
|
+
} from './config.js';
|
|
8
|
+
export {
|
|
9
|
+
DutyType,
|
|
10
|
+
type BlockProposalSigningContext,
|
|
11
|
+
type HAProtectedSigningContext,
|
|
12
|
+
type NoHAProtectionSigningContext,
|
|
13
|
+
type OtherSigningContext,
|
|
14
|
+
type SigningContext,
|
|
15
|
+
type VoteSigningContext,
|
|
16
|
+
getBlockNumberFromSigningContext,
|
|
17
|
+
isHAProtectedContext,
|
|
18
|
+
} from './types.js';
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import {
|
|
2
|
+
BlockNumber,
|
|
3
|
+
type CheckpointNumber,
|
|
4
|
+
type IndexWithinCheckpoint,
|
|
5
|
+
type SlotNumber,
|
|
6
|
+
} from '@aztec/foundation/branded-types';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Type of validator duty being performed
|
|
10
|
+
*/
|
|
11
|
+
export enum DutyType {
|
|
12
|
+
BLOCK_PROPOSAL = 'BLOCK_PROPOSAL',
|
|
13
|
+
CHECKPOINT_PROPOSAL = 'CHECKPOINT_PROPOSAL',
|
|
14
|
+
ATTESTATION = 'ATTESTATION',
|
|
15
|
+
ATTESTATIONS_AND_SIGNERS = 'ATTESTATIONS_AND_SIGNERS',
|
|
16
|
+
GOVERNANCE_VOTE = 'GOVERNANCE_VOTE',
|
|
17
|
+
SLASHING_VOTE = 'SLASHING_VOTE',
|
|
18
|
+
AUTH_REQUEST = 'AUTH_REQUEST',
|
|
19
|
+
TXS = 'TXS',
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Base context for signing operations
|
|
24
|
+
*/
|
|
25
|
+
interface BaseSigningContext {
|
|
26
|
+
/** Slot number for this duty */
|
|
27
|
+
slot: SlotNumber;
|
|
28
|
+
/**
|
|
29
|
+
* Block or checkpoint number for this duty.
|
|
30
|
+
* For block proposals, this is the block number.
|
|
31
|
+
* For checkpoint proposals, this is the checkpoint number.
|
|
32
|
+
*/
|
|
33
|
+
blockNumber: BlockNumber | CheckpointNumber;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Signing context for block proposals.
|
|
38
|
+
* blockIndexWithinCheckpoint is REQUIRED and must be >= 0.
|
|
39
|
+
*/
|
|
40
|
+
export interface BlockProposalSigningContext extends BaseSigningContext {
|
|
41
|
+
/** Block index within checkpoint (0, 1, 2...). Required for block proposals. */
|
|
42
|
+
blockIndexWithinCheckpoint: IndexWithinCheckpoint;
|
|
43
|
+
dutyType: DutyType.BLOCK_PROPOSAL;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Signing context for non-block-proposal duties that require HA protection.
|
|
48
|
+
* blockIndexWithinCheckpoint is not applicable (internally always -1).
|
|
49
|
+
*/
|
|
50
|
+
export interface OtherSigningContext extends BaseSigningContext {
|
|
51
|
+
dutyType: DutyType.CHECKPOINT_PROPOSAL | DutyType.ATTESTATION | DutyType.ATTESTATIONS_AND_SIGNERS;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Signing context for governance/slashing votes which only need slot for HA protection.
|
|
56
|
+
* blockNumber is not applicable (internally always 0).
|
|
57
|
+
*/
|
|
58
|
+
export interface VoteSigningContext {
|
|
59
|
+
slot: SlotNumber;
|
|
60
|
+
dutyType: DutyType.GOVERNANCE_VOTE | DutyType.SLASHING_VOTE;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Signing context for duties which don't require slot/blockNumber
|
|
65
|
+
* as they don't need HA protection (AUTH_REQUEST, TXS).
|
|
66
|
+
*/
|
|
67
|
+
export interface NoHAProtectionSigningContext {
|
|
68
|
+
dutyType: DutyType.AUTH_REQUEST | DutyType.TXS;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Signing contexts that require HA protection (excludes AUTH_REQUEST).
|
|
73
|
+
* Used by the HA signer's signWithProtection method.
|
|
74
|
+
*/
|
|
75
|
+
export type HAProtectedSigningContext = BlockProposalSigningContext | OtherSigningContext | VoteSigningContext;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Context required for slashing protection during signing operations.
|
|
79
|
+
* Uses discriminated union to enforce type safety:
|
|
80
|
+
* - BLOCK_PROPOSAL duties MUST have blockIndexWithinCheckpoint >= 0
|
|
81
|
+
* - Other duty types do NOT have blockIndexWithinCheckpoint (internally -1)
|
|
82
|
+
* - Vote duties only need slot (blockNumber is internally 0)
|
|
83
|
+
* - AUTH_REQUEST and TXS duties don't need slot/blockNumber (no HA protection needed)
|
|
84
|
+
*/
|
|
85
|
+
export type SigningContext = HAProtectedSigningContext | NoHAProtectionSigningContext;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Type guard to check if a SigningContext requires HA protection.
|
|
89
|
+
* Returns true for contexts that need HA protection, false for AUTH_REQUEST and TXS.
|
|
90
|
+
*/
|
|
91
|
+
export function isHAProtectedContext(context: SigningContext): context is HAProtectedSigningContext {
|
|
92
|
+
return context.dutyType !== DutyType.AUTH_REQUEST && context.dutyType !== DutyType.TXS;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Gets the block number from a signing context.
|
|
97
|
+
* - Vote duties (GOVERNANCE_VOTE, SLASHING_VOTE): returns BlockNumber(0)
|
|
98
|
+
* - Other duties: returns the blockNumber from the context
|
|
99
|
+
*/
|
|
100
|
+
export function getBlockNumberFromSigningContext(context: HAProtectedSigningContext): BlockNumber | CheckpointNumber {
|
|
101
|
+
// Check for duty types that have blockNumber
|
|
102
|
+
if (
|
|
103
|
+
context.dutyType === DutyType.BLOCK_PROPOSAL ||
|
|
104
|
+
context.dutyType === DutyType.CHECKPOINT_PROPOSAL ||
|
|
105
|
+
context.dutyType === DutyType.ATTESTATION ||
|
|
106
|
+
context.dutyType === DutyType.ATTESTATIONS_AND_SIGNERS
|
|
107
|
+
) {
|
|
108
|
+
return context.blockNumber;
|
|
109
|
+
}
|
|
110
|
+
// Vote duties (GOVERNANCE_VOTE, SLASHING_VOTE) don't have blockNumber
|
|
111
|
+
return BlockNumber(0);
|
|
112
|
+
}
|
package/src/interfaces/p2p.ts
CHANGED
|
@@ -3,7 +3,6 @@ import type { SlotNumber } from '@aztec/foundation/branded-types';
|
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
import { CheckpointAttestation } from '../p2p/checkpoint_attestation.js';
|
|
6
|
-
import type { P2PClientType } from '../p2p/client_type.js';
|
|
7
6
|
import { type ApiSchemaFor, optional, schemas } from '../schemas/index.js';
|
|
8
7
|
import { Tx } from '../tx/tx.js';
|
|
9
8
|
import { TxHash } from '../tx/tx_hash.js';
|
|
@@ -27,7 +26,7 @@ const PeerInfoSchema = z.discriminatedUnion('status', [
|
|
|
27
26
|
]);
|
|
28
27
|
|
|
29
28
|
/** Exposed API to the P2P module. */
|
|
30
|
-
export interface
|
|
29
|
+
export interface P2PApi {
|
|
31
30
|
/**
|
|
32
31
|
* Returns all pending transactions in the transaction pool.
|
|
33
32
|
* @param limit - The number of items to returns
|
|
@@ -48,9 +47,7 @@ export interface P2PApiWithoutAttestations {
|
|
|
48
47
|
* Returns info for all connected, dialing, and cached peers.
|
|
49
48
|
*/
|
|
50
49
|
getPeers(includePending?: boolean): Promise<PeerInfo[]>;
|
|
51
|
-
}
|
|
52
50
|
|
|
53
|
-
export interface P2PApiWithAttestations extends P2PApiWithoutAttestations {
|
|
54
51
|
/**
|
|
55
52
|
* Queries the Attestation pool for checkpoint attestations for the given slot
|
|
56
53
|
*
|
|
@@ -61,19 +58,11 @@ export interface P2PApiWithAttestations extends P2PApiWithoutAttestations {
|
|
|
61
58
|
getCheckpointAttestationsForSlot(slot: SlotNumber, proposalId?: string): Promise<CheckpointAttestation[]>;
|
|
62
59
|
}
|
|
63
60
|
|
|
64
|
-
export interface P2PClient extends
|
|
61
|
+
export interface P2PClient extends P2PApi {
|
|
65
62
|
/** Manually adds checkpoint attestations to the p2p client attestation pool. */
|
|
66
63
|
addOwnCheckpointAttestations(attestations: CheckpointAttestation[]): Promise<void>;
|
|
67
64
|
}
|
|
68
65
|
|
|
69
|
-
export type P2PApi<T extends P2PClientType = P2PClientType.Full> = T extends P2PClientType.Full
|
|
70
|
-
? P2PApiWithAttestations
|
|
71
|
-
: P2PApiWithoutAttestations;
|
|
72
|
-
|
|
73
|
-
export type P2PApiFull<T extends P2PClientType = P2PClientType.Full> = T extends P2PClientType.Full
|
|
74
|
-
? P2PApiWithAttestations & P2PClient
|
|
75
|
-
: P2PApiWithoutAttestations;
|
|
76
|
-
|
|
77
66
|
export const P2PApiSchema: ApiSchemaFor<P2PApi> = {
|
|
78
67
|
getCheckpointAttestationsForSlot: z
|
|
79
68
|
.function()
|
|
@@ -15,12 +15,12 @@ import type {
|
|
|
15
15
|
} from '@aztec/stdlib/p2p';
|
|
16
16
|
import type { CheckpointHeader } from '@aztec/stdlib/rollup';
|
|
17
17
|
import type { BlockHeader, Tx } from '@aztec/stdlib/tx';
|
|
18
|
-
import { type ValidatorHASignerConfig, ValidatorHASignerConfigSchema } from '@aztec/validator-ha-signer/config';
|
|
19
18
|
|
|
20
19
|
import type { PeerId } from '@libp2p/interface';
|
|
21
20
|
import { z } from 'zod';
|
|
22
21
|
|
|
23
22
|
import type { CommitteeAttestationsAndSigners } from '../block/index.js';
|
|
23
|
+
import { type ValidatorHASignerConfig, ValidatorHASignerConfigSchema } from '../ha-signing/index.js';
|
|
24
24
|
import { AllowedElementSchema } from './allowed_element.js';
|
|
25
25
|
|
|
26
26
|
/**
|
|
@@ -11,7 +11,6 @@ import type { ScopedNoteHash } from '../note_hash.js';
|
|
|
11
11
|
import { NoteHashReadRequestHintsBuilder } from './note_hash_read_request_hints.js';
|
|
12
12
|
import type { ScopedReadRequest } from './read_request.js';
|
|
13
13
|
import { PendingReadHint, ReadRequestActionEnum, ReadRequestResetActions } from './read_request_hints.js';
|
|
14
|
-
import { ScopedValueCache } from './scoped_value_cache.js';
|
|
15
14
|
|
|
16
15
|
export function isValidNoteHashReadRequest(readRequest: ScopedReadRequest, noteHash: ScopedNoteHash) {
|
|
17
16
|
return (
|
|
@@ -24,7 +23,6 @@ export function isValidNoteHashReadRequest(readRequest: ScopedReadRequest, noteH
|
|
|
24
23
|
export function getNoteHashReadRequestResetActions(
|
|
25
24
|
noteHashReadRequests: ClaimedLengthArray<ScopedReadRequest, typeof MAX_NOTE_HASH_READ_REQUESTS_PER_TX>,
|
|
26
25
|
noteHashes: ClaimedLengthArray<ScopedNoteHash, typeof MAX_NOTE_HASHES_PER_TX>,
|
|
27
|
-
futureNoteHashes: ScopedNoteHash[],
|
|
28
26
|
): ReadRequestResetActions<typeof MAX_NOTE_HASH_READ_REQUESTS_PER_TX> {
|
|
29
27
|
const resetActions = ReadRequestResetActions.empty(MAX_NOTE_HASH_READ_REQUESTS_PER_TX);
|
|
30
28
|
|
|
@@ -36,24 +34,23 @@ export function getNoteHashReadRequestResetActions(
|
|
|
36
34
|
noteHashMap.set(value, arr);
|
|
37
35
|
});
|
|
38
36
|
|
|
39
|
-
const futureNoteHashMap = new ScopedValueCache(futureNoteHashes);
|
|
40
|
-
|
|
41
37
|
for (let i = 0; i < noteHashReadRequests.claimedLength; ++i) {
|
|
42
38
|
const readRequest = noteHashReadRequests.array[i];
|
|
43
39
|
|
|
44
|
-
|
|
45
|
-
.
|
|
46
|
-
?.find(n => isValidNoteHashReadRequest(readRequest, n.noteHash));
|
|
47
|
-
|
|
48
|
-
if (pendingNoteHash !== undefined) {
|
|
49
|
-
resetActions.actions[i] = ReadRequestActionEnum.READ_AS_PENDING;
|
|
50
|
-
resetActions.pendingReadHints.push(new PendingReadHint(i, pendingNoteHash.index));
|
|
51
|
-
} else if (
|
|
52
|
-
!futureNoteHashMap
|
|
53
|
-
.get(readRequest)
|
|
54
|
-
.find(futureNoteHash => isValidNoteHashReadRequest(readRequest, futureNoteHash))
|
|
55
|
-
) {
|
|
40
|
+
if (readRequest.contractAddress.isZero()) {
|
|
41
|
+
// Settled read: empty contract address means resolve against the note hash tree.
|
|
56
42
|
resetActions.actions[i] = ReadRequestActionEnum.READ_AS_SETTLED;
|
|
43
|
+
} else {
|
|
44
|
+
// Pending read: non-empty contract address means match against a pending note hash.
|
|
45
|
+
const pendingNoteHash = noteHashMap
|
|
46
|
+
.get(readRequest.value.toBigInt())
|
|
47
|
+
?.find(n => isValidNoteHashReadRequest(readRequest, n.noteHash));
|
|
48
|
+
|
|
49
|
+
if (pendingNoteHash) {
|
|
50
|
+
resetActions.actions[i] = ReadRequestActionEnum.READ_AS_PENDING;
|
|
51
|
+
resetActions.pendingReadHints.push(new PendingReadHint(i, pendingNoteHash.index));
|
|
52
|
+
}
|
|
53
|
+
// Otherwise, the read request may be resolved by a future note hash. Leave as NOOP.
|
|
57
54
|
}
|
|
58
55
|
}
|
|
59
56
|
|
|
@@ -115,11 +112,10 @@ export async function buildNoteHashReadRequestHints<PENDING extends number, SETT
|
|
|
115
112
|
},
|
|
116
113
|
noteHashReadRequests: ClaimedLengthArray<ScopedReadRequest, typeof MAX_NOTE_HASH_READ_REQUESTS_PER_TX>,
|
|
117
114
|
noteHashes: ClaimedLengthArray<ScopedNoteHash, typeof MAX_NOTE_HASHES_PER_TX>,
|
|
118
|
-
futureNoteHashes: ScopedNoteHash[],
|
|
119
115
|
maxPending: PENDING = MAX_NOTE_HASH_READ_REQUESTS_PER_TX as PENDING,
|
|
120
116
|
maxSettled: SETTLED = MAX_NOTE_HASH_READ_REQUESTS_PER_TX as SETTLED,
|
|
121
117
|
) {
|
|
122
|
-
const resetActions = getNoteHashReadRequestResetActions(noteHashReadRequests, noteHashes
|
|
118
|
+
const resetActions = getNoteHashReadRequestResetActions(noteHashReadRequests, noteHashes);
|
|
123
119
|
return await buildNoteHashReadRequestHintsFromResetActions(
|
|
124
120
|
oracle,
|
|
125
121
|
noteHashReadRequests,
|
|
@@ -12,7 +12,6 @@ import type { ScopedNullifier } from '../nullifier.js';
|
|
|
12
12
|
import { NullifierReadRequestHintsBuilder } from './nullifier_read_request_hints.js';
|
|
13
13
|
import { ScopedReadRequest } from './read_request.js';
|
|
14
14
|
import { PendingReadHint, ReadRequestActionEnum, ReadRequestResetActions } from './read_request_hints.js';
|
|
15
|
-
import { ScopedValueCache } from './scoped_value_cache.js';
|
|
16
15
|
|
|
17
16
|
export function isValidNullifierReadRequest(readRequest: ScopedReadRequest, nullifier: ScopedNullifier) {
|
|
18
17
|
return (
|
|
@@ -30,7 +29,6 @@ interface NullifierMembershipWitnessWithPreimage {
|
|
|
30
29
|
export function getNullifierReadRequestResetActions(
|
|
31
30
|
nullifierReadRequests: ClaimedLengthArray<ScopedReadRequest, typeof MAX_NULLIFIER_READ_REQUESTS_PER_TX>,
|
|
32
31
|
nullifiers: ClaimedLengthArray<ScopedNullifier, typeof MAX_NULLIFIERS_PER_TX>,
|
|
33
|
-
futureNullifiers: ScopedNullifier[],
|
|
34
32
|
): ReadRequestResetActions<typeof MAX_NULLIFIER_READ_REQUESTS_PER_TX> {
|
|
35
33
|
const resetActions = ReadRequestResetActions.empty(MAX_NULLIFIER_READ_REQUESTS_PER_TX);
|
|
36
34
|
|
|
@@ -42,23 +40,23 @@ export function getNullifierReadRequestResetActions(
|
|
|
42
40
|
nullifierMap.set(value, arr);
|
|
43
41
|
});
|
|
44
42
|
|
|
45
|
-
const futureNullifiersMap = new ScopedValueCache(futureNullifiers);
|
|
46
|
-
|
|
47
43
|
for (let i = 0; i < nullifierReadRequests.claimedLength; ++i) {
|
|
48
44
|
const readRequest = nullifierReadRequests.array[i];
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
if (pendingNullifier !== undefined) {
|
|
54
|
-
resetActions.actions[i] = ReadRequestActionEnum.READ_AS_PENDING;
|
|
55
|
-
resetActions.pendingReadHints.push(new PendingReadHint(i, pendingNullifier.index));
|
|
56
|
-
} else if (
|
|
57
|
-
!futureNullifiersMap
|
|
58
|
-
.get(readRequest)
|
|
59
|
-
.some(futureNullifier => isValidNullifierReadRequest(readRequest, futureNullifier))
|
|
60
|
-
) {
|
|
45
|
+
|
|
46
|
+
if (readRequest.contractAddress.isZero()) {
|
|
47
|
+
// Settled read: empty contract address means resolve against the nullifier tree.
|
|
61
48
|
resetActions.actions[i] = ReadRequestActionEnum.READ_AS_SETTLED;
|
|
49
|
+
} else {
|
|
50
|
+
// Pending read: non-empty contract address means match against a pending nullifier.
|
|
51
|
+
const pendingNullifier = nullifierMap
|
|
52
|
+
.get(readRequest.value.toBigInt())
|
|
53
|
+
?.find(({ nullifier }) => isValidNullifierReadRequest(readRequest, nullifier));
|
|
54
|
+
|
|
55
|
+
if (pendingNullifier) {
|
|
56
|
+
resetActions.actions[i] = ReadRequestActionEnum.READ_AS_PENDING;
|
|
57
|
+
resetActions.pendingReadHints.push(new PendingReadHint(i, pendingNullifier.index));
|
|
58
|
+
}
|
|
59
|
+
// Otherwise, the read request may be resolved by a future nullifier. Leave as NOOP.
|
|
62
60
|
}
|
|
63
61
|
}
|
|
64
62
|
|
|
@@ -111,11 +109,10 @@ export async function buildNullifierReadRequestHints<PENDING extends number, SET
|
|
|
111
109
|
},
|
|
112
110
|
nullifierReadRequests: ClaimedLengthArray<ScopedReadRequest, typeof MAX_NULLIFIER_READ_REQUESTS_PER_TX>,
|
|
113
111
|
nullifiers: ClaimedLengthArray<ScopedNullifier, typeof MAX_NULLIFIERS_PER_TX>,
|
|
114
|
-
futureNullifiers: ScopedNullifier[],
|
|
115
112
|
maxPending: PENDING = MAX_NULLIFIER_READ_REQUESTS_PER_TX as PENDING,
|
|
116
113
|
maxSettled: SETTLED = MAX_NULLIFIER_READ_REQUESTS_PER_TX as SETTLED,
|
|
117
114
|
) {
|
|
118
|
-
const resetActions = getNullifierReadRequestResetActions(nullifierReadRequests, nullifiers
|
|
115
|
+
const resetActions = getNullifierReadRequestResetActions(nullifierReadRequests, nullifiers);
|
|
119
116
|
return await buildNullifierReadRequestHintsFromResetActions(
|
|
120
117
|
oracle,
|
|
121
118
|
nullifierReadRequests,
|