Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <consensus/amount.h>
#include <interfaces/chain.h>
#include <primitives/blockhash.h>
#include <primitives/transaction.h>
#include <pubkey.h>
#include <script/sighashtype.h>
#include <script/standard.h>
#include <support/allocators/secure.h>
#include <util/message.h>
#include <util/ui_change_type.h>
#include <cstdint>
#include <functional>
#include <map>
#include <memory>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
Go to the source code of this file.
Classes | |
class | interfaces::Wallet |
Interface for accessing a wallet. More... | |
class | interfaces::WalletClient |
Wallet chain client that in addition to having chain client methods for starting up, shutting down, and registering RPCs, also has additional methods (called by the GUI) to load and create wallets. More... | |
struct | interfaces::WalletAddress |
Information about one wallet address. More... | |
struct | interfaces::WalletBalances |
Collection of wallet balances. More... | |
struct | interfaces::WalletTx |
struct | interfaces::WalletTxStatus |
Updated transaction status. More... | |
struct | interfaces::WalletTxOut |
Wallet transaction output. More... | |
Namespaces | |
namespace | interfaces |
Typedefs | |
typedef uint8_t | isminefilter |
using | interfaces::WalletOrderForm = std::vector< std::pair< std::string, std::string > > |
using | interfaces::WalletValueMap = std::map< std::string, std::string > |
Functions | |
std::unique_ptr< Wallet > | interfaces::MakeWallet (const std::shared_ptr< CWallet > &wallet) |
Return implementation of Wallet interface. More... | |
std::unique_ptr< WalletClient > | interfaces::MakeWalletClient (Chain &chain, ArgsManager &args) |
Return implementation of ChainClient interface for a wallet client. More... | |
typedef uint8_t isminefilter |