Documentation ¶
Overview ¶
Package wallet provides ... TODO: Flesh out this section
Overview
Index ¶
- Constants
- Variables
- func Create(db walletdb.DB, pubPass, privPass, seed []byte, params *chaincfg.Params, ...) error
- func CreateWatchOnly(db walletdb.DB, extendedPubKey string, pubPass []byte, params *chaincfg.Params) error
- func DisableLog()
- func EstimateTxSize(numInputs, numOutputs int) int
- func FeeForSize(incr dcrutil.Amount, sz int) dcrutil.Amount
- func UnstableAPI(w *Wallet) unstableAPI
- func UseLogger(logger btclog.Logger)
- type AccountBalance
- type AccountBalanceResult
- type AccountNotification
- type AccountNotificationsClient
- type AccountResult
- type AccountTotalReceivedResult
- type AccountsResult
- type Block
- type BlockIdentifier
- type BlockIdentity
- type CreatedTx
- type CreditCategory
- type GetTransactionsResult
- type Loader
- func (l *Loader) CreateNewWallet(pubPassphrase, privPassphrase, seed []byte) (*Wallet, error)
- func (l *Loader) LoadedWallet() (*Wallet, bool)
- func (l *Loader) OpenExistingWallet(pubPassphrase []byte, canConsolePrompt bool) (w *Wallet, rerr error)
- func (l *Loader) RunAfterLoad(fn func(*Wallet))
- func (l *Loader) UnloadWallet() error
- func (l *Loader) WalletExists() (bool, error)
- type NotificationServer
- type OutputKind
- type OutputRedeemer
- type OutputSelectionPolicy
- type P2SHMultiSigOutput
- type RescanFinishedMsg
- type RescanJob
- type RescanProgressMsg
- type SignatureError
- type SpentnessNotifications
- type SpentnessNotificationsClient
- type StakeDifficultyInfo
- type StakeInfoData
- type StakeOptions
- type TransactionNotifications
- type TransactionNotificationsClient
- type TransactionOutput
- type TransactionSummary
- type TransactionSummaryInput
- type TransactionSummaryOutput
- type VotingInfo
- type Wallet
- func (w *Wallet) AccountBalances(requiredConfs int32, balanceType wtxmgr.BehaviorFlags) ([]AccountBalanceResult, error)
- func (w *Wallet) AccountBranchAddressRange(start, end uint32, account uint32, branch uint32) ([]dcrutil.Address, error)
- func (w *Wallet) AccountName(accountNumber uint32) (string, error)
- func (w *Wallet) AccountNumber(accountName string) (uint32, error)
- func (w *Wallet) AccountOfAddress(a dcrutil.Address) (uint32, error)
- func (w *Wallet) AccountProperties(acct uint32) (*waddrmgr.AccountProperties, error)
- func (w *Wallet) Accounts() (*AccountsResult, error)
- func (w *Wallet) AddTicket(ticket *dcrutil.Tx) error
- func (w *Wallet) AddressInfo(a dcrutil.Address) (waddrmgr.ManagedAddress, error)
- func (w *Wallet) AddressPoolIndex(account uint32, branch uint32) (uint32, error)
- func (w *Wallet) BalanceToMaintain() dcrutil.Amount
- func (w *Wallet) CalculateAccountBalance(account uint32, confirms int32, balanceType wtxmgr.BehaviorFlags) (dcrutil.Amount, error)
- func (w *Wallet) CalculateAccountBalances(account uint32, confirms int32) (wtxmgr.Balances, error)
- func (w *Wallet) CalculateBalance(confirms int32, balanceType wtxmgr.BehaviorFlags) (dcrutil.Amount, error)
- func (w *Wallet) ChainClient() *chain.RPCClient
- func (w *Wallet) ChainParams() *chaincfg.Params
- func (w *Wallet) ChainSynced() bool
- func (w *Wallet) ChangePrivatePassphrase(old, new []byte) error
- func (w *Wallet) ChangePublicPassphrase(old, new []byte) error
- func (w *Wallet) CheckAddressPoolsInitialized(account uint32) error
- func (w *Wallet) CloseAddressPools(waddrmgrNs walletdb.ReadWriteBucket)
- func (w *Wallet) CloseDatabases()
- func (w *Wallet) Consolidate(inputs int, account uint32, address dcrutil.Address) (*chainhash.Hash, error)
- func (w *Wallet) CreateMultisigTx(account uint32, amount dcrutil.Amount, pubkeys []*dcrutil.AddressSecpPubKey, ...) (*CreatedTx, dcrutil.Address, []byte, error)
- func (w *Wallet) CreateSSGenTx(ticketHash chainhash.Hash, blockHash chainhash.Hash, height int64, ...) (*CreatedTx, error)
- func (w *Wallet) CreateSSRtx(ticketHash chainhash.Hash) (*CreatedTx, error)
- func (w *Wallet) CreateSStxTx(pair map[string]dcrutil.Amount, usedInputs []wtxmgr.Credit, ...) (*CreatedTx, error)
- func (w *Wallet) CreateSimpleTx(account uint32, outputs []*wire.TxOut, minconf int32) (*txauthor.AuthoredTx, error)
- func (w *Wallet) CurrentAddress(account uint32) (dcrutil.Address, error)
- func (w *Wallet) DumpPrivKeys() ([]string, error)
- func (w *Wallet) DumpWIFPrivateKey(addr dcrutil.Address) (string, error)
- func (w *Wallet) ExistsAddressOnChain(address dcrutil.Address) (bool, error)
- func (w *Wallet) FetchAllRedeemScripts() ([][]byte, error)
- func (w *Wallet) FetchP2SHMultiSigOutput(outPoint *wire.OutPoint) (*P2SHMultiSigOutput, error)
- func (w *Wallet) FindEligibleOutputs(account uint32, minconf int32, bs *waddrmgr.BlockStamp) ([]wtxmgr.Credit, error)
- func (w *Wallet) Generate() bool
- func (w *Wallet) GetCurrentVotingInfo() *VotingInfo
- func (w *Wallet) GetTicketMaxPrice() dcrutil.Amount
- func (w *Wallet) GetTransactions(startBlock, endBlock *BlockIdentifier, cancel <-chan struct{}) (*GetTransactionsResult, error)
- func (w *Wallet) HaveAddress(a dcrutil.Address) (bool, error)
- func (w *Wallet) ImportP2SHRedeemScript(script []byte) (*dcrutil.AddressScriptHash, error)
- func (w *Wallet) ImportPrivateKey(wif *dcrutil.WIF, bs *waddrmgr.BlockStamp, rescan bool, scanFrom int32) (string, error)
- func (w *Wallet) ImportScript(rs []byte, rescan bool, scanFrom int32) error
- func (w *Wallet) ListAddressTransactions(pkHashes map[string]struct{}) ([]dcrjson.ListTransactionsResult, error)
- func (w *Wallet) ListAllTransactions() ([]dcrjson.ListTransactionsResult, error)
- func (w *Wallet) ListSinceBlock(start, end, syncHeight int32) ([]dcrjson.ListTransactionsResult, error)
- func (w *Wallet) ListTransactions(from, count int) ([]dcrjson.ListTransactionsResult, error)
- func (w *Wallet) ListUnspent(minconf, maxconf int32, addresses map[string]struct{}) ([]*dcrjson.ListUnspentResult, error)
- func (w *Wallet) LiveTicketHashes(rpcClient *chain.RPCClient, includeImmature bool) ([]chainhash.Hash, error)
- func (w *Wallet) Lock()
- func (w *Wallet) LockOutpoint(op wire.OutPoint)
- func (w *Wallet) Locked() bool
- func (w *Wallet) LockedOutpoint(op wire.OutPoint) bool
- func (w *Wallet) LockedOutpoints() []dcrjson.TransactionInput
- func (w *Wallet) MakeSecp256k1MultiSigScript(secp256k1Addrs []dcrutil.Address, nRequired int) ([]byte, error)
- func (w *Wallet) MasterPubKey(account uint32) (string, error)
- func (w *Wallet) NewAddress(account uint32, branch uint32) (dcrutil.Address, error)
- func (w *Wallet) NextAccount(name string) (uint32, error)
- func (w *Wallet) PoolAddress() dcrutil.Address
- func (w *Wallet) PoolFees() float64
- func (w *Wallet) PrivKeyForAddress(a dcrutil.Address) (chainec.PrivateKey, error)
- func (w *Wallet) PubKeyForAddress(a dcrutil.Address) (chainec.PublicKey, error)
- func (w *Wallet) PublishTransaction(tx *wire.MsgTx) (*chainhash.Hash, error)
- func (w *Wallet) PurchaseTickets(minBalance, spendLimit dcrutil.Amount, minConf int32, ...) (interface{}, error)
- func (w *Wallet) RelayFee() dcrutil.Amount
- func (w *Wallet) RenameAccount(account uint32, newName string) error
- func (w *Wallet) Rescan(addrs []dcrutil.Address, unspent []*wire.OutPoint) error
- func (w *Wallet) ResetLockedOutpoints()
- func (w *Wallet) Seed() (string, error)
- func (w *Wallet) SendOutputs(outputs []*wire.TxOut, account uint32, minconf int32) (*chainhash.Hash, error)
- func (w *Wallet) SetBalanceToMaintain(balance dcrutil.Amount)
- func (w *Wallet) SetChainSynced(synced bool)
- func (w *Wallet) SetCurrentVotingInfo(blockHash *chainhash.Hash, blockHeight int64, tickets []*chainhash.Hash)
- func (w *Wallet) SetGenerate(flag bool) error
- func (w *Wallet) SetInitiallyUnlocked(set bool)
- func (w *Wallet) SetRelayFee(relayFee dcrutil.Amount)
- func (w *Wallet) SetTicketFeeIncrement(fee dcrutil.Amount)
- func (w *Wallet) SetTicketMaxPrice(amt dcrutil.Amount)
- func (w *Wallet) SetVoteBitsForTicket(ticketHash *chainhash.Hash, voteBits uint16) error
- func (w *Wallet) ShuttingDown() bool
- func (w *Wallet) SignTransaction(tx *wire.MsgTx, hashType txscript.SigHashType, ...) ([]SignatureError, error)
- func (w *Wallet) SortedActivePaymentAddresses() ([]string, error)
- func (w *Wallet) StakeDifficulty() (dcrutil.Amount, error)
- func (w *Wallet) StakeInfo() (*StakeInfoData, error)
- func (w *Wallet) StakePoolUserInfo(userAddress dcrutil.Address) (*wstakemgr.StakePoolUser, error)
- func (w *Wallet) Start()
- func (w *Wallet) Stop()
- func (w *Wallet) SubmitRescan(job *RescanJob) <-chan error
- func (w *Wallet) SyncAddressPoolIndex(account uint32, branch uint32, index uint32) error
- func (w *Wallet) SynchronizeRPC(chainClient *chain.RPCClient)
- func (w *Wallet) SynchronizingToNetwork() bool
- func (w *Wallet) TicketAddress() dcrutil.Address
- func (w *Wallet) TicketFeeIncrement() dcrutil.Amount
- func (w *Wallet) TicketHashesForVotingAddress(votingAddr dcrutil.Address) ([]chainhash.Hash, error)
- func (w *Wallet) TotalReceivedForAccounts(minConf int32) ([]AccountTotalReceivedResult, error)
- func (w *Wallet) TotalReceivedForAddr(addr dcrutil.Address, minConf int32) (dcrutil.Amount, error)
- func (w *Wallet) Unlock(passphrase []byte, lock <-chan time.Time) error
- func (w *Wallet) UnlockOutpoint(op wire.OutPoint)
- func (w *Wallet) UnspentOutputs(policy OutputSelectionPolicy) ([]*TransactionOutput, error)
- func (w *Wallet) VoteBitsForTicket(ticketHash *chainhash.Hash) (uint16, error)
- func (w *Wallet) WaitForShutdown()
Constants ¶
const DefaultTicketFeeIncrement dcrutil.Amount = 1e6
DefaultTicketFeeIncrement is the default minimum stake transaction fees per KB (0.01 coin, measured in atoms).
const EstMaxTicketFeeAmount = 0.1 * 1e8
EstMaxTicketFeeAmount is the estimated max ticket fee to be used for size calculation for eligible utxos for ticket purchasing.
const ( // InsecurePubPassphrase is the default outer encryption passphrase used // for public data (everything but private keys). Using a non-default // public passphrase can prevent an attacker without the public // passphrase from discovering all past and future wallet addresses if // they gain access to the wallet database. // // NOTE: at time of writing, public encryption only applies to public // data in the waddrmgr namespace. Transactions are not yet encrypted. InsecurePubPassphrase = "public" )
Variables ¶
var ( // ErrLoaded describes the error condition of attempting to load or // create a wallet when the loader has already done so. ErrLoaded = errors.New("wallet already loaded") // ErrNotLoaded describes the error condition of attempting to close a // loaded wallet when a wallet has not been loaded. ErrNotLoaded = errors.New("wallet is not loaded") // ErrExists describes the error condition of attempting to create a new // wallet when one exists already. ErrExists = errors.New("wallet already exists") )
var ErrBlockchainReorganizing = errors.New("blockchain is currently " +
"reorganizing")
ErrBlockchainReorganizing indicates that the blockchain is currently reorganizing.
var ErrNegativeFee = errors.New("fee is negative")
ErrNegativeFee represents an error where a fee is erroneously negative.
var ErrNoOutsToConsolidate = errors.New("no outputs to consolidate")
ErrNoOutsToConsolidate indicates that there were no outputs available to compress.
var ErrNonPositiveAmount = errors.New("amount is not positive")
ErrNonPositiveAmount represents an error where an amount is not positive (either negative, or zero).
var ErrNotSynced = errors.New("wallet is not synchronized with the chain server")
ErrNotSynced describes an error where an operation cannot complete due wallet being out of sync (and perhaps currently syncing with) the remote chain server.
var ErrSStxNotEnoughFunds = errors.New("not enough to purchase sstx")
ErrSStxNotEnoughFunds indicates that not enough funds were available in the wallet to purchase a ticket.
var ErrSStxPriceExceedsSpendLimit = errors.New("ticket price exceeds spend limit")
ErrSStxPriceExceedsSpendLimit indicates that the current ticket price exceeds the specified spend maximum spend limit.
var ErrTicketPriceNotSet = errors.New("ticket price not yet established")
ErrTicketPriceNotSet indicates that the wallet was recently connected and that the ticket price has not yet been set.
var ErrUnsupportedTransactionType = errors.New("Only P2PKH transactions " +
"are supported")
ErrUnsupportedTransactionType represents an error where a transaction cannot be signed as the API only supports spending P2PKH outputs.
var ( // SimulationPassphrase is the password for a wallet created for simnet // with --createtemp. SimulationPassphrase = []byte("password") )
Functions ¶
func Create ¶
func Create(db walletdb.DB, pubPass, privPass, seed []byte, params *chaincfg.Params, unsafeMainNet bool) error
Create creates an new wallet, writing it to an empty database. If the passed seed is non-nil, it is used. Otherwise, a secure random seed of the recommended length is generated.
func CreateWatchOnly ¶
func CreateWatchOnly(db walletdb.DB, extendedPubKey string, pubPass []byte, params *chaincfg.Params) error
CreateWatchOnly creates a watchonly wallet on the provided db.
func DisableLog ¶
func DisableLog()
DisableLog disables all library log output. Logging output is disabled by default until either UseLogger or SetLogWriter are called.
func EstimateTxSize ¶
EstimateTxSize is the exported version of estimateTxSize which provides an estimate of the tx size based on the number of inputs, outputs, and some assumed overhead.
func FeeForSize ¶
FeeForSize is the exported version of feeForSize which returns a fee based on the provided feeIncrement and provided size.
func UnstableAPI ¶ added in v0.5.0
func UnstableAPI(w *Wallet) unstableAPI
UnstableAPI exposes additional unstable public APIs for a Wallet. These APIs may be changed or removed at any time. Currently this type exists to ease the transation (particularly for the legacy JSON-RPC server) from using exported manager packages to a unified wallet package that exposes all functionality by itself. New code should not be written using this API.
Types ¶
type AccountBalance ¶
AccountBalance associates a total (zero confirmation) balance with an account. Balances for other minimum confirmation counts require more expensive logic and it is not clear which minimums a client is interested in, so they are not included.
type AccountBalanceResult ¶ added in v0.5.0
type AccountBalanceResult struct { AccountNumber uint32 AccountName string AccountBalance dcrutil.Amount }
AccountBalanceResult is a single result for the Wallet.AccountBalances method.
type AccountNotification ¶
type AccountNotification struct { AccountNumber uint32 AccountName string ExternalKeyCount uint32 InternalKeyCount uint32 ImportedKeyCount uint32 }
AccountNotification contains properties regarding an account, such as its name and the number of derived and imported keys. When any of these properties change, the notification is fired.
type AccountNotificationsClient ¶
type AccountNotificationsClient struct { C chan *AccountNotification // contains filtered or unexported fields }
AccountNotificationsClient receives AccountNotifications over the channel C.
func (*AccountNotificationsClient) Done ¶
func (c *AccountNotificationsClient) Done()
Done deregisters the client from the server and drains any remaining messages. It must be called exactly once when the client is finished receiving notifications.
type AccountResult ¶
type AccountResult struct { waddrmgr.AccountProperties TotalBalance dcrutil.Amount }
AccountResult is a single account result for the AccountsResult type.
type AccountTotalReceivedResult ¶ added in v0.5.0
type AccountTotalReceivedResult struct { AccountNumber uint32 AccountName string TotalReceived dcrutil.Amount LastConfirmation int32 }
AccountTotalReceivedResult is a single result for the Wallet.TotalReceivedForAccounts method.
type AccountsResult ¶
type AccountsResult struct { Accounts []AccountResult CurrentBlockHash *chainhash.Hash CurrentBlockHeight int32 }
AccountsResult is the resutl of the wallet's Accounts method. See that method for more details.
type Block ¶
type Block struct { Hash *chainhash.Hash Height int32 Timestamp int64 Transactions []TransactionSummary }
Block contains the properties and all relevant transactions of an attached block.
type BlockIdentifier ¶
type BlockIdentifier struct {
// contains filtered or unexported fields
}
BlockIdentifier identifies a block by either a height or a hash.
func NewBlockIdentifierFromHash ¶
func NewBlockIdentifierFromHash(hash *chainhash.Hash) *BlockIdentifier
NewBlockIdentifierFromHash constructs a BlockIdentifier for a block hash.
func NewBlockIdentifierFromHeight ¶
func NewBlockIdentifierFromHeight(height int32) *BlockIdentifier
NewBlockIdentifierFromHeight constructs a BlockIdentifier for a block height.
type BlockIdentity ¶ added in v0.5.0
BlockIdentity identifies a block, or the lack of one (used to describe an unmined transaction).
func (*BlockIdentity) None ¶ added in v0.5.0
func (b *BlockIdentity) None() bool
None returns whether there is no block described by the instance. When associated with a transaction, this indicates the transaction is unmined.
type CreatedTx ¶
type CreatedTx struct { MsgTx *wire.MsgTx ChangeAddr dcrutil.Address ChangeIndex int // negative if no change Fee dcrutil.Amount }
CreatedTx holds the state of a newly-created transaction and the change output (if one was added).
type CreditCategory ¶
type CreditCategory byte
CreditCategory describes the type of wallet transaction output. The category of "sent transactions" (debits) is always "send", and is not expressed by this type.
TODO: This is a requirement of the RPC server and should be moved.
const ( CreditReceive CreditCategory = iota CreditGenerate CreditImmature )
These constants define the possible credit categories.
func RecvCategory ¶
func RecvCategory(details *wtxmgr.TxDetails, syncHeight int32, chainParams *chaincfg.Params) CreditCategory
RecvCategory returns the category of received credit outputs from a transaction record. The passed block chain height is used to distinguish immature from mature coinbase outputs.
TODO: This is intended for use by the RPC server and should be moved out of this package at a later time.
func (CreditCategory) String ¶
func (c CreditCategory) String() string
String returns the category as a string. This string may be used as the JSON string for categories as part of listtransactions and gettransaction RPC responses.
type GetTransactionsResult ¶
type GetTransactionsResult struct { MinedTransactions []Block UnminedTransactions []TransactionSummary }
GetTransactionsResult is the result of the wallet's GetTransactions method. See GetTransactions for more details.
type Loader ¶
type Loader struct {
// contains filtered or unexported fields
}
Loader implements the creating of new and opening of existing wallets, while providing a callback system for other subsystems to handle the loading of a wallet. This is primarely intended for use by the RPC servers, to enable methods and services which require the wallet when the wallet is loaded by another subsystem.
Loader is safe for concurrent access.
func NewLoader ¶
func NewLoader(chainParams *chaincfg.Params, dbDirPath string, stakeOptions *StakeOptions, autoRepair bool, unsafeMainNet bool, addrIdxScanLen int, allowHighFees bool, relayFee float64) *Loader
NewLoader constructs a Loader.
func (*Loader) CreateNewWallet ¶
CreateNewWallet creates a new wallet using the provided public and private passphrases. The seed is optional. If non-nil, addresses are derived from this seed. If nil, a secure random seed is generated.
func (*Loader) LoadedWallet ¶
LoadedWallet returns the loaded wallet, if any, and a bool for whether the wallet has been loaded or not. If true, the wallet pointer should be safe to dereference.
func (*Loader) OpenExistingWallet ¶
func (l *Loader) OpenExistingWallet(pubPassphrase []byte, canConsolePrompt bool) (w *Wallet, rerr error)
OpenExistingWallet opens the wallet from the loader's wallet database path and the public passphrase. If the loader is being called by a context where standard input prompts may be used during wallet upgrades, setting canConsolePrompt will enable these prompts.
func (*Loader) RunAfterLoad ¶
RunAfterLoad adds a function to be executed when the loader creates or opens a wallet. Functions are executed in a single goroutine in the order they are added.
func (*Loader) UnloadWallet ¶
UnloadWallet stops the loaded wallet, if any, and closes the wallet database. This returns ErrNotLoaded if the wallet has not been loaded with CreateNewWallet or LoadExistingWallet. The Loader may be reused if this function returns without error.
func (*Loader) WalletExists ¶
WalletExists returns whether a file exists at the loader's database path. This may return an error for unexpected I/O failures.
type NotificationServer ¶
type NotificationServer struct {
// contains filtered or unexported fields
}
NotificationServer is a server that interested clients may hook into to receive notifications of changes in a wallet. A client is created for each registered notification. Clients are guaranteed to receive messages in the order wallet created them, but there is no guaranteed synchronization between different clients.
func (*NotificationServer) AccountNotifications ¶
func (s *NotificationServer) AccountNotifications() AccountNotificationsClient
AccountNotifications returns a client for receiving AccountNotifications over a channel. The channel is unbuffered. When finished, the client's Done method should be called to disassociate the client from the server.
func (*NotificationServer) AccountSpentnessNotifications ¶
func (s *NotificationServer) AccountSpentnessNotifications(account uint32) SpentnessNotificationsClient
AccountSpentnessNotifications registers a client for spentness changes of outputs controlled by the account.
func (*NotificationServer) TransactionNotifications ¶
func (s *NotificationServer) TransactionNotifications() TransactionNotificationsClient
TransactionNotifications returns a client for receiving TransactionNotifiations notifications over a channel. The channel is unbuffered.
When finished, the Done method should be called on the client to disassociate it from the server.
type OutputKind ¶ added in v0.5.0
type OutputKind byte
OutputKind describes a kind of transaction output. This is used to differentiate between coinbase, stakebase, and normal outputs.
const ( OutputKindNormal OutputKind = iota OutputKindCoinbase OutputKindStakebase // not returned by all APIs yet )
Defined OutputKind constants
type OutputRedeemer ¶ added in v0.5.0
OutputRedeemer identifies the transaction input which redeems an output.
type OutputSelectionPolicy ¶ added in v0.5.0
OutputSelectionPolicy describes the rules for selecting an output from the wallet.
type P2SHMultiSigOutput ¶ added in v0.5.0
type P2SHMultiSigOutput struct { // TODO: Add a TransactionOutput member to this struct and remove these // fields which are duplicated by it. This improves consistency. Only // not done now because wtxmgr APIs don't support an efficient way of // fetching other Transactionoutput data together with the rest of the // multisig info. OutPoint wire.OutPoint OutputAmount dcrutil.Amount ContainingBlock BlockIdentity P2SHAddress *dcrutil.AddressScriptHash RedeemScript []byte M, N uint8 // M of N signatures required to redeem Redeemer *OutputRedeemer // nil unless spent }
P2SHMultiSigOutput describes a transaction output with a pay-to-script-hash output script and an imported redemption script. Along with common details of the output, this structure also includes the P2SH address the script was created from and the number of signatures required to redeem it.
TODO: Could be useful to return how many of the required signatures can be created by this wallet.
type RescanFinishedMsg ¶
type RescanFinishedMsg struct { Addresses []dcrutil.Address Notification *chain.RescanFinished }
RescanFinishedMsg reports the addresses that were rescanned when a rescanfinished message was received rescanning a batch of addresses.
type RescanJob ¶
type RescanJob struct { InitialSync bool Addrs []dcrutil.Address OutPoints []*wire.OutPoint BlockStamp waddrmgr.BlockStamp // contains filtered or unexported fields }
RescanJob is a job to be processed by the RescanManager. The job includes a set of wallet addresses, a starting height to begin the rescan, and outpoints spendable by the addresses thought to be unspent. After the rescan completes, the error result of the rescan RPC is sent on the Err channel.
type RescanProgressMsg ¶
type RescanProgressMsg struct { Addresses []dcrutil.Address Notification *chain.RescanProgress }
RescanProgressMsg reports the current progress made by a rescan for a set of wallet addresses.
type SignatureError ¶
SignatureError records the underlying error when validating a transaction input signature.
type SpentnessNotifications ¶
type SpentnessNotifications struct {
// contains filtered or unexported fields
}
SpentnessNotifications is a notification that is fired for transaction outputs controlled by some account's keys. The notification may be about a newly added unspent transaction output or that a previously unspent output is now spent. When spent, the notification includes the spending transaction's hash and input index.
func (*SpentnessNotifications) Hash ¶
func (n *SpentnessNotifications) Hash() *chainhash.Hash
Hash returns the transaction hash of the spent output.
func (*SpentnessNotifications) Index ¶
func (n *SpentnessNotifications) Index() uint32
Index returns the transaction output index of the spent output.
type SpentnessNotificationsClient ¶
type SpentnessNotificationsClient struct { C <-chan *SpentnessNotifications // contains filtered or unexported fields }
SpentnessNotificationsClient receives SpentnessNotifications from the NotificationServer over the channel C.
func (*SpentnessNotificationsClient) Done ¶
func (c *SpentnessNotificationsClient) Done()
Done deregisters the client from the server and drains any remaining messages. It must be called exactly once when the client is finished receiving notifications.
type StakeDifficultyInfo ¶
type StakeDifficultyInfo struct { BlockHash *chainhash.Hash BlockHeight int64 StakeDifficulty int64 }
StakeDifficultyInfo is a container for stake difficulty information updates.
type StakeInfoData ¶ added in v0.2.0
type StakeInfoData struct { BlockHeight int64 PoolSize uint32 AllMempoolTix uint32 OwnMempoolTix uint32 Immature uint32 Live uint32 Voted uint32 Missed uint32 Revoked uint32 TotalSubsidy dcrutil.Amount }
StakeInfoData is a struct containing the data that would be returned from a StakeInfo request to the wallet.
type StakeOptions ¶
type StakeOptions struct { VoteBits uint16 StakeMiningEnabled bool BalanceToMaintain float64 TicketFee float64 RollbackTest bool PruneTickets bool AddressReuse bool TicketAddress string TicketMaxPrice float64 TicketBuyFreq int PoolAddress string PoolFees float64 StakePoolColdExtKey string }
StakeOptions contains the various options necessary for stake mining.
type TransactionNotifications ¶
type TransactionNotifications struct { AttachedBlocks []Block DetachedBlocks []*chainhash.Hash UnminedTransactions []TransactionSummary UnminedTransactionHashes []*chainhash.Hash NewBalances []AccountBalance }
TransactionNotifications is a notification of changes to the wallet's transaction set and the current chain tip that wallet is considered to be synced with. All transactions added to the blockchain are organized by the block they were mined in.
During a chain switch, all removed block hashes are included. Detached blocks are sorted in the reverse order they were mined. Attached blocks are sorted in the order mined.
All newly added unmined transactions are included. Removed unmined transactions are not explicitly included. Instead, the hashes of all transactions still unmined are included.
If any transactions were involved, each affected account's new total balance is included.
TODO: Because this includes stuff about blocks and can be fired without any changes to transactions, it needs a better name.
type TransactionNotificationsClient ¶
type TransactionNotificationsClient struct { C <-chan *TransactionNotifications // contains filtered or unexported fields }
TransactionNotificationsClient receives TransactionNotifications from the NotificationServer over the channel C.
func (*TransactionNotificationsClient) Done ¶
func (c *TransactionNotificationsClient) Done()
Done deregisters the client from the server and drains any remaining messages. It must be called exactly once when the client is finished receiving notifications.
type TransactionOutput ¶ added in v0.5.0
type TransactionOutput struct { OutPoint wire.OutPoint Output wire.TxOut OutputKind OutputKind // These should be added later when the DB can return them more // efficiently: //TxLockTime uint32 //TxExpiry uint32 ContainingBlock BlockIdentity ReceiveTime time.Time }
TransactionOutput describes an output that was or is at least partially controlled by the wallet. Depending on context, this could refer to an unspent output, or a spent one.
type TransactionSummary ¶
type TransactionSummary struct { Hash *chainhash.Hash Transaction []byte MyInputs []TransactionSummaryInput MyOutputs []TransactionSummaryOutput Fee dcrutil.Amount Timestamp int64 }
TransactionSummary contains a transaction relevant to the wallet and marks which inputs and outputs were relevant.
type TransactionSummaryInput ¶
type TransactionSummaryInput struct { Index uint32 PreviousAccount uint32 PreviousAmount dcrutil.Amount }
TransactionSummaryInput describes a transaction input that is relevant to the wallet. The Index field marks the transaction input index of the transaction (not included here). The PreviousAccount and PreviousAmount fields describe how much this input debits from a wallet account.
type TransactionSummaryOutput ¶
TransactionSummaryOutput describes wallet properties of a transaction output controlled by the wallet. The Index field marks the transaction output index of the transaction (not included here).
type VotingInfo ¶
VotingInfo is a container for the current height, hash, and list of eligible tickets.
type Wallet ¶
type Wallet struct { Manager *waddrmgr.Manager TxStore *wtxmgr.Store StakeMgr *wstakemgr.StakeStore VoteBits uint16 StakeMiningEnabled bool CurrentVotingInfo *VotingInfo DisallowFree bool AllowHighFees bool NtfnServer *NotificationServer // contains filtered or unexported fields }
Wallet is a structure containing all the components for a complete wallet. It contains the Armory-style key store addresses and keys),
func Open ¶
func Open(db walletdb.DB, pubPass []byte, cbs *waddrmgr.OpenCallbacks, voteBits uint16, stakeMiningEnabled bool, balanceToMaintain float64, addressReuse bool, rollbackTest bool, pruneTickets bool, ticketAddress string, ticketMaxPrice float64, ticketBuyFreq int, poolAddress string, poolFees float64, ticketFee float64, addrIdxScanLen int, stakePoolColdExtKey string, autoRepair, allowHighFees bool, relayFee float64, params *chaincfg.Params) (*Wallet, error)
Open loads an already-created wallet from the passed database and namespaces.
func (*Wallet) AccountBalances ¶ added in v0.5.0
func (w *Wallet) AccountBalances(requiredConfs int32, balanceType wtxmgr.BehaviorFlags) ([]AccountBalanceResult, error)
AccountBalances returns all accounts in the wallet and their balances. Balances are determined by excluding transactions that have not met requiredConfs confirmations.
func (*Wallet) AccountBranchAddressRange ¶ added in v0.5.0
func (w *Wallet) AccountBranchAddressRange(start, end uint32, account uint32, branch uint32) ([]dcrutil.Address, error)
AccountBranchAddressRange returns all addresses in the left-open, right-closed range (start, end] belonging to the BIP0044 account and address branch.
func (*Wallet) AccountName ¶ added in v0.5.0
AccountName returns the name of an account.
func (*Wallet) AccountNumber ¶ added in v0.5.0
AccountNumber returns the account number for an account name.
func (*Wallet) AccountOfAddress ¶ added in v0.5.0
AccountOfAddress finds the account that an address is associated with.
func (*Wallet) AccountProperties ¶ added in v0.2.0
func (w *Wallet) AccountProperties(acct uint32) (*waddrmgr.AccountProperties, error)
AccountProperties returns the properties of an account, including address indexes and name. It first fetches the desynced information from the address manager, then updates the indexes based on the address pools.
func (*Wallet) Accounts ¶
func (w *Wallet) Accounts() (*AccountsResult, error)
Accounts returns the current names, numbers, and total balances of all accounts in the wallet. The current chain tip is included in the result for atomicity reasons.
TODO(jrick): Is the chain tip really needed, since only the total balances are included?
func (*Wallet) AddressInfo ¶ added in v0.5.0
AddressInfo returns detailed information regarding a wallet address.
func (*Wallet) AddressPoolIndex ¶ added in v0.0.10
AddressPoolIndex returns the next to use address index for the passed branch of the passed account.
func (*Wallet) BalanceToMaintain ¶
BalanceToMaintain is used to get the current balancetomaintain for the wallet.
func (*Wallet) CalculateAccountBalance ¶
func (w *Wallet) CalculateAccountBalance(account uint32, confirms int32, balanceType wtxmgr.BehaviorFlags) (dcrutil.Amount, error)
CalculateAccountBalance sums the amounts of all unspent transaction outputs to the given account of a wallet and returns the balance.
func (*Wallet) CalculateAccountBalances ¶
CalculateAccountBalances calculates the values for the wtxmgr struct Balance, which includes the total balance, the spendable balance, and the balance which has yet to mature.
func (*Wallet) CalculateBalance ¶
func (w *Wallet) CalculateBalance(confirms int32, balanceType wtxmgr.BehaviorFlags) (dcrutil.Amount, error)
CalculateBalance sums the amounts of all unspent transaction outputs to addresses of a wallet and returns the balance.
If confirmations is 0, all UTXOs, even those not present in a block (height -1), will be used to get the balance. Otherwise, a UTXO must be in a block. If confirmations is 1 or greater, the balance will be calculated based on how many how many blocks include a UTXO.
func (*Wallet) ChainClient ¶
ChainClient returns the optional consensus RPC client associated with the wallet.
This function is unstable and will be removed once sync logic is moved out of the wallet.
func (*Wallet) ChainParams ¶
ChainParams returns the network parameters for the blockchain the wallet belongs to.
func (*Wallet) ChainSynced ¶
ChainSynced returns whether the wallet has been attached to a chain server and synced up to the best block on the main chain.
func (*Wallet) ChangePrivatePassphrase ¶ added in v0.5.0
ChangePrivatePassphrase attempts to change the passphrase for a wallet from old to new. Changing the passphrase is synchronized with all other address manager locking and unlocking. The lock state will be the same as it was before the password change.
func (*Wallet) ChangePublicPassphrase ¶ added in v0.5.0
ChangePublicPassphrase modifies the public passphrase of the wallet.
func (*Wallet) CheckAddressPoolsInitialized ¶
CheckAddressPoolsInitialized checks to make sure an address pool exists that that one can safely access functions and internal memory such as mutexes.
func (*Wallet) CloseAddressPools ¶
func (w *Wallet) CloseAddressPools(waddrmgrNs walletdb.ReadWriteBucket)
CloseAddressPools grabs one last new address for both internal and external acounts. Then it inserts them into the address manager database, so that the address manager can be used upon startup to restore the cursor position in the address pool.
func (*Wallet) CloseDatabases ¶
func (w *Wallet) CloseDatabases()
CloseDatabases triggers the wallet databases to shut down.
func (*Wallet) Consolidate ¶
func (w *Wallet) Consolidate(inputs int, account uint32, address dcrutil.Address) (*chainhash.Hash, error)
Consolidate consolidates as many UTXOs as are passed in the inputs argument. If that many UTXOs can not be found, it will use the maximum it finds. This will only compress UTXOs in the default account
func (*Wallet) CreateMultisigTx ¶
func (w *Wallet) CreateMultisigTx(account uint32, amount dcrutil.Amount, pubkeys []*dcrutil.AddressSecpPubKey, nrequired int8, minconf int32) (*CreatedTx, dcrutil.Address, []byte, error)
CreateMultisigTx receives a request from the RPC and ships it to txCreator to generate a new multisigtx.
func (*Wallet) CreateSSGenTx ¶
func (w *Wallet) CreateSSGenTx(ticketHash chainhash.Hash, blockHash chainhash.Hash, height int64, voteBits uint16) (*CreatedTx, error)
CreateSSGenTx receives a request from the RPC and ships it to txCreator to generate a new SSGen.
func (*Wallet) CreateSSRtx ¶
CreateSSRtx receives a request from the RPC and ships it to txCreator to generate a new SSRtx.
func (*Wallet) CreateSStxTx ¶
func (w *Wallet) CreateSStxTx(pair map[string]dcrutil.Amount, usedInputs []wtxmgr.Credit, inputs []dcrjson.SStxInput, couts []dcrjson.SStxCommitOut, minconf int32) (*CreatedTx, error)
CreateSStxTx receives a request from the RPC and ships it to txCreator to generate a new SStx.
func (*Wallet) CreateSimpleTx ¶
func (w *Wallet) CreateSimpleTx(account uint32, outputs []*wire.TxOut, minconf int32) (*txauthor.AuthoredTx, error)
CreateSimpleTx creates a new signed transaction spending unspent P2PKH outputs with at laest minconf confirmations spending to any number of address/amount pairs. Change and an appropriate transaction fee are automatically included, if necessary. All transaction creation through this function is serialized to prevent the creation of many transactions which spend the same outputs.
func (*Wallet) CurrentAddress ¶
CurrentAddress gets the most recently requested payment address from a wallet. If the address has already been used (there is at least one transaction spending to it in the blockchain or dcrd mempool), the next chained address is returned.
func (*Wallet) DumpPrivKeys ¶
DumpPrivKeys returns the WIF-encoded private keys for all addresses with private keys in a wallet.
func (*Wallet) DumpWIFPrivateKey ¶
DumpWIFPrivateKey returns the WIF encoded private key for a single wallet address.
func (*Wallet) ExistsAddressOnChain ¶
ExistsAddressOnChain is the exported version of existsAddressOnChain that is safe for concurrent access.
func (*Wallet) FetchAllRedeemScripts ¶ added in v0.5.0
FetchAllRedeemScripts returns all P2SH redeem scripts saved by the wallet.
func (*Wallet) FetchP2SHMultiSigOutput ¶ added in v0.5.0
func (w *Wallet) FetchP2SHMultiSigOutput(outPoint *wire.OutPoint) (*P2SHMultiSigOutput, error)
FetchP2SHMultiSigOutput fetches information regarding a wallet's P2SH multi-signature output.
func (*Wallet) FindEligibleOutputs ¶
func (w *Wallet) FindEligibleOutputs(account uint32, minconf int32, bs *waddrmgr.BlockStamp) ([]wtxmgr.Credit, error)
FindEligibleOutputs is the exported version of findEligibleOutputs (which tried to find unspent outputs that pass a maturity check).
func (*Wallet) Generate ¶ added in v0.0.10
Generate returns the current status of the generation stake of the wallet.
func (*Wallet) GetCurrentVotingInfo ¶
func (w *Wallet) GetCurrentVotingInfo() *VotingInfo
GetCurrentVotingInfo returns a copy of the current voting information.
func (*Wallet) GetTicketMaxPrice ¶
GetTicketMaxPrice gets the current maximum price the user is willing to pay for a ticket.
func (*Wallet) GetTransactions ¶
func (w *Wallet) GetTransactions(startBlock, endBlock *BlockIdentifier, cancel <-chan struct{}) (*GetTransactionsResult, error)
GetTransactions returns transaction results between a starting and ending block. Blocks in the block range may be specified by either a height or a hash.
Because this is a possibly lenghtly operation, a cancel channel is provided to cancel the task. If this channel unblocks, the results created thus far will be returned.
Transaction results are organized by blocks in ascending order and unmined transactions in an unspecified order. Mined transactions are saved in a Block structure which records properties about the block.
func (*Wallet) HaveAddress ¶ added in v0.5.0
HaveAddress returns whether the wallet is the owner of the address a.
func (*Wallet) ImportP2SHRedeemScript ¶ added in v0.5.0
func (w *Wallet) ImportP2SHRedeemScript(script []byte) (*dcrutil.AddressScriptHash, error)
ImportP2SHRedeemScript adds a P2SH redeem script to the wallet.
func (*Wallet) ImportPrivateKey ¶
func (w *Wallet) ImportPrivateKey(wif *dcrutil.WIF, bs *waddrmgr.BlockStamp, rescan bool, scanFrom int32) (string, error)
ImportPrivateKey imports a private key to the wallet and writes the new wallet to disk.
func (*Wallet) ImportScript ¶ added in v0.1.5
ImportScript imports a redeemscript to the wallet. If it also allows the user to specify whether or not they want the redeemscript to be rescanned, and how far back they wish to rescan.
func (*Wallet) ListAddressTransactions ¶
func (w *Wallet) ListAddressTransactions(pkHashes map[string]struct{}) ([]dcrjson.ListTransactionsResult, error)
ListAddressTransactions returns a slice of objects with details about recorded transactions to or from any address belonging to a set. This is intended to be used for listaddresstransactions RPC replies.
func (*Wallet) ListAllTransactions ¶
func (w *Wallet) ListAllTransactions() ([]dcrjson.ListTransactionsResult, error)
ListAllTransactions returns a slice of objects with details about a recorded transaction. This is intended to be used for listalltransactions RPC replies.
func (*Wallet) ListSinceBlock ¶
func (w *Wallet) ListSinceBlock(start, end, syncHeight int32) ([]dcrjson.ListTransactionsResult, error)
ListSinceBlock returns a slice of objects with details about transactions since the given block. If the block is -1 then all transactions are included. This is intended to be used for listsinceblock RPC replies.
func (*Wallet) ListTransactions ¶
func (w *Wallet) ListTransactions(from, count int) ([]dcrjson.ListTransactionsResult, error)
ListTransactions returns a slice of objects with details about a recorded transaction. This is intended to be used for listtransactions RPC replies.
func (*Wallet) ListUnspent ¶
func (w *Wallet) ListUnspent(minconf, maxconf int32, addresses map[string]struct{}) ([]*dcrjson.ListUnspentResult, error)
ListUnspent returns a slice of objects representing the unspent wallet transactions fitting the given criteria. The confirmations will be more than minconf, less than maxconf and if addresses is populated only the addresses contained within it will be considered. If we know nothing about a transaction an empty array will be returned.
func (*Wallet) LiveTicketHashes ¶ added in v0.5.0
func (w *Wallet) LiveTicketHashes(rpcClient *chain.RPCClient, includeImmature bool) ([]chainhash.Hash, error)
LiveTicketHashes returns the hashes of live tickets that have been purchased by the wallet.
func (*Wallet) LockOutpoint ¶
LockOutpoint marks an outpoint as locked, that is, it should not be used as an input for newly created transactions.
func (*Wallet) LockedOutpoint ¶
LockedOutpoint returns whether an outpoint has been marked as locked and should not be used as an input for created transactions.
func (*Wallet) LockedOutpoints ¶
func (w *Wallet) LockedOutpoints() []dcrjson.TransactionInput
LockedOutpoints returns a slice of currently locked outpoints. This is intended to be used by marshaling the result as a JSON array for listlockunspent RPC results.
func (*Wallet) MakeSecp256k1MultiSigScript ¶ added in v0.5.0
func (w *Wallet) MakeSecp256k1MultiSigScript(secp256k1Addrs []dcrutil.Address, nRequired int) ([]byte, error)
MakeSecp256k1MultiSigScript creates a multi-signature script that can be redeemed with nRequired signatures of the passed keys and addresses. If the address is a P2PKH address, the associated pubkey is looked up by the wallet if possible, otherwise an error is returned for a missing pubkey.
This function only works with secp256k1 pubkeys and P2PKH addresses derived from them.
func (*Wallet) MasterPubKey ¶ added in v0.5.0
MasterPubKey returns the BIP0044 master public key for the passed account.
TODO: This should not be returning the key as a string.
func (*Wallet) NewAddress ¶
NewAddress checks the address pools and then attempts to return a new address for the account and branch requested.
func (*Wallet) NextAccount ¶
NextAccount creates the next account and returns its account number. The name must be unique to the account. In order to support automatic seed restoring, new accounts may not be created when all of the previous 100 accounts have no transaction history (this is a deviation from the BIP0044 spec, which allows no unused account gaps).
func (*Wallet) PoolAddress ¶ added in v0.1.0
PoolAddress gets the pool address for the wallet to give ticket fees to.
func (*Wallet) PrivKeyForAddress ¶ added in v0.5.0
PrivKeyForAddress looks up the associated private key for a P2PKH or P2PK address.
func (*Wallet) PubKeyForAddress ¶ added in v0.5.0
PubKeyForAddress looks up the associated public key for a P2PKH address.
func (*Wallet) PublishTransaction ¶
PublishTransaction sends the transaction to the consensus RPC server so it can be propigated to other nodes and eventually mined.
This function is unstable and will be removed once syncing code is moved out of the wallet.
func (*Wallet) PurchaseTickets ¶ added in v0.2.0
func (w *Wallet) PurchaseTickets(minBalance, spendLimit dcrutil.Amount, minConf int32, ticketAddr dcrutil.Address, account uint32, numTickets int, poolAddress dcrutil.Address, poolFees float64, expiry int32, txFee dcrutil.Amount, ticketFee dcrutil.Amount) (interface{}, error)
PurchaseTickets receives a request from the RPC and ships it to txCreator to purchase a new ticket. It returns a slice of the hashes of the purchased tickets.
func (*Wallet) RelayFee ¶
RelayFee returns the current minimum relay fee (per kB of serialized transaction) used when constructing transactions.
func (*Wallet) RenameAccount ¶
RenameAccount sets the name for an account number to newName.
func (*Wallet) Rescan ¶
Rescan begins a rescan for all active addresses and unspent outputs of a wallet. This is intended to be used to sync a wallet back up to the current best block in the main chain, and is considered an initial sync.
func (*Wallet) ResetLockedOutpoints ¶
func (w *Wallet) ResetLockedOutpoints()
ResetLockedOutpoints resets the set of locked outpoints so all may be used as inputs for new transactions.
func (*Wallet) Seed ¶ added in v0.5.0
Seed returns the wallet seed if it is saved by the wallet. The wallet must be unlocked to access the seed, and seeds are not saved by default for mainnet wallets.
TODO: This should not be returning the seed as a string
func (*Wallet) SendOutputs ¶
func (w *Wallet) SendOutputs(outputs []*wire.TxOut, account uint32, minconf int32) (*chainhash.Hash, error)
SendOutputs creates and sends payment transactions. It returns the transaction hash upon success
func (*Wallet) SetBalanceToMaintain ¶
SetBalanceToMaintain is used to set the current w.balancetomaintain for the wallet.
func (*Wallet) SetChainSynced ¶
SetChainSynced marks whether the wallet is connected to and currently in sync with the latest block notified by the chain server.
NOTE: Due to an API limitation with dcrrpcclient, this may return true after the client disconnected (and is attempting a reconnect). This will be unknown until the reconnect notification is received, at which point the wallet can be marked out of sync again until after the next rescan completes.
func (*Wallet) SetCurrentVotingInfo ¶
func (w *Wallet) SetCurrentVotingInfo(blockHash *chainhash.Hash, blockHeight int64, tickets []*chainhash.Hash)
SetCurrentVotingInfo is used to set the current tickets eligible to vote on the top block, along with that block's hash and height.
func (*Wallet) SetGenerate ¶
SetGenerate is used to enable or disable stake mining in the wallet.
func (*Wallet) SetInitiallyUnlocked ¶ added in v0.1.5
SetInitiallyUnlocked sets whether or not the wallet is initially unlocked. This allows the user to resync accounts, dictating some of the start up syncing behaviour. It should only be called before the wallet RPC servers are accessible. It is not safe for concurrent access.
func (*Wallet) SetRelayFee ¶
SetRelayFee sets a new minimum relay fee (per kB of serialized transaction) used when constructing transactions.
func (*Wallet) SetTicketFeeIncrement ¶
SetTicketFeeIncrement is used to set the current w.ticketFeeIncrement for the wallet.
func (*Wallet) SetTicketMaxPrice ¶
SetTicketMaxPrice sets the current maximum price the user is willing to pay for a ticket.
func (*Wallet) SetVoteBitsForTicket ¶ added in v0.5.0
SetVoteBitsForTicket sets the per-ticket vote bits. These vote bits override the wallet's default vote bits.
func (*Wallet) ShuttingDown ¶
ShuttingDown returns whether the wallet is currently in the process of shutting down or not.
func (*Wallet) SignTransaction ¶
func (w *Wallet) SignTransaction(tx *wire.MsgTx, hashType txscript.SigHashType, additionalPrevScripts map[wire.OutPoint][]byte, additionalKeysByAddress map[string]*dcrutil.WIF, p2shRedeemScriptsByAddress map[string][]byte) ([]SignatureError, error)
SignTransaction uses secrets of the wallet, as well as additional secrets passed in by the caller, to create and add input signatures to a transaction.
Transaction input script validation is used to confirm that all signatures are valid. For any invalid input, a SignatureError is added to the returns. The final error return is reserved for unexpected or fatal errors, such as being unable to determine a previous output script to redeem.
The transaction pointed to by tx is modified by this function.
func (*Wallet) SortedActivePaymentAddresses ¶
SortedActivePaymentAddresses returns a slice of all active payment addresses in a wallet.
func (*Wallet) StakeDifficulty ¶ added in v0.2.0
StakeDifficulty is used to get the current stake difficulty from the daemon.
func (*Wallet) StakeInfo ¶ added in v0.2.0
func (w *Wallet) StakeInfo() (*StakeInfoData, error)
StakeInfo collects and returns staking statistics for this wallet to the end user. This includes:
PoolSize uint32 Number of live tickets in the ticket pool AllMempoolTix uint32 Number of tickets currently in the mempool OwnMempoolTix uint32 Number of tickets in mempool that are from this wallet Immature uint32 Number of tickets from this wallet that are in the blockchain but which are not yet mature Live uint32 Number of mature, active tickets owned by this wallet Voted uint32 Number of votes cast by this wallet Missed uint32 Number of missed tickets (failing to vote or expired) Revoked uint32 Number of missed tickets that were missed and then revoked TotalSubsidy int64 Total amount of coins earned by stake mining
Getting this information is extremely costly as in involves a massive number of chain server calls.
func (*Wallet) StakePoolUserInfo ¶ added in v0.5.0
StakePoolUserInfo returns the stake pool user information for a user identified by their P2SH voting address.
func (*Wallet) Start ¶
func (w *Wallet) Start()
Start starts the goroutines necessary to manage a wallet.
func (*Wallet) SubmitRescan ¶
SubmitRescan submits a RescanJob to the RescanManager. A channel is returned with the final error of the rescan. The channel is buffered and does not need to be read to prevent a deadlock.
func (*Wallet) SyncAddressPoolIndex ¶ added in v0.0.10
SyncAddressPoolIndex synchronizes an account's branch to the given address by iteratively calling getNewAddress on the respective address pool.
func (*Wallet) SynchronizeRPC ¶
SynchronizeRPC associates the wallet with the consensus RPC client, synchronizes the wallet with the latest changes to the blockchain, and continuously updates the wallet through RPC notifications.
This method is unstable and will be removed when all syncing logic is moved outside of the wallet package.
func (*Wallet) SynchronizingToNetwork ¶
SynchronizingToNetwork returns whether the wallet is currently synchronizing with the Bitcoin network.
func (*Wallet) TicketAddress ¶ added in v0.1.0
TicketAddress gets the ticket address for the wallet to give the ticket voting rights to.
func (*Wallet) TicketFeeIncrement ¶
TicketFeeIncrement is used to get the current feeIncrement for the wallet.
func (*Wallet) TicketHashesForVotingAddress ¶ added in v0.5.0
TicketHashesForVotingAddress returns the hashes of all tickets with voting rights delegated to votingAddr. This function does not return the hashes of pruned tickets.
func (*Wallet) TotalReceivedForAccounts ¶ added in v0.5.0
func (w *Wallet) TotalReceivedForAccounts(minConf int32) ([]AccountTotalReceivedResult, error)
TotalReceivedForAccounts iterates through a wallet's transaction history, returning the total amount of decred received for all accounts.
func (*Wallet) TotalReceivedForAddr ¶
TotalReceivedForAddr iterates through a wallet's transaction history, returning the total amount of decred received for a single wallet address.
func (*Wallet) Unlock ¶
Unlock unlocks the wallet's address manager and relocks it after timeout has expired. If the wallet is already unlocked and the new passphrase is correct, the current timeout is replaced with the new one. The wallet will be locked if the passphrase is incorrect or any other error occurs during the unlock.
func (*Wallet) UnlockOutpoint ¶
UnlockOutpoint marks an outpoint as unlocked, that is, it may be used as an input for newly created transactions.
func (*Wallet) UnspentOutputs ¶ added in v0.5.0
func (w *Wallet) UnspentOutputs(policy OutputSelectionPolicy) ([]*TransactionOutput, error)
UnspentOutputs fetches all unspent outputs from the wallet that match rules described in the passed policy.
func (*Wallet) VoteBitsForTicket ¶ added in v0.5.0
VoteBitsForTicket returns the per-ticket vote bits, if any are saved, falling back to the wallet's default vote bits when missing.
func (*Wallet) WaitForShutdown ¶
func (w *Wallet) WaitForShutdown()
WaitForShutdown blocks until all wallet goroutines have finished executing.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
internal
|
|
Package txauthor provides transaction creation code for wallets.
|
Package txauthor provides transaction creation code for wallets. |
Package txrules provides functions that are help establish whether or not a transaction abides by non-consensus rules for things like the daemon and stake pool.
|
Package txrules provides functions that are help establish whether or not a transaction abides by non-consensus rules for things like the daemon and stake pool. |