diff --git a/packages/types/src/electra/sszTypes.ts b/packages/types/src/electra/sszTypes.ts index cf3ae690de14..26539dd61365 100644 --- a/packages/types/src/electra/sszTypes.ts +++ b/packages/types/src/electra/sszTypes.ts @@ -423,20 +423,3 @@ export const SSEPayloadAttributes = new ContainerType( }, {typeName: "SSEPayloadAttributes", jsonCase: "eth2"} ); - -export const AggregateAndProof = new ContainerType( - { - aggregatorIndex: ValidatorIndex, - aggregate: Attestation, - selectionProof: BLSSignature, - }, - {typeName: "AggregateAndProof", jsonCase: "eth2", cachePermanentRootStruct: true} -); - -export const SignedAggregateAndProof = new ContainerType( - { - message: AggregateAndProof, - signature: BLSSignature, - }, - {typeName: "SignedAggregateAndProof", jsonCase: "eth2"} -);