mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
40 lines
1.2 KiB
Go
40 lines
1.2 KiB
Go
package execution
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/core/blocks"
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// DepositContractAddress returns the deposit contract address for the given chain.
|
|
func DepositContractAddress() (string, error) {
|
|
address := params.BeaconConfig().DepositContractAddress
|
|
if address == "" {
|
|
return "", errors.New("valid deposit contract is required")
|
|
}
|
|
|
|
if !common.IsHexAddress(address) {
|
|
return "", errors.New("invalid deposit contract address given: " + address)
|
|
}
|
|
return address, nil
|
|
}
|
|
|
|
func (s *Service) processDeposit(ctx context.Context, eth1Data *ethpb.Eth1Data, deposit *ethpb.Deposit) error {
|
|
var err error
|
|
if err := s.preGenesisState.SetEth1Data(eth1Data); err != nil {
|
|
return err
|
|
}
|
|
beaconState, err := blocks.ProcessPreGenesisDeposits(ctx, s.preGenesisState, []*ethpb.Deposit{deposit})
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not process pre-genesis deposits")
|
|
}
|
|
if beaconState != nil && !beaconState.IsNil() {
|
|
s.preGenesisState = beaconState
|
|
}
|
|
return nil
|
|
}
|