-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eth2util/deposit: refactor deposit data and add tests (#521)
* refactor `deposit data` to use types from `eth2p0` ([ex](https://pkg.go.dev/github.com/attestantio/go-eth2-client/spec/[email protected]#DepositData)). * Test generated deposit data against a sample output generated using [eth2 cli](https://github.com/ethereum/staking-deposit-cli). category: refactor ticket: #481
- Loading branch information
Showing
7 changed files
with
311 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
// Copyright © 2022 Obol Labs Inc. | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
// Package deposit provides functions to create deposit data files. | ||
package deposit | ||
|
||
import ( | ||
"encoding/hex" | ||
"encoding/json" | ||
"fmt" | ||
"strings" | ||
|
||
eth2p0 "github.com/attestantio/go-eth2-client/spec/phase0" | ||
"github.com/ethereum/go-ethereum/common" | ||
|
||
"github.com/obolnetwork/charon/app/errors" | ||
"github.com/obolnetwork/charon/app/z" | ||
) | ||
|
||
var ( | ||
// https://github.com/ethereum/consensus-specs/blob/dev/specs/phase0/validator.md#eth1_address_withdrawal_prefix | ||
eth1AddressWithdrawalPrefix = []byte{0x01} | ||
|
||
// the amount of ether in gwei required to activate a validator. | ||
validatorAmt = eth2p0.Gwei(32000000000) | ||
|
||
// DOMAIN_DEPOSIT. See spec: https://benjaminion.xyz/eth2-annotated-spec/phase0/beacon-chain/#domain-types | ||
depositDomainType = eth2p0.DomainType([4]byte{0x03, 0x00, 0x00, 0x00}) | ||
) | ||
|
||
// getMessageRoot returns a deposit message hash root created by the parameters. | ||
func getMessageRoot(pubkey eth2p0.BLSPubKey, withdrawalAddr string) (eth2p0.Root, error) { | ||
creds, err := withdrawalCredsFromAddr(withdrawalAddr) | ||
if err != nil { | ||
return eth2p0.Root{}, err | ||
} | ||
|
||
dm := eth2p0.DepositMessage{ | ||
PublicKey: pubkey, | ||
WithdrawalCredentials: creds[:], | ||
Amount: validatorAmt, | ||
} | ||
hashRoot, err := dm.HashTreeRoot() | ||
if err != nil { | ||
return eth2p0.Root{}, errors.Wrap(err, "deposit message hash root") | ||
} | ||
|
||
return hashRoot, nil | ||
} | ||
|
||
// MarshalDepositData returns a json serialized deposit data. | ||
func MarshalDepositData(pubkey eth2p0.BLSPubKey, withdrawalAddr string, network string, msgSig eth2p0.BLSSignature) ([]byte, error) { | ||
forkVersion := networkToForkVersion(network) | ||
|
||
creds, err := withdrawalCredsFromAddr(withdrawalAddr) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// calculate depositMessage root | ||
msgRoot, err := getMessageRoot(pubkey, withdrawalAddr) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// TODO(corver): Verify signature matches msgRoot. | ||
|
||
dd := eth2p0.DepositData{ | ||
PublicKey: pubkey, | ||
WithdrawalCredentials: creds[:], | ||
Amount: validatorAmt, | ||
Signature: msgSig, | ||
} | ||
dataRoot, err := dd.HashTreeRoot() | ||
if err != nil { | ||
return nil, errors.Wrap(err, "deposit data hash root") | ||
} | ||
|
||
bytes, err := json.MarshalIndent(&depositDataJSON{ | ||
PubKey: fmt.Sprintf("%x", pubkey), | ||
WithdrawalCredentials: fmt.Sprintf("%x", creds), | ||
Amount: uint64(validatorAmt), | ||
Signature: fmt.Sprintf("%x", msgSig), | ||
DepositMessageRoot: fmt.Sprintf("%x", msgRoot), | ||
DepositDataRoot: fmt.Sprintf("%x", dataRoot), | ||
ForkVersion: fmt.Sprintf("%x", forkVersion), | ||
NetworkName: network, | ||
}, "", " ") | ||
if err != nil { | ||
return nil, errors.Wrap(err, "marshal deposit data") | ||
} | ||
|
||
return bytes, nil | ||
} | ||
|
||
// getDepositDomain returns the deposit signature domain. | ||
func getDepositDomain(forkVersion eth2p0.Version) (eth2p0.Domain, error) { | ||
forkData := ð2p0.ForkData{ | ||
CurrentVersion: forkVersion, | ||
GenesisValidatorsRoot: eth2p0.Root{}, // GenesisValidatorsRoot is zero for deposit domain. | ||
} | ||
root, err := forkData.HashTreeRoot() | ||
if err != nil { | ||
return eth2p0.Domain{}, errors.Wrap(err, "hash fork data") | ||
} | ||
|
||
var domain eth2p0.Domain | ||
copy(domain[0:], depositDomainType[:]) | ||
copy(domain[4:], root[:]) | ||
|
||
return domain, nil | ||
} | ||
|
||
// GetMessageSigningRoot returns the deposit message signing root created by the provided parameters. | ||
func GetMessageSigningRoot(pubkey eth2p0.BLSPubKey, withdrawalAddr string, network string) ([32]byte, error) { | ||
msgRoot, err := getMessageRoot(pubkey, withdrawalAddr) | ||
if err != nil { | ||
return [32]byte{}, err | ||
} | ||
|
||
domain, err := getDepositDomain(networkToForkVersion(network)) | ||
if err != nil { | ||
return [32]byte{}, err | ||
} | ||
|
||
resp, err := (ð2p0.SigningData{ObjectRoot: msgRoot, Domain: domain}).HashTreeRoot() | ||
if err != nil { | ||
return [32]byte{}, errors.Wrap(err, "signing data root") | ||
} | ||
|
||
return resp, nil | ||
} | ||
|
||
// WithdrawalCredsFromAddr returns the Withdrawal Credentials corresponding to a '0x01' Ethereum withdrawal address. | ||
func withdrawalCredsFromAddr(addr string) ([32]byte, error) { | ||
// Check for validity of address. | ||
if !common.IsHexAddress(addr) { | ||
return [32]byte{}, errors.New("invalid withdrawal address", z.Str("address", addr)) | ||
} | ||
|
||
addrBytes, err := hex.DecodeString(strings.TrimPrefix(addr, "0x")) | ||
if err != nil { | ||
return [32]byte{}, errors.Wrap(err, "decode address") | ||
} | ||
|
||
var creds [32]byte | ||
copy(creds[0:], eth1AddressWithdrawalPrefix) // Add 1 byte prefix. | ||
copy(creds[12:], addrBytes) // Add 20 bytes of ethereum address suffix. | ||
|
||
return creds, nil | ||
} | ||
|
||
// networkToForkVersion returns the fork version corresponding to a given network. If no known network found, | ||
// simply returns the mainnet fork version. | ||
func networkToForkVersion(network string) eth2p0.Version { | ||
switch network { | ||
case "prater": | ||
return [4]byte{0x00, 0x00, 0x10, 0x20} | ||
case "kintsugi": | ||
return [4]byte{0x60, 0x00, 0x00, 0x69} | ||
case "kiln": | ||
return [4]byte{0x70, 0x00, 0x00, 0x69} | ||
case "gnosis": | ||
return [4]byte{0x00, 0x00, 0x00, 0x64} | ||
case "mainnet": // Default to mainnet | ||
fallthrough | ||
default: | ||
return [4]byte{0x00, 0x00, 0x00, 0x00} | ||
} | ||
} | ||
|
||
// depositDataJSON is the json representation of Deposit Data. | ||
type depositDataJSON struct { | ||
PubKey string `json:"pubkey"` | ||
WithdrawalCredentials string `json:"withdrawal_credentials"` | ||
Amount uint64 `json:"amount"` | ||
Signature string `json:"signature"` | ||
DepositMessageRoot string `json:"deposit_message_root"` | ||
DepositDataRoot string `json:"deposit_data_root"` | ||
ForkVersion string `json:"fork_version"` | ||
NetworkName string `json:"network_name"` | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright © 2022 Obol Labs Inc. | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package deposit | ||
|
||
import ( | ||
"encoding/hex" | ||
"testing" | ||
|
||
eth2p0 "github.com/attestantio/go-eth2-client/spec/phase0" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestWithdrawalCredentials(t *testing.T) { | ||
expectedWithdrawalCreds := "010000000000000000000000c0404ed740a69d11201f5ed297c5732f562c6e4e" | ||
creds, err := withdrawalCredsFromAddr("0xc0404ed740a69d11201f5ed297c5732f562c6e4e") | ||
require.NoError(t, err) | ||
|
||
credsHex := hex.EncodeToString(creds[:]) | ||
|
||
require.Equal(t, expectedWithdrawalCreds, credsHex) | ||
} | ||
|
||
func TestNetworkToForkVersion(t *testing.T) { | ||
actual := networkToForkVersion("prater") | ||
assert.EqualValues(t, eth2p0.Version([4]byte{0x00, 0x00, 0x10, 0x20}), actual) | ||
} |
Oops, something went wrong.