2017-02-21 18:38:18 +01:00
|
|
|
// Copyright (c) 2014-2017, The Monero Project
|
2016-04-20 12:01:00 +02:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
|
|
|
|
|
|
|
|
|
|
|
|
#include "wallet/wallet2_api.h"
|
|
|
|
#include <string>
|
|
|
|
|
2016-12-13 16:21:38 +01:00
|
|
|
namespace Monero {
|
2016-04-20 12:01:00 +02:00
|
|
|
|
|
|
|
class WalletManagerImpl : public WalletManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Wallet * createWallet(const std::string &path, const std::string &password,
|
|
|
|
const std::string &language, bool testnet);
|
|
|
|
Wallet * openWallet(const std::string &path, const std::string &password, bool testnet);
|
2016-10-08 00:57:09 +02:00
|
|
|
virtual Wallet * recoveryWallet(const std::string &path, const std::string &memo, bool testnet, uint64_t restoreHeight);
|
2017-01-26 21:33:36 +01:00
|
|
|
virtual Wallet * createWalletFromKeys(const std::string &path,
|
|
|
|
const std::string &language,
|
|
|
|
bool testnet,
|
|
|
|
uint64_t restoreHeight,
|
|
|
|
const std::string &addressString,
|
|
|
|
const std::string &viewKeyString,
|
|
|
|
const std::string &spendKeyString = "");
|
2017-09-23 00:52:09 +02:00
|
|
|
virtual bool closeWallet(Wallet *wallet, bool store = true);
|
2016-04-20 12:01:00 +02:00
|
|
|
bool walletExists(const std::string &path);
|
2017-08-02 00:41:05 +02:00
|
|
|
bool verifyWalletPassword(const std::string &keys_file_name, const std::string &password, bool watch_only) const;
|
2016-06-03 13:52:58 +02:00
|
|
|
std::vector<std::string> findWallets(const std::string &path);
|
2016-04-20 12:01:00 +02:00
|
|
|
std::string errorString() const;
|
2016-11-29 11:54:38 +01:00
|
|
|
void setDaemonAddress(const std::string &address);
|
2016-12-25 13:31:50 +01:00
|
|
|
bool connected(uint32_t *version = NULL) const;
|
2016-11-05 15:59:39 +01:00
|
|
|
bool checkPayment(const std::string &address, const std::string &txid, const std::string &txkey, const std::string &daemon_address, uint64_t &received, uint64_t &height, std::string &error) const;
|
2016-11-29 11:54:38 +01:00
|
|
|
uint64_t blockchainHeight() const;
|
|
|
|
uint64_t blockchainTargetHeight() const;
|
|
|
|
uint64_t networkDifficulty() const;
|
|
|
|
double miningHashRate() const;
|
2016-12-25 13:31:50 +01:00
|
|
|
uint64_t blockTarget() const;
|
2016-12-29 14:16:21 +01:00
|
|
|
bool isMining() const;
|
2017-03-02 14:09:04 +01:00
|
|
|
bool startMining(const std::string &address, uint32_t threads = 1, bool background_mining = false, bool ignore_battery = true);
|
2016-12-29 14:16:21 +01:00
|
|
|
bool stopMining();
|
2016-12-17 13:48:22 +01:00
|
|
|
std::string resolveOpenAlias(const std::string &address, bool &dnssec_valid) const;
|
2016-04-20 12:01:00 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
WalletManagerImpl() {}
|
|
|
|
friend struct WalletManagerFactory;
|
2016-11-29 11:54:38 +01:00
|
|
|
std::string m_daemonAddress;
|
2016-04-20 12:01:00 +02:00
|
|
|
std::string m_errorString;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
2016-12-13 16:21:38 +01:00
|
|
|
|
|
|
|
namespace Bitmonero = Monero;
|