2018-03-02 15:24:09 +00:00
|
|
|
package wallet
|
|
|
|
|
2019-08-27 13:29:42 +00:00
|
|
|
import (
|
2020-02-20 12:47:36 +00:00
|
|
|
"bytes"
|
2020-01-09 15:30:25 +00:00
|
|
|
"errors"
|
2020-02-20 10:28:35 +00:00
|
|
|
"fmt"
|
2020-01-09 15:30:25 +00:00
|
|
|
|
2021-03-25 16:18:01 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/config/netmode"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/opcode"
|
2019-08-27 13:29:42 +00:00
|
|
|
)
|
2018-03-02 15:24:09 +00:00
|
|
|
|
|
|
|
// Account represents a NEO account. It holds the private and public key
|
|
|
|
// along with some metadata.
|
|
|
|
type Account struct {
|
|
|
|
// NEO private key.
|
2019-08-27 13:29:42 +00:00
|
|
|
privateKey *keys.PrivateKey
|
2018-03-02 15:24:09 +00:00
|
|
|
|
|
|
|
// NEO public key.
|
|
|
|
publicKey []byte
|
|
|
|
|
|
|
|
// Account import file.
|
|
|
|
wif string
|
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// NEO public address.
|
2018-03-02 15:24:09 +00:00
|
|
|
Address string `json:"address"`
|
|
|
|
|
|
|
|
// Encrypted WIF of the account also known as the key.
|
|
|
|
EncryptedWIF string `json:"key"`
|
|
|
|
|
|
|
|
// Label is a label the user had made for this account.
|
|
|
|
Label string `json:"label"`
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// Contract is a Contract object which describes the details of the contract.
|
2018-03-02 15:24:09 +00:00
|
|
|
// This field can be null (for watch-only address).
|
|
|
|
Contract *Contract `json:"contract"`
|
|
|
|
|
|
|
|
// Indicates whether the account is locked by the user.
|
|
|
|
// the client shouldn't spend the funds in a locked account.
|
|
|
|
Locked bool `json:"lock"`
|
|
|
|
|
|
|
|
// Indicates whether the account is the default change account.
|
2020-07-10 05:39:39 +00:00
|
|
|
Default bool `json:"isdefault"`
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// Contract represents a subset of the smartcontract to embed in the
|
2018-03-02 15:24:09 +00:00
|
|
|
// Account so it's NEP-6 compliant.
|
|
|
|
type Contract struct {
|
2020-01-15 13:36:57 +00:00
|
|
|
// Script of the contract deployed on the blockchain.
|
|
|
|
Script []byte `json:"script"`
|
2018-03-02 15:24:09 +00:00
|
|
|
|
|
|
|
// A list of parameters used deploying this contract.
|
2020-03-04 10:58:33 +00:00
|
|
|
Parameters []ContractParam `json:"parameters"`
|
2018-03-02 15:24:09 +00:00
|
|
|
|
|
|
|
// Indicates whether the contract has been deployed to the blockchain.
|
|
|
|
Deployed bool `json:"deployed"`
|
|
|
|
}
|
|
|
|
|
2020-01-15 13:36:57 +00:00
|
|
|
// contract is an intermediate struct used for json unmarshalling.
|
|
|
|
type contract struct {
|
|
|
|
// Script is a hex-encoded script of the contract.
|
|
|
|
Script string `json:"script"`
|
|
|
|
|
|
|
|
// A list of parameters used deploying this contract.
|
2020-03-04 10:58:33 +00:00
|
|
|
Parameters []ContractParam `json:"parameters"`
|
2020-01-15 13:36:57 +00:00
|
|
|
|
|
|
|
// Indicates whether the contract has been deployed to the blockchain.
|
|
|
|
Deployed bool `json:"deployed"`
|
|
|
|
}
|
|
|
|
|
2020-03-04 10:58:33 +00:00
|
|
|
// ContractParam is a descriptor of a contract parameter
|
|
|
|
// containing type and optional name.
|
|
|
|
type ContractParam struct {
|
2020-02-20 10:28:35 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Type smartcontract.ParamType `json:"type"`
|
|
|
|
}
|
|
|
|
|
2020-01-15 15:08:25 +00:00
|
|
|
// ScriptHash returns the hash of contract's script.
|
|
|
|
func (c Contract) ScriptHash() util.Uint160 {
|
|
|
|
return hash.Hash160(c.Script)
|
|
|
|
}
|
|
|
|
|
2018-03-02 15:24:09 +00:00
|
|
|
// NewAccount creates a new Account with a random generated PrivateKey.
|
|
|
|
func NewAccount() (*Account, error) {
|
2019-08-27 13:29:42 +00:00
|
|
|
priv, err := keys.NewPrivateKey()
|
2018-03-02 15:24:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-04 09:40:22 +00:00
|
|
|
return NewAccountFromPrivateKey(priv), nil
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
|
|
|
|
2020-02-28 16:01:07 +00:00
|
|
|
// SignTx signs transaction t and updates it's Witnesses.
|
2021-03-25 16:18:01 +00:00
|
|
|
func (a *Account) SignTx(net netmode.Magic, t *transaction.Transaction) error {
|
2020-09-02 09:20:42 +00:00
|
|
|
if len(a.Contract.Parameters) == 0 {
|
|
|
|
t.Scripts = append(t.Scripts, transaction.Witness{})
|
|
|
|
return nil
|
|
|
|
}
|
2021-04-20 08:21:43 +00:00
|
|
|
if a.privateKey == nil {
|
|
|
|
return errors.New("account is not unlocked")
|
|
|
|
}
|
2021-03-25 16:18:01 +00:00
|
|
|
sign := a.privateKey.SignHashable(uint32(net), t)
|
2020-02-28 16:01:07 +00:00
|
|
|
|
2021-02-08 10:47:52 +00:00
|
|
|
verif := a.GetVerificationScript()
|
2020-08-17 08:49:43 +00:00
|
|
|
invoc := append([]byte{byte(opcode.PUSHDATA1), 64}, sign...)
|
|
|
|
for i := range t.Scripts {
|
|
|
|
if bytes.Equal(t.Scripts[i].VerificationScript, verif) {
|
|
|
|
t.Scripts[i].InvocationScript = append(t.Scripts[i].InvocationScript, invoc...)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2020-02-28 16:01:07 +00:00
|
|
|
t.Scripts = append(t.Scripts, transaction.Witness{
|
2020-08-17 08:49:43 +00:00
|
|
|
InvocationScript: invoc,
|
|
|
|
VerificationScript: verif,
|
2020-02-28 16:01:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-08 10:47:52 +00:00
|
|
|
// GetVerificationScript returns account's verification script.
|
|
|
|
func (a *Account) GetVerificationScript() []byte {
|
2020-02-28 16:01:07 +00:00
|
|
|
if a.Contract != nil {
|
|
|
|
return a.Contract.Script
|
|
|
|
}
|
|
|
|
return a.PrivateKey().PublicKey().GetVerificationScript()
|
|
|
|
}
|
|
|
|
|
2020-01-09 15:30:25 +00:00
|
|
|
// Decrypt decrypts the EncryptedWIF with the given passphrase returning error
|
|
|
|
// if anything goes wrong.
|
|
|
|
func (a *Account) Decrypt(passphrase string) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
if a.EncryptedWIF == "" {
|
|
|
|
return errors.New("no encrypted wif in the account")
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
2020-01-09 15:30:25 +00:00
|
|
|
a.privateKey, err = keys.NEP2Decrypt(a.EncryptedWIF, passphrase)
|
2020-02-20 10:06:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
a.publicKey = a.privateKey.PublicKey().Bytes()
|
|
|
|
a.wif = a.privateKey.WIF()
|
|
|
|
|
|
|
|
return nil
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Encrypt encrypts the wallet's PrivateKey with the given passphrase
|
|
|
|
// under the NEP-2 standard.
|
|
|
|
func (a *Account) Encrypt(passphrase string) error {
|
2019-08-27 13:29:42 +00:00
|
|
|
wif, err := keys.NEP2Encrypt(a.privateKey, passphrase)
|
2018-03-02 15:24:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
a.EncryptedWIF = wif
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
// PrivateKey returns private key corresponding to the account.
|
|
|
|
func (a *Account) PrivateKey() *keys.PrivateKey {
|
|
|
|
return a.privateKey
|
|
|
|
}
|
|
|
|
|
2018-03-02 15:24:09 +00:00
|
|
|
// NewAccountFromWIF creates a new Account from the given WIF.
|
|
|
|
func NewAccountFromWIF(wif string) (*Account, error) {
|
2019-08-27 13:29:42 +00:00
|
|
|
privKey, err := keys.NewPrivateKeyFromWIF(wif)
|
2018-03-02 15:24:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-04 09:40:22 +00:00
|
|
|
return NewAccountFromPrivateKey(privKey), nil
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 09:22:40 +00:00
|
|
|
// NewAccountFromEncryptedWIF creates a new Account from the given encrypted WIF.
|
|
|
|
func NewAccountFromEncryptedWIF(wif string, pass string) (*Account, error) {
|
|
|
|
priv, err := keys.NEP2Decrypt(wif, pass)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-04 09:40:22 +00:00
|
|
|
a := NewAccountFromPrivateKey(priv)
|
2020-02-20 09:22:40 +00:00
|
|
|
a.EncryptedWIF = wif
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-02-20 12:47:36 +00:00
|
|
|
// ConvertMultisig sets a's contract to multisig contract with m sufficient signatures.
|
|
|
|
func (a *Account) ConvertMultisig(m int, pubs []*keys.PublicKey) error {
|
|
|
|
var found bool
|
|
|
|
for i := range pubs {
|
|
|
|
if bytes.Equal(a.publicKey, pubs[i].Bytes()) {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
return errors.New("own public key was not found among multisig keys")
|
|
|
|
}
|
|
|
|
|
|
|
|
script, err := smartcontract.CreateMultiSigRedeemScript(m, pubs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
a.Address = address.Uint160ToString(hash.Hash160(script))
|
|
|
|
a.Contract = &Contract{
|
|
|
|
Script: script,
|
|
|
|
Parameters: getContractParams(m),
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-04 09:40:22 +00:00
|
|
|
// NewAccountFromPrivateKey creates a wallet from the given PrivateKey.
|
|
|
|
func NewAccountFromPrivateKey(p *keys.PrivateKey) *Account {
|
2019-09-05 06:35:02 +00:00
|
|
|
pubKey := p.PublicKey()
|
|
|
|
pubAddr := p.Address()
|
|
|
|
wif := p.WIF()
|
2018-03-02 15:24:09 +00:00
|
|
|
|
|
|
|
a := &Account{
|
2019-02-19 18:37:35 +00:00
|
|
|
publicKey: pubKey.Bytes(),
|
2018-03-02 15:24:09 +00:00
|
|
|
privateKey: p,
|
|
|
|
Address: pubAddr,
|
|
|
|
wif: wif,
|
2020-02-20 10:28:35 +00:00
|
|
|
Contract: &Contract{
|
|
|
|
Script: pubKey.GetVerificationScript(),
|
|
|
|
Parameters: getContractParams(1),
|
|
|
|
},
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 06:35:02 +00:00
|
|
|
return a
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|
2020-02-20 10:28:35 +00:00
|
|
|
|
2020-03-04 10:58:33 +00:00
|
|
|
func getContractParams(n int) []ContractParam {
|
|
|
|
params := make([]ContractParam, n)
|
2020-02-20 10:28:35 +00:00
|
|
|
for i := range params {
|
|
|
|
params[i].Name = fmt.Sprintf("parameter%d", i)
|
|
|
|
params[i].Type = smartcontract.SignatureType
|
|
|
|
}
|
|
|
|
|
|
|
|
return params
|
|
|
|
}
|