diff --git a/android/app/src/main/jniLibs/arm64-v8a/libzano_libwallet2_api_c.so b/android/app/src/main/jniLibs/arm64-v8a/libzano_libwallet2_api_c.so new file mode 120000 index 000000000..49ddd0f47 --- /dev/null +++ b/android/app/src/main/jniLibs/arm64-v8a/libzano_libwallet2_api_c.so @@ -0,0 +1 @@ +../../../../../../scripts/monero_c/release/zano/aarch64-linux-android_libwallet2_api_c.so \ No newline at end of file diff --git a/android/app/src/main/jniLibs/armeabi-v7a/libzano_libwallet2_api_c.so b/android/app/src/main/jniLibs/armeabi-v7a/libzano_libwallet2_api_c.so new file mode 120000 index 000000000..43f9b98b2 --- /dev/null +++ b/android/app/src/main/jniLibs/armeabi-v7a/libzano_libwallet2_api_c.so @@ -0,0 +1 @@ +../../../../../../scripts/monero_c/release/zano/armv7a-linux-androideabi_libwallet2_api_c.so \ No newline at end of file diff --git a/android/app/src/main/jniLibs/x86_64/libzano_libwallet2_api_c.so b/android/app/src/main/jniLibs/x86_64/libzano_libwallet2_api_c.so new file mode 120000 index 000000000..8c37d73c2 --- /dev/null +++ b/android/app/src/main/jniLibs/x86_64/libzano_libwallet2_api_c.so @@ -0,0 +1 @@ +../../../../../../scripts/monero_c/release/zano/x86_64-linux-android_libwallet2_api_c.so \ No newline at end of file diff --git a/cw_zano/android/.gitignore b/cw_zano/android/.gitignore deleted file mode 100644 index 4abf6a863..000000000 --- a/cw_zano/android/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -*.iml -.gradle -/local.properties -/.idea/workspace.xml -/.idea/libraries -.DS_Store -/build -/captures -.cxx/ \ No newline at end of file diff --git a/cw_zano/android/CMakeLists.txt b/cw_zano/android/CMakeLists.txt deleted file mode 100644 index 425cfc181..000000000 --- a/cw_zano/android/CMakeLists.txt +++ /dev/null @@ -1,119 +0,0 @@ -cmake_minimum_required(VERSION 3.4.1) - -add_library( cw_zano - SHARED - ../ios/Classes/zano_api.cpp) - - find_library( log-lib log ) - -set(EXTERNAL_LIBS_DIR ${CMAKE_SOURCE_DIR}/../../cw_shared_external/ios/External/android) -set(EXTERNAL_ZANO_ROOT ${CMAKE_SOURCE_DIR}/../../../zano) - - - -############ -# OpenSSL -############ - -add_library(crypto STATIC IMPORTED) -set_target_properties(crypto PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libcrypto.a) - -add_library(ssl STATIC IMPORTED) -set_target_properties(ssl PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libssl.a) - -############ -# Boost -############ - -add_library(boost_chrono STATIC IMPORTED) -set_target_properties(boost_chrono PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_chrono.a) - -add_library(boost_date_time STATIC IMPORTED) -set_target_properties(boost_date_time PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_date_time.a) - -add_library(boost_filesystem STATIC IMPORTED) -set_target_properties(boost_filesystem PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_filesystem.a) - -add_library(boost_program_options STATIC IMPORTED) -set_target_properties(boost_program_options PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_program_options.a) - -add_library(boost_regex STATIC IMPORTED) -set_target_properties(boost_regex PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_regex.a) - -add_library(boost_serialization STATIC IMPORTED) -set_target_properties(boost_serialization PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_serialization.a) - -add_library(boost_system STATIC IMPORTED) -set_target_properties(boost_system PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_system.a) - -add_library(boost_thread STATIC IMPORTED) -set_target_properties(boost_thread PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_thread.a) - -add_library(boost_wserialization STATIC IMPORTED) -set_target_properties(boost_wserialization PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_wserialization.a) - -add_library(boost_log STATIC IMPORTED) - set_target_properties(boost_log PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/libboost_log.a) - -############# -# Zano -############# -add_library(zano_common STATIC IMPORTED) -set_target_properties(zano_common PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/zano/libcommon.a) - - -add_library(zano_crypto STATIC IMPORTED) -set_target_properties(zano_crypto PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/zano/libcrypto.a) - -add_library(zano_currency_core STATIC IMPORTED) -set_target_properties(zano_currency_core PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/zano/libcurrency_core.a) - -add_library(zano_z STATIC IMPORTED) -set_target_properties(zano_z PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/zano/libz.a) - -add_library(zano_wallet STATIC IMPORTED) -set_target_properties(zano_wallet PROPERTIES IMPORTED_LOCATION - ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/zano/libwallet.a) - -include_directories( ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/include ) -include_directories( ${EXTERNAL_ZANO_ROOT}/src/wallet ) - - -target_link_libraries( cw_zano - zano_common - zano_crypto - zano_currency_core - zano_z - zano_wallet - - boost_chrono - boost_date_time - boost_filesystem - boost_program_options - boost_regex - boost_serialization - boost_system - boost_thread - boost_wserialization - boost_log - - ssl - crypto - ${log-lib} - ) \ No newline at end of file diff --git a/cw_zano/android/build.gradle b/cw_zano/android/build.gradle deleted file mode 100644 index 68fc762f7..000000000 --- a/cw_zano/android/build.gradle +++ /dev/null @@ -1,45 +0,0 @@ -group 'com.cakewallet.cw_zano' -version '1.0-SNAPSHOT' - -buildscript { - ext.kotlin_version = '1.7.10' - repositories { - google() - jcenter() - } - - dependencies { - classpath 'com.android.tools.build:gradle:4.1.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} - -rootProject.allprojects { - repositories { - google() - jcenter() - } -} - -apply plugin: 'com.android.library' -apply plugin: 'kotlin-android' - -android { - compileSdkVersion 28 - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' - } - defaultConfig { - minSdkVersion 21 - } - externalNativeBuild { - cmake { - path "CMakeLists.txt" - } - } -} - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" -} diff --git a/cw_zano/android/gradle.properties b/cw_zano/android/gradle.properties deleted file mode 100644 index 94adc3a3f..000000000 --- a/cw_zano/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/cw_zano/android/gradle/wrapper/gradle-wrapper.properties b/cw_zano/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 3c9d0852b..000000000 --- a/cw_zano/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/cw_zano/android/settings.gradle b/cw_zano/android/settings.gradle deleted file mode 100644 index 7c4d5263b..000000000 --- a/cw_zano/android/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -rootProject.name = 'cw_zano' diff --git a/cw_zano/android/src/main/AndroidManifest.xml b/cw_zano/android/src/main/AndroidManifest.xml deleted file mode 100644 index 26903e6c0..000000000 --- a/cw_zano/android/src/main/AndroidManifest.xml +++ /dev/null @@ -1,3 +0,0 @@ - - diff --git a/cw_zano/android/src/main/kotlin/com/cakewallet/cw_zano/CwZanoPlugin.kt b/cw_zano/android/src/main/kotlin/com/cakewallet/cw_zano/CwZanoPlugin.kt deleted file mode 100644 index 95df8ae7b..000000000 --- a/cw_zano/android/src/main/kotlin/com/cakewallet/cw_zano/CwZanoPlugin.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.cakewallet.cw_zano - -import androidx.annotation.NonNull - -import io.flutter.embedding.engine.plugins.FlutterPlugin -import io.flutter.plugin.common.MethodCall -import io.flutter.plugin.common.MethodChannel -import io.flutter.plugin.common.MethodChannel.MethodCallHandler -import io.flutter.plugin.common.MethodChannel.Result -import io.flutter.plugin.common.PluginRegistry.Registrar - -/** CwZanoPlugin */ -class CwZanoPlugin: FlutterPlugin, MethodCallHandler { - /// The MethodChannel that will the communication between Flutter and native Android - /// - /// This local reference serves to register the plugin with the Flutter Engine and unregister it - /// when the Flutter Engine is detached from the Activity - private lateinit var channel : MethodChannel - - override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) { - channel = MethodChannel(flutterPluginBinding.binaryMessenger, "cw_zano") - channel.setMethodCallHandler(this) - } - - override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) { - if (call.method == "getPlatformVersion") { - result.success("Android ${android.os.Build.VERSION.RELEASE}") - } else { - result.notImplemented() - } - } - - override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) { - channel.setMethodCallHandler(null) - } -} diff --git a/cw_zano/ios/.gitignore b/cw_zano/ios/.gitignore deleted file mode 100644 index aa479fd3c..000000000 --- a/cw_zano/ios/.gitignore +++ /dev/null @@ -1,37 +0,0 @@ -.idea/ -.vagrant/ -.sconsign.dblite -.svn/ - -.DS_Store -*.swp -profile - -DerivedData/ -build/ -GeneratedPluginRegistrant.h -GeneratedPluginRegistrant.m - -.generated/ - -*.pbxuser -*.mode1v3 -*.mode2v3 -*.perspectivev3 - -!default.pbxuser -!default.mode1v3 -!default.mode2v3 -!default.perspectivev3 - -xcuserdata - -*.moved-aside - -*.pyc -*sync/ -Icon? -.tags* - -/Flutter/Generated.xcconfig -/Flutter/flutter_export_environment.sh \ No newline at end of file diff --git a/cw_zano/ios/Assets/.gitkeep b/cw_zano/ios/Assets/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/cw_zano/ios/Classes/CwZanoPlugin.h b/cw_zano/ios/Classes/CwZanoPlugin.h deleted file mode 100644 index ee043b49c..000000000 --- a/cw_zano/ios/Classes/CwZanoPlugin.h +++ /dev/null @@ -1,4 +0,0 @@ -#import - -@interface CwZanoPlugin : NSObject -@end diff --git a/cw_zano/ios/Classes/CwZanoPlugin.m b/cw_zano/ios/Classes/CwZanoPlugin.m deleted file mode 100644 index 987663b56..000000000 --- a/cw_zano/ios/Classes/CwZanoPlugin.m +++ /dev/null @@ -1,15 +0,0 @@ -#import "CwZanoPlugin.h" -#if __has_include() -#import -#else -// Support project import fallback if the generated compatibility header -// is not copied when this plugin is created as a library. -// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816 -#import "cw_zano-Swift.h" -#endif - -@implementation CwZanoPlugin -+ (void)registerWithRegistrar:(NSObject*)registrar { - [SwiftCwZanoPlugin registerWithRegistrar:registrar]; -} -@end diff --git a/cw_zano/ios/Classes/SwiftCwZanoPlugin.swift b/cw_zano/ios/Classes/SwiftCwZanoPlugin.swift deleted file mode 100644 index 9c789d8a6..000000000 --- a/cw_zano/ios/Classes/SwiftCwZanoPlugin.swift +++ /dev/null @@ -1,14 +0,0 @@ -import Flutter -import UIKit - -public class SwiftCwZanoPlugin: NSObject, FlutterPlugin { - public static func register(with registrar: FlutterPluginRegistrar) { - let channel = FlutterMethodChannel(name: "cw_zano", binaryMessenger: registrar.messenger()) - let instance = SwiftCwZanoPlugin() - registrar.addMethodCallDelegate(instance, channel: channel) - } - - public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) { - result("iOS " + UIDevice.current.systemVersion) - } -} diff --git a/cw_zano/ios/Classes/zano_api.cpp b/cw_zano/ios/Classes/zano_api.cpp deleted file mode 100644 index a62a114f8..000000000 --- a/cw_zano/ios/Classes/zano_api.cpp +++ /dev/null @@ -1,870 +0,0 @@ -#include -#include "cstdlib" -#include -#include -#include -#include -#include -#include "thread" - - -#if __APPLE__ -// Fix for randomx on ios -void __clear_cache(void* start, void* end) { } -//#include "../External/ios/include/wallet2_api.h" -#endif - -#include "../External/include/wallet2_api.h" - -#include "../../../cw_shared_external/ios/External/ios/sources/zano/src/wallet/plain_wallet_api.h" -//#include "plain_wallet_api_ex.h" - - - -//using namespace std::chrono_literals; - -#ifdef __cplusplus -extern "C" -{ -#endif - //const uint64_t MONERO_BLOCK_SIZE = 1000; - - struct Utf8Box - { - char *value; - - Utf8Box(char *_value) - { - value = _value; - } - }; - - - struct SubaddressRow - { - uint64_t id; - char *address; - char *label; - - SubaddressRow(std::size_t _id, char *_address, char *_label) - { - id = static_cast(_id); - address = _address; - label = _label; - } - }; - - struct AccountRow - { - uint64_t id; - char *label; - - AccountRow(std::size_t _id, char *_label) - { - id = static_cast(_id); - label = _label; - } - }; - - struct ZanoBalance - { - uint64_t amount; - char *assetType; - - ZanoBalance(char *_assetType, uint64_t _amount) - { - amount = _amount; - assetType = _assetType; - } - }; - - struct ZanoRate - { - uint64_t rate; - char *assetType; - - ZanoRate(char *_assetType, uint64_t _rate) - { - rate = _rate; - assetType = _assetType; - } - }; - - /*struct MoneroWalletListener : Monero::WalletListener - { - uint64_t m_height; - bool m_need_to_refresh; - bool m_new_transaction; - - MoneroWalletListener() - { - m_height = 0; - m_need_to_refresh = false; - m_new_transaction = false; - } - - void moneySpent(const std::string &txId, uint64_t amount, std::string assetType) - { - m_new_transaction = true; - } - - void moneyReceived(const std::string &txId, uint64_t amount, std::string assetType) - { - m_new_transaction = true; - } - - void unconfirmedMoneyReceived(const std::string &txId, uint64_t amount) - { - m_new_transaction = true; - } - - void newBlock(uint64_t height) - { - m_height = height; - } - - void updated() - { - m_new_transaction = true; - } - - void refreshed() - { - m_need_to_refresh = true; - } - - void resetNeedToRefresh() - { - m_need_to_refresh = false; - } - - bool isNeedToRefresh() - { - return m_need_to_refresh; - } - - bool isNewTransactionExist() - { - return m_new_transaction; - } - - void resetIsNewTransactionExist() - { - m_new_transaction = false; - } - - uint64_t height() - { - return m_height; - } - }; - */ - - struct TransactionInfoRow - { - uint64_t amount; - uint64_t fee; - uint64_t blockHeight; - uint64_t confirmations; - uint32_t subaddrAccount; - int8_t direction; - int8_t isPending; - uint32_t subaddrIndex; - - char *hash; - char *paymentId; - char *assetType; - - int64_t datetime; - - TransactionInfoRow(/*wallet_public::wallet_transfer_info& wti*/) - { - /* - amount = wti.subtransfers. - fee = transaction->fee(); - blockHeight = transaction->blockHeight(); - subaddrAccount = transaction->subaddrAccount(); - std::set::iterator it = transaction->subaddrIndex().begin(); - subaddrIndex = *it; - confirmations = transaction->confirmations(); - datetime = static_cast(transaction->timestamp()); - direction = transaction->direction(); - isPending = static_cast(transaction->isPending()); - std::string *hash_str = new std::string(transaction->hash()); - hash = strdup(hash_str->c_str()); - paymentId = strdup(transaction->paymentId().c_str()); - assetType = strdup(transaction->assetType().c_str()); - */ - } - }; - - /* - Monero::Wallet *m_wallet; - Monero::TransactionHistory *m_transaction_history; - MoneroWalletListener *m_listener; - Monero::Subaddress *m_subaddress; - Monero::SubaddressAccount *m_account; - uint64_t m_last_known_wallet_height; - uint64_t m_cached_syncing_blockchain_height = 0; - std::mutex store_lock; - bool is_storing = false; - */ - //void change_current_wallet(Monero::Wallet *wallet) - //{ - /* - m_wallet = wallet; - m_listener = nullptr; - - - if (wallet != nullptr) - { - m_transaction_history = wallet->history(); - } - else - { - m_transaction_history = nullptr; - } - - if (wallet != nullptr) - { - m_account = wallet->subaddressAccount(); - } - else - { - m_account = nullptr; - } - - if (wallet != nullptr) - { - m_subaddress = wallet->subaddress(); - } - else - { - m_subaddress = nullptr; - } - */ - //} - - //Monero::Wallet *get_current_wallet() - //{ - - // return nullptr;//return m_wallet; - //} - - char * create_wallet(char *path, char *password, char *language, int32_t networkType, char *error) - { - return strdup(plain_wallet::generate(path, password).c_str()); - } - - char * restore_wallet_from_seed(char *path, char *password, char *seed, int32_t networkType, uint64_t restoreHeight, char *error) - { - return strdup(plain_wallet::restore(seed, path, password, "").c_str()); - } - - bool restore_wallet_from_keys(char *path, char *password, char *language, char *address, char *viewKey, char *spendKey, int32_t networkType, uint64_t restoreHeight, char *error) - { - /* - Monero::NetworkType _networkType = static_cast(networkType); - Monero::Wallet *wallet = Monero::WalletManagerFactory::getWalletManager()->createWalletFromKeys( - std::string(path), - std::string(password), - std::string(language), - _networkType, - (uint64_t)restoreHeight, - std::string(address), - std::string(viewKey), - std::string(spendKey)); - - int status; - std::string errorString; - - wallet->statusWithErrorString(status, errorString); - - if (status != Monero::Wallet::Status_Ok || !errorString.empty()) - { - error = strdup(errorString.c_str()); - return false; - } - - change_current_wallet(wallet); - */ - return false; - } - - char * load_wallet(char *path, char *password, int32_t nettype) - { - return strdup(plain_wallet::open(path, password).c_str()); - } - - char *error_string() { - return strdup("");//strdup(get_current_wallet()->errorString().c_str()); - } - - - bool is_wallet_exist(char *path) - { - return plain_wallet::is_wallet_exist(path); - } - - char *close_wallet(uint64_t hwallet) - { - return strdup(plain_wallet::close_wallet(hwallet).c_str()); - } - - - char *get_wallet_info(uint64_t hwallet) { - return strdup(plain_wallet::get_wallet_info(hwallet).c_str()); - } - - /* - get_filename(): -> get_wallet_info(h).wi.path - secret_view_key(): -> get_wallet_info(h).wi_extended.view_private_key - public_view_key(): -> get_wallet_info(h).wi_extended.view_public_key - secret_spend_key(): -> get_wallet_info(h).wi_extended.spend_private_key - public_spend_key(): -> get_wallet_info(h).wi_extended.spend_public_key - get_address(): -> get_wallet_info(h).wi.address - seed(): -> get_wallet_info(h).wi_extended.seed - get_current_height(): -> get_wallet_status(h).current_wallet_height - get_node_height(): -> get_wallet_status(h).current_daemon_height - - get_syncing_height() ??? how it's different from get_current_height??= - start_refresh() ??? - set_refresh_from_block_height ??? - set_recovering_from_seed ??? - get_node_height_or_update ??? - is_needed_to_refresh ??? - is_new_transaction_exist ??? - set_listener ??? - transactions_refresh() ??? - on_startup() ??? - rescan_blockchain() ??? - set_trusted_daemon()/trusted_daemon() ??? - - - asset_types_size()/asset_types() dedicated from balance - - update_rate()/get_rate()/size_of_rate() - need to fetch Zano price from coinmarketcap API, other assets ??? - - subaddrress_size()/subaddrress_get_all() - no subaddresses, only one address, available via get_wallet_info(h).wi.address - - connect_to_node()/is_connected(): -> get_connectivity_status(): { - "is_online": true, - "last_daemon_is_disconnected": false, - "is_server_busy": false, - "last_proxy_communicate_timestamp": 12121212 - } - - } - - get_full_balance/get_unlocked_balance(): -> async_call("invoke", hwallet, "{method: 'get_recent_txs_and_info', params: {offset: 0,count: 30,update_provision_info: true}}") - return list of last transactions + balances - - store(): -> async_call("invoke", hwallet, "{method: 'store', params: {}}") - - set_password() return "OK" if succeded - - transaction_create/transaction_commit () replaced with method 'transfer' that receive following argument in JSON: - async_call("invoke", hwallet, " - { - "method": "transfer", - "params": { - "destinations": [ - { - "amount": "0.222", - "address": "iZ2GHyPD7g28hgBfboZeCENaYrHSYZ1bLFi5cgWvn4WJLaxfgs4kqG6cJi9ai2zrXWSCpsvRXit14gKjeijx6YPCLJEv6Fx4rVm1hdAGQFiv", - "asset_id" "bec034f4f158f97cfc4933c3e387b098f69870e955a49061f9ce956212729534" - } - ], - "fee": 10000000000, - "mixin": 10, - "payment_id": "", - "comment": "haha", - "push_payer": false, - "hide_receiver": true - } - } - ") - - after transaction_create() event happened you need to call API get_current_tx_fee(priority_raw), get fee from it and use it to - show to dialog in UI, and then if confirmed when transaction_commit() need to actually call async_call(...) that do actual transfer - - subaddress doesn't exist in Zano so following api is not present: - subaddress_add_row/subaddress_set_label/subaddress_refresh/account_size/account_get_all/account_add_row/account_set_label_row/account_refresh - - transactions_get_all() -> - async_call("invoke", hwallet, " - { - "method": "get_recent_txs_and_info", - "params": { - "offset": 0, - "count": 30, - "update_provision_info": true - } - } - ") - - transactions_count() -> invoke: get_recent_txs_and_info - - - - - */ - - uint64_t get_current_tx_fee(uint64_t priority) - { - return plain_wallet::get_current_tx_fee(priority); - } - - - char* get_wallet_status(uint64_t hwallet) - { - return strdup(plain_wallet::get_wallet_status(hwallet).c_str()); - } - - char* get_address_info(char* address) - { - return strdup(plain_wallet::get_address_info(address).c_str()); - } - - - char* async_call(char* method_name, uint64_t instance_id, char* params) - { - return strdup(plain_wallet::async_call(method_name, instance_id, params).c_str()); - } - char* try_pull_result(uint64_t job_id) - { - return strdup(plain_wallet::try_pull_result(job_id).c_str()); - } - - char* sync_call(const std::string& method_name, uint64_t instance_id, const std::string& params) - { - return strdup(plain_wallet::sync_call(method_name, instance_id, params).c_str()); - } - - char* get_connectivity_status() - { - return strdup(plain_wallet::get_connectivity_status().c_str()); - } - - bool setup_node(char *address, char *login, char *password, bool use_ssl, bool is_light_wallet, char *error) - { - nice(19); - if(use_ssl) - { - //LOG_ERROR("SSL is not supported yet for Zano"); - return false; - } - - std::string res = plain_wallet::init(address, "", 0); - if(API_RETURN_CODE_OK != res) - { - //LOG_ERROR("Failed init wallet"); - return false; - } - - return true; - } - - //void start_refresh() - //{ - //get_current_wallet()->refreshAsync(); - //get_current_wallet()->startRefresh(); - //} - - //void set_refresh_from_block_height(uint64_t height) - //{ - //get_current_wallet()->setRefreshFromBlockHeight(height); - //} - - //void set_recovering_from_seed(bool is_recovery) - //{ - //get_current_wallet()->setRecoveringFromSeed(is_recovery); - //} - - char* set_password(uint64_t hwallet, char *password, Utf8Box &error) - { - return strdup(plain_wallet::reset_wallet_password(hwallet, password).c_str()); - } - - - /* - bool transaction_create(char *address, char *asset_type, char *payment_id, char *amount, - uint8_t priority_raw, uint32_t subaddr_account, Utf8Box &error, PendingTransactionRaw &pendingTransaction) - { - pendingTransaction.fee = plain_wallet::get_current_tx_fee(priority_raw); - pendingTransaction.amount = strdup(amount); - pendingTransaction.address = strdup(address); - pendingTransaction.asset_type = strdup(asset_type); - pendingTransaction.payment_id = strdup(payment_id); - pendingTransaction.priority_raw = priority_raw; - pendingTransaction.subaddr_account = 0; - return true; - }*/ - - //bool transaction_create_mult_dest(char **addresses, char *asset_type, char *payment_id, char **amounts, uint32_t size, - // uint8_t priority_raw, uint32_t subaddr_account, Utf8Box &error, PendingTransactionRaw &pendingTransaction) - //{ - /* - nice(19); - - std::vector _addresses; - std::vector _amounts; - - for (int i = 0; i < size; i++) { - _addresses.push_back(std::string(*addresses)); - _amounts.push_back(Monero::Wallet::amountFromString(std::string(*amounts))); - addresses++; - amounts++; - } - - auto priority = static_cast(priority_raw); - std::string _payment_id; - Monero::PendingTransaction *transaction; - - if (payment_id != nullptr) - { - _payment_id = std::string(payment_id); - } - - transaction = m_wallet->createTransactionMultDest(_addresses, _payment_id, _amounts, - std::string(asset_type), std::string(asset_type), m_wallet->defaultMixin(), priority, subaddr_account,{}); - - int status = transaction->status(); - - if (status == Monero::PendingTransaction::Status::Status_Error || status == Monero::PendingTransaction::Status::Status_Critical) - { - error = Utf8Box(strdup(transaction->errorString().c_str())); - return false; - } - - if (m_listener != nullptr) { - m_listener->m_new_transaction = true; - } - - pendingTransaction = PendingTransactionRaw(transaction); - return true; - */ - // return false; - //} - - //bool transaction_commit(PendingTransactionRaw *transaction, Utf8Box &error) - //{ - /* - bool committed = transaction->transaction->commit(); - - if (!committed) - { - error = Utf8Box(strdup(transaction->transaction->errorString().c_str())); - } else if (m_listener != nullptr) { - m_listener->m_new_transaction = true; - } - - return committed; - */ - // return false; - //} - - //uint64_t get_node_height_or_update(uint64_t base_eight) - //{ - /* - if (m_cached_syncing_blockchain_height < base_eight) { - m_cached_syncing_blockchain_height = base_eight; - } - - return m_cached_syncing_blockchain_height; - */ - // return 0; - //} - - //uint64_t get_syncing_height(uint64_t hwallet) - //{ - /* - if (m_listener == nullptr) { - return 0; - } - - uint64_t height = m_listener->height(); - - if (height <= 1) { - return 0; - } - - if (height != m_last_known_wallet_height) - { - m_last_known_wallet_height = height; - } - - return height; - */ - // return 0; - //} - - //uint64_t is_needed_to_refresh() - //{ - // return 0; - /* - if (m_listener == nullptr) { - return false; - } - - bool should_refresh = m_listener->isNeedToRefresh(); - - if (should_refresh) { - m_listener->resetNeedToRefresh(); - } - - return should_refresh; - */ - //} - - //uint8_t is_new_transaction_exist() - //{ - /* - if (m_listener == nullptr) { - return false; - } - - bool is_new_transaction_exist = m_listener->isNewTransactionExist(); - - if (is_new_transaction_exist) - { - m_listener->resetIsNewTransactionExist(); - } - - return is_new_transaction_exist; - */ - // return 0; - //} - - //void set_listener() - //{ - /* - m_last_known_wallet_height = 0; - - if (m_listener != nullptr) - { - free(m_listener); - } - - m_listener = new MoneroWalletListener(); - get_current_wallet()->setListener(m_listener); - */ - //} - - //int64_t *subaddrress_get_all() - //{ - /* - std::vector _subaddresses = m_subaddress->getAll(); - size_t size = _subaddresses.size(); - int64_t *subaddresses = (int64_t *)malloc(size * sizeof(int64_t)); - - for (int i = 0; i < size; i++) - { - Monero::SubaddressRow *row = _subaddresses[i]; - SubaddressRow *_row = new SubaddressRow(row->getRowId(), strdup(row->getAddress().c_str()), strdup(row->getLabel().c_str())); - subaddresses[i] = reinterpret_cast(_row); - } - - return subaddresses; - */ - // return nullptr; - //} - - //int32_t subaddrress_size() - //{ - //std::vector _subaddresses = m_subaddress->getAll(); - //return _subaddresses.size(); - // return 0; - //} - - //void subaddress_add_row(uint32_t accountIndex, char *label) - //{ - //m_subaddress->addRow(accountIndex, std::string(label)); - //} - - //void subaddress_set_label(uint32_t accountIndex, uint32_t addressIndex, char *label) - //{ - //m_subaddress->setLabel(accountIndex, addressIndex, std::string(label)); - //} - - //void subaddress_refresh(uint32_t accountIndex) - //{ - //m_subaddress->refresh(accountIndex); - //} - //int32_t account_size() - //{ - //std::vector _accocunts = m_account->getAll(); - //return _accocunts.size(); - // return 0; - //} - - //int64_t *account_get_all() - //{ - /* - std::vector _accocunts = m_account->getAll(); - size_t size = _accocunts.size(); - int64_t *accocunts = (int64_t *)malloc(size * sizeof(int64_t)); - - for (int i = 0; i < size; i++) - { - Monero::SubaddressAccountRow *row = _accocunts[i]; - AccountRow *_row = new AccountRow(row->getRowId(), strdup(row->getLabel().c_str())); - accocunts[i] = reinterpret_cast(_row); - } - - return accocunts; - */ - // return nullptr; - //} - - //void account_add_row(char *label) - //{ - //m_account->addRow(std::string(label)); - //} - //void account_set_label_row(uint32_t account_index, char *label) - //{ - //m_account->setLabel(account_index, label); - //} - - //void account_refresh() - //{ - //m_account->refresh(); - //} - - //int64_t *transactions_get_all() - //{ - /* - std::vector transactions = m_transaction_history->getAll(); - size_t size = transactions.size(); - int64_t *transactionAddresses = (int64_t *)malloc(size * sizeof(int64_t)); - - for (int i = 0; i < size; i++) - { - Monero::TransactionInfo *row = transactions[i]; - TransactionInfoRow *tx = new TransactionInfoRow(row); - transactionAddresses[i] = reinterpret_cast(tx); - } - - return transactionAddresses; - */ - // return nullptr; - //} - - //void transactions_refresh() - //{ - //m_transaction_history->refresh(); - //} - - //int64_t transactions_count() - //{ - //return m_transaction_history->count(); - // return 0; - //} - - //int LedgerExchange( - // unsigned char *command, - // unsigned int cmd_len, - // unsigned char *response, - // unsigned int max_resp_len) - //{ - // return -1; - //} - - //int LedgerFind(char *buffer, size_t len) - //{ - // return -1; - //} - - //void on_startup() - //{ - //Monero::Utils::onStartup(); - //Monero::WalletManagerFactory::setLogLevel(4); - //} - - //void rescan_blockchain() - //{ - //m_wallet->rescanBlockchainAsync(); - //} - - char * get_tx_key(char * txId) - { - return strdup(""); //return strdup(m_wallet->getTxKey(std::string(txId)).c_str()); - } - - //int32_t asset_types_size() - //{ - // return 0; //return Monero::Assets::list().size(); - //} - - //char **asset_types() - //{ - /* - size_t size = Monero::Assets::list().size(); - std::vector assetList = Monero::Assets::list(); - char **assetTypesPts; - assetTypesPts = (char **) malloc( size * sizeof(char*)); - - for (int i = 0; i < size; i++) - { - - std::string asset = assetList[i]; - //assetTypes[i] = (char *)malloc( 5 * sizeof(char)); - assetTypesPts[i] = strdup(asset.c_str()); - } - - return assetTypesPts; - */ - // return nullptr; - //} - - //std::map rates; - - //void update_rate() - //{ - //rates = get_current_wallet()->oracleRates(); - //} - - //int64_t *get_rate() - //{ - /* - size_t size = rates.size(); - int64_t *havenRates = (int64_t *)malloc(size * sizeof(int64_t)); - int i = 0; - - for (auto const& rate : rates) - { - char *assetType = strdup(rate.first.c_str()); - HavenRate *havenRate = new HavenRate(assetType, rate.second); - havenRates[i] = reinterpret_cast(havenRate); - i++; - } - - return havenRates; - */ - // return nullptr; - //} - - //int32_t size_of_rate() - //{ - // return 0; //return static_cast(rates.size()); - //} - - void set_trusted_daemon(bool arg) - { - //m_wallet->setTrustedDaemon(arg); - } - - bool trusted_daemon() - { - return false; - //return m_wallet->trustedDaemon(); - } - - char* get_version() - { - return strdup(plain_wallet::get_version().c_str()); - } - -#ifdef __cplusplus -} -#endif diff --git a/cw_zano/ios/External/CMakeLists.txt b/cw_zano/ios/External/CMakeLists.txt deleted file mode 100644 index 420372308..000000000 --- a/cw_zano/ios/External/CMakeLists.txt +++ /dev/null @@ -1,168 +0,0 @@ -# Portions Copyright (c) 2017-2022, The Monero Project -# This file is based off of the https://code.google.com/archive/p/ios-cmake/ -# It has been altered for Monero iOS development -# -# -# Options: -# -# IOS_PLATFORM = OS (default) or SIMULATOR or SIMULATOR64 -# This decides if SDKS will be selected from the iPhoneOS.platform or iPhoneSimulator.platform folders -# OS - the default, used to build for iPhone and iPad physical devices, which have an arm arch. -# SIMULATOR - used to build for the Simulator platforms, which have an x86 arch. -# -# CMAKE_IOS_DEVELOPER_ROOT = automatic(default) or /path/to/platform/Developer folder -# By default this location is automatcially chosen based on the IOS_PLATFORM value above. -# If set manually, it will override the default location and force the user of a particular Developer Platform -# -# CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder -# By default this location is automatcially chosen based on the CMAKE_IOS_DEVELOPER_ROOT value. -# In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path. -# If set manually, this will force the use of a specific SDK version - -message (STATUS "Running Zano IOS setup cmake file") - -# Standard settings -set (CMAKE_SYSTEM_NAME iOS) -set (CMAKE_SYSTEM_VERSION 15) -#set (UNIX True) -set (APPLE True) -set (IOS True) - -# Required as of cmake 2.8.10 -set (CMAKE_OSX_DEPLOYMENT_TARGET "" CACHE STRING "Force unset of the deployment target for iOS" FORCE) - -# Determine the cmake host system version so we know where to find the iOS SDKs -#find_program (CMAKE_UNAME uname /bin /usr/bin /usr/local/bin) -#if (CMAKE_UNAME) -# exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION) -# string (REGEX REPLACE "^([0-9]+)\\.([0-9]+).*$" "\\1" DARWIN_MAJOR_VERSION "${CMAKE_HOST_SYSTEM_VERSION}") -#endif (CMAKE_UNAME) -# Force the compilers to gcc for iOS -# include (CMakeForceCompiler) -# set (MAKE_C_COMPILER "/usr/bin/gcc Apple") -# set (CMAKE_CXX_COMPILER "/usr/bin/g++ Apple") -#set(CMAKE_AR ar CACHE FILEPATH "" FORCE) - -# Skip the platform compiler checks for cross compiling -# set (CMAKE_CXX_COMPILER_WORKS TRUE) -# set (CMAKE_C_COMPILER_WORKS TRUE) - -# All iOS/Darwin specific settings - some may be redundant -set (CMAKE_SHARED_LIBRARY_PREFIX "lib") -set (CMAKE_SHARED_LIBRARY_SUFFIX ".dylib") -set (CMAKE_SHARED_MODULE_PREFIX "lib") -set (CMAKE_SHARED_MODULE_SUFFIX ".so") -# set (CMAKE_MODULE_EXISTS 1) -#set (CMAKE_DL_LIBS "") - -#set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ") -#set (CMAKE_C_OSX_CURRENT_VERSION_FLAG "-current_version ") -#set (CMAKE_CXX_OSX_COMPATIBILITY_VERSION_FLAG "${CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG}") -#set (CMAKE_CXX_OSX_CURRENT_VERSION_FLAG "${CMAKE_C_OSX_CURRENT_VERSION_FLAG}") - -# Hidden visibilty is required for cxx on iOS -# set (CMAKE_C_FLAGS_INIT "") -# set (CMAKE_CXX_FLAGS_INIT "-fvisibility=hidden -fvisibility-inlines-hidden") - -#set (CMAKE_C_LINK_FLAGS "-Wl,-search_paths_first ${CMAKE_C_LINK_FLAGS}") -#set (CMAKE_CXX_LINK_FLAGS "-Wl,-search_paths_first ${CMAKE_CXX_LINK_FLAGS}") - -#set (CMAKE_PLATFORM_HAS_INSTALLNAME 1) -#set (CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-dynamiclib -headerpad_max_install_names") -#set (CMAKE_SHARED_MODULE_CREATE_C_FLAGS "-bundle -headerpad_max_install_names") -#set (CMAKE_SHARED_MODULE_LOADER_C_FLAG "-Wl,-bundle_loader,") -#set (CMAKE_SHARED_MODULE_LOADER_CXX_FLAG "-Wl,-bundle_loader,") -#set (CMAKE_FIND_LIBRARY_SUFFIXES ".dylib" ".so" ".a") - -# Setup iOS platform unless specified manually with IOS_PLATFORM -if (NOT DEFINED IOS_PLATFORM) - set (IOS_PLATFORM "OS") -endif (NOT DEFINED IOS_PLATFORM) -set (IOS_PLATFORM ${IOS_PLATFORM} CACHE STRING "Type of iOS Platform") - -# Setup building for arm64 or not -if (NOT DEFINED BUILD_ARM64) - set (BUILD_ARM64 true) -endif (NOT DEFINED BUILD_ARM64) -set (BUILD_ARM64 ${BUILD_ARM64} CACHE STRING "Build arm64 arch or not") - -# Check the platform selection and setup for developer root -if (${IOS_PLATFORM} STREQUAL "OS") - set (IOS_PLATFORM_LOCATION "iPhoneOS.platform") - - # This causes the installers to properly locate the output libraries - set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphoneos") -elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR") - set (SIMULATOR true) - set (IOS_PLATFORM_LOCATION "iPhoneSimulator.platform") - - # This causes the installers to properly locate the output libraries - set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphonesimulator") -elseif (${IOS_PLATFORM} STREQUAL "SIMULATOR64") - set (SIMULATOR true) - set (IOS_PLATFORM_LOCATION "iPhoneSimulator.platform") - - # This causes the installers to properly locate the output libraries - set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphonesimulator") -else (${IOS_PLATFORM} STREQUAL "OS") - message (FATAL_ERROR "Unsupported IOS_PLATFORM value selected. Please choose OS or SIMULATOR") -endif (${IOS_PLATFORM} STREQUAL "OS") - -# Setup iOS developer location unless specified manually with CMAKE_IOS_DEVELOPER_ROOT -# Note Xcode 4.3 changed the installation location, choose the most recent one available -# exec_program(/usr/bin/xcode-select ARGS -print-path OUTPUT_VARIABLE CMAKE_XCODE_DEVELOPER_DIR) -# set (XCODE_POST_43_ROOT "${CMAKE_XCODE_DEVELOPER_DIR}/Platforms/${IOS_PLATFORM_LOCATION}/Developer") -# set (XCODE_PRE_43_ROOT "/Developer/Platforms/${IOS_PLATFORM_LOCATION}/Developer") -#if (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT) -# if (EXISTS ${XCODE_POST_43_ROOT}) -# set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_POST_43_ROOT}) -# elseif(EXISTS ${XCODE_PRE_43_ROOT}) -# set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_PRE_43_ROOT}) -# endif (EXISTS ${XCODE_POST_43_ROOT}) -#endif (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT) -#set (CMAKE_IOS_DEVELOPER_ROOT ${CMAKE_IOS_DEVELOPER_ROOT} CACHE PATH "Location of iOS Platform") - -# Find and use the most recent iOS sdk unless specified manually with CMAKE_IOS_SDK_ROOT -#if (NOT DEFINED CMAKE_IOS_SDK_ROOT) -# file (GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*") -# if (_CMAKE_IOS_SDKS) -# list (SORT _CMAKE_IOS_SDKS) -# list (REVERSE _CMAKE_IOS_SDKS) -# list (GET _CMAKE_IOS_SDKS 0 CMAKE_IOS_SDK_ROOT) -# else (_CMAKE_IOS_SDKS) -# message (FATAL_ERROR "No iOS SDK's found in default search path ${CMAKE_IOS_DEVELOPER_ROOT}. Manually set CMAKE_IOS_SDK_ROOT or install the iOS SDK.") -# endif (_CMAKE_IOS_SDKS) -# message (STATUS "Toolchain using default iOS SDK: ${CMAKE_IOS_SDK_ROOT}") -#endif (NOT DEFINED CMAKE_IOS_SDK_ROOT) -#set (CMAKE_IOS_SDK_ROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Location of the selected iOS SDK") - -# Set the sysroot default to the most recent SDK -#set (CMAKE_OSX_SYSROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Sysroot used for iOS support") -# set (CMAKE_OSX_SYSROOT ${CMAKE_OSX_SYSROOT}) -#set(CMAKE_OSX_SYSROOT "$(xcrun --sdk ${IOS_PLATFORM_LOCATION} --show-sdk-path)") - - -# set the architecture for iOS -#if (NOT DEFINED ARCH) -# set (ARCH armv7) -#endif() -set (IOS_ARCH ${ARCH}) - -#set (CMAKE_OSX_ARCHITECTURES ${IOS_ARCH} CACHE STRING "Build architecture for iOS") -set(CMAKE_OSX_ARCHITECTURES arm64) -message(STATUS "ios arch: ${IOS_ARCH}") - -# Set the find root to the iOS developer roots and to user defined paths -#set (CMAKE_FIND_ROOT_PATH ${CMAKE_IOS_DEVELOPER_ROOT} ${CMAKE_IOS_SDK_ROOT} ${CMAKE_PREFIX_PATH} CACHE STRING "iOS find search path root") - -# default to searching for frameworks first -# set (CMAKE_FIND_FRAMEWORK FIRST) - -# set up the default search directories for frameworks -# set (CMAKE_SYSTEM_FRAMEWORK_PATH -# ${CMAKE_IOS_SDK_ROOT}/System/Library/Frameworks -# ${CMAKE_IOS_SDK_ROOT}/System/Library/PrivateFrameworks -# ${CMAKE_IOS_SDK_ROOT}/Developer/Library/Frameworks -#) - -message(STATUS "IOS CMAKE conf finished") \ No newline at end of file diff --git a/cw_zano/ios/External/include/wallet2_api.h b/cw_zano/ios/External/include/wallet2_api.h deleted file mode 100644 index 1065f8f84..000000000 --- a/cw_zano/ios/External/include/wallet2_api.h +++ /dev/null @@ -1,1333 +0,0 @@ -// Copyright (c) 2014-2019, The Monero Project -// -// 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 - -#pragma once - - -#include -#include -#include -#include -#include -#include -#include -#include - -// Public interface for libwallet library -namespace Monero { - -enum NetworkType : uint8_t { - MAINNET = 0, - TESTNET, - STAGENET -}; - - - namespace Assets { - - std::vector list(); - } - - namespace Utils { - bool isAddressLocal(const std::string &hostaddr); - void onStartup(); - } - - template - class optional { - public: - optional(): set(false) {} - optional(const T &t): t(t), set(true) {} - const T &operator*() const { return t; } - T &operator*() { return t; } - operator bool() const { return set; } - private: - T t; - bool set; - }; - -/** - * @brief Transaction-like interface for sending money - */ -struct PendingTransaction -{ - enum Status { - Status_Ok, - Status_Error, - Status_Critical - }; - - enum Priority { - Priority_Default = 0, - Priority_Low = 1, - Priority_Medium = 2, - Priority_High = 3, - Priority_Last - }; - - virtual ~PendingTransaction() = 0; - virtual int status() const = 0; - virtual std::string errorString() const = 0; - // commit transaction or save to file if filename is provided. - virtual bool commit(const std::string &filename = "", bool overwrite = false) = 0; - virtual uint64_t amount() const = 0; - virtual std::string assetType() const = 0; - virtual uint64_t dust() const = 0; - virtual uint64_t fee() const = 0; - virtual std::vector txid() const = 0; - /*! - * \brief txCount - number of transactions current transaction will be splitted to - * \return - */ - virtual uint64_t txCount() const = 0; - virtual std::vector subaddrAccount() const = 0; - virtual std::vector> subaddrIndices() const = 0; - - /** - * @brief multisigSignData - * @return encoded multisig transaction with signers' keys. - * Transfer this data to another wallet participant to sign it. - * Assumed use case is: - * 1. Initiator: - * auto data = pendingTransaction->multisigSignData(); - * 2. Signer1: - * pendingTransaction = wallet->restoreMultisigTransaction(data); - * pendingTransaction->signMultisigTx(); - * auto signed = pendingTransaction->multisigSignData(); - * 3. Signer2: - * pendingTransaction = wallet->restoreMultisigTransaction(signed); - * pendingTransaction->signMultisigTx(); - * pendingTransaction->commit(); - */ - virtual std::string multisigSignData() = 0; - virtual void signMultisigTx() = 0; - /** - * @brief signersKeys - * @return vector of base58-encoded signers' public keys - */ - virtual std::vector signersKeys() const = 0; -}; - -/** - * @brief Transaction-like interface for sending money - */ -struct UnsignedTransaction -{ - enum Status { - Status_Ok, - Status_Error, - Status_Critical - }; - - virtual ~UnsignedTransaction() = 0; - virtual int status() const = 0; - virtual std::string errorString() const = 0; - virtual std::vector amount() const = 0; - virtual std::vector fee() const = 0; - virtual std::vector mixin() const = 0; - // returns a string with information about all transactions. - virtual std::string confirmationMessage() const = 0; - virtual std::vector paymentId() const = 0; - virtual std::vector recipientAddress() const = 0; - virtual uint64_t minMixinCount() const = 0; - /*! - * \brief txCount - number of transactions current transaction will be splitted to - * \return - */ - virtual uint64_t txCount() const = 0; - /*! - * @brief sign - Sign txs and saves to file - * @param signedFileName - * return - true on success - */ - virtual bool sign(const std::string &signedFileName) = 0; -}; - -/** - * @brief The TransactionInfo - interface for displaying transaction information - */ -struct TransactionInfo -{ - enum Direction { - Direction_In, - Direction_Out - }; - - struct Transfer { - Transfer(uint64_t _amount, const std::string &address); - const uint64_t amount; - const std::string address; - }; - - virtual ~TransactionInfo() = 0; - virtual int direction() const = 0; - virtual bool isPending() const = 0; - virtual bool isFailed() const = 0; - virtual uint64_t amount() const = 0; - virtual uint64_t fee() const = 0; - virtual uint64_t blockHeight() const = 0; - virtual std::set subaddrIndex() const = 0; - virtual uint32_t subaddrAccount() const = 0; - virtual std::string label() const = 0; - virtual uint64_t confirmations() const = 0; - virtual uint64_t unlockTime() const = 0; - //! transaction_id - virtual std::string hash() const = 0; - virtual std::time_t timestamp() const = 0; - virtual std::string paymentId() const = 0; - virtual std::string assetType() const = 0; - //! only applicable for output transactions - virtual const std::vector & transfers() const = 0; -}; -/** - * @brief The TransactionHistory - interface for displaying transaction history - */ -struct TransactionHistory -{ - virtual ~TransactionHistory() = 0; - virtual int count() const = 0; - virtual TransactionInfo * transaction(int index) const = 0; - virtual TransactionInfo * transaction(const std::string &id) const = 0; - virtual std::vector getAll() const = 0; - virtual void refresh() = 0; -}; - -/** - * @brief AddressBookRow - provides functions to manage address book - */ -struct AddressBookRow { -public: - AddressBookRow(std::size_t _rowId, const std::string &_address, const std::string &_paymentId, const std::string &_description): - m_rowId(_rowId), - m_address(_address), - m_paymentId(_paymentId), - m_description(_description) {} - -private: - std::size_t m_rowId; - std::string m_address; - std::string m_paymentId; - std::string m_description; -public: - std::string extra; - std::string getAddress() const {return m_address;} - std::string getDescription() const {return m_description;} - std::string getPaymentId() const {return m_paymentId;} - std::size_t getRowId() const {return m_rowId;} -}; - -/** - * @brief The AddressBook - interface for -Book - */ -struct AddressBook -{ - enum ErrorCode { - Status_Ok, - General_Error, - Invalid_Address, - Invalid_Payment_Id - }; - virtual ~AddressBook() = 0; - virtual std::vector getAll() const = 0; - virtual bool addRow(const std::string &dst_addr , const std::string &payment_id, const std::string &description) = 0; - virtual bool deleteRow(std::size_t rowId) = 0; - virtual void refresh() = 0; - virtual std::string errorString() const = 0; - virtual int errorCode() const = 0; - virtual int lookupPaymentID(const std::string &payment_id) const = 0; -}; - -struct SubaddressRow { -public: - SubaddressRow(std::size_t _rowId, const std::string &_address, const std::string &_label): - m_rowId(_rowId), - m_address(_address), - m_label(_label) {} - -private: - std::size_t m_rowId; - std::string m_address; - std::string m_label; -public: - std::string extra; - std::string getAddress() const {return m_address;} - std::string getLabel() const {return m_label;} - std::size_t getRowId() const {return m_rowId;} -}; - -struct Subaddress -{ - virtual ~Subaddress() = 0; - virtual std::vector getAll() const = 0; - virtual void addRow(uint32_t accountIndex, const std::string &label) = 0; - virtual void setLabel(uint32_t accountIndex, uint32_t addressIndex, const std::string &label) = 0; - virtual void refresh(uint32_t accountIndex) = 0; -}; - -struct SubaddressAccountRow { -public: - SubaddressAccountRow(std::size_t _rowId, const std::string &_address, const std::string &_label, const std::map> &_balance, const std::map> &_unlockedBalance): - m_rowId(_rowId), - m_address(_address), - m_label(_label), - m_balance(_balance), - m_unlockedBalance(_unlockedBalance) {} - -private: - std::size_t m_rowId; - std::string m_address; - std::string m_label; - std::map> m_balance; - std::map> m_unlockedBalance; -public: - std::string extra; - std::string getAddress() const {return m_address;} - std::string getLabel() const {return m_label;} - std::map> getBalance() const {return m_balance;} - std::map> getUnlockedBalance() const {return m_unlockedBalance;} - std::size_t getRowId() const {return m_rowId;} -}; - -struct SubaddressAccount -{ - virtual ~SubaddressAccount() = 0; - virtual std::vector getAll() const = 0; - virtual void addRow(const std::string &label) = 0; - virtual void setLabel(uint32_t accountIndex, const std::string &label) = 0; - virtual void refresh() = 0; -}; - -struct MultisigState { - MultisigState() : isMultisig(false), isReady(false), threshold(0), total(0) {} - - bool isMultisig; - bool isReady; - uint32_t threshold; - uint32_t total; -}; - - -struct DeviceProgress { - DeviceProgress(): m_progress(0), m_indeterminate(false) {} - DeviceProgress(double progress, bool indeterminate=false): m_progress(progress), m_indeterminate(indeterminate) {} - - virtual double progress() const { return m_progress; } - virtual bool indeterminate() const { return m_indeterminate; } - -protected: - double m_progress; - bool m_indeterminate; -}; - -struct Wallet; -struct WalletListener -{ - virtual ~WalletListener() = 0; - /** - * @brief moneySpent - called when money spent - * @param txId - transaction id - * @param amount - amount - */ - virtual void moneySpent(const std::string &txId, uint64_t amount, std::string asset_type) = 0; - - /** - * @brief moneyReceived - called when money received - * @param txId - transaction id - * @param amount - amount - */ - virtual void moneyReceived(const std::string &txId, uint64_t amount, std::string asset_type) = 0; - - /** - * @brief unconfirmedMoneyReceived - called when payment arrived in tx pool - * @param txId - transaction id - * @param amount - amount - */ - virtual void unconfirmedMoneyReceived(const std::string &txId, uint64_t amount) = 0; - - /** - * @brief newBlock - called when new block received - * @param height - block height - */ - virtual void newBlock(uint64_t height) = 0; - - /** - * @brief updated - generic callback, called when any event (sent/received/block reveived/etc) happened with the wallet; - */ - virtual void updated() = 0; - - - /** - * @brief refreshed - called when wallet refreshed by background thread or explicitly refreshed by calling "refresh" synchronously - */ - virtual void refreshed() = 0; - - /** - * @brief called by device if the action is required - */ - virtual void onDeviceButtonRequest(uint64_t code) { (void)code; } - - /** - * @brief called by device if the button was pressed - */ - virtual void onDeviceButtonPressed() { } - - /** - * @brief called by device when PIN is needed - */ - virtual optional onDevicePinRequest() { - throw std::runtime_error("Not supported"); - } - - /** - * @brief called by device when passphrase entry is needed - */ - virtual optional onDevicePassphraseRequest(bool & on_device) { - on_device = true; - return optional(); - } - - /** - * @brief Signalizes device operation progress - */ - virtual void onDeviceProgress(const DeviceProgress & event) { (void)event; }; - - /** - * @brief If the listener is created before the wallet this enables to set created wallet object - */ - virtual void onSetWallet(Wallet * wallet) { (void)wallet; }; -}; - - -/** - * @brief Interface for wallet operations. - * TODO: check if /include/IWallet.h is still actual - */ -struct Wallet -{ - enum Device { - Device_Software = 0, - Device_Ledger = 1, - Device_Trezor = 2 - }; - - enum Status { - Status_Ok, - Status_Error, - Status_Critical - }; - - enum ConnectionStatus { - ConnectionStatus_Disconnected, - ConnectionStatus_Connected, - ConnectionStatus_WrongVersion - }; - - virtual ~Wallet() = 0; - virtual std::string seed() const = 0; - virtual std::string getSeedLanguage() const = 0; - virtual void setSeedLanguage(const std::string &arg) = 0; - //! returns wallet status (Status_Ok | Status_Error) - virtual int status() const = 0; //deprecated: use safe alternative statusWithErrorString - //! in case error status, returns error string - virtual std::string errorString() const = 0; //deprecated: use safe alternative statusWithErrorString - //! returns both error and error string atomically. suggested to use in instead of status() and errorString() - virtual void statusWithErrorString(int& status, std::string& errorString) const = 0; - virtual bool setPassword(const std::string &password) = 0; - virtual bool setDevicePin(const std::string &pin) { (void)pin; return false; }; - virtual bool setDevicePassphrase(const std::string &passphrase) { (void)passphrase; return false; }; - virtual std::string address(uint32_t accountIndex = 0, uint32_t addressIndex = 0) const = 0; - std::string mainAddress() const { return address(0, 0); } - virtual std::string path() const = 0; - virtual NetworkType nettype() const = 0; - bool mainnet() const { return nettype() == MAINNET; } - bool testnet() const { return nettype() == TESTNET; } - bool stagenet() const { return nettype() == STAGENET; } - //! returns current hard fork info - virtual void hardForkInfo(uint8_t &version, uint64_t &earliest_height) const = 0; - //! check if hard fork rules should be used - virtual bool useForkRules(uint8_t version, int64_t early_blocks) const = 0; - /*! - * \brief integratedAddress - returns integrated address for current wallet address and given payment_id. - * if passed "payment_id" param is an empty string or not-valid payment id string - * (16 characters hexadecimal string) - random payment_id will be generated - * - * \param payment_id - 16 characters hexadecimal string or empty string if new random payment id needs to be - * generated - * \return - 106 characters string representing integrated address - */ - virtual std::string integratedAddress(const std::string &payment_id) const = 0; - - /*! - * \brief secretViewKey - returns secret view key - * \return - secret view key - */ - virtual std::string secretViewKey() const = 0; - - /*! - * \brief publicViewKey - returns public view key - * \return - public view key - */ - virtual std::string publicViewKey() const = 0; - - /*! - * \brief secretSpendKey - returns secret spend key - * \return - secret spend key - */ - virtual std::string secretSpendKey() const = 0; - - /*! - * \brief publicSpendKey - returns public spend key - * \return - public spend key - */ - virtual std::string publicSpendKey() const = 0; - - /*! - * \brief publicMultisigSignerKey - returns public signer key - * \return - public multisignature signer key or empty string if wallet is not multisig - */ - virtual std::string publicMultisigSignerKey() const = 0; - - /*! - * \brief store - stores wallet to file. - * \param path - main filename to store wallet to. additionally stores address file and keys file. - * to store to the same file - just pass empty string; - * \return - */ - virtual bool store(const std::string &path) = 0; - /*! - * \brief filename - returns wallet filename - * \return - */ - virtual std::string filename() const = 0; - /*! - * \brief keysFilename - returns keys filename. usually this formed as "wallet_filename".keys - * \return - */ - virtual std::string keysFilename() const = 0; - /*! - * \brief init - initializes wallet with daemon connection params. - * if daemon_address is local address, "trusted daemon" will be set to true forcibly - * startRefresh() should be called when wallet is initialized. - * - * \param daemon_address - daemon address in "hostname:port" format - * \param upper_transaction_size_limit - * \param daemon_username - * \param daemon_password - * \param lightWallet - start wallet in light mode, connect to a openmonero compatible server. - * \return - true on success - */ - virtual bool init(const std::string &daemon_address, uint64_t upper_transaction_size_limit = 0, const std::string &daemon_username = "", const std::string &daemon_password = "", bool use_ssl = false, bool lightWallet = false) = 0; - - /*! - * \brief createWatchOnly - Creates a watch only wallet - * \param path - where to store the wallet - * \param password - * \param language - * \return - true if created successfully - */ - virtual bool createWatchOnly(const std::string &path, const std::string &password, const std::string &language) const = 0; - - /*! - * \brief setRefreshFromBlockHeight - start refresh from block height on recover - * - * \param refresh_from_block_height - blockchain start height - */ - virtual void setRefreshFromBlockHeight(uint64_t refresh_from_block_height) = 0; - - /*! - * \brief getRestoreHeight - get wallet creation height - * - */ - virtual uint64_t getRefreshFromBlockHeight() const = 0; - - /*! - * \brief setRecoveringFromSeed - set state recover form seed - * - * \param recoveringFromSeed - true/false - */ - virtual void setRecoveringFromSeed(bool recoveringFromSeed) = 0; - - /*! - * \brief setRecoveringFromDevice - set state to recovering from device - * - * \param recoveringFromDevice - true/false - */ - virtual void setRecoveringFromDevice(bool recoveringFromDevice) = 0; - - /*! - * \brief setSubaddressLookahead - set size of subaddress lookahead - * - * \param major - size fot the major index - * \param minor - size fot the minor index - */ - virtual void setSubaddressLookahead(uint32_t major, uint32_t minor) = 0; - - /** - * @brief connectToDaemon - connects to the daemon. TODO: check if it can be removed - * @return - */ - virtual bool connectToDaemon() = 0; - - /** - * @brief connected - checks if the wallet connected to the daemon - * @return - true if connected - */ - virtual ConnectionStatus connected() const = 0; - virtual void setTrustedDaemon(bool arg) = 0; - virtual bool trustedDaemon() const = 0; - virtual std::map> balance(uint32_t accountIndex = 0) const = 0; - virtual uint64_t balance(std::string asset_type, uint32_t accountIndex) const = 0; - virtual std::map balanceAll() const = 0; - virtual std::map> unlockedBalance(uint32_t accountIndex = 0) const = 0; - virtual uint64_t unlockedBalance(std::string asset_type, uint32_t accountIndex) const = 0; - virtual std::map unlockedBalanceAll() const = 0; - virtual std::map oracleRates() const = 0; - - /** - * @brief watchOnly - checks if wallet is watch only - * @return - true if watch only - */ - virtual bool watchOnly() const = 0; - - /** - * @brief blockChainHeight - returns current blockchain height - * @return - */ - virtual uint64_t blockChainHeight() const = 0; - - /** - * @brief approximateBlockChainHeight - returns approximate blockchain height calculated from date/time - * @return - */ - virtual uint64_t approximateBlockChainHeight() const = 0; - - /** - * @brief estimateBlockChainHeight - returns estimate blockchain height. More accurate than approximateBlockChainHeight, - * uses daemon height and falls back to calculation from date/time - * @return - **/ - virtual uint64_t estimateBlockChainHeight() const = 0; - /** - * @brief daemonBlockChainHeight - returns daemon blockchain height - * @return 0 - in case error communicating with the daemon. - * status() will return Status_Error and errorString() will return verbose error description - */ - virtual uint64_t daemonBlockChainHeight() const = 0; - - /** - * @brief daemonBlockChainTargetHeight - returns daemon blockchain target height - * @return 0 - in case error communicating with the daemon. - * status() will return Status_Error and errorString() will return verbose error description - */ - virtual uint64_t daemonBlockChainTargetHeight() const = 0; - - /** - * @brief synchronized - checks if wallet was ever synchronized - * @return - */ - virtual bool synchronized() const = 0; - - static std::string displayAmount(uint64_t amount); - static uint64_t amountFromString(const std::string &amount); - static uint64_t amountFromDouble(double amount); - static std::string genPaymentId(); - static bool paymentIdValid(const std::string &paiment_id); - static bool addressValid(const std::string &str, NetworkType nettype); - static bool addressValid(const std::string &str, bool testnet) // deprecated - { - return addressValid(str, testnet ? TESTNET : MAINNET); - } - static bool keyValid(const std::string &secret_key_string, const std::string &address_string, bool isViewKey, NetworkType nettype, std::string &error); - static bool keyValid(const std::string &secret_key_string, const std::string &address_string, bool isViewKey, bool testnet, std::string &error) // deprecated - { - return keyValid(secret_key_string, address_string, isViewKey, testnet ? TESTNET : MAINNET, error); - } - static std::string paymentIdFromAddress(const std::string &str, NetworkType nettype); - static std::string paymentIdFromAddress(const std::string &str, bool testnet) // deprecated - { - return paymentIdFromAddress(str, testnet ? TESTNET : MAINNET); - } - static uint64_t maximumAllowedAmount(); - // Easylogger wrapper - static void init(const char *argv0, const char *default_log_base_name) { init(argv0, default_log_base_name, "", true); } - static void init(const char *argv0, const char *default_log_base_name, const std::string &log_path, bool console); - static void debug(const std::string &category, const std::string &str); - static void info(const std::string &category, const std::string &str); - static void warning(const std::string &category, const std::string &str); - static void error(const std::string &category, const std::string &str); - - /** - * @brief StartRefresh - Start/resume refresh thread (refresh every 10 seconds) - */ - virtual void startRefresh() = 0; - /** - * @brief pauseRefresh - pause refresh thread - */ - virtual void pauseRefresh() = 0; - - /** - * @brief refresh - refreshes the wallet, updating transactions from daemon - * @return - true if refreshed successfully; - */ - virtual bool refresh() = 0; - - /** - * @brief refreshAsync - refreshes wallet asynchronously. - */ - virtual void refreshAsync() = 0; - - /** - * @brief rescanBlockchain - rescans the wallet, updating transactions from daemon - * @return - true if refreshed successfully; - */ - virtual bool rescanBlockchain() = 0; - - /** - * @brief rescanBlockchainAsync - rescans wallet asynchronously, starting from genesys - */ - virtual void rescanBlockchainAsync() = 0; - - /** - * @brief setAutoRefreshInterval - setup interval for automatic refresh. - * @param seconds - interval in millis. if zero or less than zero - automatic refresh disabled; - */ - virtual void setAutoRefreshInterval(int millis) = 0; - - /** - * @brief autoRefreshInterval - returns automatic refresh interval in millis - * @return - */ - virtual int autoRefreshInterval() const = 0; - - /** - * @brief addSubaddressAccount - appends a new subaddress account at the end of the last major index of existing subaddress accounts - * @param label - the label for the new account (which is the as the label of the primary address (accountIndex,0)) - */ - virtual void addSubaddressAccount(const std::string& label) = 0; - /** - * @brief numSubaddressAccounts - returns the number of existing subaddress accounts - */ - virtual size_t numSubaddressAccounts() const = 0; - /** - * @brief numSubaddresses - returns the number of existing subaddresses associated with the specified subaddress account - * @param accountIndex - the major index specifying the subaddress account - */ - virtual size_t numSubaddresses(uint32_t accountIndex) const = 0; - /** - * @brief addSubaddress - appends a new subaddress at the end of the last minor index of the specified subaddress account - * @param accountIndex - the major index specifying the subaddress account - * @param label - the label for the new subaddress - */ - virtual void addSubaddress(uint32_t accountIndex, const std::string& label) = 0; - /** - * @brief getSubaddressLabel - gets the label of the specified subaddress - * @param accountIndex - the major index specifying the subaddress account - * @param addressIndex - the minor index specifying the subaddress - */ - virtual std::string getSubaddressLabel(uint32_t accountIndex, uint32_t addressIndex) const = 0; - /** - * @brief setSubaddressLabel - sets the label of the specified subaddress - * @param accountIndex - the major index specifying the subaddress account - * @param addressIndex - the minor index specifying the subaddress - * @param label - the new label for the specified subaddress - */ - virtual void setSubaddressLabel(uint32_t accountIndex, uint32_t addressIndex, const std::string &label) = 0; - - /** - * @brief multisig - returns current state of multisig wallet creation process - * @return MultisigState struct - */ - virtual MultisigState multisig() const = 0; - /** - * @brief getMultisigInfo - * @return serialized and signed multisig info string - */ - virtual std::string getMultisigInfo() const = 0; - /** - * @brief makeMultisig - switches wallet in multisig state. The one and only creation phase for N / N wallets - * @param info - vector of multisig infos from other participants obtained with getMulitisInfo call - * @param threshold - number of required signers to make valid transaction. Must be equal to number of participants (N) or N - 1 - * @return in case of N / N wallets returns empty string since no more key exchanges needed. For N - 1 / N wallets returns base58 encoded extra multisig info - */ - virtual std::string makeMultisig(const std::vector& info, uint32_t threshold) = 0; - /** - * @brief exchange_multisig_keys - provides additional key exchange round for arbitrary multisig schemes (like N-1/N, M/N) - * @param info - base58 encoded key derivations returned by makeMultisig or exchangeMultisigKeys function call - * @return new info string if more rounds required or an empty string if wallet creation is done - */ - virtual std::string exchangeMultisigKeys(const std::vector &info) = 0; - /** - * @brief finalizeMultisig - finalizes N - 1 / N multisig wallets creation - * @param extraMultisigInfo - wallet participants' extra multisig info obtained with makeMultisig call - * @return true if success - */ - virtual bool finalizeMultisig(const std::vector& extraMultisigInfo) = 0; - /** - * @brief exportMultisigImages - exports transfers' key images - * @param images - output paramter for hex encoded array of images - * @return true if success - */ - virtual bool exportMultisigImages(std::string& images) = 0; - /** - * @brief importMultisigImages - imports other participants' multisig images - * @param images - array of hex encoded arrays of images obtained with exportMultisigImages - * @return number of imported images - */ - virtual size_t importMultisigImages(const std::vector& images) = 0; - /** - * @brief hasMultisigPartialKeyImages - checks if wallet needs to import multisig key images from other participants - * @return true if there are partial key images - */ - virtual bool hasMultisigPartialKeyImages() const = 0; - - /** - * @brief restoreMultisigTransaction creates PendingTransaction from signData - * @param signData encrypted unsigned transaction. Obtained with PendingTransaction::multisigSignData - * @return PendingTransaction - */ - virtual PendingTransaction* restoreMultisigTransaction(const std::string& signData) = 0; - - /*! - * \brief createTransactionMultDest creates transaction with multiple destinations. if dst_addr is an integrated address, payment_id is ignored - * \param dst_addr vector of destination address as string - * \param payment_id optional payment_id, can be empty string - * \param amount vector of amounts - * \param mixin_count mixin count. if 0 passed, wallet will use default value - * \param subaddr_account subaddress account from which the input funds are taken - * \param subaddr_indices set of subaddress indices to use for transfer or sweeping. if set empty, all are chosen when sweeping, and one or more are automatically chosen when transferring. after execution, returns the set of actually used indices - * \param priority - * \return PendingTransaction object. caller is responsible to check PendingTransaction::status() - * after object returned - */ - - virtual PendingTransaction * createTransactionMultDest(const std::vector &dst_addr, const std::string &payment_id, - optional> amount, - const std::string &str_source, const std::string &str_dest, - uint32_t mixin_count, - PendingTransaction::Priority = PendingTransaction::Priority_Low, - uint32_t subaddr_account = 0, - std::set subaddr_indices = {}) = 0; - - /*! - * \brief createTransaction creates transaction. if dst_addr is an integrated address, payment_id is ignored - * \param dst_addr destination address as string - * \param payment_id optional payment_id, can be empty string - * \param amount amount - * \param mixin_count mixin count. if 0 passed, wallet will use default value - * \param subaddr_account subaddress account from which the input funds are taken - * \param subaddr_indices set of subaddress indices to use for transfer or sweeping. if set empty, all are chosen when sweeping, and one or more are automatically chosen when transferring. after execution, returns the set of actually used indices - * \param priority - * \return PendingTransaction object. caller is responsible to check PendingTransaction::status() - * after object returned - */ - - virtual PendingTransaction * createTransaction(const std::string &dst_addr, const std::string &payment_id, - optional amount, - const std::string &str_source, const std::string &str_dest, - uint32_t mixin_count, - PendingTransaction::Priority = PendingTransaction::Priority_Low, - uint32_t subaddr_account = 0, - std::set subaddr_indices = {}) = 0; - - /*! - * \brief createSweepUnmixableTransaction creates transaction with unmixable outputs. - * \return PendingTransaction object. caller is responsible to check PendingTransaction::status() - * after object returned - */ - - virtual PendingTransaction * createSweepUnmixableTransaction() = 0; - - /*! - * \brief loadUnsignedTx - creates transaction from unsigned tx file - * \return - UnsignedTransaction object. caller is responsible to check UnsignedTransaction::status() - * after object returned - */ - virtual UnsignedTransaction * loadUnsignedTx(const std::string &unsigned_filename) = 0; - - /*! - * \brief submitTransaction - submits transaction in signed tx file - * \return - true on success - */ - virtual bool submitTransaction(const std::string &fileName) = 0; - - - /*! - * \brief disposeTransaction - destroys transaction object - * \param t - pointer to the "PendingTransaction" object. Pointer is not valid after function returned; - */ - virtual void disposeTransaction(PendingTransaction * t) = 0; - - /*! - * \brief Estimates transaction fee. - * \param destinations Vector consisting of pairs. - * \return Estimated fee. - */ - virtual uint64_t estimateTransactionFee(const std::vector> &destinations, - PendingTransaction::Priority priority) const = 0; - - /*! - * \brief exportKeyImages - exports key images to file - * \param filename - * \return - true on success - */ - virtual bool exportKeyImages(const std::string &filename) = 0; - - /*! - * \brief importKeyImages - imports key images from file - * \param filename - * \return - true on success - */ - virtual bool importKeyImages(const std::string &filename) = 0; - - - virtual TransactionHistory * history() = 0; - virtual AddressBook * addressBook() = 0; - virtual Subaddress * subaddress() = 0; - virtual SubaddressAccount * subaddressAccount() = 0; - virtual void setListener(WalletListener *) = 0; - /*! - * \brief defaultMixin - returns number of mixins used in transactions - * \return - */ - virtual uint32_t defaultMixin() const = 0; - /*! - * \brief setDefaultMixin - setum number of mixins to be used for new transactions - * \param arg - */ - virtual void setDefaultMixin(uint32_t arg) = 0; - - /*! - * \brief setCacheAttribute - attach an arbitrary string to a wallet cache attribute - * \param key - the key - * \param val - the value - * \return true if successful, false otherwise - */ - virtual bool setCacheAttribute(const std::string &key, const std::string &val) = 0; - /*! - * \brief getCacheAttribute - return an arbitrary string attached to a wallet cache attribute - * \param key - the key - * \return the attached string, or empty string if there is none - */ - virtual std::string getCacheAttribute(const std::string &key) const = 0; - /*! - * \brief setUserNote - attach an arbitrary string note to a txid - * \param txid - the transaction id to attach the note to - * \param note - the note - * \return true if successful, false otherwise - */ - virtual bool setUserNote(const std::string &txid, const std::string ¬e) = 0; - /*! - * \brief getUserNote - return an arbitrary string note attached to a txid - * \param txid - the transaction id to attach the note to - * \return the attached note, or empty string if there is none - */ - virtual std::string getUserNote(const std::string &txid) const = 0; - virtual std::string getTxKey(const std::string &txid) const = 0; - virtual bool checkTxKey(const std::string &txid, std::string tx_key, const std::string &address, std::map &received, bool &in_pool, uint64_t &confirmations) = 0; - virtual std::string getTxProof(const std::string &txid, const std::string &address, const std::string &message) const = 0; - virtual bool checkTxProof(const std::string &txid, const std::string &address, const std::string &message, const std::string &signature, bool &good, std::map &received, bool &in_pool, uint64_t &confirmations) = 0; - virtual std::string getSpendProof(const std::string &txid, const std::string &message) const = 0; - virtual bool checkSpendProof(const std::string &txid, const std::string &message, const std::string &signature, bool &good) const = 0; - /*! - * \brief getReserveProof - Generates a proof that proves the reserve of unspent funds - * Parameters `account_index` and `amount` are ignored when `all` is true - */ - virtual std::string getReserveProof(bool all, uint32_t account_index, uint64_t amount, const std::string &message) const = 0; - virtual bool checkReserveProof(const std::string &address, const std::string &message, const std::string &signature, bool &good, uint64_t &total, uint64_t &spent) const = 0; - - /* - * \brief signMessage - sign a message with the spend private key - * \param message - the message to sign (arbitrary byte data) - * \return the signature - */ - virtual std::string signMessage(const std::string &message) = 0; - /*! - * \brief verifySignedMessage - verify a signature matches a given message - * \param message - the message (arbitrary byte data) - * \param address - the address the signature claims to be made with - * \param signature - the signature - * \return true if the signature verified, false otherwise - */ - virtual bool verifySignedMessage(const std::string &message, const std::string &addres, const std::string &signature) const = 0; - - /*! - * \brief signMultisigParticipant signs given message with the multisig public signer key - * \param message message to sign - * \return signature in case of success. Sets status to Error and return empty string in case of error - */ - virtual std::string signMultisigParticipant(const std::string &message) const = 0; - /*! - * \brief verifyMessageWithPublicKey verifies that message was signed with the given public key - * \param message message - * \param publicKey hex encoded public key - * \param signature signature of the message - * \return true if the signature is correct. false and sets error state in case of error - */ - virtual bool verifyMessageWithPublicKey(const std::string &message, const std::string &publicKey, const std::string &signature) const = 0; - - virtual bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector &unknown_parameters, std::string &error) = 0; - - virtual std::string getDefaultDataDir() const = 0; - - /* - * \brief rescanSpent - Rescan spent outputs - Can only be used with trusted daemon - * \return true on success - */ - virtual bool rescanSpent() = 0; - - //! blackballs a set of outputs - virtual bool blackballOutputs(const std::vector &outputs, bool add) = 0; - - //! blackballs an output - virtual bool blackballOutput(const std::string &amount, const std::string &offset) = 0; - - //! unblackballs an output - virtual bool unblackballOutput(const std::string &amount, const std::string &offset) = 0; - - //! gets the ring used for a key image, if any - virtual bool getRing(const std::string &key_image, std::vector &ring) const = 0; - - //! gets the rings used for a txid, if any - virtual bool getRings(const std::string &txid, std::vector>> &rings) const = 0; - - //! sets the ring used for a key image - virtual bool setRing(const std::string &key_image, const std::vector &ring, bool relative) = 0; - - //! sets whether pre-fork outs are to be segregated - virtual void segregatePreForkOutputs(bool segregate) = 0; - - //! sets the height where segregation should occur - virtual void segregationHeight(uint64_t height) = 0; - - //! secondary key reuse mitigation - virtual void keyReuseMitigation2(bool mitigation) = 0; - - //! Light wallet authenticate and login - virtual bool lightWalletLogin(bool &isNewWallet) const = 0; - - //! Initiates a light wallet import wallet request - virtual bool lightWalletImportWalletRequest(std::string &payment_id, uint64_t &fee, bool &new_request, bool &request_fulfilled, std::string &payment_address, std::string &status) = 0; - - //! locks/unlocks the keys file; returns true on success - virtual bool lockKeysFile() = 0; - virtual bool unlockKeysFile() = 0; - //! returns true if the keys file is locked - virtual bool isKeysFileLocked() = 0; - - /*! - * \brief Queries backing device for wallet keys - * \return Device they are on - */ - virtual Device getDeviceType() const = 0; - - //! cold-device protocol key image sync - virtual uint64_t coldKeyImageSync(uint64_t &spent, uint64_t &unspent) = 0; - - //! shows address on device display - virtual void deviceShowAddress(uint32_t accountIndex, uint32_t addressIndex, const std::string &paymentId) = 0; -}; - -/** - * @brief WalletManager - provides functions to manage wallets - */ -struct WalletManager -{ - - /*! - * \brief Creates new wallet - * \param path Name of wallet file - * \param password Password of wallet file - * \param language Language to be used to generate electrum seed mnemonic - * \param nettype Network type - * \param kdf_rounds Number of rounds for key derivation function - * \return Wallet instance (Wallet::status() needs to be called to check if created successfully) - */ - virtual Wallet * createWallet(const std::string &path, const std::string &password, const std::string &language, NetworkType nettype, uint64_t kdf_rounds = 1) = 0; - Wallet * createWallet(const std::string &path, const std::string &password, const std::string &language, bool testnet = false) // deprecated - { - return createWallet(path, password, language, testnet ? TESTNET : MAINNET); - } - - /*! - * \brief Opens existing wallet - * \param path Name of wallet file - * \param password Password of wallet file - * \param nettype Network type - * \param kdf_rounds Number of rounds for key derivation function - * \param listener Wallet listener to set to the wallet after creation - * \return Wallet instance (Wallet::status() needs to be called to check if opened successfully) - */ - virtual Wallet * openWallet(const std::string &path, const std::string &password, NetworkType nettype, uint64_t kdf_rounds = 1, WalletListener * listener = nullptr) = 0; - Wallet * openWallet(const std::string &path, const std::string &password, bool testnet = false) // deprecated - { - return openWallet(path, password, testnet ? TESTNET : MAINNET); - } - - /*! - * \brief recovers existing wallet using mnemonic (electrum seed) - * \param path Name of wallet file to be created - * \param password Password of wallet file - * \param mnemonic mnemonic (25 words electrum seed) - * \param nettype Network type - * \param restoreHeight restore from start height - * \param kdf_rounds Number of rounds for key derivation function - * \param seed_offset Seed offset passphrase (optional) - * \return Wallet instance (Wallet::status() needs to be called to check if recovered successfully) - */ - virtual Wallet * recoveryWallet(const std::string &path, const std::string &password, const std::string &mnemonic, - NetworkType nettype = MAINNET, uint64_t restoreHeight = 0, uint64_t kdf_rounds = 1, - const std::string &seed_offset = {}) = 0; - Wallet * recoveryWallet(const std::string &path, const std::string &password, const std::string &mnemonic, - bool testnet = false, uint64_t restoreHeight = 0) // deprecated - { - return recoveryWallet(path, password, mnemonic, testnet ? TESTNET : MAINNET, restoreHeight); - } - - /*! - * \deprecated this method creates a wallet WITHOUT a passphrase, use the alternate recoverWallet() method - * \brief recovers existing wallet using mnemonic (electrum seed) - * \param path Name of wallet file to be created - * \param mnemonic mnemonic (25 words electrum seed) - * \param nettype Network type - * \param restoreHeight restore from start height - * \return Wallet instance (Wallet::status() needs to be called to check if recovered successfully) - */ - virtual Wallet * recoveryWallet(const std::string &path, const std::string &mnemonic, NetworkType nettype, uint64_t restoreHeight = 0) = 0; - Wallet * recoveryWallet(const std::string &path, const std::string &mnemonic, bool testnet = false, uint64_t restoreHeight = 0) // deprecated - { - return recoveryWallet(path, mnemonic, testnet ? TESTNET : MAINNET, restoreHeight); - } - - /*! - * \brief recovers existing wallet using keys. Creates a view only wallet if spend key is omitted - * \param path Name of wallet file to be created - * \param password Password of wallet file - * \param language language - * \param nettype Network type - * \param restoreHeight restore from start height - * \param addressString public address - * \param viewKeyString view key - * \param spendKeyString spend key (optional) - * \param kdf_rounds Number of rounds for key derivation function - * \return Wallet instance (Wallet::status() needs to be called to check if recovered successfully) - */ - virtual Wallet * createWalletFromKeys(const std::string &path, - const std::string &password, - const std::string &language, - NetworkType nettype, - uint64_t restoreHeight, - const std::string &addressString, - const std::string &viewKeyString, - const std::string &spendKeyString = "", - uint64_t kdf_rounds = 1) = 0; - Wallet * createWalletFromKeys(const std::string &path, - const std::string &password, - const std::string &language, - bool testnet, - uint64_t restoreHeight, - const std::string &addressString, - const std::string &viewKeyString, - const std::string &spendKeyString = "") // deprecated - { - return createWalletFromKeys(path, password, language, testnet ? TESTNET : MAINNET, restoreHeight, addressString, viewKeyString, spendKeyString); - } - - /*! - * \deprecated this method creates a wallet WITHOUT a passphrase, use createWalletFromKeys(..., password, ...) instead - * \brief recovers existing wallet using keys. Creates a view only wallet if spend key is omitted - * \param path Name of wallet file to be created - * \param language language - * \param nettype Network type - * \param restoreHeight restore from start height - * \param addressString public address - * \param viewKeyString view key - * \param spendKeyString spend key (optional) - * \return Wallet instance (Wallet::status() needs to be called to check if recovered successfully) - */ - virtual Wallet * createWalletFromKeys(const std::string &path, - const std::string &language, - NetworkType nettype, - uint64_t restoreHeight, - const std::string &addressString, - const std::string &viewKeyString, - const std::string &spendKeyString = "") = 0; - 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 = "") // deprecated - { - return createWalletFromKeys(path, language, testnet ? TESTNET : MAINNET, restoreHeight, addressString, viewKeyString, spendKeyString); - } - - /*! - * \brief creates wallet using hardware device. - * \param path Name of wallet file to be created - * \param password Password of wallet file - * \param nettype Network type - * \param deviceName Device name - * \param restoreHeight restore from start height (0 sets to current height) - * \param subaddressLookahead Size of subaddress lookahead (empty sets to some default low value) - * \param kdf_rounds Number of rounds for key derivation function - * \param listener Wallet listener to set to the wallet after creation - * \return Wallet instance (Wallet::status() needs to be called to check if recovered successfully) - */ - virtual Wallet * createWalletFromDevice(const std::string &path, - const std::string &password, - NetworkType nettype, - const std::string &deviceName, - uint64_t restoreHeight = 0, - const std::string &subaddressLookahead = "", - uint64_t kdf_rounds = 1, - WalletListener * listener = nullptr) = 0; - - /*! - * \brief Closes wallet. In case operation succeeded, wallet object deleted. in case operation failed, wallet object not deleted - * \param wallet previously opened / created wallet instance - * \return None - */ - virtual bool closeWallet(Wallet *wallet, bool store = true) = 0; - - /* - * ! checks if wallet with the given name already exists - */ - - /*! - * @brief TODO: delme walletExists - check if the given filename is the wallet - * @param path - filename - * @return - true if wallet exists - */ - virtual bool walletExists(const std::string &path) = 0; - - /*! - * @brief verifyWalletPassword - check if the given filename is the wallet - * @param keys_file_name - location of keys file - * @param password - password to verify - * @param no_spend_key - verify only view keys? - * @param kdf_rounds - number of rounds for key derivation function - * @return - true if password is correct - * - * @note - * This function will fail when the wallet keys file is opened because the wallet program locks the keys file. - * In this case, Wallet::unlockKeysFile() and Wallet::lockKeysFile() need to be called before and after the call to this function, respectively. - */ - virtual bool verifyWalletPassword(const std::string &keys_file_name, const std::string &password, bool no_spend_key, uint64_t kdf_rounds = 1) const = 0; - - /*! - * \brief determine the key storage for the specified wallet file - * \param device_type (OUT) wallet backend as enumerated in Wallet::Device - * \param keys_file_name Keys file to verify password for - * \param password Password to verify - * \return true if password correct, else false - * - * for verification only - determines key storage hardware - * - */ - virtual bool queryWalletDevice(Wallet::Device& device_type, const std::string &keys_file_name, const std::string &password, uint64_t kdf_rounds = 1) const = 0; - - /*! - * \brief findWallets - searches for the wallet files by given path name recursively - * \param path - starting point to search - * \return - list of strings with found wallets (absolute paths); - */ - virtual std::vector findWallets(const std::string &path) = 0; - - //! returns verbose error string regarding last error; - virtual std::string errorString() const = 0; - - //! set the daemon address (hostname and port) - virtual void setDaemonAddress(const std::string &address) = 0; - - //! returns whether the daemon can be reached, and its version number - virtual bool connected(uint32_t *version = NULL) = 0; - - //! returns current blockchain height - virtual uint64_t blockchainHeight() = 0; - - //! returns current blockchain target height - virtual uint64_t blockchainTargetHeight() = 0; - - //! returns current network difficulty - virtual uint64_t networkDifficulty() = 0; - - //! returns current mining hash rate (0 if not mining) - virtual double miningHashRate() = 0; - - //! returns current block target - virtual uint64_t blockTarget() = 0; - - //! returns true iff mining - virtual bool isMining() = 0; - - //! starts mining with the set number of threads - virtual bool startMining(const std::string &address, uint32_t threads = 1, bool background_mining = false, bool ignore_battery = true) = 0; - - //! stops mining - virtual bool stopMining() = 0; - - //! resolves an OpenAlias address to a monero address - virtual std::string resolveOpenAlias(const std::string &address, bool &dnssec_valid) const = 0; - - //! checks for an update and returns version, hash and url - static std::tuple checkUpdates( - const std::string &software, - std::string subdir, - const char *buildtag = nullptr, - const char *current_version = nullptr); -}; - - -struct WalletManagerFactory -{ - // logging levels for underlying library - enum LogLevel { - LogLevel_Silent = -1, - LogLevel_0 = 0, - LogLevel_1 = 1, - LogLevel_2 = 2, - LogLevel_3 = 3, - LogLevel_4 = 4, - LogLevel_Min = LogLevel_Silent, - LogLevel_Max = LogLevel_4 - }; - - static WalletManager * getWalletManager(); - static void setLogLevel(int level); - static void setLogCategories(const std::string &categories); -}; - - -} - -namespace Bitmonero = Monero; - diff --git a/cw_zano/ios/cw_zano.podspec b/cw_zano/ios/cw_zano.podspec deleted file mode 100644 index 711e45a1e..000000000 --- a/cw_zano/ios/cw_zano.podspec +++ /dev/null @@ -1,43 +0,0 @@ -# -# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html. -# Run `pod lib lint cw_zano.podspec` to validate before publishing. -# -Pod::Spec.new do |s| - s.name = 'cw_zano' - s.version = '0.0.1' - s.summary = 'Cake Wallet Zano' - s.description = 'Cake Wallet wrapper over Zano project' - s.homepage = 'http://cakewallet.com' - s.license = { :file => '../LICENSE' } - s.author = { 'Cake Wallet' => 'support@cakewallet.com' } - s.source = { :path => '.' } - s.source_files = 'Classes/**/*' - s.public_header_files = 'Classes/**/*.h, Classes/*.h, ../shared_external/ios/libs/monero/include/src/**/*.h, ../shared_external/ios/libs/monero/include/contrib/**/*.h, ../shared_external/ios/libs/monero/include/../shared_external/ios/**/*.h' - s.dependency 'Flutter' - # s.dependency 'cw_shared_external' - s.platform = :ios, '10.0' - s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS' => 'arm64', 'ENABLE_BITCODE' => 'NO' } - s.swift_version = '5.0' - s.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/Classes/*.h" } - - s.subspec 'OpenSSL' do |openssl| - openssl.preserve_paths = 'External/ios/include/**/*.h' - openssl.vendored_libraries = 'External/ios/lib/libcrypto.a', 'External/ios/lib/libssl.a' - openssl.libraries = 'ssl', 'crypto' - openssl.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/External/ios/include/**" } - end - - s.subspec 'Boost' do |boost| - boost.preserve_paths = 'External/ios/include/**/*.h', - boost.vendored_libraries = 'External/ios/lib/libboost.a', - boost.libraries = '' - boost.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/External/ios/include/**" } - end - - s.subspec 'Zano' do |zano| - zano.preserve_paths = 'External/ios/include/**/*.h' - zano.vendored_libraries = 'External/ios/lib/libzano.a' - zano.libraries = '' - zano.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/External/ios/include" } - end -end diff --git a/cw_zano/pubspec.yaml b/cw_zano/pubspec.yaml index 2266b8843..cdc7c0fbc 100644 --- a/cw_zano/pubspec.yaml +++ b/cw_zano/pubspec.yaml @@ -49,14 +49,6 @@ flutter: # The 'pluginClass' and Android 'package' identifiers should not ordinarily # be modified. They are used by the tooling to maintain consistency when # adding or updating assets for this project. - plugin: - platforms: - android: - package: com.cakewallet.cw_zano - pluginClass: CwZanoPlugin - ios: - pluginClass: CwZanoPlugin - # To add assets to your plugin package, add an assets section, like this: # assets: # - images/a_dot_burr.jpeg