-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into enable-publish-blob-afte-block-by-default
- Loading branch information
Showing
12 changed files
with
299 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
...pec/src/main/java/tech/pegasys/teku/spec/datastructures/operations/SingleAttestation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2024 | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package tech.pegasys.teku.spec.datastructures.operations; | ||
|
||
import tech.pegasys.teku.bls.BLSSignature; | ||
import tech.pegasys.teku.infrastructure.ssz.collections.SszBitlist; | ||
import tech.pegasys.teku.infrastructure.ssz.containers.Container4; | ||
import tech.pegasys.teku.infrastructure.ssz.primitive.SszUInt64; | ||
import tech.pegasys.teku.infrastructure.ssz.tree.TreeNode; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.datastructures.type.SszSignature; | ||
|
||
public class SingleAttestation | ||
extends Container4<SingleAttestation, SszUInt64, SszUInt64, AttestationData, SszSignature> | ||
implements Attestation { | ||
public SingleAttestation(final SingleAttestationSchema type, final TreeNode backingNode) { | ||
super(type, backingNode); | ||
} | ||
|
||
public SingleAttestation( | ||
final SingleAttestationSchema schema, | ||
final UInt64 committeeIndex, | ||
final UInt64 validatorIndex, | ||
final AttestationData data, | ||
final BLSSignature signature) { | ||
super( | ||
schema, | ||
SszUInt64.of(committeeIndex), | ||
SszUInt64.of(validatorIndex), | ||
data, | ||
new SszSignature(signature)); | ||
} | ||
|
||
@Override | ||
public SingleAttestationSchema getSchema() { | ||
return (SingleAttestationSchema) super.getSchema(); | ||
} | ||
|
||
@Override | ||
public AttestationData getData() { | ||
return getField2(); | ||
} | ||
|
||
@Override | ||
public SszBitlist getAggregationBits() { | ||
throw new UnsupportedOperationException("Not supported in SingleAttestation"); | ||
} | ||
|
||
@Override | ||
public UInt64 getFirstCommitteeIndex() { | ||
return getField0().get(); | ||
} | ||
|
||
@Override | ||
public BLSSignature getAggregateSignature() { | ||
return getField3().getSignature(); | ||
} | ||
|
||
public BLSSignature getSignature() { | ||
return getField3().getSignature(); | ||
} | ||
|
||
@Override | ||
public boolean requiresCommitteeBits() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isSingleAttestation() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public SingleAttestation toSingleAttestationRequired() { | ||
return this; | ||
} | ||
|
||
@Override | ||
public UInt64 getValidatorIndexRequired() { | ||
return getField1().get(); | ||
} | ||
} |
84 changes: 84 additions & 0 deletions
84
...c/main/java/tech/pegasys/teku/spec/datastructures/operations/SingleAttestationSchema.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2024 | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package tech.pegasys.teku.spec.datastructures.operations; | ||
|
||
import java.util.Optional; | ||
import java.util.function.Supplier; | ||
import tech.pegasys.teku.bls.BLSSignature; | ||
import tech.pegasys.teku.infrastructure.ssz.collections.SszBitlist; | ||
import tech.pegasys.teku.infrastructure.ssz.collections.SszBitvector; | ||
import tech.pegasys.teku.infrastructure.ssz.containers.ContainerSchema4; | ||
import tech.pegasys.teku.infrastructure.ssz.primitive.SszUInt64; | ||
import tech.pegasys.teku.infrastructure.ssz.schema.SszPrimitiveSchemas; | ||
import tech.pegasys.teku.infrastructure.ssz.schema.collections.SszBitlistSchema; | ||
import tech.pegasys.teku.infrastructure.ssz.schema.collections.SszBitvectorSchema; | ||
import tech.pegasys.teku.infrastructure.ssz.tree.TreeNode; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.datastructures.type.SszSignature; | ||
import tech.pegasys.teku.spec.datastructures.type.SszSignatureSchema; | ||
|
||
public class SingleAttestationSchema | ||
extends ContainerSchema4<SingleAttestation, SszUInt64, SszUInt64, AttestationData, SszSignature> | ||
implements AttestationSchema<SingleAttestation> { | ||
public SingleAttestationSchema() { | ||
super( | ||
"SingleAttestation", | ||
namedSchema("committee_index", SszPrimitiveSchemas.UINT64_SCHEMA), | ||
namedSchema("attester_index", SszPrimitiveSchemas.UINT64_SCHEMA), | ||
namedSchema("data", AttestationData.SSZ_SCHEMA), | ||
namedSchema("signature", SszSignatureSchema.INSTANCE)); | ||
} | ||
|
||
@Override | ||
public SingleAttestation createFromBackingNode(final TreeNode node) { | ||
return new SingleAttestation(this, node); | ||
} | ||
|
||
public SingleAttestation create( | ||
final UInt64 committeeIndex, | ||
final UInt64 attesterIndex, | ||
final AttestationData data, | ||
final BLSSignature signature) { | ||
return new SingleAttestation(this, committeeIndex, attesterIndex, data, signature); | ||
} | ||
|
||
@Override | ||
public Attestation create( | ||
final SszBitlist aggregationBits, | ||
final AttestationData data, | ||
final BLSSignature signature, | ||
final Supplier<SszBitvector> committeeBits) { | ||
throw new UnsupportedOperationException("Not supported in SingleAttestation"); | ||
} | ||
|
||
@Override | ||
public SszBitlistSchema<?> getAggregationBitsSchema() { | ||
throw new UnsupportedOperationException("Not supported in SingleAttestation"); | ||
} | ||
|
||
@Override | ||
public Optional<SszBitvectorSchema<?>> getCommitteeBitsSchema() { | ||
return Optional.empty(); | ||
} | ||
|
||
@Override | ||
public SingleAttestationSchema toSingleAttestationSchemaRequired() { | ||
return this; | ||
} | ||
|
||
@Override | ||
public boolean requiresCommitteeBits() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.