utils

package
v1.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 3, 2022 License: GPL-3.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GenerateAddress added in v0.2.3

func GenerateAddress(ggp *gogopool.GoGoPool, nodeAddress common.Address, depositType ggptypes.MinipoolDeposit, salt *big.Int, minipoolBytecode []byte) (common.Address, error)

Precompute the address of a minipool based on the node wallet, deposit type, and unique salt If you set minipoolBytecode to nil, this will retrieve it from the contracts using minipool.GetMinipoolBytecode().

func GetDeposits added in v0.2.3

func GetDeposits(ggp *gogopool.GoGoPool, pubkeys map[ggptypes.ValidatorPubkey]bool, startBlock *big.Int, intervalSize *big.Int, opts *bind.CallOpts) (map[ggptypes.ValidatorPubkey][]DepositData, error)

Gets all of the deposit contract's deposit events for the provided pubkeys

func GetNodeSalt added in v0.2.3

func GetNodeSalt(nodeAddress common.Address, salt *big.Int) common.Hash

Combine a node's address and a salt to retreive a new salt compatible with depositing

func WaitForTransaction

func WaitForTransaction(client *client.EthClientProxy, hash common.Hash) (*types.Receipt, error)

Wait for a transaction to get mined

Types

type BeaconDepositEvent added in v0.2.3

type BeaconDepositEvent struct {
	Pubkey                []byte    `abi:"pubkey"`
	WithdrawalCredentials []byte    `abi:"withdrawal_credentials"`
	Amount                []byte    `abi:"amount"`
	Signature             []byte    `abi:"signature"`
	Index                 []byte    `abi:"index"`
	Raw                   types.Log // Blockchain specific contextual infos
}

BeaconDepositEvent represents a DepositEvent event raised by the BeaconDeposit contract.

type DepositData added in v0.2.3

type DepositData struct {
	Pubkey                ggptypes.ValidatorPubkey    `json:"pubkey"`
	WithdrawalCredentials common.Hash                 `json:"withdrawalCredentials"`
	Amount                uint64                      `json:"amount"`
	Signature             ggptypes.ValidatorSignature `json:"signature"`
	TxHash                common.Hash                 `json:"txHash"`
	BlockNumber           uint64                      `json:"blockNumber"`
	TxIndex               uint                        `json:"txIndex"`
}

Formatted Beacon deposit event data

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL