import {ISlashingProtection} from "../../src/index.js"; /** * Mock slashing protection that always accepts all messages */ export class SlashingProtectionMock implements ISlashingProtection { async checkAndInsertBlockProposal(): Promise { // } async checkAndInsertAttestation(): Promise { // } async importInterchange(): Promise { // } async exportInterchange(): Promise { throw Error("disabled"); } }