@aztec/slasher 0.0.1-commit.c31f2472 → 0.0.1-commit.c52d6e7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/README.md +90 -76
  2. package/dest/config.d.ts +1 -1
  3. package/dest/config.d.ts.map +1 -1
  4. package/dest/config.js +41 -29
  5. package/dest/factory/create_facade.d.ts +7 -4
  6. package/dest/factory/create_facade.d.ts.map +1 -1
  7. package/dest/factory/create_facade.js +29 -3
  8. package/dest/factory/create_implementation.d.ts +7 -7
  9. package/dest/factory/create_implementation.d.ts.map +1 -1
  10. package/dest/factory/create_implementation.js +8 -56
  11. package/dest/factory/get_settings.d.ts +4 -4
  12. package/dest/factory/get_settings.d.ts.map +1 -1
  13. package/dest/factory/get_settings.js +3 -3
  14. package/dest/factory/index.d.ts +2 -2
  15. package/dest/factory/index.d.ts.map +1 -1
  16. package/dest/factory/index.js +1 -1
  17. package/dest/generated/slasher-defaults.d.ts +8 -6
  18. package/dest/generated/slasher-defaults.d.ts.map +1 -1
  19. package/dest/generated/slasher-defaults.js +7 -5
  20. package/dest/index.d.ts +6 -4
  21. package/dest/index.d.ts.map +1 -1
  22. package/dest/index.js +5 -3
  23. package/dest/metrics.d.ts +23 -0
  24. package/dest/metrics.d.ts.map +1 -0
  25. package/dest/metrics.js +38 -0
  26. package/dest/null_slasher_client.d.ts +3 -4
  27. package/dest/null_slasher_client.d.ts.map +1 -1
  28. package/dest/null_slasher_client.js +1 -4
  29. package/dest/own_validator_slash_monitor.d.ts +66 -0
  30. package/dest/own_validator_slash_monitor.d.ts.map +1 -0
  31. package/dest/own_validator_slash_monitor.js +163 -0
  32. package/dest/slash_offenses_collector.d.ts +10 -9
  33. package/dest/slash_offenses_collector.d.ts.map +1 -1
  34. package/dest/slash_offenses_collector.js +50 -34
  35. package/dest/slasher_client.d.ts +118 -0
  36. package/dest/slasher_client.d.ts.map +1 -0
  37. package/dest/{tally_slasher_client.js → slasher_client.js} +64 -48
  38. package/dest/slasher_client_facade.d.ts +8 -8
  39. package/dest/slasher_client_facade.d.ts.map +1 -1
  40. package/dest/slasher_client_facade.js +8 -9
  41. package/dest/slasher_client_interface.d.ts +7 -21
  42. package/dest/slasher_client_interface.d.ts.map +1 -1
  43. package/dest/slasher_client_interface.js +1 -4
  44. package/dest/stores/offenses_store.d.ts +12 -12
  45. package/dest/stores/offenses_store.d.ts.map +1 -1
  46. package/dest/stores/offenses_store.js +64 -39
  47. package/dest/watcher.d.ts +8 -1
  48. package/dest/watcher.d.ts.map +1 -1
  49. package/dest/watcher.js +1 -0
  50. package/dest/watchers/attestations_block_watcher.d.ts +26 -13
  51. package/dest/watchers/attestations_block_watcher.d.ts.map +1 -1
  52. package/dest/watchers/attestations_block_watcher.js +76 -61
  53. package/dest/watchers/attested_invalid_proposal_watcher.d.ts +42 -0
  54. package/dest/watchers/attested_invalid_proposal_watcher.d.ts.map +1 -0
  55. package/dest/watchers/attested_invalid_proposal_watcher.js +117 -0
  56. package/dest/watchers/broadcasted_invalid_checkpoint_proposal_watcher.d.ts +38 -0
  57. package/dest/watchers/broadcasted_invalid_checkpoint_proposal_watcher.d.ts.map +1 -0
  58. package/dest/watchers/broadcasted_invalid_checkpoint_proposal_watcher.js +138 -0
  59. package/dest/watchers/checkpoint_equivocation_watcher.d.ts +30 -0
  60. package/dest/watchers/checkpoint_equivocation_watcher.d.ts.map +1 -0
  61. package/dest/watchers/checkpoint_equivocation_watcher.js +69 -0
  62. package/dest/watchers/data_withholding_watcher.d.ts +63 -0
  63. package/dest/watchers/data_withholding_watcher.d.ts.map +1 -0
  64. package/dest/watchers/data_withholding_watcher.js +193 -0
  65. package/package.json +10 -10
  66. package/src/config.ts +48 -29
  67. package/src/factory/create_facade.ts +37 -5
  68. package/src/factory/create_implementation.ts +29 -105
  69. package/src/factory/get_settings.ts +8 -8
  70. package/src/factory/index.ts +1 -1
  71. package/src/generated/slasher-defaults.ts +7 -5
  72. package/src/index.ts +5 -3
  73. package/src/metrics.ts +59 -0
  74. package/src/null_slasher_client.ts +2 -6
  75. package/src/own_validator_slash_monitor.ts +184 -0
  76. package/src/slash_offenses_collector.ts +70 -36
  77. package/src/{tally_slasher_client.ts → slasher_client.ts} +85 -57
  78. package/src/slasher_client_facade.ts +9 -11
  79. package/src/slasher_client_interface.ts +6 -21
  80. package/src/stores/offenses_store.ts +76 -48
  81. package/src/watcher.ts +8 -0
  82. package/src/watchers/attestations_block_watcher.ts +88 -82
  83. package/src/watchers/attested_invalid_proposal_watcher.ts +168 -0
  84. package/src/watchers/broadcasted_invalid_checkpoint_proposal_watcher.ts +192 -0
  85. package/src/watchers/checkpoint_equivocation_watcher.ts +96 -0
  86. package/src/watchers/data_withholding_watcher.ts +225 -0
  87. package/dest/empire_slasher_client.d.ts +0 -190
  88. package/dest/empire_slasher_client.d.ts.map +0 -1
  89. package/dest/empire_slasher_client.js +0 -572
  90. package/dest/stores/payloads_store.d.ts +0 -29
  91. package/dest/stores/payloads_store.d.ts.map +0 -1
  92. package/dest/stores/payloads_store.js +0 -125
  93. package/dest/tally_slasher_client.d.ts +0 -125
  94. package/dest/tally_slasher_client.d.ts.map +0 -1
  95. package/dest/watchers/epoch_prune_watcher.d.ts +0 -38
  96. package/dest/watchers/epoch_prune_watcher.d.ts.map +0 -1
  97. package/dest/watchers/epoch_prune_watcher.js +0 -158
  98. package/src/empire_slasher_client.ts +0 -657
  99. package/src/stores/payloads_store.ts +0 -146
  100. package/src/watchers/epoch_prune_watcher.ts +0 -221
@@ -1,15 +1,27 @@
1
+ import type { SlotNumber } from '@aztec/foundation/branded-types';
1
2
  import { createLogger } from '@aztec/foundation/log';
3
+ import { SerialQueue } from '@aztec/foundation/queue';
2
4
  import type { Prettify } from '@aztec/foundation/types';
3
5
  import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
4
6
  import type { SlasherConfig } from '@aztec/stdlib/interfaces/server';
5
- import { type Offense, type OffenseIdentifier, getSlotForOffense } from '@aztec/stdlib/slashing';
7
+ import { type Offense, getOffenseTypeName, getSlotForOffense } from '@aztec/stdlib/slashing';
6
8
 
7
9
  import type { SlasherOffensesStore } from './stores/offenses_store.js';
8
- import { WANT_TO_SLASH_EVENT, type WantToSlashArgs, type Watcher } from './watcher.js';
10
+ import {
11
+ WANT_TO_CLEAR_SLASH_EVENT,
12
+ WANT_TO_SLASH_EVENT,
13
+ type WantToClearSlashArgs,
14
+ type WantToSlashArgs,
15
+ type Watcher,
16
+ } from './watcher.js';
9
17
 
10
18
  export type SlashOffensesCollectorConfig = Prettify<Pick<SlasherConfig, 'slashGracePeriodL2Slots'>>;
11
19
  export type SlashOffensesCollectorSettings = Prettify<
12
- Pick<L1RollupConstants, 'epochDuration'> & { slashingAmounts: [bigint, bigint, bigint] | undefined }
20
+ Pick<L1RollupConstants, 'epochDuration'> & {
21
+ slashingAmounts: [bigint, bigint, bigint] | undefined;
22
+ /** L2 slot at which the rollup was registered as canonical in the Registry. Used to anchor the slash grace period. */
23
+ rollupRegisteredAtL2Slot: SlotNumber;
24
+ }
13
25
  >;
14
26
 
15
27
  /**
@@ -19,6 +31,7 @@ export type SlashOffensesCollectorSettings = Prettify<
19
31
  */
20
32
  export class SlashOffensesCollector {
21
33
  private readonly unwatchCallbacks: (() => void)[] = [];
34
+ private readonly storeMutationQueue = new SerialQueue();
22
35
 
23
36
  constructor(
24
37
  private readonly config: SlashOffensesCollectorConfig,
@@ -30,28 +43,35 @@ export class SlashOffensesCollector {
30
43
 
31
44
  public start() {
32
45
  this.log.debug('Starting SlashOffensesCollector...');
46
+ this.storeMutationQueue.start();
33
47
 
34
- // Subscribe to watchers WANT_TO_SLASH_EVENT
48
+ // Subscribe to watcher slashing events.
35
49
  for (const watcher of this.watchers) {
36
50
  const wantToSlashCallback = (args: WantToSlashArgs[]) =>
37
- void this.handleWantToSlash(args).catch(err => this.log.error('Error handling wantToSlash', err));
51
+ this.enqueueStoreMutation('wantToSlash', () => this.handleWantToSlash(args));
38
52
  watcher.on(WANT_TO_SLASH_EVENT, wantToSlashCallback);
39
53
  this.unwatchCallbacks.push(() => watcher.removeListener(WANT_TO_SLASH_EVENT, wantToSlashCallback));
54
+
55
+ const wantToClearSlashCallback = (args: WantToClearSlashArgs[]) =>
56
+ this.enqueueStoreMutation('wantToClearSlash', () => this.handleWantToClearSlash(args));
57
+ watcher.on(WANT_TO_CLEAR_SLASH_EVENT, wantToClearSlashCallback);
58
+ this.unwatchCallbacks.push(() => watcher.removeListener(WANT_TO_CLEAR_SLASH_EVENT, wantToClearSlashCallback));
40
59
  }
41
60
 
42
61
  this.log.info('Started SlashOffensesCollector');
43
62
  return Promise.resolve();
44
63
  }
45
64
 
46
- public stop() {
65
+ public async stop() {
47
66
  this.log.debug('Stopping SlashOffensesCollector...');
48
67
 
49
68
  for (const unwatchCallback of this.unwatchCallbacks) {
50
69
  unwatchCallback();
51
70
  }
52
71
 
72
+ await this.storeMutationQueue.end();
73
+
53
74
  this.log.info('SlashOffensesCollector stopped');
54
- return Promise.resolve();
55
75
  }
56
76
 
57
77
  /**
@@ -61,36 +81,47 @@ export class SlashOffensesCollector {
61
81
  */
62
82
  public async handleWantToSlash(args: WantToSlashArgs[]) {
63
83
  for (const arg of args) {
64
- const pendingOffense: Offense = {
84
+ const offense: Offense = {
65
85
  validator: arg.validator,
66
86
  amount: arg.amount,
67
87
  offenseType: arg.offenseType,
68
88
  epochOrSlot: arg.epochOrSlot,
69
89
  };
70
90
 
71
- if (this.shouldSkipOffense(pendingOffense)) {
72
- this.log.verbose('Skipping offense during grace period', pendingOffense);
73
- continue;
74
- }
75
-
76
- if (await this.offensesStore.hasOffense(pendingOffense)) {
77
- this.log.debug('Skipping repeated offense', pendingOffense);
91
+ if (this.shouldSkipOffense(offense)) {
92
+ this.log.verbose('Skipping offense during grace period', this.getOffenseLogData(offense));
78
93
  continue;
79
94
  }
80
95
 
81
- if (this.settings.slashingAmounts) {
82
- const minSlash = this.settings.slashingAmounts[0];
83
- if (arg.amount < minSlash) {
84
- this.log.warn(`Offense amount ${arg.amount} is below minimum slashing amount ${minSlash}`);
96
+ const added = await this.offensesStore.addOffense(offense);
97
+ if (added) {
98
+ if (this.settings.slashingAmounts) {
99
+ const minSlash = this.settings.slashingAmounts[0];
100
+ if (arg.amount < minSlash) {
101
+ this.log.warn(
102
+ `Offense amount ${arg.amount} is below minimum slashing amount ${minSlash}`,
103
+ this.getOffenseLogData(offense),
104
+ );
105
+ }
85
106
  }
107
+
108
+ this.log.info(`Adding pending offense for validator ${arg.validator}`, this.getOffenseLogData(offense));
109
+ } else {
110
+ this.log.debug('Skipping repeated offense', this.getOffenseLogData(offense));
86
111
  }
112
+ }
113
+ }
87
114
 
88
- this.log.info(`Adding pending offense for validator ${arg.validator}`, {
89
- ...pendingOffense,
90
- epochOrSlot: pendingOffense.epochOrSlot.toString(),
91
- amount: pendingOffense.amount.toString(),
92
- });
93
- await this.offensesStore.addPendingOffense(pendingOffense);
115
+ public async handleWantToClearSlash(args: WantToClearSlashArgs[]) {
116
+ for (const arg of args) {
117
+ const cleared = await this.offensesStore.clearOffenses(arg);
118
+ if (cleared > 0) {
119
+ this.log.info(`Cleared ${cleared} pending offenses`, {
120
+ offenseType: getOffenseTypeName(arg.offenseType),
121
+ epochOrSlot: arg.epochOrSlot,
122
+ validators: arg.validators?.map(validator => validator.toString()),
123
+ });
124
+ }
94
125
  }
95
126
  }
96
127
 
@@ -105,18 +136,21 @@ export class SlashOffensesCollector {
105
136
  }
106
137
  }
107
138
 
108
- /**
109
- * Marks offenses as slashed (no longer pending)
110
- * @param offenses - The offenses to mark as slashed
111
- */
112
- public markAsSlashed(offenses: OffenseIdentifier[]) {
113
- this.log.verbose(`Marking offenses as slashed`, { offenses });
114
- return this.offensesStore.markAsSlashed(offenses);
115
- }
116
-
117
- /** Returns whether to skip an offense if it happened during the grace period at the beginning of the chain */
139
+ /** Returns whether to skip an offense if it happened during the grace period after the network upgrade */
118
140
  private shouldSkipOffense(offense: Offense): boolean {
119
141
  const offenseSlot = getSlotForOffense(offense, this.settings);
120
- return offenseSlot < this.config.slashGracePeriodL2Slots;
142
+ return offenseSlot < this.settings.rollupRegisteredAtL2Slot + this.config.slashGracePeriodL2Slots;
143
+ }
144
+
145
+ private getOffenseLogData(offense: Offense) {
146
+ return {
147
+ ...offense,
148
+ validator: offense.validator.toString(),
149
+ offenseType: getOffenseTypeName(offense.offenseType),
150
+ };
151
+ }
152
+
153
+ private enqueueStoreMutation(label: string, callback: () => Promise<void>) {
154
+ void this.storeMutationQueue.put(callback).catch(err => this.log.error(`Error handling ${label}`, err));
121
155
  }
122
156
  }
@@ -1,11 +1,10 @@
1
1
  import { EthAddress } from '@aztec/aztec.js/addresses';
2
2
  import type { EpochCache } from '@aztec/epoch-cache';
3
- import { RollupContract, SlasherContract, TallySlashingProposerContract } from '@aztec/ethereum/contracts';
3
+ import { RollupContract, SlasherContract, SlashingProposerContract } from '@aztec/ethereum/contracts';
4
4
  import { maxBigint } from '@aztec/foundation/bigint';
5
5
  import { SlotNumber } from '@aztec/foundation/branded-types';
6
6
  import { compactArray, partition, times } from '@aztec/foundation/collection';
7
7
  import { createLogger } from '@aztec/foundation/log';
8
- import { sleep } from '@aztec/foundation/sleep';
9
8
  import type { DateProvider } from '@aztec/foundation/timer';
10
9
  import type { Prettify } from '@aztec/foundation/types';
11
10
  import type { SlasherConfig } from '@aztec/stdlib/interfaces/server';
@@ -14,13 +13,16 @@ import {
14
13
  OffenseType,
15
14
  type ProposerSlashAction,
16
15
  type ProposerSlashActionProvider,
17
- type SlashPayloadRound,
18
16
  getEpochsForRound,
17
+ getOffenseTypeName,
19
18
  getSlashConsensusVotesFromOffenses,
20
19
  } from '@aztec/stdlib/slashing';
20
+ import { getTelemetryClient } from '@aztec/telemetry-client';
21
21
 
22
22
  import type { Hex } from 'viem';
23
23
 
24
+ import { SlasherMetrics } from './metrics.js';
25
+ import { OwnValidatorSlashMonitor } from './own_validator_slash_monitor.js';
24
26
  import {
25
27
  SlashOffensesCollector,
26
28
  type SlashOffensesCollectorConfig,
@@ -31,8 +33,8 @@ import type { SlasherClientInterface } from './slasher_client_interface.js';
31
33
  import type { SlasherOffensesStore } from './stores/offenses_store.js';
32
34
  import type { Watcher } from './watcher.js';
33
35
 
34
- /** Settings used in the tally slasher client, loaded from the L1 contracts during initialization */
35
- export type TallySlasherSettings = Prettify<
36
+ /** Settings used in the slasher client, loaded from the L1 contracts during initialization */
37
+ export type SlasherSettings = Prettify<
36
38
  SlashRoundMonitorSettings &
37
39
  SlashOffensesCollectorSettings & {
38
40
  slashingLifetimeInRounds: number;
@@ -46,11 +48,22 @@ export type TallySlasherSettings = Prettify<
46
48
  }
47
49
  >;
48
50
 
49
- export type TallySlasherClientConfig = SlashOffensesCollectorConfig &
50
- Pick<SlasherConfig, 'slashValidatorsAlways' | 'slashValidatorsNever' | 'slashExecuteRoundsLookBack'>;
51
+ export type SlasherClientConfig = SlashOffensesCollectorConfig &
52
+ Pick<
53
+ SlasherConfig,
54
+ 'slashValidatorsAlways' | 'slashValidatorsNever' | 'slashExecuteRoundsLookBack' | 'slashMaxPayloadSize'
55
+ >;
56
+
57
+ type AlwaysSlashOffense = {
58
+ validator: EthAddress;
59
+ amount: bigint;
60
+ offenseType: OffenseType.UNKNOWN;
61
+ };
62
+
63
+ type SlashVoteOffense = Offense | AlwaysSlashOffense;
51
64
 
52
65
  /**
53
- * The Tally Slasher client is responsible for managing slashable offenses using
66
+ * The Slasher client is responsible for managing slashable offenses using
54
67
  * the consensus-based slashing model where proposers vote on individual validator offenses.
55
68
  *
56
69
  * The client subscribes to several slash watchers that emit offenses and tracks them. When the slasher is the
@@ -74,43 +87,41 @@ export type TallySlasherClientConfig = SlashOffensesCollectorConfig &
74
87
  * - Validators that reach the quorum threshold are slashed. A vote for slashing N units is also considered
75
88
  * a vote for slashing N-1, N-2, ..., 1 units. The system slashes for the largest amount that reaches quorum.
76
89
  * - The client monitors executable rounds and triggers execution when appropriate.
77
- *
78
- * Differences from Empire model
79
- * - No fixed slash payloads - votes are for individual validator offenses encoded in bytes
80
- * - The L1 contract determines which offenses reach quorum rather than nodes agreeing on a payload
81
- * - Proposers vote directly on which validators to slash and by how much
82
- * - Uses a slash offset to vote on validators from past rounds (e.g., round N votes on round N-2)
83
90
  */
84
- export class TallySlasherClient implements ProposerSlashActionProvider, SlasherClientInterface {
91
+ export class SlasherClient implements ProposerSlashActionProvider, SlasherClientInterface {
85
92
  protected unwatchCallbacks: (() => void)[] = [];
86
93
  protected roundMonitor: SlashRoundMonitor;
87
94
  protected offensesCollector: SlashOffensesCollector;
95
+ protected readonly ownValidatorMonitor: OwnValidatorSlashMonitor;
88
96
 
89
97
  constructor(
90
- private config: TallySlasherClientConfig,
91
- private settings: TallySlasherSettings,
92
- private tallySlashingProposer: TallySlashingProposerContract,
98
+ private config: SlasherClientConfig,
99
+ private settings: SlasherSettings,
100
+ private slashingProposer: SlashingProposerContract,
93
101
  private slasher: SlasherContract,
94
102
  private rollup: RollupContract,
95
103
  watchers: Watcher[],
96
104
  private epochCache: EpochCache,
97
105
  private dateProvider: DateProvider,
98
106
  private offensesStore: SlasherOffensesStore,
107
+ private readonly ownValidators: EthAddress[] = [],
99
108
  private log = createLogger('slasher:consensus'),
109
+ private readonly metrics = new SlasherMetrics(getTelemetryClient()),
100
110
  ) {
101
111
  this.roundMonitor = new SlashRoundMonitor(settings, dateProvider);
102
112
  this.offensesCollector = new SlashOffensesCollector(config, settings, watchers, offensesStore);
113
+ this.ownValidatorMonitor = new OwnValidatorSlashMonitor(slashingProposer, settings, ownValidators, this.metrics);
103
114
  }
104
115
 
105
116
  public async start() {
106
- this.log.debug('Starting Tally Slasher client...');
117
+ this.log.debug('Starting slasher client...');
107
118
 
108
119
  this.roundMonitor.start();
109
120
  await this.offensesCollector.start();
110
121
 
111
122
  // Listen for RoundExecuted events
112
123
  this.unwatchCallbacks.push(
113
- this.tallySlashingProposer.listenToRoundExecuted(
124
+ this.slashingProposer.listenToRoundExecuted(
114
125
  ({ round, slashCount, l1BlockHash }) =>
115
126
  void this.handleRoundExecuted(round, slashCount, l1BlockHash).catch(err =>
116
127
  this.log.error('Error handling round executed', err),
@@ -121,26 +132,34 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
121
132
  // Check for round changes
122
133
  this.unwatchCallbacks.push(this.roundMonitor.listenToNewRound(round => this.handleNewRound(round)));
123
134
 
124
- this.log.info(`Started tally slasher client`);
135
+ // Warn early when a slashing vote names one of our own validators. Skipped entirely when running none, so
136
+ // those nodes pay no extra L1 subscription.
137
+ if (this.ownValidators.length > 0) {
138
+ this.ownValidatorMonitor.start(this.roundMonitor.getCurrentRound().round);
139
+ this.unwatchCallbacks.push(
140
+ this.slashingProposer.listenToVoteCast(
141
+ ({ round, voteIndex }) => void this.ownValidatorMonitor.handleVoteCast(round, voteIndex),
142
+ ),
143
+ );
144
+ }
145
+
146
+ this.log.info(`Started slasher client`);
125
147
  return Promise.resolve();
126
148
  }
127
149
 
128
- /**
129
- * Stop the tally slasher client
130
- */
150
+ /** Stop the slasher client */
131
151
  public async stop() {
132
- this.log.debug('Stopping Tally Slasher client...');
152
+ this.log.debug('Stopping slasher client...');
133
153
 
134
154
  for (const unwatchCallback of this.unwatchCallbacks) {
135
155
  unwatchCallback();
136
156
  }
137
157
 
138
158
  this.roundMonitor.stop();
159
+ await this.ownValidatorMonitor.stop();
139
160
  await this.offensesCollector.stop();
140
161
 
141
- // Sleeping to sidestep viem issue with unwatching events
142
- await sleep(2000);
143
- this.log.info('Tally Slasher client stopped');
162
+ this.log.info('Slasher client stopped');
144
163
  }
145
164
 
146
165
  /** Returns the current config */
@@ -155,14 +174,17 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
155
174
 
156
175
  /** Triggered on a time basis when we enter a new slashing round. Clears expired offenses. */
157
176
  protected async handleNewRound(round: bigint) {
158
- this.log.info(`Starting new tally slashing round ${round}`);
177
+ this.log.info(`Starting new slashing round ${round}`);
178
+ this.ownValidatorMonitor.handleNewRound(round);
159
179
  await this.offensesCollector.handleNewRound(round);
160
180
  }
161
181
 
162
- /** Called when we see a RoundExecuted event on the TallySlashingProposer (just for logging). */
182
+ /** Called when we see a RoundExecuted event on the SlashingProposer (just for logging and metrics). */
163
183
  protected async handleRoundExecuted(round: bigint, slashCount: bigint, l1BlockHash: Hex) {
184
+ this.metrics.recordRoundExecuted();
164
185
  const slashes = await this.rollup.getSlashEvents(l1BlockHash);
165
186
  this.log.info(`Slashing round ${round} has been executed with ${slashCount} slashes`, { slashes });
187
+ this.ownValidatorMonitor.handleSlashes(round, slashes, l1BlockHash);
166
188
  }
167
189
 
168
190
  /**
@@ -240,7 +262,7 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
240
262
  this.log.debug(`Testing if slashing round ${executableRound} is executable`, logData);
241
263
 
242
264
  try {
243
- const roundInfo = await this.tallySlashingProposer.getRound(executableRound);
265
+ const roundInfo = await this.slashingProposer.getRound(executableRound);
244
266
  logData = { ...logData, roundInfo };
245
267
  if (roundInfo.isExecuted) {
246
268
  this.log.verbose(`Round ${executableRound} has already been executed`, logData);
@@ -254,7 +276,7 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
254
276
  }
255
277
 
256
278
  // Check if round is ready to execute at the given slot
257
- const isReadyToExecute = await this.tallySlashingProposer.isRoundReadyToExecute(executableRound, slotNumber);
279
+ const isReadyToExecute = await this.slashingProposer.isRoundReadyToExecute(executableRound, slotNumber);
258
280
  if (!isReadyToExecute) {
259
281
  this.log.warn(
260
282
  `Round ${executableRound} is not ready to execute at slot ${slotNumber} according to contract check`,
@@ -264,14 +286,14 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
264
286
  }
265
287
 
266
288
  // Check if the round yields any slashing at all
267
- const { actions: slashActions, committees } = await this.tallySlashingProposer.getTally(executableRound);
289
+ const { actions: slashActions, committees } = await this.slashingProposer.getTally(executableRound);
268
290
  if (slashActions.length === 0) {
269
291
  this.log.verbose(`Round ${executableRound} does not resolve in any slashing`, logData);
270
292
  return undefined;
271
293
  }
272
294
 
273
295
  // Check if the slash payload is vetoed
274
- const payload = await this.tallySlashingProposer.getPayload(executableRound);
296
+ const payload = await this.slashingProposer.getPayload(executableRound);
275
297
  const isVetoed = await this.slasher.isPayloadVetoed(payload.address);
276
298
  if (isVetoed) {
277
299
  this.log.warn(`Round ${executableRound} payload is vetoed (skipping execution)`, {
@@ -318,7 +340,7 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
318
340
  // Compute offenses to slash, by loading the offenses for this round, adding synthetic offenses
319
341
  // for validators that should always be slashed, and removing the ones that should never be slashed.
320
342
  const offensesForRound = await this.gatherOffensesForRound(currentRound);
321
- const offensesFromAlwaysSlash = (this.config.slashValidatorsAlways ?? []).map(validator => ({
343
+ const offensesFromAlwaysSlash: AlwaysSlashOffense[] = (this.config.slashValidatorsAlways ?? []).map(validator => ({
322
344
  validator,
323
345
  amount: this.settings.slashingAmounts[2],
324
346
  offenseType: OffenseType.UNKNOWN,
@@ -332,7 +354,7 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
332
354
  slotNumber,
333
355
  currentRound,
334
356
  slashedRound,
335
- offensesToForgive,
357
+ offensesFromAlwaysSlash: offensesFromAlwaysSlash.map(getOffenseLogData),
336
358
  slashValidatorsAlways: this.config.slashValidatorsAlways,
337
359
  });
338
360
  }
@@ -342,7 +364,7 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
342
364
  slotNumber,
343
365
  currentRound,
344
366
  slashedRound,
345
- offensesToForgive,
367
+ offensesToForgive: offensesToForgive.map(getOffenseLogData),
346
368
  slashValidatorsNever: this.config.slashValidatorsNever,
347
369
  });
348
370
  }
@@ -352,36 +374,42 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
352
374
  return undefined;
353
375
  }
354
376
 
355
- const offensesToSlashLog = offensesToSlash.map(offense => ({
356
- ...offense,
357
- amount: offense.amount.toString(),
358
- }));
359
- this.log.info(`Voting to slash ${offensesToSlash.length} offenses`, {
377
+ this.log.debug(`Computing slash votes for ${offensesToSlash.length} offenses`, {
360
378
  slotNumber,
361
379
  currentRound,
362
380
  slashedRound,
363
- offensesToSlash: offensesToSlashLog,
381
+ offensesToSlash: offensesToSlash.map(getOffenseLogData),
364
382
  });
365
383
 
366
384
  const committees = await this.collectCommitteesActiveDuringRound(slashedRound);
367
385
  const epochsForCommittees = getEpochsForRound(slashedRound, this.settings);
386
+ const { slashMaxPayloadSize } = this.config;
368
387
  const votes = getSlashConsensusVotesFromOffenses(
369
388
  offensesToSlash,
370
389
  committees,
371
390
  epochsForCommittees.map(e => BigInt(e)),
372
- this.settings,
391
+ { ...this.settings, maxSlashedValidators: slashMaxPayloadSize },
392
+ this.log,
373
393
  );
374
394
  if (votes.every(v => v === 0)) {
375
395
  this.log.warn(`Computed votes for offenses are all zero. Skipping vote.`, {
376
396
  slotNumber,
377
397
  currentRound,
378
398
  slashedRound,
379
- offensesToSlash,
399
+ offensesToSlash: offensesToSlash.map(getOffenseLogData),
380
400
  committees,
381
401
  });
382
402
  return undefined;
383
403
  }
384
404
 
405
+ this.log.info(`Voting to slash ${offensesToSlash.length} offenses`, {
406
+ slotNumber,
407
+ slashedRound,
408
+ currentRound,
409
+ votes,
410
+ offensesToSlash: offensesToSlash.map(getOffenseLogData),
411
+ });
412
+
385
413
  this.log.debug(`Computed votes for slashing ${offensesToSlash.length} offenses`, {
386
414
  slashedRound,
387
415
  currentRound,
@@ -407,17 +435,9 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
407
435
  );
408
436
  }
409
437
 
410
- /**
411
- * Get slash payloads is NOT SUPPORTED in tally model
412
- * @throws Error indicating this operation is not supported
413
- */
414
- public getSlashPayloads(): Promise<SlashPayloadRound[]> {
415
- return Promise.reject(new Error('Tally slashing model does not support slash payloads'));
416
- }
417
-
418
438
  /**
419
439
  * Gather offenses to be slashed on a given round.
420
- * In tally slashing, round N slashes validators from round N - slashOffsetInRounds.
440
+ * Round N slashes validators from round N - slashOffsetInRounds.
421
441
  * @param round - The round to get offenses for, defaults to current round
422
442
  * @returns Array of pending offenses for the round with offset applied
423
443
  */
@@ -430,9 +450,9 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
430
450
  return await this.offensesStore.getOffensesForRound(targetRound);
431
451
  }
432
452
 
433
- /** Returns all pending offenses stored */
434
- public getPendingOffenses(): Promise<Offense[]> {
435
- return this.offensesStore.getPendingOffenses();
453
+ /** Returns all offenses stored */
454
+ public getOffenses(): Promise<Offense[]> {
455
+ return this.offensesStore.getOffenses();
436
456
  }
437
457
 
438
458
  /**
@@ -448,3 +468,11 @@ export class TallySlasherClient implements ProposerSlashActionProvider, SlasherC
448
468
  return round - BigInt(this.settings.slashingOffsetInRounds);
449
469
  }
450
470
  }
471
+
472
+ function getOffenseLogData(offense: SlashVoteOffense) {
473
+ return {
474
+ ...offense,
475
+ validator: offense.validator.toString(),
476
+ offenseType: getOffenseTypeName(offense.offenseType),
477
+ };
478
+ }
@@ -2,13 +2,13 @@ import { EpochCache } from '@aztec/epoch-cache';
2
2
  import { RollupContract } from '@aztec/ethereum/contracts';
3
3
  import type { ViemClient } from '@aztec/ethereum/types';
4
4
  import type { SlotNumber } from '@aztec/foundation/branded-types';
5
- import { EthAddress } from '@aztec/foundation/eth-address';
5
+ import type { EthAddress } from '@aztec/foundation/eth-address';
6
6
  import { createLogger } from '@aztec/foundation/log';
7
7
  import { DateProvider } from '@aztec/foundation/timer';
8
- import type { DataStoreConfig } from '@aztec/kv-store/config';
9
8
  import { AztecLMDBStoreV2 } from '@aztec/kv-store/lmdb-v2';
10
9
  import type { SlasherConfig } from '@aztec/stdlib/interfaces/server';
11
- import type { Offense, ProposerSlashAction, SlashPayloadRound } from '@aztec/stdlib/slashing';
10
+ import type { DataStoreConfig } from '@aztec/stdlib/kv-store';
11
+ import type { Offense, ProposerSlashAction } from '@aztec/stdlib/slashing';
12
12
 
13
13
  import { createSlasherImplementation } from './factory/create_implementation.js';
14
14
  import type { SlasherClientInterface } from './slasher_client_interface.js';
@@ -27,11 +27,12 @@ export class SlasherClientFacade implements SlasherClientInterface {
27
27
  private config: SlasherConfig & DataStoreConfig & { ethereumSlotDuration: number },
28
28
  private rollup: RollupContract,
29
29
  private l1Client: ViemClient,
30
- private slashFactoryAddress: EthAddress | undefined,
31
30
  private watchers: Watcher[],
32
31
  private epochCache: EpochCache,
33
32
  private dateProvider: DateProvider,
34
33
  private kvStore: AztecLMDBStoreV2,
34
+ private rollupRegisteredAtL2Slot: SlotNumber,
35
+ private ownValidators: EthAddress[] = [],
35
36
  private logger = createLogger('slasher'),
36
37
  ) {}
37
38
 
@@ -62,16 +63,12 @@ export class SlasherClientFacade implements SlasherClientInterface {
62
63
  this.watchers.forEach(watcher => watcher.updateConfig?.(config));
63
64
  }
64
65
 
65
- public getSlashPayloads(): Promise<SlashPayloadRound[]> {
66
- return this.client?.getSlashPayloads() ?? Promise.reject(new Error('Slasher client not initialized'));
67
- }
68
-
69
66
  public gatherOffensesForRound(round?: bigint): Promise<Offense[]> {
70
67
  return this.client?.gatherOffensesForRound(round) ?? Promise.reject(new Error('Slasher client not initialized'));
71
68
  }
72
69
 
73
- public getPendingOffenses(): Promise<Offense[]> {
74
- return this.client?.getPendingOffenses() ?? Promise.reject(new Error('Slasher client not initialized'));
70
+ public getOffenses(): Promise<Offense[]> {
71
+ return this.client?.getOffenses() ?? Promise.reject(new Error('Slasher client not initialized'));
75
72
  }
76
73
 
77
74
  public getProposerActions(slotNumber: SlotNumber): Promise<ProposerSlashAction[]> {
@@ -83,11 +80,12 @@ export class SlasherClientFacade implements SlasherClientInterface {
83
80
  this.config,
84
81
  this.rollup,
85
82
  this.l1Client,
86
- this.slashFactoryAddress,
87
83
  this.watchers,
88
84
  this.epochCache,
89
85
  this.dateProvider,
90
86
  this.kvStore,
87
+ this.rollupRegisteredAtL2Slot,
88
+ this.ownValidators,
91
89
  this.logger,
92
90
  );
93
91
  }
@@ -1,11 +1,8 @@
1
1
  import type { SlotNumber } from '@aztec/foundation/branded-types';
2
2
  import type { SlasherConfig } from '@aztec/stdlib/interfaces/server';
3
- import type { Offense, ProposerSlashAction, SlashPayloadRound } from '@aztec/stdlib/slashing';
3
+ import type { Offense, ProposerSlashAction } from '@aztec/stdlib/slashing';
4
4
 
5
- /**
6
- * Common interface for slasher clients used by the Aztec node.
7
- * Both Empire and Consensus slasher clients implement this interface.
8
- */
5
+ /** Common interface for slasher clients used by the Aztec node. */
9
6
  export interface SlasherClientInterface {
10
7
  /** Start the slasher client */
11
8
  start(): Promise<void>;
@@ -13,25 +10,13 @@ export interface SlasherClientInterface {
13
10
  /** Stop the slasher client */
14
11
  stop(): Promise<void>;
15
12
 
16
- /**
17
- * Get slash payloads for the Empire model.
18
- * The Consensus model should throw an error when this is called.
19
- */
20
- getSlashPayloads(): Promise<SlashPayloadRound[]>;
21
-
22
- /**
23
- * Gather offenses for a given round, defaults to current.
24
- * Used by both Empire and Consensus models.
25
- */
13
+ /** Gather offenses for a given round, defaults to current. */
26
14
  gatherOffensesForRound(round?: bigint): Promise<Offense[]>;
27
15
 
28
- /** Returns all pending offenses */
29
- getPendingOffenses(): Promise<Offense[]>;
16
+ /** Returns all offenses */
17
+ getOffenses(): Promise<Offense[]>;
30
18
 
31
- /**
32
- * Update the configuration.
33
- * Used by both Empire and Consensus models.
34
- */
19
+ /** Update the configuration. */
35
20
  updateConfig(config: Partial<SlasherConfig>): void;
36
21
 
37
22
  /**