@aztec/aztec-node 0.77.0-testnet-ignition.26 → 0.77.0-testnet-ignition.28
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/aztec-node/server.js +1 -1
- package/package.json +19 -19
- package/src/aztec-node/server.ts +1 -1
- package/dest/aztec-node/config.d.ts +0 -32
- package/dest/aztec-node/config.d.ts.map +0 -1
- package/dest/aztec-node/http_rpc_server.d.ts +0 -8
- package/dest/aztec-node/http_rpc_server.d.ts.map +0 -1
- package/dest/aztec-node/node_metrics.d.ts +0 -8
- package/dest/aztec-node/node_metrics.d.ts.map +0 -1
- package/dest/aztec-node/server.d.ts +0 -303
- package/dest/aztec-node/server.d.ts.map +0 -1
- package/dest/bin/index.d.ts +0 -3
- package/dest/bin/index.d.ts.map +0 -1
- package/dest/index.d.ts +0 -4
- package/dest/index.d.ts.map +0 -1
|
@@ -584,7 +584,7 @@ import { NodeMetrics } from './node_metrics.js';
|
|
|
584
584
|
* @param slot - Slot to query.
|
|
585
585
|
* @param blockNumber - The block number at which to get the data or 'latest'.
|
|
586
586
|
* @returns Storage value at the given contract slot.
|
|
587
|
-
*/ async getPublicStorageAt(contract, slot
|
|
587
|
+
*/ async getPublicStorageAt(blockNumber, contract, slot) {
|
|
588
588
|
const committedDb = await this.#getWorldState(blockNumber);
|
|
589
589
|
const leafSlot = await computePublicDataTreeLeafSlot(contract, slot);
|
|
590
590
|
const lowLeafResult = await committedDb.getPreviousValueIndex(MerkleTreeId.PUBLIC_DATA_TREE, leafSlot.toBigInt());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/aztec-node",
|
|
3
|
-
"version": "0.77.0-testnet-ignition.
|
|
3
|
+
"version": "0.77.0-testnet-ignition.28",
|
|
4
4
|
"main": "dest/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -62,24 +62,24 @@
|
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@aztec/archiver": "0.77.0-testnet-ignition.
|
|
66
|
-
"@aztec/bb-prover": "0.77.0-testnet-ignition.
|
|
67
|
-
"@aztec/blob-sink": "0.77.0-testnet-ignition.
|
|
68
|
-
"@aztec/constants": "0.77.0-testnet-ignition.
|
|
69
|
-
"@aztec/epoch-cache": "0.77.0-testnet-ignition.
|
|
70
|
-
"@aztec/ethereum": "0.77.0-testnet-ignition.
|
|
71
|
-
"@aztec/foundation": "0.77.0-testnet-ignition.
|
|
72
|
-
"@aztec/kv-store": "0.77.0-testnet-ignition.
|
|
73
|
-
"@aztec/merkle-tree": "0.77.0-testnet-ignition.
|
|
74
|
-
"@aztec/p2p": "0.77.0-testnet-ignition.
|
|
75
|
-
"@aztec/protocol-contracts": "0.77.0-testnet-ignition.
|
|
76
|
-
"@aztec/prover-client": "0.77.0-testnet-ignition.
|
|
77
|
-
"@aztec/sequencer-client": "0.77.0-testnet-ignition.
|
|
78
|
-
"@aztec/simulator": "0.77.0-testnet-ignition.
|
|
79
|
-
"@aztec/stdlib": "0.77.0-testnet-ignition.
|
|
80
|
-
"@aztec/telemetry-client": "0.77.0-testnet-ignition.
|
|
81
|
-
"@aztec/validator-client": "0.77.0-testnet-ignition.
|
|
82
|
-
"@aztec/world-state": "0.77.0-testnet-ignition.
|
|
65
|
+
"@aztec/archiver": "0.77.0-testnet-ignition.28",
|
|
66
|
+
"@aztec/bb-prover": "0.77.0-testnet-ignition.28",
|
|
67
|
+
"@aztec/blob-sink": "0.77.0-testnet-ignition.28",
|
|
68
|
+
"@aztec/constants": "0.77.0-testnet-ignition.28",
|
|
69
|
+
"@aztec/epoch-cache": "0.77.0-testnet-ignition.28",
|
|
70
|
+
"@aztec/ethereum": "0.77.0-testnet-ignition.28",
|
|
71
|
+
"@aztec/foundation": "0.77.0-testnet-ignition.28",
|
|
72
|
+
"@aztec/kv-store": "0.77.0-testnet-ignition.28",
|
|
73
|
+
"@aztec/merkle-tree": "0.77.0-testnet-ignition.28",
|
|
74
|
+
"@aztec/p2p": "0.77.0-testnet-ignition.28",
|
|
75
|
+
"@aztec/protocol-contracts": "0.77.0-testnet-ignition.28",
|
|
76
|
+
"@aztec/prover-client": "0.77.0-testnet-ignition.28",
|
|
77
|
+
"@aztec/sequencer-client": "0.77.0-testnet-ignition.28",
|
|
78
|
+
"@aztec/simulator": "0.77.0-testnet-ignition.28",
|
|
79
|
+
"@aztec/stdlib": "0.77.0-testnet-ignition.28",
|
|
80
|
+
"@aztec/telemetry-client": "0.77.0-testnet-ignition.28",
|
|
81
|
+
"@aztec/validator-client": "0.77.0-testnet-ignition.28",
|
|
82
|
+
"@aztec/world-state": "0.77.0-testnet-ignition.28",
|
|
83
83
|
"koa": "^2.14.2",
|
|
84
84
|
"koa-router": "^12.0.0",
|
|
85
85
|
"tslib": "^2.4.0"
|
package/src/aztec-node/server.ts
CHANGED
|
@@ -814,7 +814,7 @@ export class AztecNodeService implements AztecNode, Traceable {
|
|
|
814
814
|
* @param blockNumber - The block number at which to get the data or 'latest'.
|
|
815
815
|
* @returns Storage value at the given contract slot.
|
|
816
816
|
*/
|
|
817
|
-
public async getPublicStorageAt(contract: AztecAddress, slot: Fr
|
|
817
|
+
public async getPublicStorageAt(blockNumber: L2BlockNumber, contract: AztecAddress, slot: Fr): Promise<Fr> {
|
|
818
818
|
const committedDb = await this.#getWorldState(blockNumber);
|
|
819
819
|
const leafSlot = await computePublicDataTreeLeafSlot(contract, slot);
|
|
820
820
|
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { type ArchiverConfig } from '@aztec/archiver/config';
|
|
2
|
-
import { type ConfigMappingsType } from '@aztec/foundation/config';
|
|
3
|
-
import { type DataStoreConfig } from '@aztec/kv-store/config';
|
|
4
|
-
import { type P2PConfig } from '@aztec/p2p/config';
|
|
5
|
-
import { type ProverClientConfig } from '@aztec/prover-client/config';
|
|
6
|
-
import { type SequencerClientConfig, sequencerClientConfigMappings } from '@aztec/sequencer-client/config';
|
|
7
|
-
import { type ValidatorClientConfig } from '@aztec/validator-client/config';
|
|
8
|
-
import { type WorldStateConfig } from '@aztec/world-state/config';
|
|
9
|
-
export { sequencerClientConfigMappings, type SequencerClientConfig };
|
|
10
|
-
/**
|
|
11
|
-
* The configuration the aztec node.
|
|
12
|
-
*/
|
|
13
|
-
export type AztecNodeConfig = ArchiverConfig & SequencerClientConfig & ValidatorClientConfig & ProverClientConfig & WorldStateConfig & Pick<ProverClientConfig, 'bbBinaryPath' | 'bbWorkingDirectory' | 'realProofs'> & P2PConfig & DataStoreConfig & {
|
|
14
|
-
/** Whether the validator is disabled for this node */
|
|
15
|
-
disableValidator: boolean;
|
|
16
|
-
/** Whether to populate the genesis state with initial fee juice for the test accounts */
|
|
17
|
-
testAccounts: boolean;
|
|
18
|
-
};
|
|
19
|
-
export declare const aztecNodeConfigMappings: ConfigMappingsType<AztecNodeConfig>;
|
|
20
|
-
/**
|
|
21
|
-
* Returns the config of the aztec node from environment variables with reasonable defaults.
|
|
22
|
-
* @returns A valid aztec node config.
|
|
23
|
-
*/
|
|
24
|
-
export declare function getConfigEnvVars(): AztecNodeConfig;
|
|
25
|
-
/**
|
|
26
|
-
* Returns package name and version.
|
|
27
|
-
*/
|
|
28
|
-
export declare function getPackageInfo(): {
|
|
29
|
-
version: any;
|
|
30
|
-
name: any;
|
|
31
|
-
};
|
|
32
|
-
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/aztec-node/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAA0B,MAAM,wBAAwB,CAAC;AACrF,OAAO,EAAE,KAAK,kBAAkB,EAA8C,MAAM,0BAA0B,CAAC;AAC/G,OAAO,EAAE,KAAK,eAAe,EAAsB,MAAM,wBAAwB,CAAC;AAClF,OAAO,EAAE,KAAK,SAAS,EAAqB,MAAM,mBAAmB,CAAC;AACtE,OAAO,EAAE,KAAK,kBAAkB,EAA8B,MAAM,6BAA6B,CAAC;AAClG,OAAO,EAAE,KAAK,qBAAqB,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAC3G,OAAO,EAAE,KAAK,qBAAqB,EAAiC,MAAM,gCAAgC,CAAC;AAC3G,OAAO,EAAE,KAAK,gBAAgB,EAA4B,MAAM,2BAA2B,CAAC;AAM5F,OAAO,EAAE,6BAA6B,EAAE,KAAK,qBAAqB,EAAE,CAAC;AAErE;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,cAAc,GAC1C,qBAAqB,GACrB,qBAAqB,GACrB,kBAAkB,GAClB,gBAAgB,GAChB,IAAI,CAAC,kBAAkB,EAAE,cAAc,GAAG,oBAAoB,GAAG,YAAY,CAAC,GAC9E,SAAS,GACT,eAAe,GAAG;IAChB,sDAAsD;IACtD,gBAAgB,EAAE,OAAO,CAAC;IAC1B,yFAAyF;IACzF,YAAY,EAAE,OAAO,CAAC;CACvB,CAAC;AAEJ,eAAO,MAAM,uBAAuB,EAAE,kBAAkB,CAAC,eAAe,CAkBvE,CAAC;AAEF;;;GAGG;AACH,wBAAgB,gBAAgB,IAAI,eAAe,CAElD;AAED;;GAEG;AACH,wBAAgB,cAAc;;;EAI7B"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { type AztecNode } from '@aztec/stdlib/interfaces/client';
|
|
2
|
-
/**
|
|
3
|
-
* Wrap an AztecNode instance with a JSON RPC HTTP server.
|
|
4
|
-
* @param node - The AztecNode
|
|
5
|
-
* @returns An JSON-RPC HTTP server
|
|
6
|
-
*/
|
|
7
|
-
export declare function createAztecNodeRpcServer(node: AztecNode): import("@aztec/foundation/json-rpc/server").SafeJsonRpcServer;
|
|
8
|
-
//# sourceMappingURL=http_rpc_server.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"http_rpc_server.d.ts","sourceRoot":"","sources":["../../src/aztec-node/http_rpc_server.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAsB,MAAM,iCAAiC,CAAC;AAGrF;;;;GAIG;AACH,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,SAAS,iEAEvD"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { type TelemetryClient } from '@aztec/telemetry-client';
|
|
2
|
-
export declare class NodeMetrics {
|
|
3
|
-
private receiveTxCount;
|
|
4
|
-
private receiveTxDuration;
|
|
5
|
-
constructor(client: TelemetryClient, name?: string);
|
|
6
|
-
receivedTx(durationMs: number, isAccepted: boolean): void;
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=node_metrics.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"node_metrics.d.ts","sourceRoot":"","sources":["../../src/aztec-node/node_metrics.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,eAAe,EAGrB,MAAM,yBAAyB,CAAC;AAEjC,qBAAa,WAAW;IACtB,OAAO,CAAC,cAAc,CAAgB;IACtC,OAAO,CAAC,iBAAiB,CAAY;gBAEzB,MAAM,EAAE,eAAe,EAAE,IAAI,SAAc;IAUvD,UAAU,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO;CAQnD"}
|
|
@@ -1,303 +0,0 @@
|
|
|
1
|
-
import { type BlobSinkClientInterface } from '@aztec/blob-sink/client';
|
|
2
|
-
import { type ARCHIVE_HEIGHT, type L1_TO_L2_MSG_TREE_HEIGHT, type NOTE_HASH_TREE_HEIGHT, type NULLIFIER_TREE_HEIGHT, type PUBLIC_DATA_TREE_HEIGHT } from '@aztec/constants';
|
|
3
|
-
import { type L1ContractAddresses } from '@aztec/ethereum';
|
|
4
|
-
import { Fr } from '@aztec/foundation/fields';
|
|
5
|
-
import { type Logger } from '@aztec/foundation/log';
|
|
6
|
-
import { DateProvider } from '@aztec/foundation/timer';
|
|
7
|
-
import { SiblingPath } from '@aztec/foundation/trees';
|
|
8
|
-
import { type P2P } from '@aztec/p2p';
|
|
9
|
-
import { GlobalVariableBuilder, SequencerClient, type SequencerPublisher } from '@aztec/sequencer-client';
|
|
10
|
-
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
11
|
-
import type { InBlock, L2Block, L2BlockNumber, L2BlockSource, NullifierWithBlockSource } from '@aztec/stdlib/block';
|
|
12
|
-
import type { ContractClassPublic, ContractDataSource, ContractInstanceWithAddress, NodeInfo, ProtocolContractAddresses } from '@aztec/stdlib/contract';
|
|
13
|
-
import type { GasFees } from '@aztec/stdlib/gas';
|
|
14
|
-
import type { AztecNode, GetContractClassLogsResponse, GetPublicLogsResponse } from '@aztec/stdlib/interfaces/client';
|
|
15
|
-
import { type ClientProtocolCircuitVerifier, type L2LogsSource, type ProverConfig, type SequencerConfig, type Service, type WorldStateSyncStatus, type WorldStateSynchronizer } from '@aztec/stdlib/interfaces/server';
|
|
16
|
-
import type { LogFilter, PrivateLog, TxScopedL2Log } from '@aztec/stdlib/logs';
|
|
17
|
-
import type { L1ToL2MessageSource } from '@aztec/stdlib/messaging';
|
|
18
|
-
import { MerkleTreeId, NullifierMembershipWitness, PublicDataWitness } from '@aztec/stdlib/trees';
|
|
19
|
-
import type { PublicDataTreeLeaf } from '@aztec/stdlib/trees';
|
|
20
|
-
import { type BlockHeader, PublicSimulationOutput, Tx, TxEffect, type TxHash, TxReceipt, type TxValidationResult } from '@aztec/stdlib/tx';
|
|
21
|
-
import { type TelemetryClient, type Traceable, type Tracer } from '@aztec/telemetry-client';
|
|
22
|
-
import { type AztecNodeConfig } from './config.js';
|
|
23
|
-
/**
|
|
24
|
-
* The aztec node.
|
|
25
|
-
*/
|
|
26
|
-
export declare class AztecNodeService implements AztecNode, Traceable {
|
|
27
|
-
#private;
|
|
28
|
-
protected config: AztecNodeConfig;
|
|
29
|
-
protected readonly p2pClient: P2P;
|
|
30
|
-
protected readonly blockSource: L2BlockSource & Partial<Service>;
|
|
31
|
-
protected readonly logsSource: L2LogsSource;
|
|
32
|
-
protected readonly contractDataSource: ContractDataSource;
|
|
33
|
-
protected readonly l1ToL2MessageSource: L1ToL2MessageSource;
|
|
34
|
-
protected readonly nullifierSource: NullifierWithBlockSource;
|
|
35
|
-
protected readonly worldStateSynchronizer: WorldStateSynchronizer;
|
|
36
|
-
protected readonly sequencer: SequencerClient | undefined;
|
|
37
|
-
protected readonly l1ChainId: number;
|
|
38
|
-
protected readonly version: number;
|
|
39
|
-
protected readonly globalVariableBuilder: GlobalVariableBuilder;
|
|
40
|
-
private proofVerifier;
|
|
41
|
-
private telemetry;
|
|
42
|
-
private log;
|
|
43
|
-
private packageVersion;
|
|
44
|
-
private metrics;
|
|
45
|
-
readonly tracer: Tracer;
|
|
46
|
-
constructor(config: AztecNodeConfig, p2pClient: P2P, blockSource: L2BlockSource & Partial<Service>, logsSource: L2LogsSource, contractDataSource: ContractDataSource, l1ToL2MessageSource: L1ToL2MessageSource, nullifierSource: NullifierWithBlockSource, worldStateSynchronizer: WorldStateSynchronizer, sequencer: SequencerClient | undefined, l1ChainId: number, version: number, globalVariableBuilder: GlobalVariableBuilder, proofVerifier: ClientProtocolCircuitVerifier, telemetry?: TelemetryClient, log?: Logger);
|
|
47
|
-
getWorldStateSyncStatus(): Promise<WorldStateSyncStatus>;
|
|
48
|
-
getL2Tips(): Promise<import("@aztec/stdlib/block").L2Tips>;
|
|
49
|
-
/**
|
|
50
|
-
* initializes the Aztec Node, wait for component to sync.
|
|
51
|
-
* @param config - The configuration to be used by the aztec node.
|
|
52
|
-
* @returns - A fully synced Aztec Node for use in development/testing.
|
|
53
|
-
*/
|
|
54
|
-
static createAndSync(config: AztecNodeConfig, deps?: {
|
|
55
|
-
telemetry?: TelemetryClient;
|
|
56
|
-
logger?: Logger;
|
|
57
|
-
publisher?: SequencerPublisher;
|
|
58
|
-
dateProvider?: DateProvider;
|
|
59
|
-
blobSinkClient?: BlobSinkClientInterface;
|
|
60
|
-
}, options?: {
|
|
61
|
-
prefilledPublicData?: PublicDataTreeLeaf[];
|
|
62
|
-
}): Promise<AztecNodeService>;
|
|
63
|
-
/**
|
|
64
|
-
* Returns the sequencer client instance.
|
|
65
|
-
* @returns The sequencer client instance.
|
|
66
|
-
*/
|
|
67
|
-
getSequencer(): SequencerClient | undefined;
|
|
68
|
-
getBlockSource(): L2BlockSource;
|
|
69
|
-
getContractDataSource(): ContractDataSource;
|
|
70
|
-
getP2P(): P2P;
|
|
71
|
-
/**
|
|
72
|
-
* Method to return the currently deployed L1 contract addresses.
|
|
73
|
-
* @returns - The currently deployed L1 contract addresses.
|
|
74
|
-
*/
|
|
75
|
-
getL1ContractAddresses(): Promise<L1ContractAddresses>;
|
|
76
|
-
getEncodedEnr(): Promise<string | undefined>;
|
|
77
|
-
/**
|
|
78
|
-
* Method to determine if the node is ready to accept transactions.
|
|
79
|
-
* @returns - Flag indicating the readiness for tx submission.
|
|
80
|
-
*/
|
|
81
|
-
isReady(): Promise<boolean>;
|
|
82
|
-
getNodeInfo(): Promise<NodeInfo>;
|
|
83
|
-
/**
|
|
84
|
-
* Get a block specified by its number.
|
|
85
|
-
* @param number - The block number being requested.
|
|
86
|
-
* @returns The requested block.
|
|
87
|
-
*/
|
|
88
|
-
getBlock(number: number): Promise<L2Block | undefined>;
|
|
89
|
-
/**
|
|
90
|
-
* Method to request blocks. Will attempt to return all requested blocks but will return only those available.
|
|
91
|
-
* @param from - The start of the range of blocks to return.
|
|
92
|
-
* @param limit - The maximum number of blocks to obtain.
|
|
93
|
-
* @returns The blocks requested.
|
|
94
|
-
*/
|
|
95
|
-
getBlocks(from: number, limit: number): Promise<L2Block[]>;
|
|
96
|
-
/**
|
|
97
|
-
* Method to fetch the current base fees.
|
|
98
|
-
* @returns The current base fees.
|
|
99
|
-
*/
|
|
100
|
-
getCurrentBaseFees(): Promise<GasFees>;
|
|
101
|
-
/**
|
|
102
|
-
* Method to fetch the current block number.
|
|
103
|
-
* @returns The block number.
|
|
104
|
-
*/
|
|
105
|
-
getBlockNumber(): Promise<number>;
|
|
106
|
-
getProvenBlockNumber(): Promise<number>;
|
|
107
|
-
/**
|
|
108
|
-
* Method to fetch the version of the package.
|
|
109
|
-
* @returns The node package version
|
|
110
|
-
*/
|
|
111
|
-
getNodeVersion(): Promise<string>;
|
|
112
|
-
/**
|
|
113
|
-
* Method to fetch the version of the rollup the node is connected to.
|
|
114
|
-
* @returns The rollup version.
|
|
115
|
-
*/
|
|
116
|
-
getVersion(): Promise<number>;
|
|
117
|
-
/**
|
|
118
|
-
* Method to fetch the chain id of the base-layer for the rollup.
|
|
119
|
-
* @returns The chain id.
|
|
120
|
-
*/
|
|
121
|
-
getChainId(): Promise<number>;
|
|
122
|
-
getContractClass(id: Fr): Promise<ContractClassPublic | undefined>;
|
|
123
|
-
getContract(address: AztecAddress): Promise<ContractInstanceWithAddress | undefined>;
|
|
124
|
-
/**
|
|
125
|
-
* Retrieves all private logs from up to `limit` blocks, starting from the block number `from`.
|
|
126
|
-
* @param from - The block number from which to begin retrieving logs.
|
|
127
|
-
* @param limit - The maximum number of blocks to retrieve logs from.
|
|
128
|
-
* @returns An array of private logs from the specified range of blocks.
|
|
129
|
-
*/
|
|
130
|
-
getPrivateLogs(from: number, limit: number): Promise<PrivateLog[]>;
|
|
131
|
-
/**
|
|
132
|
-
* Gets all logs that match any of the received tags (i.e. logs with their first field equal to a tag).
|
|
133
|
-
* @param tags - The tags to filter the logs by.
|
|
134
|
-
* @returns For each received tag, an array of matching logs is returned. An empty array implies no logs match
|
|
135
|
-
* that tag.
|
|
136
|
-
*/
|
|
137
|
-
getLogsByTags(tags: Fr[]): Promise<TxScopedL2Log[][]>;
|
|
138
|
-
/**
|
|
139
|
-
* Gets public logs based on the provided filter.
|
|
140
|
-
* @param filter - The filter to apply to the logs.
|
|
141
|
-
* @returns The requested logs.
|
|
142
|
-
*/
|
|
143
|
-
getPublicLogs(filter: LogFilter): Promise<GetPublicLogsResponse>;
|
|
144
|
-
/**
|
|
145
|
-
* Gets contract class logs based on the provided filter.
|
|
146
|
-
* @param filter - The filter to apply to the logs.
|
|
147
|
-
* @returns The requested logs.
|
|
148
|
-
*/
|
|
149
|
-
getContractClassLogs(filter: LogFilter): Promise<GetContractClassLogsResponse>;
|
|
150
|
-
/**
|
|
151
|
-
* Method to submit a transaction to the p2p pool.
|
|
152
|
-
* @param tx - The transaction to be submitted.
|
|
153
|
-
*/
|
|
154
|
-
sendTx(tx: Tx): Promise<void>;
|
|
155
|
-
getTxReceipt(txHash: TxHash): Promise<TxReceipt>;
|
|
156
|
-
getTxEffect(txHash: TxHash): Promise<InBlock<TxEffect> | undefined>;
|
|
157
|
-
/**
|
|
158
|
-
* Method to stop the aztec node.
|
|
159
|
-
*/
|
|
160
|
-
stop(): Promise<void>;
|
|
161
|
-
/**
|
|
162
|
-
* Method to retrieve pending txs.
|
|
163
|
-
* @returns - The pending txs.
|
|
164
|
-
*/
|
|
165
|
-
getPendingTxs(): Promise<Tx[]>;
|
|
166
|
-
getPendingTxCount(): Promise<number>;
|
|
167
|
-
/**
|
|
168
|
-
* Method to retrieve a single tx from the mempool or unfinalised chain.
|
|
169
|
-
* @param txHash - The transaction hash to return.
|
|
170
|
-
* @returns - The tx if it exists.
|
|
171
|
-
*/
|
|
172
|
-
getTxByHash(txHash: TxHash): Promise<Tx | undefined>;
|
|
173
|
-
/**
|
|
174
|
-
* Method to retrieve txs from the mempool or unfinalised chain.
|
|
175
|
-
* @param txHash - The transaction hash to return.
|
|
176
|
-
* @returns - The txs if it exists.
|
|
177
|
-
*/
|
|
178
|
-
getTxsByHash(txHashes: TxHash[]): Promise<Tx[]>;
|
|
179
|
-
/**
|
|
180
|
-
* Find the indexes of the given leaves in the given tree.
|
|
181
|
-
* @param blockNumber - The block number at which to get the data or 'latest' for latest data
|
|
182
|
-
* @param treeId - The tree to search in.
|
|
183
|
-
* @param leafValue - The values to search for
|
|
184
|
-
* @returns The indexes of the given leaves in the given tree or undefined if not found.
|
|
185
|
-
*/
|
|
186
|
-
findLeavesIndexes(blockNumber: L2BlockNumber, treeId: MerkleTreeId, leafValues: Fr[]): Promise<(bigint | undefined)[]>;
|
|
187
|
-
/**
|
|
188
|
-
* Find the block numbers of the given leaf indices in the given tree.
|
|
189
|
-
* @param blockNumber - The block number at which to get the data or 'latest' for latest data
|
|
190
|
-
* @param treeId - The tree to search in.
|
|
191
|
-
* @param leafIndices - The values to search for
|
|
192
|
-
* @returns The indexes of the given leaves in the given tree or undefined if not found.
|
|
193
|
-
*/
|
|
194
|
-
findBlockNumbersForIndexes(blockNumber: L2BlockNumber, treeId: MerkleTreeId, leafIndices: bigint[]): Promise<(bigint | undefined)[]>;
|
|
195
|
-
findNullifiersIndexesWithBlock(blockNumber: L2BlockNumber, nullifiers: Fr[]): Promise<(InBlock<bigint> | undefined)[]>;
|
|
196
|
-
/**
|
|
197
|
-
* Returns a sibling path for the given index in the nullifier tree.
|
|
198
|
-
* @param blockNumber - The block number at which to get the data.
|
|
199
|
-
* @param leafIndex - The index of the leaf for which the sibling path is required.
|
|
200
|
-
* @returns The sibling path for the leaf index.
|
|
201
|
-
*/
|
|
202
|
-
getNullifierSiblingPath(blockNumber: L2BlockNumber, leafIndex: bigint): Promise<SiblingPath<typeof NULLIFIER_TREE_HEIGHT>>;
|
|
203
|
-
/**
|
|
204
|
-
* Returns a sibling path for the given index in the data tree.
|
|
205
|
-
* @param blockNumber - The block number at which to get the data.
|
|
206
|
-
* @param leafIndex - The index of the leaf for which the sibling path is required.
|
|
207
|
-
* @returns The sibling path for the leaf index.
|
|
208
|
-
*/
|
|
209
|
-
getNoteHashSiblingPath(blockNumber: L2BlockNumber, leafIndex: bigint): Promise<SiblingPath<typeof NOTE_HASH_TREE_HEIGHT>>;
|
|
210
|
-
/**
|
|
211
|
-
* Returns the index and a sibling path for a leaf in the committed l1 to l2 data tree.
|
|
212
|
-
* @param blockNumber - The block number at which to get the data.
|
|
213
|
-
* @param l1ToL2Message - The l1ToL2Message to get the index / sibling path for.
|
|
214
|
-
* @returns A tuple of the index and the sibling path of the L1ToL2Message (undefined if not found).
|
|
215
|
-
*/
|
|
216
|
-
getL1ToL2MessageMembershipWitness(blockNumber: L2BlockNumber, l1ToL2Message: Fr): Promise<[bigint, SiblingPath<typeof L1_TO_L2_MSG_TREE_HEIGHT>] | undefined>;
|
|
217
|
-
/**
|
|
218
|
-
* Returns whether an L1 to L2 message is synced by archiver and if it's ready to be included in a block.
|
|
219
|
-
* @param l1ToL2Message - The L1 to L2 message to check.
|
|
220
|
-
* @returns Whether the message is synced and ready to be included in a block.
|
|
221
|
-
*/
|
|
222
|
-
isL1ToL2MessageSynced(l1ToL2Message: Fr): Promise<boolean>;
|
|
223
|
-
/**
|
|
224
|
-
* Returns the index of a l2ToL1Message in a ephemeral l2 to l1 data tree as well as its sibling path.
|
|
225
|
-
* @remarks This tree is considered ephemeral because it is created on-demand by: taking all the l2ToL1 messages
|
|
226
|
-
* in a single block, and then using them to make a variable depth append-only tree with these messages as leaves.
|
|
227
|
-
* The tree is discarded immediately after calculating what we need from it.
|
|
228
|
-
* TODO: Handle the case where two messages in the same tx have the same hash.
|
|
229
|
-
* @param blockNumber - The block number at which to get the data.
|
|
230
|
-
* @param l2ToL1Message - The l2ToL1Message get the index / sibling path for.
|
|
231
|
-
* @returns A tuple of the index and the sibling path of the L2ToL1Message.
|
|
232
|
-
*/
|
|
233
|
-
getL2ToL1MessageMembershipWitness(blockNumber: L2BlockNumber, l2ToL1Message: Fr): Promise<[bigint, SiblingPath<number>]>;
|
|
234
|
-
/**
|
|
235
|
-
* Returns a sibling path for a leaf in the committed blocks tree.
|
|
236
|
-
* @param blockNumber - The block number at which to get the data.
|
|
237
|
-
* @param leafIndex - Index of the leaf in the tree.
|
|
238
|
-
* @returns The sibling path.
|
|
239
|
-
*/
|
|
240
|
-
getArchiveSiblingPath(blockNumber: L2BlockNumber, leafIndex: bigint): Promise<SiblingPath<typeof ARCHIVE_HEIGHT>>;
|
|
241
|
-
/**
|
|
242
|
-
* Returns a sibling path for a leaf in the committed public data tree.
|
|
243
|
-
* @param blockNumber - The block number at which to get the data.
|
|
244
|
-
* @param leafIndex - Index of the leaf in the tree.
|
|
245
|
-
* @returns The sibling path.
|
|
246
|
-
*/
|
|
247
|
-
getPublicDataSiblingPath(blockNumber: L2BlockNumber, leafIndex: bigint): Promise<SiblingPath<typeof PUBLIC_DATA_TREE_HEIGHT>>;
|
|
248
|
-
/**
|
|
249
|
-
* Returns a nullifier membership witness for a given nullifier at a given block.
|
|
250
|
-
* @param blockNumber - The block number at which to get the index.
|
|
251
|
-
* @param nullifier - Nullifier we try to find witness for.
|
|
252
|
-
* @returns The nullifier membership witness (if found).
|
|
253
|
-
*/
|
|
254
|
-
getNullifierMembershipWitness(blockNumber: L2BlockNumber, nullifier: Fr): Promise<NullifierMembershipWitness | undefined>;
|
|
255
|
-
/**
|
|
256
|
-
* Returns a low nullifier membership witness for a given nullifier at a given block.
|
|
257
|
-
* @param blockNumber - The block number at which to get the index.
|
|
258
|
-
* @param nullifier - Nullifier we try to find the low nullifier witness for.
|
|
259
|
-
* @returns The low nullifier membership witness (if found).
|
|
260
|
-
* @remarks Low nullifier witness can be used to perform a nullifier non-inclusion proof by leveraging the "linked
|
|
261
|
-
* list structure" of leaves and proving that a lower nullifier is pointing to a bigger next value than the nullifier
|
|
262
|
-
* we are trying to prove non-inclusion for.
|
|
263
|
-
*
|
|
264
|
-
* Note: This function returns the membership witness of the nullifier itself and not the low nullifier when
|
|
265
|
-
* the nullifier already exists in the tree. This is because the `getPreviousValueIndex` function returns the
|
|
266
|
-
* index of the nullifier itself when it already exists in the tree.
|
|
267
|
-
* TODO: This is a confusing behavior and we should eventually address that.
|
|
268
|
-
*/
|
|
269
|
-
getLowNullifierMembershipWitness(blockNumber: L2BlockNumber, nullifier: Fr): Promise<NullifierMembershipWitness | undefined>;
|
|
270
|
-
getPublicDataTreeWitness(blockNumber: L2BlockNumber, leafSlot: Fr): Promise<PublicDataWitness | undefined>;
|
|
271
|
-
/**
|
|
272
|
-
* Gets the storage value at the given contract storage slot.
|
|
273
|
-
*
|
|
274
|
-
* @remarks The storage slot here refers to the slot as it is defined in Noir not the index in the merkle tree.
|
|
275
|
-
* Aztec's version of `eth_getStorageAt`.
|
|
276
|
-
*
|
|
277
|
-
* @param contract - Address of the contract to query.
|
|
278
|
-
* @param slot - Slot to query.
|
|
279
|
-
* @param blockNumber - The block number at which to get the data or 'latest'.
|
|
280
|
-
* @returns Storage value at the given contract slot.
|
|
281
|
-
*/
|
|
282
|
-
getPublicStorageAt(contract: AztecAddress, slot: Fr, blockNumber: L2BlockNumber): Promise<Fr>;
|
|
283
|
-
/**
|
|
284
|
-
* Returns the currently committed block header, or the initial header if no blocks have been produced.
|
|
285
|
-
* @returns The current committed block header.
|
|
286
|
-
*/
|
|
287
|
-
getBlockHeader(blockNumber?: L2BlockNumber): Promise<BlockHeader | undefined>;
|
|
288
|
-
/**
|
|
289
|
-
* Simulates the public part of a transaction with the current state.
|
|
290
|
-
* @param tx - The transaction to simulate.
|
|
291
|
-
**/
|
|
292
|
-
simulatePublicCalls(tx: Tx, skipFeeEnforcement?: boolean): Promise<PublicSimulationOutput>;
|
|
293
|
-
isValidTx(tx: Tx, { isSimulation, skipFeeEnforcement }?: {
|
|
294
|
-
isSimulation?: boolean;
|
|
295
|
-
skipFeeEnforcement?: boolean;
|
|
296
|
-
}): Promise<TxValidationResult>;
|
|
297
|
-
setConfig(config: Partial<SequencerConfig & ProverConfig>): Promise<void>;
|
|
298
|
-
getProtocolContractAddresses(): Promise<ProtocolContractAddresses>;
|
|
299
|
-
addContractClass(contractClass: ContractClassPublic): Promise<void>;
|
|
300
|
-
registerContractFunctionSignatures(_address: AztecAddress, signatures: string[]): Promise<void>;
|
|
301
|
-
flushTxs(): Promise<void>;
|
|
302
|
-
}
|
|
303
|
-
//# sourceMappingURL=server.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/aztec-node/server.ts"],"names":[],"mappings":"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"}
|
package/dest/bin/index.d.ts
DELETED
package/dest/bin/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/bin/index.ts"],"names":[],"mappings":""}
|
package/dest/index.d.ts
DELETED
package/dest/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC"}
|