package eth import ( "github.com/prysmaticlabs/prysm/encoding/bytesutil" enginev1 "github.com/prysmaticlabs/prysm/proto/engine/v1" ) // CopyETH1Data copies the provided eth1data object. func CopyETH1Data(data *Eth1Data) *Eth1Data { if data == nil { return nil } return &Eth1Data{ DepositRoot: bytesutil.SafeCopyBytes(data.DepositRoot), DepositCount: data.DepositCount, BlockHash: bytesutil.SafeCopyBytes(data.BlockHash), } } // CopyPendingAttestationSlice copies the provided slice of pending attestation objects. func CopyPendingAttestationSlice(input []*PendingAttestation) []*PendingAttestation { if input == nil { return nil } res := make([]*PendingAttestation, len(input)) for i := 0; i < len(res); i++ { res[i] = CopyPendingAttestation(input[i]) } return res } // CopyPendingAttestation copies the provided pending attestation object. func CopyPendingAttestation(att *PendingAttestation) *PendingAttestation { if att == nil { return nil } data := CopyAttestationData(att.Data) return &PendingAttestation{ AggregationBits: bytesutil.SafeCopyBytes(att.AggregationBits), Data: data, InclusionDelay: att.InclusionDelay, ProposerIndex: att.ProposerIndex, } } // CopyAttestation copies the provided attestation object. func CopyAttestation(att *Attestation) *Attestation { if att == nil { return nil } return &Attestation{ AggregationBits: bytesutil.SafeCopyBytes(att.AggregationBits), Data: CopyAttestationData(att.Data), Signature: bytesutil.SafeCopyBytes(att.Signature), } } // CopyAttestationData copies the provided AttestationData object. func CopyAttestationData(attData *AttestationData) *AttestationData { if attData == nil { return nil } return &AttestationData{ Slot: attData.Slot, CommitteeIndex: attData.CommitteeIndex, BeaconBlockRoot: bytesutil.SafeCopyBytes(attData.BeaconBlockRoot), Source: CopyCheckpoint(attData.Source), Target: CopyCheckpoint(attData.Target), } } // CopyCheckpoint copies the provided checkpoint. func CopyCheckpoint(cp *Checkpoint) *Checkpoint { if cp == nil { return nil } return &Checkpoint{ Epoch: cp.Epoch, Root: bytesutil.SafeCopyBytes(cp.Root), } } // CopySignedBeaconBlock copies the provided SignedBeaconBlock. func CopySignedBeaconBlock(sigBlock *SignedBeaconBlock) *SignedBeaconBlock { if sigBlock == nil { return nil } return &SignedBeaconBlock{ Block: CopyBeaconBlock(sigBlock.Block), Signature: bytesutil.SafeCopyBytes(sigBlock.Signature), } } // CopyBeaconBlock copies the provided BeaconBlock. func CopyBeaconBlock(block *BeaconBlock) *BeaconBlock { if block == nil { return nil } return &BeaconBlock{ Slot: block.Slot, ProposerIndex: block.ProposerIndex, ParentRoot: bytesutil.SafeCopyBytes(block.ParentRoot), StateRoot: bytesutil.SafeCopyBytes(block.StateRoot), Body: CopyBeaconBlockBody(block.Body), } } // CopyBeaconBlockBody copies the provided BeaconBlockBody. func CopyBeaconBlockBody(body *BeaconBlockBody) *BeaconBlockBody { if body == nil { return nil } return &BeaconBlockBody{ RandaoReveal: bytesutil.SafeCopyBytes(body.RandaoReveal), Eth1Data: CopyETH1Data(body.Eth1Data), Graffiti: bytesutil.SafeCopyBytes(body.Graffiti), ProposerSlashings: CopyProposerSlashings(body.ProposerSlashings), AttesterSlashings: CopyAttesterSlashings(body.AttesterSlashings), Attestations: CopyAttestations(body.Attestations), Deposits: CopyDeposits(body.Deposits), VoluntaryExits: CopySignedVoluntaryExits(body.VoluntaryExits), } } // CopySignedBeaconBlockAltair copies the provided SignedBeaconBlock. func CopySignedBeaconBlockAltair(sigBlock *SignedBeaconBlockAltair) *SignedBeaconBlockAltair { if sigBlock == nil { return nil } return &SignedBeaconBlockAltair{ Block: CopyBeaconBlockAltair(sigBlock.Block), Signature: bytesutil.SafeCopyBytes(sigBlock.Signature), } } // CopyBeaconBlockAltair copies the provided BeaconBlock. func CopyBeaconBlockAltair(block *BeaconBlockAltair) *BeaconBlockAltair { if block == nil { return nil } return &BeaconBlockAltair{ Slot: block.Slot, ProposerIndex: block.ProposerIndex, ParentRoot: bytesutil.SafeCopyBytes(block.ParentRoot), StateRoot: bytesutil.SafeCopyBytes(block.StateRoot), Body: CopyBeaconBlockBodyAltair(block.Body), } } // CopyBeaconBlockBodyAltair copies the provided BeaconBlockBody. func CopyBeaconBlockBodyAltair(body *BeaconBlockBodyAltair) *BeaconBlockBodyAltair { if body == nil { return nil } return &BeaconBlockBodyAltair{ RandaoReveal: bytesutil.SafeCopyBytes(body.RandaoReveal), Eth1Data: CopyETH1Data(body.Eth1Data), Graffiti: bytesutil.SafeCopyBytes(body.Graffiti), ProposerSlashings: CopyProposerSlashings(body.ProposerSlashings), AttesterSlashings: CopyAttesterSlashings(body.AttesterSlashings), Attestations: CopyAttestations(body.Attestations), Deposits: CopyDeposits(body.Deposits), VoluntaryExits: CopySignedVoluntaryExits(body.VoluntaryExits), SyncAggregate: CopySyncAggregate(body.SyncAggregate), } } // CopyProposerSlashings copies the provided ProposerSlashing array. func CopyProposerSlashings(slashings []*ProposerSlashing) []*ProposerSlashing { if slashings == nil { return nil } newSlashings := make([]*ProposerSlashing, len(slashings)) for i, att := range slashings { newSlashings[i] = CopyProposerSlashing(att) } return newSlashings } // CopyProposerSlashing copies the provided ProposerSlashing. func CopyProposerSlashing(slashing *ProposerSlashing) *ProposerSlashing { if slashing == nil { return nil } return &ProposerSlashing{ Header_1: CopySignedBeaconBlockHeader(slashing.Header_1), Header_2: CopySignedBeaconBlockHeader(slashing.Header_2), } } // CopySignedBeaconBlockHeader copies the provided SignedBeaconBlockHeader. func CopySignedBeaconBlockHeader(header *SignedBeaconBlockHeader) *SignedBeaconBlockHeader { if header == nil { return nil } return &SignedBeaconBlockHeader{ Header: CopyBeaconBlockHeader(header.Header), Signature: bytesutil.SafeCopyBytes(header.Signature), } } // CopyBeaconBlockHeader copies the provided BeaconBlockHeader. func CopyBeaconBlockHeader(header *BeaconBlockHeader) *BeaconBlockHeader { if header == nil { return nil } parentRoot := bytesutil.SafeCopyBytes(header.ParentRoot) stateRoot := bytesutil.SafeCopyBytes(header.StateRoot) bodyRoot := bytesutil.SafeCopyBytes(header.BodyRoot) return &BeaconBlockHeader{ Slot: header.Slot, ProposerIndex: header.ProposerIndex, ParentRoot: parentRoot, StateRoot: stateRoot, BodyRoot: bodyRoot, } } // CopyAttesterSlashings copies the provided AttesterSlashings array. func CopyAttesterSlashings(slashings []*AttesterSlashing) []*AttesterSlashing { if slashings == nil { return nil } newSlashings := make([]*AttesterSlashing, len(slashings)) for i, slashing := range slashings { newSlashings[i] = &AttesterSlashing{ Attestation_1: CopyIndexedAttestation(slashing.Attestation_1), Attestation_2: CopyIndexedAttestation(slashing.Attestation_2), } } return newSlashings } // CopyIndexedAttestation copies the provided IndexedAttestation. func CopyIndexedAttestation(indexedAtt *IndexedAttestation) *IndexedAttestation { var indices []uint64 if indexedAtt == nil { return nil } else if indexedAtt.AttestingIndices != nil { indices = make([]uint64, len(indexedAtt.AttestingIndices)) copy(indices, indexedAtt.AttestingIndices) } return &IndexedAttestation{ AttestingIndices: indices, Data: CopyAttestationData(indexedAtt.Data), Signature: bytesutil.SafeCopyBytes(indexedAtt.Signature), } } // CopyAttestations copies the provided Attestation array. func CopyAttestations(attestations []*Attestation) []*Attestation { if attestations == nil { return nil } newAttestations := make([]*Attestation, len(attestations)) for i, att := range attestations { newAttestations[i] = CopyAttestation(att) } return newAttestations } // CopyDeposits copies the provided deposit array. func CopyDeposits(deposits []*Deposit) []*Deposit { if deposits == nil { return nil } newDeposits := make([]*Deposit, len(deposits)) for i, dep := range deposits { newDeposits[i] = CopyDeposit(dep) } return newDeposits } // CopyDeposit copies the provided deposit. func CopyDeposit(deposit *Deposit) *Deposit { if deposit == nil { return nil } return &Deposit{ Proof: bytesutil.SafeCopy2dBytes(deposit.Proof), Data: CopyDepositData(deposit.Data), } } // CopyDepositData copies the provided deposit data. func CopyDepositData(depData *Deposit_Data) *Deposit_Data { if depData == nil { return nil } return &Deposit_Data{ PublicKey: bytesutil.SafeCopyBytes(depData.PublicKey), WithdrawalCredentials: bytesutil.SafeCopyBytes(depData.WithdrawalCredentials), Amount: depData.Amount, Signature: bytesutil.SafeCopyBytes(depData.Signature), } } // CopySignedVoluntaryExits copies the provided SignedVoluntaryExits array. func CopySignedVoluntaryExits(exits []*SignedVoluntaryExit) []*SignedVoluntaryExit { if exits == nil { return nil } newExits := make([]*SignedVoluntaryExit, len(exits)) for i, exit := range exits { newExits[i] = CopySignedVoluntaryExit(exit) } return newExits } // CopySignedVoluntaryExit copies the provided SignedVoluntaryExit. func CopySignedVoluntaryExit(exit *SignedVoluntaryExit) *SignedVoluntaryExit { if exit == nil { return nil } return &SignedVoluntaryExit{ Exit: &VoluntaryExit{ Epoch: exit.Exit.Epoch, ValidatorIndex: exit.Exit.ValidatorIndex, }, Signature: bytesutil.SafeCopyBytes(exit.Signature), } } // CopyValidator copies the provided validator. func CopyValidator(val *Validator) *Validator { pubKey := make([]byte, len(val.PublicKey)) copy(pubKey, val.PublicKey) withdrawalCreds := make([]byte, len(val.WithdrawalCredentials)) copy(withdrawalCreds, val.WithdrawalCredentials) return &Validator{ PublicKey: pubKey, WithdrawalCredentials: withdrawalCreds, EffectiveBalance: val.EffectiveBalance, Slashed: val.Slashed, ActivationEligibilityEpoch: val.ActivationEligibilityEpoch, ActivationEpoch: val.ActivationEpoch, ExitEpoch: val.ExitEpoch, WithdrawableEpoch: val.WithdrawableEpoch, } } // CopySyncCommitteeMessage copies the provided sync committee message object. func CopySyncCommitteeMessage(s *SyncCommitteeMessage) *SyncCommitteeMessage { if s == nil { return nil } return &SyncCommitteeMessage{ Slot: s.Slot, BlockRoot: bytesutil.SafeCopyBytes(s.BlockRoot), ValidatorIndex: s.ValidatorIndex, Signature: bytesutil.SafeCopyBytes(s.Signature), } } // CopySyncCommitteeContribution copies the provided sync committee contribution object. func CopySyncCommitteeContribution(c *SyncCommitteeContribution) *SyncCommitteeContribution { if c == nil { return nil } return &SyncCommitteeContribution{ Slot: c.Slot, BlockRoot: bytesutil.SafeCopyBytes(c.BlockRoot), SubcommitteeIndex: c.SubcommitteeIndex, AggregationBits: bytesutil.SafeCopyBytes(c.AggregationBits), Signature: bytesutil.SafeCopyBytes(c.Signature), } } // CopySyncAggregate copies the provided sync aggregate object. func CopySyncAggregate(a *SyncAggregate) *SyncAggregate { if a == nil { return nil } return &SyncAggregate{ SyncCommitteeBits: bytesutil.SafeCopyBytes(a.SyncCommitteeBits), SyncCommitteeSignature: bytesutil.SafeCopyBytes(a.SyncCommitteeSignature), } } // CopySignedBeaconBlockBellatrix copies the provided SignedBeaconBlockBellatrix. func CopySignedBeaconBlockBellatrix(sigBlock *SignedBeaconBlockBellatrix) *SignedBeaconBlockBellatrix { if sigBlock == nil { return nil } return &SignedBeaconBlockBellatrix{ Block: CopyBeaconBlockBellatrix(sigBlock.Block), Signature: bytesutil.SafeCopyBytes(sigBlock.Signature), } } // CopyBeaconBlockBellatrix copies the provided BeaconBlockBellatrix. func CopyBeaconBlockBellatrix(block *BeaconBlockBellatrix) *BeaconBlockBellatrix { if block == nil { return nil } return &BeaconBlockBellatrix{ Slot: block.Slot, ProposerIndex: block.ProposerIndex, ParentRoot: bytesutil.SafeCopyBytes(block.ParentRoot), StateRoot: bytesutil.SafeCopyBytes(block.StateRoot), Body: CopyBeaconBlockBodyBellatrix(block.Body), } } // CopyBeaconBlockBodyBellatrix copies the provided BeaconBlockBodyBellatrix. func CopyBeaconBlockBodyBellatrix(body *BeaconBlockBodyBellatrix) *BeaconBlockBodyBellatrix { if body == nil { return nil } return &BeaconBlockBodyBellatrix{ RandaoReveal: bytesutil.SafeCopyBytes(body.RandaoReveal), Eth1Data: CopyETH1Data(body.Eth1Data), Graffiti: bytesutil.SafeCopyBytes(body.Graffiti), ProposerSlashings: CopyProposerSlashings(body.ProposerSlashings), AttesterSlashings: CopyAttesterSlashings(body.AttesterSlashings), Attestations: CopyAttestations(body.Attestations), Deposits: CopyDeposits(body.Deposits), VoluntaryExits: CopySignedVoluntaryExits(body.VoluntaryExits), SyncAggregate: CopySyncAggregate(body.SyncAggregate), ExecutionPayload: CopyExecutionPayload(body.ExecutionPayload), } } // CopyExecutionPayload copies the provided ApplicationPayload. func CopyExecutionPayload(payload *enginev1.ExecutionPayload) *enginev1.ExecutionPayload { if payload == nil { return nil } return &enginev1.ExecutionPayload{ ParentHash: bytesutil.SafeCopyBytes(payload.ParentHash), FeeRecipient: bytesutil.SafeCopyBytes(payload.FeeRecipient), StateRoot: bytesutil.SafeCopyBytes(payload.StateRoot), ReceiptsRoot: bytesutil.SafeCopyBytes(payload.ReceiptsRoot), LogsBloom: bytesutil.SafeCopyBytes(payload.LogsBloom), Random: bytesutil.SafeCopyBytes(payload.Random), BlockNumber: payload.BlockNumber, GasLimit: payload.GasLimit, GasUsed: payload.GasUsed, Timestamp: payload.Timestamp, ExtraData: bytesutil.SafeCopyBytes(payload.ExtraData), BaseFeePerGas: bytesutil.SafeCopyBytes(payload.BaseFeePerGas), BlockHash: bytesutil.SafeCopyBytes(payload.BlockHash), Transactions: bytesutil.SafeCopy2dBytes(payload.Transactions), } } // CopyExecutionPayloadHeader copies the provided execution payload object. func CopyExecutionPayloadHeader(payload *ExecutionPayloadHeader) *ExecutionPayloadHeader { if payload == nil { return nil } return &ExecutionPayloadHeader{ ParentHash: bytesutil.SafeCopyBytes(payload.ParentHash), FeeRecipient: bytesutil.SafeCopyBytes(payload.FeeRecipient), StateRoot: bytesutil.SafeCopyBytes(payload.StateRoot), ReceiptRoot: bytesutil.SafeCopyBytes(payload.ReceiptRoot), LogsBloom: bytesutil.SafeCopyBytes(payload.LogsBloom), Random: bytesutil.SafeCopyBytes(payload.Random), BlockNumber: payload.BlockNumber, GasLimit: payload.GasLimit, GasUsed: payload.GasUsed, Timestamp: payload.Timestamp, BaseFeePerGas: bytesutil.SafeCopyBytes(payload.BaseFeePerGas), ExtraData: bytesutil.SafeCopyBytes(payload.ExtraData), BlockHash: bytesutil.SafeCopyBytes(payload.BlockHash), TransactionsRoot: bytesutil.SafeCopyBytes(payload.TransactionsRoot), } }