@aztec/epoch-cache 3.0.0-nightly.20251026 → 3.0.0-nightly.20251031
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/epoch_cache.d.ts +1 -1
- package/dest/epoch_cache.js +1 -1
- package/package.json +5 -5
- package/src/epoch_cache.ts +1 -1
package/dest/epoch_cache.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ export declare class EpochCache implements EpochCacheInterface {
|
|
|
97
97
|
nextProposer: EthAddress | undefined;
|
|
98
98
|
}>;
|
|
99
99
|
/**
|
|
100
|
-
* Get the proposer attester address in the
|
|
100
|
+
* Get the proposer attester address in the given L2 slot
|
|
101
101
|
* @returns The proposer attester address. If the committee does not exist, we throw a NoCommitteeError.
|
|
102
102
|
* If the committee is empty (i.e. target committee size is 0, and anyone can propose), we return undefined.
|
|
103
103
|
*/
|
package/dest/epoch_cache.js
CHANGED
|
@@ -201,7 +201,7 @@ import { getEpochCacheConfigEnvVars } from './config.js';
|
|
|
201
201
|
};
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
|
-
* Get the proposer attester address in the
|
|
204
|
+
* Get the proposer attester address in the given L2 slot
|
|
205
205
|
* @returns The proposer attester address. If the committee does not exist, we throw a NoCommitteeError.
|
|
206
206
|
* If the committee is empty (i.e. target committee size is 0, and anyone can propose), we return undefined.
|
|
207
207
|
*/ getProposerAttesterAddressInSlot(slot) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/epoch-cache",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251031",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"../package.common.json"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
30
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
31
|
-
"@aztec/l1-artifacts": "3.0.0-nightly.
|
|
32
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
29
|
+
"@aztec/ethereum": "3.0.0-nightly.20251031",
|
|
30
|
+
"@aztec/foundation": "3.0.0-nightly.20251031",
|
|
31
|
+
"@aztec/l1-artifacts": "3.0.0-nightly.20251031",
|
|
32
|
+
"@aztec/stdlib": "3.0.0-nightly.20251031",
|
|
33
33
|
"@viem/anvil": "^0.0.10",
|
|
34
34
|
"dotenv": "^16.0.3",
|
|
35
35
|
"get-port": "^7.1.0",
|
package/src/epoch_cache.ts
CHANGED
|
@@ -244,7 +244,7 @@ export class EpochCache implements EpochCacheInterface {
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
/**
|
|
247
|
-
* Get the proposer attester address in the
|
|
247
|
+
* Get the proposer attester address in the given L2 slot
|
|
248
248
|
* @returns The proposer attester address. If the committee does not exist, we throw a NoCommitteeError.
|
|
249
249
|
* If the committee is empty (i.e. target committee size is 0, and anyone can propose), we return undefined.
|
|
250
250
|
*/
|