mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
9db49e8be3
Former-commit-id: cdd3520e9e4705f23addbcbee86819dcdc322182 [formerly 0ef943ecc446417babcb02f2f49a3c48ed9db772] Former-commit-id: 3dd9b81535df442cbdcd4ef6a4e043c192fbd8d0
55 lines
1.8 KiB
Go
55 lines
1.8 KiB
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/big"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
"github.com/ethereum/go-ethereum/sharding"
|
|
"github.com/ethereum/go-ethereum/sharding/contracts"
|
|
)
|
|
|
|
// initSMC initializes the sharding manager contract bindings.
|
|
// If the SMC does not exist, it will be deployed.
|
|
func initSMC(c *shardingClient) (*contracts.SMC, error) {
|
|
b, err := c.client.CodeAt(context.Background(), sharding.ShardingManagerAddress, nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to get contract code at %s: %v", sharding.ShardingManagerAddress, err)
|
|
}
|
|
|
|
// Deploy SMC for development only.
|
|
// TODO: Separate contract deployment from the sharding client. It would only need to be deployed
|
|
// once on the mainnet, so this code would not need to ship with the client.
|
|
if len(b) == 0 {
|
|
log.Info(fmt.Sprintf("No sharding manager contract found at %s. Deploying new contract.", sharding.ShardingManagerAddress.String()))
|
|
|
|
txOps, err := c.CreateTXOps(big.NewInt(0))
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to intiate the transaction: %v", err)
|
|
}
|
|
|
|
addr, tx, contract, err := contracts.DeploySMC(txOps, c.client)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to deploy sharding manager contract: %v", err)
|
|
}
|
|
|
|
for pending := true; pending; _, pending, err = c.client.TransactionByHash(context.Background(), tx.Hash()) {
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to get transaction by hash: %v", err)
|
|
}
|
|
time.Sleep(1 * time.Second)
|
|
}
|
|
|
|
log.Info(fmt.Sprintf("New contract deployed at %s", addr.String()))
|
|
return contract, nil
|
|
}
|
|
|
|
contract, err := contracts.NewSMC(sharding.ShardingManagerAddress, c.client)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create sharding contract: %v", err)
|
|
}
|
|
return contract, nil
|
|
}
|