2019-06-26 22:28:16 +00:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/pborman/uuid"
|
2020-01-02 09:10:19 +00:00
|
|
|
|
2019-07-24 18:59:15 +00:00
|
|
|
"github.com/status-im/status-go/account/generator"
|
2019-12-19 16:03:00 +00:00
|
|
|
"github.com/status-im/status-go/eth-node/crypto"
|
2019-11-23 17:57:05 +00:00
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
2019-06-26 22:28:16 +00:00
|
|
|
"github.com/status-im/status-go/extkeys"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OnboardingAccount is returned during onboarding and contains its ID and the mnemonic to re-generate the same account Info keys.
|
|
|
|
type OnboardingAccount struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
mnemonic string
|
|
|
|
Info Info `json:"info"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Onboarding is a struct contains a slice of OnboardingAccount.
|
|
|
|
type Onboarding struct {
|
|
|
|
accounts map[string]*OnboardingAccount
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewOnboarding returns a new onboarding struct generating n accounts.
|
|
|
|
func NewOnboarding(n, mnemonicPhraseLength int) (*Onboarding, error) {
|
|
|
|
onboarding := &Onboarding{
|
|
|
|
accounts: make(map[string]*OnboardingAccount),
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
account, err := onboarding.generateAccount(mnemonicPhraseLength)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
onboarding.accounts[account.ID] = account
|
|
|
|
}
|
|
|
|
|
|
|
|
return onboarding, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accounts return the list of OnboardingAccount generated.
|
|
|
|
func (o *Onboarding) Accounts() []*OnboardingAccount {
|
|
|
|
accounts := make([]*OnboardingAccount, 0)
|
|
|
|
for _, a := range o.accounts {
|
|
|
|
accounts = append(accounts, a)
|
|
|
|
}
|
|
|
|
|
|
|
|
return accounts
|
|
|
|
}
|
|
|
|
|
|
|
|
// Account returns an OnboardingAccount by id.
|
|
|
|
func (o *Onboarding) Account(id string) (*OnboardingAccount, error) {
|
|
|
|
account, ok := o.accounts[id]
|
|
|
|
if !ok {
|
|
|
|
return nil, ErrOnboardingAccountNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
return account, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Onboarding) generateAccount(mnemonicPhraseLength int) (*OnboardingAccount, error) {
|
2019-07-24 18:59:15 +00:00
|
|
|
entropyStrength, err := generator.MnemonicPhraseLengthToEntropyStrength(mnemonicPhraseLength)
|
2019-06-26 22:28:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mnemonic := extkeys.NewMnemonic()
|
|
|
|
mnemonicPhrase, err := mnemonic.MnemonicPhrase(entropyStrength, extkeys.EnglishLanguage)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can not create mnemonic seed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
masterExtendedKey, err := extkeys.NewMaster(mnemonic.MnemonicSeed(mnemonicPhrase, ""))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can not create master extended key: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
walletAddress, walletPubKey, err := o.deriveAccount(masterExtendedKey, extkeys.KeyPurposeWallet, 0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := Info{
|
|
|
|
WalletAddress: walletAddress,
|
|
|
|
WalletPubKey: walletPubKey,
|
|
|
|
ChatAddress: walletAddress,
|
|
|
|
ChatPubKey: walletPubKey,
|
|
|
|
}
|
|
|
|
|
|
|
|
uuid := uuid.NewRandom().String()
|
|
|
|
|
|
|
|
account := &OnboardingAccount{
|
|
|
|
ID: uuid,
|
|
|
|
mnemonic: mnemonicPhrase,
|
|
|
|
Info: info,
|
|
|
|
}
|
|
|
|
|
|
|
|
return account, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Onboarding) deriveAccount(masterExtendedKey *extkeys.ExtendedKey, purpose extkeys.KeyPurpose, index uint32) (string, string, error) {
|
|
|
|
extendedKey, err := masterExtendedKey.ChildForPurpose(purpose, index)
|
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
privateKeyECDSA := extendedKey.ToECDSA()
|
|
|
|
address := crypto.PubkeyToAddress(privateKeyECDSA.PublicKey)
|
2019-11-23 17:57:05 +00:00
|
|
|
publicKeyHex := types.EncodeHex(crypto.FromECDSAPub(&privateKeyECDSA.PublicKey))
|
2019-06-26 22:28:16 +00:00
|
|
|
|
|
|
|
return address.Hex(), publicKeyHex, nil
|
|
|
|
}
|