keystore

package
v0.0.83 Latest Latest
Warning

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

Go to latest
Published: Apr 30, 2024 License: GPL-3.0 Imports: 7 Imported by: 0

README

Keystore

The package provides a Go implementation for deriving Ethereum wallets and creating Signers.

Types

  • KeyStore Interface: A factory for signer.Signer instances.
  • HdWallet: Represents a master wallet capable of generating Ethereum signers. It encapsulates the master key and provides thread-safe access to key derivation and signer creation.

Usage

Creating a New HD Wallet

To create a new HdWallet instance from a seed, use the NewHdWallet function. This function requires a seed string as input and returns a new HdWallet instance or an error if the seed is empty.

seed := "your secure seed here"
hdWallet, err := keystore.NewHdWallet(seed)
if err != nil {
    // handle error
}
Creating a Signer

With an HdWallet instance, you can generate or retrieve a signer for transaction signing using the GetOrCreateSigner method. This method accepts a unique account index (uint32) and returns a signer.Signer instance.

uniqueIndex := uint32(0) // Example index
signer, err := hdWallet.GetOrCreateSigner(uniqueIndex)
if err != nil {
    // handle error
}

// Use the signer for signing transactions
Deriving a Private Key

The HdWallet structure includes a private method derivePrivateKey, used internally to derive an ECDSA private key from the master key based on a specified derivation path. The HdWallet ensures thread-safe operations using a read-write mutex, allowing concurrent access to key derivation functions.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type HdWallet

type HdWallet struct {
	// contains filtered or unexported fields
}

Wallet represents a master wallet that can create signers.

func NewHdWallet

func NewHdWallet(seed string) (*HdWallet, error)

NewHdWallet creates a new NewHdWallet based on seed.

func (*HdWallet) GetOrCreateSigner

func (w *HdWallet) GetOrCreateSigner(uniqueIndex uint32) (signer.Signer, error)

GetOrCreateSigner creates a signer instance based on unique account index.

type KeyStore

type KeyStore interface {
	GetOrCreateSigner(uniqueIndex uint32) (signer.Signer, error)
}

KeyStore is a signers factory

Jump to

Keyboard shortcuts

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