mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
5eb5f6afa9
* second pass at faucet, no rate limiting yet * Add authentication support, step 1. This stuff needs to be refactored and tested * move deposit input to keystore pkg, add proof of possession and withdrawal addr * checkpoint on progress with cluster private key manager * checkpoint w/ bootnode config * checkpoint * resolve todo * encrypt the secrets * add note about querying testnet * workspace * checkpoitn * remove limits * update * checkpoint * checkpoint * remove jwt stuff * fix build * lint * lint * remove init * remove jwt * update * checkpoint
140 lines
3.4 KiB
Go
140 lines
3.4 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"crypto/ecdsa"
|
|
"crypto/rand"
|
|
"fmt"
|
|
"math/big"
|
|
"sync"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
contracts "github.com/prysmaticlabs/prysm/contracts/deposit-contract"
|
|
pb "github.com/prysmaticlabs/prysm/proto/cluster"
|
|
"github.com/prysmaticlabs/prysm/shared/keystore"
|
|
"github.com/prysmaticlabs/prysm/shared/ssz"
|
|
)
|
|
|
|
var gasLimit = uint64(4000000)
|
|
|
|
type server struct {
|
|
contract *contracts.DepositContract
|
|
db *db
|
|
depositAmount *big.Int
|
|
txPk *ecdsa.PrivateKey
|
|
client *ethclient.Client
|
|
|
|
clientLock sync.Mutex
|
|
}
|
|
|
|
func newServer(
|
|
db *db,
|
|
rpcAddr string,
|
|
depositContractAddr string,
|
|
funderPK string,
|
|
validatorDepositAmount int64,
|
|
) *server {
|
|
rpcClient, err := rpc.Dial(rpcAddr)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
client := ethclient.NewClient(rpcClient)
|
|
|
|
contract, err := contracts.NewDepositContract(common.HexToAddress(depositContractAddr), client)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
txPk, err := crypto.HexToECDSA(funderPK)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
depositAmount := big.NewInt(validatorDepositAmount)
|
|
|
|
return &server{
|
|
contract: contract,
|
|
client: client,
|
|
db: db,
|
|
depositAmount: depositAmount,
|
|
txPk: txPk,
|
|
}
|
|
}
|
|
|
|
func (s *server) makeDeposit(data []byte) error {
|
|
s.clientLock.Lock()
|
|
defer s.clientLock.Unlock()
|
|
|
|
txOps := bind.NewKeyedTransactor(s.txPk)
|
|
txOps.Value = s.depositAmount
|
|
txOps.GasLimit = gasLimit
|
|
tx, err := s.contract.Deposit(txOps, data)
|
|
if err != nil {
|
|
return fmt.Errorf("deposit failed: %v", err)
|
|
}
|
|
log.WithField("tx", tx.Hash().Hex()).Info("Deposit transaction sent")
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *server) Request(ctx context.Context, req *pb.PrivateKeyRequest) (*pb.PrivateKeyResponse, error) {
|
|
pk, err := s.db.PodPK(ctx, req.PodName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if pk != nil {
|
|
log.WithField("pod", req.PodName).Debug("Returning existing assignment")
|
|
return &pb.PrivateKeyResponse{PrivateKey: pk}, nil
|
|
}
|
|
|
|
pk, err = s.db.UnallocatedPK(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if pk != nil {
|
|
log.WithField("pod", req.PodName).Debug("Recycling existing private key")
|
|
if err := s.db.AssignExistingPK(ctx, pk, req.PodName); err != nil {
|
|
return nil, err
|
|
}
|
|
return &pb.PrivateKeyResponse{PrivateKey: pk}, nil
|
|
}
|
|
|
|
log.WithField("pod", req.PodName).Debug("Allocating a new private key")
|
|
return s.allocateNewKey(ctx, req.PodName)
|
|
}
|
|
|
|
func (s *server) allocateNewKey(ctx context.Context, podName string) (*pb.PrivateKeyResponse, error) {
|
|
key, err := keystore.NewKey(rand.Reader)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Make the validator deposit
|
|
// NOTE: This uses the validator key as the withdrawal key
|
|
di, err := keystore.DepositInput(key /*depositKey*/, key /*withdrawalKey*/)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
serializedData := new(bytes.Buffer)
|
|
if err := ssz.Encode(serializedData, di); err != nil {
|
|
return nil, fmt.Errorf("could not serialize deposit data: %v", err)
|
|
}
|
|
|
|
// Do the actual deposit
|
|
if err := s.makeDeposit(serializedData.Bytes()); err != nil {
|
|
return nil, err
|
|
}
|
|
// Store in database
|
|
if err := s.db.AllocateNewPkToPod(ctx, key, podName); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &pb.PrivateKeyResponse{PrivateKey: key.SecretKey.Marshal()}, nil
|
|
|
|
}
|