mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
61c6827867
Former-commit-id: 2a1e8638990672fbac754cc1fb8a65dfefe69a11 [formerly 5695c392f8b1b42e980c5b4e0992ebafe782eb5b] Former-commit-id: a6c753b3843409f72472fdd0f41e5af401af8fa3
143 lines
4.3 KiB
Go
143 lines
4.3 KiB
Go
// Package mainchain defines services that interacts with a Geth node via RPC.
|
|
// This package is useful for an actor in a sharded system to interact with
|
|
// a Sharding Manager Contract.
|
|
package mainchain
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"math/big"
|
|
"net/rpc"
|
|
"os"
|
|
"sync"
|
|
|
|
ethereum "github.com/ethereum/go-ethereum"
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
"github.com/ethereum/go-ethereum/accounts/keystore"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
|
"github.com/ethereum/go-ethereum/node"
|
|
"github.com/ethereum/go-ethereum/sharding/contracts"
|
|
)
|
|
|
|
var clientIdentifier = "geth"
|
|
|
|
// SMCClient defines a service that interacts with a
|
|
// mainchain node via RPC. Specifically, it aids in SMC bindings that are useful
|
|
// to other sharding services.
|
|
type SMCClient struct {
|
|
endpoint string // Endpoint to JSON RPC.
|
|
dataDirPath string // Path to the data directory.
|
|
depositFlag bool // Keeps track of the deposit option passed in as via CLI flags.
|
|
passwordFile *string // Path to the account password file.
|
|
client *ethclient.Client // Ethereum RPC client.
|
|
keystore *keystore.KeyStore // Keystore containing the single signer.
|
|
smc *contracts.SMC // The deployed sharding management contract.
|
|
rpcClient *rpc.Client // The RPC client connection to the main geth node.
|
|
lock sync.Mutex // Mutex lock for concurrency management.
|
|
}
|
|
|
|
// NewSMCClient constructs a new instance of an SMCClient.
|
|
func NewSMCClient(endpoint string, dataDirPath string, depositFlag bool, passwordFile *string) (*SMCClient, error) {
|
|
config := &node.Config{
|
|
DataDir: dataDirPath,
|
|
}
|
|
|
|
scryptN, scryptP, keydir, err := config.AccountConfig()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ks := keystore.NewKeyStore(keydir, scryptN, scryptP)
|
|
return &SMCClient{
|
|
keystore: ks,
|
|
endpoint: endpoint,
|
|
depositFlag: depositFlag,
|
|
dataDirPath: dataDirPath,
|
|
passwordFile: passwordFile,
|
|
}, nil
|
|
}
|
|
|
|
// CreateTXOpts creates a *TransactOpts with a signer using the default account on the keystore.
|
|
func (s *SMCClient) CreateTXOpts(value *big.Int) (*bind.TransactOpts, error) {
|
|
account := s.Account()
|
|
|
|
return &bind.TransactOpts{
|
|
From: account.Address,
|
|
Value: value,
|
|
Signer: func(signer types.Signer, addr common.Address, tx *types.Transaction) (*types.Transaction, error) {
|
|
networkID, err := s.client.NetworkID(context.Background())
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch networkID: %v", err)
|
|
}
|
|
return s.keystore.SignTx(*account, tx, networkID /* chainID */)
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// Account to use for sharding transactions.
|
|
func (s *SMCClient) Account() *accounts.Account {
|
|
accounts := s.keystore.Accounts()
|
|
return &accounts[0]
|
|
}
|
|
|
|
// ChainReader for interacting with the chain.
|
|
func (s *SMCClient) ChainReader() ethereum.ChainReader {
|
|
return ethereum.ChainReader(s.client)
|
|
}
|
|
|
|
// SMCCaller to interact with the sharding manager contract.
|
|
func (s *SMCClient) SMCCaller() *contracts.SMCCaller {
|
|
return &s.smc.SMCCaller
|
|
}
|
|
|
|
// SMCTransactor allows us to send tx's to the SMC programmatically.
|
|
func (s *SMCClient) SMCTransactor() *contracts.SMCTransactor {
|
|
return &s.smc.SMCTransactor
|
|
}
|
|
|
|
// DepositFlagSet returns true for cli flag --deposit.
|
|
func (s *SMCClient) DepositFlagSet() bool {
|
|
return s.depositFlag
|
|
}
|
|
|
|
// DataDirPath returns the datadir flag as a string.
|
|
func (s *SMCClient) DataDirPath() string {
|
|
return s.dataDirPath
|
|
}
|
|
|
|
// Client to interact with a geth node via JSON-RPC.
|
|
func (s *SMCClient) ethereumClient() *ethclient.Client {
|
|
return s.client
|
|
}
|
|
|
|
// unlockAccount will unlock the specified account using utils.PasswordFileFlag
|
|
// or empty string if unset.
|
|
func (s *SMCClient) unlockAccount(account accounts.Account) error {
|
|
pass := ""
|
|
|
|
if s.passwordFile != nil {
|
|
file, err := os.Open(*s.passwordFile)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to open file containing account password %s. %v", *s.passwordFile, err)
|
|
}
|
|
scanner := bufio.NewScanner(file)
|
|
scanner.Split(bufio.ScanWords)
|
|
if !scanner.Scan() {
|
|
err = scanner.Err()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to read contents of file %v", err)
|
|
}
|
|
return errors.New("password not found in file")
|
|
}
|
|
|
|
pass = scanner.Text()
|
|
}
|
|
|
|
return s.keystore.Unlock(account, pass)
|
|
}
|