mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 16:37:39 +00:00
7dcef60a37
Former-commit-id: 7e98ed54ff716b2da878f085ae1ff40472ce1966 [formerly fc5b4ec6ab005aedf8d0aa3206f27209aab65d71] Former-commit-id: 4b17e2e49cf3df95a90be3fc7fb2bb66a96bbeed
79 lines
2.2 KiB
Go
79 lines
2.2 KiB
Go
package sharding
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/big"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
|
"github.com/ethereum/go-ethereum/log"
|
|
"github.com/ethereum/go-ethereum/sharding/contracts"
|
|
)
|
|
|
|
// initVMC initializes the validator management contract bindings.
|
|
// If the VMC does not exist, it will be deployed.
|
|
func initVMC(c *Client) error {
|
|
b, err := c.client.CodeAt(context.Background(), validatorManagerAddress, nil)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to get contract code at %s: %v", validatorManagerAddress, err)
|
|
}
|
|
|
|
if len(b) == 0 {
|
|
log.Info(fmt.Sprintf("No validator management contract found at %s. Deploying new contract.", validatorManagerAddress.String()))
|
|
|
|
txOps, err := c.createTXOps(big.NewInt(0))
|
|
if err != nil {
|
|
return fmt.Errorf("unable to intiate the transaction: %v", err)
|
|
}
|
|
|
|
addr, tx, contract, err := contracts.DeployVMC(txOps, c.client)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to deploy validator management contract: %v", err)
|
|
}
|
|
|
|
for pending := true; pending; _, pending, err = c.client.TransactionByHash(context.Background(), tx.Hash()) {
|
|
if err != nil {
|
|
return fmt.Errorf("unable to get transaction by hash: %v", err)
|
|
}
|
|
time.Sleep(1 * time.Second)
|
|
}
|
|
|
|
c.vmc = contract
|
|
log.Info(fmt.Sprintf("New contract deployed at %s", addr.String()))
|
|
} else {
|
|
contract, err := contracts.NewVMC(validatorManagerAddress, c.client)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create validator contract: %v", err)
|
|
}
|
|
c.vmc = contract
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// joinValidatorSet checks if the account is a validator in the VMC. If
|
|
// the account is not in the set, it will deposit 100ETH into contract.
|
|
func joinValidatorSet(c *Client) error {
|
|
|
|
if c.ctx.GlobalBool(utils.JoinValidatorSetFlag.Name) {
|
|
|
|
log.Info("Joining validator set")
|
|
txOps, err := c.createTXOps(depositSize)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to intiate the deposit transaction: %v", err)
|
|
}
|
|
|
|
tx, err := c.vmc.VMCTransactor.Deposit(txOps)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to deposit eth and become a validator: %v", err)
|
|
}
|
|
log.Info(fmt.Sprintf("Deposited %dETH into contract with transaction hash: %s", depositSize, tx.Hash().String()))
|
|
|
|
} else {
|
|
log.Info("Not joining validator set")
|
|
|
|
}
|
|
return nil
|
|
}
|