Documentation ¶
Index ¶
- Constants
- Variables
- func SignTransaction(txn *types.Transaction, seed modules.Seed, toSign []crypto.Hash, ...) error
- type Wallet
- func (w *Wallet) AddUnlockConditions(uc types.UnlockConditions) error
- func (w *Wallet) AddWatchAddresses(addrs []types.UnlockHash, unused bool) error
- func (w *Wallet) AddressTransactions(uh types.UnlockHash) (pts []modules.ProcessedTransaction, err error)
- func (w *Wallet) AddressUnconfirmedTransactions(uh types.UnlockHash) (pts []modules.ProcessedTransaction, err error)
- func (w *Wallet) AllAddresses() ([]types.UnlockHash, error)
- func (w *Wallet) AllSeeds() ([]modules.Seed, error)
- func (w *Wallet) ChangeKey(masterKey crypto.TwofishKey, newKey crypto.TwofishKey) error
- func (w *Wallet) Close() error
- func (w *Wallet) ConfirmedBalance() (siacoinBalance types.Currency, siafundBalance types.Currency, ...)
- func (w *Wallet) CreateBackup(backupFilepath string) error
- func (w *Wallet) DustThreshold() (types.Currency, error)
- func (w *Wallet) Encrypt(masterKey crypto.TwofishKey) (modules.Seed, error)
- func (w *Wallet) Encrypted() (bool, error)
- func (w *Wallet) Height() (types.BlockHeight, error)
- func (w *Wallet) InitFromSeed(masterKey crypto.TwofishKey, seed modules.Seed) error
- func (w *Wallet) Load033xWallet(masterKey crypto.TwofishKey, filepath033x string) error
- func (w *Wallet) LoadSeed(masterKey crypto.TwofishKey, seed modules.Seed) error
- func (w *Wallet) LoadSiagKeys(masterKey crypto.TwofishKey, keyfiles []string) error
- func (w *Wallet) Lock() error
- func (w *Wallet) NextAddress() (types.UnlockConditions, error)
- func (w *Wallet) NextAddresses(n uint64) ([]types.UnlockConditions, error)
- func (w *Wallet) PrimarySeed() (modules.Seed, uint64, error)
- func (w *Wallet) ProcessConsensusChange(cc modules.ConsensusChange)
- func (w *Wallet) ReceiveUpdatedUnconfirmedTransactions(diff *modules.TransactionPoolDiff)
- func (w *Wallet) RegisterTransaction(t types.Transaction, parents []types.Transaction) (modules.TransactionBuilder, error)
- func (w *Wallet) RemoveWatchAddresses(addrs []types.UnlockHash, unused bool) error
- func (w *Wallet) Rescanning() (bool, error)
- func (w *Wallet) Reset() error
- func (w *Wallet) SendSiacoins(amount types.Currency, dest types.UnlockHash) (txns []types.Transaction, err error)
- func (w *Wallet) SendSiacoinsMulti(outputs []types.SiacoinOutput) (txns []types.Transaction, err error)
- func (w *Wallet) SendSiafunds(amount types.Currency, dest types.UnlockHash) (txns []types.Transaction, err error)
- func (w *Wallet) SetSettings(s modules.WalletSettings) error
- func (w *Wallet) Settings() (modules.WalletSettings, error)
- func (w *Wallet) SignTransaction(txn *types.Transaction, toSign []crypto.Hash) error
- func (w *Wallet) StartTransaction() (modules.TransactionBuilder, error)
- func (w *Wallet) SweepSeed(seed modules.Seed) (coins, funds types.Currency, err error)
- func (w *Wallet) Transaction(txid types.TransactionID) (pt modules.ProcessedTransaction, found bool, err error)
- func (w *Wallet) Transactions(startHeight, endHeight types.BlockHeight) (pts []modules.ProcessedTransaction, err error)
- func (w *Wallet) UnconfirmedBalance() (outgoingSiacoins types.Currency, incomingSiacoins types.Currency, err error)
- func (w *Wallet) UnconfirmedTransactions() ([]modules.ProcessedTransaction, error)
- func (w *Wallet) Unlock(masterKey crypto.TwofishKey) error
- func (w *Wallet) UnlockConditions(addr types.UnlockHash) (uc types.UnlockConditions, err error)
- func (w *Wallet) Unlocked() (bool, error)
- func (w *Wallet) UnspentOutputs() ([]modules.UnspentOutput, error)
- func (w *Wallet) WatchAddresses() ([]types.UnlockHash, error)
Constants ¶
const ( // SiagFileExtension is the file extension to be used for siag files SiagFileExtension = ".siakey" // SiagFileHeader is the header for all siag files. Do not change. Because siag was created // early in development, compatibility with siag requires manually handling // the headers and version instead of using the persist package. SiagFileHeader = "siag" // SiagFileVersion is the version number to be used for siag files SiagFileVersion = "1.0" )
const ( // RespendTimeout records the number of blocks that the wallet will wait // before spending an output that has been spent in the past. If the // transaction spending the output has not made it to the transaction pool // after the limit, the assumption is that it never will. RespendTimeout = 40 )
Variables ¶
var ( // ErrInconsistentKeys is the error when keyfiles provided are for different addresses ErrInconsistentKeys = errors.New("keyfiles provided that are for different addresses") // ErrInsufficientKeys is the error when there's not enough keys provided to spend the siafunds ErrInsufficientKeys = errors.New("not enough keys provided to spend the siafunds") // ErrNoKeyfile is the error when no keyfile has been presented ErrNoKeyfile = errors.New("no keyfile has been presented") // ErrUnknownHeader is the error when file contains wrong header ErrUnknownHeader = errors.New("file contains the wrong header") // ErrUnknownVersion is the error when the file has an unknown version number ErrUnknownVersion = errors.New("file has an unknown version number") )
Functions ¶
func SignTransaction ¶
func SignTransaction(txn *types.Transaction, seed modules.Seed, toSign []crypto.Hash, height types.BlockHeight) error
SignTransaction signs txn using secret keys derived from seed. The transaction should be complete with the exception of the Signature fields of each TransactionSignature referenced by toSign, which must not be empty.
SignTransaction must derive all of the keys from scratch, so it is appreciably slower than calling the Wallet.SignTransaction method. Only the first 1 million keys are derived.
Types ¶
type Wallet ¶
type Wallet struct {
// contains filtered or unexported fields
}
Wallet is an object that tracks balances, creates keys and addresses, manages building and sending transactions.
func New ¶
func New(cs modules.ConsensusSet, tpool modules.TransactionPool, persistDir string) (*Wallet, error)
New creates a new wallet, loading any known addresses from the input file name and then using the file to save in the future. Keys and addresses are not loaded into the wallet during the call to 'new', but rather during the call to 'Unlock'.
func NewCustomWallet ¶
func NewCustomWallet(cs modules.ConsensusSet, tpool modules.TransactionPool, persistDir string, deps modules.Dependencies) (*Wallet, error)
NewCustomWallet creates a new wallet using custom dependencies.
func (*Wallet) AddUnlockConditions ¶
func (w *Wallet) AddUnlockConditions(uc types.UnlockConditions) error
AddUnlockConditions adds a set of UnlockConditions to the wallet database.
func (*Wallet) AddWatchAddresses ¶
func (w *Wallet) AddWatchAddresses(addrs []types.UnlockHash, unused bool) error
AddWatchAddresses instructs the wallet to begin tracking a set of addresses, in addition to the addresses it was previously tracking. If none of the addresses have appeared in the blockchain, the unused flag may be set to true. Otherwise, the wallet must rescan the blockchain to search for transactions containing the addresses.
func (*Wallet) AddressTransactions ¶
func (w *Wallet) AddressTransactions(uh types.UnlockHash) (pts []modules.ProcessedTransaction, err error)
AddressTransactions returns all of the wallet transactions associated with a single unlock hash.
func (*Wallet) AddressUnconfirmedTransactions ¶
func (w *Wallet) AddressUnconfirmedTransactions(uh types.UnlockHash) (pts []modules.ProcessedTransaction, err error)
AddressUnconfirmedTransactions returns all of the unconfirmed wallet transactions related to a specific address.
func (*Wallet) AllAddresses ¶
func (w *Wallet) AllAddresses() ([]types.UnlockHash, error)
AllAddresses returns all addresses that the wallet is able to spend from, including unseeded addresses. Addresses are returned sorted in byte-order.
func (*Wallet) ChangeKey ¶
func (w *Wallet) ChangeKey(masterKey crypto.TwofishKey, newKey crypto.TwofishKey) error
ChangeKey changes the wallet's encryption key from masterKey to newKey.
func (*Wallet) Close ¶
Close terminates all ongoing processes involving the wallet, enabling garbage collection.
func (*Wallet) ConfirmedBalance ¶
func (w *Wallet) ConfirmedBalance() (siacoinBalance types.Currency, siafundBalance types.Currency, siafundClaimBalance types.Currency, err error)
ConfirmedBalance returns the balance of the wallet according to all of the confirmed transactions.
func (*Wallet) CreateBackup ¶
CreateBackup creates a backup file at the desired filepath.
func (*Wallet) DustThreshold ¶
DustThreshold returns the quantity per byte below which a Currency is considered to be Dust.
func (*Wallet) Encrypt ¶
Encrypt will create a primary seed for the wallet and encrypt it using masterKey. If masterKey is blank, then the hash of the primary seed will be used instead. The wallet will still be locked after Encrypt is called.
Encrypt can only be called once throughout the life of the wallet, and will return an error on subsequent calls (even after restarting the wallet). To reset the wallet, the wallet files must be moved to a different directory or deleted.
func (*Wallet) Height ¶
func (w *Wallet) Height() (types.BlockHeight, error)
Height return the internal processed consensus height of the wallet
func (*Wallet) InitFromSeed ¶
InitFromSeed functions like Init, but using a specified seed. Unlike Init, the blockchain will be scanned to determine the seed's progress. For this reason, InitFromSeed should not be called until the blockchain is fully synced.
func (*Wallet) Load033xWallet ¶
func (w *Wallet) Load033xWallet(masterKey crypto.TwofishKey, filepath033x string) error
Load033xWallet loads a v0.3.3.x wallet as an unseeded key, such that the funds become spendable to the current wallet.
func (*Wallet) LoadSeed ¶
LoadSeed will track all of the addresses generated by the input seed, reclaiming any funds that were lost due to a deleted file or lost encryption key. An error will be returned if the seed has already been integrated with the wallet.
func (*Wallet) LoadSiagKeys ¶
func (w *Wallet) LoadSiagKeys(masterKey crypto.TwofishKey, keyfiles []string) error
LoadSiagKeys loads a set of siag-generated keys into the wallet.
func (*Wallet) Lock ¶
Lock will erase all keys from memory and prevent the wallet from spending coins until it is unlocked.
func (*Wallet) NextAddress ¶
func (w *Wallet) NextAddress() (types.UnlockConditions, error)
NextAddress returns an unlock hash that is ready to receive siacoins or siafunds. The address is generated using the primary address seed.
func (*Wallet) NextAddresses ¶
func (w *Wallet) NextAddresses(n uint64) ([]types.UnlockConditions, error)
NextAddresses returns n unlock hashes that are ready to receive siacoins or siafunds. The addresses are generated using the primary address seed.
Warning: If this function is used to generate large numbers of addresses, those addresses should be used. Otherwise the lookahead might not be able to keep up and multiple wallets with the same seed might desync.
func (*Wallet) PrimarySeed ¶
PrimarySeed returns the decrypted primary seed of the wallet, as well as the number of addresses that the seed can be safely used to generate.
func (*Wallet) ProcessConsensusChange ¶
func (w *Wallet) ProcessConsensusChange(cc modules.ConsensusChange)
ProcessConsensusChange parses a consensus change to update the set of confirmed outputs known to the wallet.
func (*Wallet) ReceiveUpdatedUnconfirmedTransactions ¶
func (w *Wallet) ReceiveUpdatedUnconfirmedTransactions(diff *modules.TransactionPoolDiff)
ReceiveUpdatedUnconfirmedTransactions updates the wallet's unconfirmed transaction set.
func (*Wallet) RegisterTransaction ¶
func (w *Wallet) RegisterTransaction(t types.Transaction, parents []types.Transaction) (modules.TransactionBuilder, error)
RegisterTransaction takes a transaction and its parents and returns a modules.TransactionBuilder which can be used to expand the transaction. The most typical call is 'RegisterTransaction(types.Transaction{}, nil)', which registers a new transaction without parents.
func (*Wallet) RemoveWatchAddresses ¶
func (w *Wallet) RemoveWatchAddresses(addrs []types.UnlockHash, unused bool) error
RemoveWatchAddresses instructs the wallet to stop tracking a set of addresses and delete their associated transactions. If none of the addresses have appeared in the blockchain, the unused flag may be set to true. Otherwise, the wallet must rescan the blockchain to rebuild its transaction history.
func (*Wallet) Rescanning ¶
Rescanning reports whether the wallet is currently rescanning the blockchain.
func (*Wallet) Reset ¶
Reset will reset the wallet, clearing the database and returning it to the unencrypted state. Reset can only be called on a wallet that has already been encrypted.
func (*Wallet) SendSiacoins ¶
func (w *Wallet) SendSiacoins(amount types.Currency, dest types.UnlockHash) (txns []types.Transaction, err error)
SendSiacoins creates a transaction sending 'amount' to 'dest'. The transaction is submitted to the transaction pool and is also returned.
func (*Wallet) SendSiacoinsMulti ¶
func (w *Wallet) SendSiacoinsMulti(outputs []types.SiacoinOutput) (txns []types.Transaction, err error)
SendSiacoinsMulti creates a transaction that includes the specified outputs. The transaction is submitted to the transaction pool and is also returned.
func (*Wallet) SendSiafunds ¶
func (w *Wallet) SendSiafunds(amount types.Currency, dest types.UnlockHash) (txns []types.Transaction, err error)
SendSiafunds creates a transaction sending 'amount' to 'dest'. The transaction is submitted to the transaction pool and is also returned.
func (*Wallet) SetSettings ¶
func (w *Wallet) SetSettings(s modules.WalletSettings) error
SetSettings will update the settings for the wallet.
func (*Wallet) Settings ¶
func (w *Wallet) Settings() (modules.WalletSettings, error)
Settings returns the wallet's current settings
func (*Wallet) SignTransaction ¶
SignTransaction signs txn using secret keys known to the wallet. The transaction should be complete with the exception of the Signature fields of each TransactionSignature referenced by toSign. For convenience, if toSign is empty, SignTransaction signs everything that it can.
func (*Wallet) StartTransaction ¶
func (w *Wallet) StartTransaction() (modules.TransactionBuilder, error)
StartTransaction is a convenience function that calls RegisterTransaction(types.Transaction{}, nil).
func (*Wallet) SweepSeed ¶
SweepSeed scans the blockchain for outputs generated from seed and creates a transaction that transfers them to the wallet. Note that this incurs a transaction fee. It returns the total value of the outputs, minus the fee. If only siafunds were found, the fee is deducted from the wallet.
func (*Wallet) Transaction ¶
func (w *Wallet) Transaction(txid types.TransactionID) (pt modules.ProcessedTransaction, found bool, err error)
Transaction returns the transaction with the given id. 'False' is returned if the transaction does not exist.
func (*Wallet) Transactions ¶
func (w *Wallet) Transactions(startHeight, endHeight types.BlockHeight) (pts []modules.ProcessedTransaction, err error)
Transactions returns all transactions relevant to the wallet that were confirmed in the range [startHeight, endHeight].
func (*Wallet) UnconfirmedBalance ¶
func (w *Wallet) UnconfirmedBalance() (outgoingSiacoins types.Currency, incomingSiacoins types.Currency, err error)
UnconfirmedBalance returns the number of outgoing and incoming siacoins in the unconfirmed transaction set. Refund outputs are included in this reporting.
func (*Wallet) UnconfirmedTransactions ¶
func (w *Wallet) UnconfirmedTransactions() ([]modules.ProcessedTransaction, error)
UnconfirmedTransactions returns the set of unconfirmed transactions that are relevant to the wallet.
func (*Wallet) Unlock ¶
func (w *Wallet) Unlock(masterKey crypto.TwofishKey) error
Unlock will decrypt the wallet seed and load all of the addresses into memory.
func (*Wallet) UnlockConditions ¶
func (w *Wallet) UnlockConditions(addr types.UnlockHash) (uc types.UnlockConditions, err error)
UnlockConditions returns the UnlockConditions for the specified address, if they are known to the wallet.
func (*Wallet) UnspentOutputs ¶
func (w *Wallet) UnspentOutputs() ([]modules.UnspentOutput, error)
UnspentOutputs returns the unspent outputs tracked by the wallet.
func (*Wallet) WatchAddresses ¶
func (w *Wallet) WatchAddresses() ([]types.UnlockHash, error)
WatchAddresses returns the set of addresses that the wallet is currently watching.