mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
5eabdcdca1
* CW-503 Prepare Ledger integration * CW-503 Revert Tor ignore * CW-503 Add Connect Device Page * CW-503 Add createWalletFromDevice for monero * CW-503 Add Connect Device Page * CW-503 Add Connect Device Page * CW-503 Add Debug Options * CW-503 Add proper hardware wallet selection screen * CW-503 Minor design changes on connect_device_page * CW-503 Add Create Wallet from Ledger * CW-503 Spent Ledger ETH Funds * CW-503 Minor fixes * CW-503 Fix Merge conflicts * CW-503 Fix Merge conflicts * CW-503 Fix Merge conflicts * CW-503 Fix minor conflicts * CW-503 Improve Ledger BLE Communication * CW-503 Improve Ledger BLE Communication * CW-503 Rollback Monero Test code * CW-503 Fix Execution failed for task :app:checkReleaseDuplicateClasses * CW-503 Better Error-Exceptions * CW-503 Add SetPinScreen before restore from hardware-wallet * CW-503 override web3dart to use cake's git hosted version * CW-503 Implement ledger sign messages * CW-503 Implement ledger sign messages and send erc20 tokens * CW-503 Fix merge conflicts * CW-503 Fix merge conflicts * CW-503 Use dep override for ledger_flutter * CW-503 Ledger ERC20 finalisation * CW-503 More graceful error handling * CW-503 Even more graceful error handling & remove debug code * CW-503 Minor Changes for Vik * CW-503 Fix USB connection * CW-503 Maybe this overrides web3dart finally * Indicate Loading on the first 5 Wallet Accounts * Prepare Ledger Bitcoin * Fix conflicts with main * Add Bluetooth permission to iOS [skip ci] * add privacyinfo for ios [skip ci] * update PrivacyInfo.xcprivacy [scip ci] * ios shit [skip ci] * Improve bitcoin xpub * Resolve open Todos regarding iOS Support * Minor debug * Remove erc20 dependency to have more granular control over the tx UX * Create Bitcoin Wallets using xpub * Create Bitcoin Wallets using xpub * Better error handling * Improve Ledger account handling * Add Bitcoin Support for Ledger * Add Bitcoin Support for Ledger * Add Bitcoin Support for Ledger * Implement requested Changes * Implement requested Changes * Minor fix * Implement requested Changes * Implement requested Changes * Add comment to remind me * Enable RBF for Bitcoin Ledger * Fix merge conflicts * Update wallet_info.dart * Cw 503 ledger support (#1310) * CW-503 Prepare Ledger integration * CW-503 Revert Tor ignore * CW-503 Add Connect Device Page * CW-503 Add createWalletFromDevice for monero * CW-503 Add Connect Device Page * CW-503 Add Connect Device Page * CW-503 Add Debug Options * CW-503 Add proper hardware wallet selection screen * CW-503 Minor design changes on connect_device_page * CW-503 Add Create Wallet from Ledger * CW-503 Spent Ledger ETH Funds * CW-503 Minor fixes * CW-503 Fix Merge conflicts * CW-503 Fix Merge conflicts * CW-503 Fix Merge conflicts * CW-503 Fix minor conflicts * CW-503 Improve Ledger BLE Communication * CW-503 Improve Ledger BLE Communication * CW-503 Rollback Monero Test code * CW-503 Fix Execution failed for task :app:checkReleaseDuplicateClasses * CW-503 Better Error-Exceptions * CW-503 Add SetPinScreen before restore from hardware-wallet * CW-503 override web3dart to use cake's git hosted version * CW-503 Implement ledger sign messages * CW-503 Implement ledger sign messages and send erc20 tokens * CW-503 Fix merge conflicts * CW-503 Fix merge conflicts * CW-503 Use dep override for ledger_flutter * CW-503 Ledger ERC20 finalisation * CW-503 More graceful error handling * CW-503 Even more graceful error handling & remove debug code * CW-503 Minor Changes for Vik * CW-503 Fix USB connection * CW-503 Maybe this overrides web3dart finally * Indicate Loading on the first 5 Wallet Accounts * Fix conflicts with main * Add Bluetooth permission to iOS [skip ci] * add privacyinfo for ios [skip ci] * update PrivacyInfo.xcprivacy [scip ci] * ios shit [skip ci] * Resolve open Todos regarding iOS Support * Remove erc20 dependency to have more granular control over the tx UX * Better error handling * Improve Ledger account handling * Implement requested Changes * Implement requested Changes * Implement requested Changes * Implement requested Changes * Fix merge conflicts * Update wallet_info.dart --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * Fix merge conflicts * Fix merge conflicts * Minor Fix to derivations * Update cw_bitcoin/lib/bitcoin_wallet.dart [skip ci] * Update cw_bitcoin/lib/bitcoin_wallet.dart [skip ci] * Update cw_bitcoin/lib/electrum_wallet.dart [skip ci] * Fix backward compatibility issues * Merge Tron * Fix Tron with HW changes * fix ble on iOS fix tron address validation --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
370 lines
11 KiB
Dart
370 lines
11 KiB
Dart
import 'dart:ffi';
|
|
|
|
import 'package:cw_monero/api/convert_utf8_to_string.dart';
|
|
import 'package:cw_monero/api/exceptions/wallet_creation_exception.dart';
|
|
import 'package:cw_monero/api/exceptions/wallet_opening_exception.dart';
|
|
import 'package:cw_monero/api/exceptions/wallet_restore_from_keys_exception.dart';
|
|
import 'package:cw_monero/api/exceptions/wallet_restore_from_seed_exception.dart';
|
|
import 'package:cw_monero/api/monero_api.dart';
|
|
import 'package:cw_monero/api/signatures.dart';
|
|
import 'package:cw_monero/api/types.dart';
|
|
import 'package:cw_monero/api/wallet.dart';
|
|
import 'package:ffi/ffi.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
final createWalletNative = moneroApi
|
|
.lookup<NativeFunction<create_wallet>>('create_wallet')
|
|
.asFunction<CreateWallet>();
|
|
|
|
final restoreWalletFromSeedNative = moneroApi
|
|
.lookup<NativeFunction<restore_wallet_from_seed>>(
|
|
'restore_wallet_from_seed')
|
|
.asFunction<RestoreWalletFromSeed>();
|
|
|
|
final restoreWalletFromKeysNative = moneroApi
|
|
.lookup<NativeFunction<restore_wallet_from_keys>>(
|
|
'restore_wallet_from_keys')
|
|
.asFunction<RestoreWalletFromKeys>();
|
|
|
|
final restoreWalletFromSpendKeyNative = moneroApi
|
|
.lookup<NativeFunction<restore_wallet_from_spend_key>>(
|
|
'restore_wallet_from_spend_key')
|
|
.asFunction<RestoreWalletFromSpendKey>();
|
|
|
|
// final restoreWalletFromDeviceNative = moneroApi
|
|
// .lookup<NativeFunction<restore_wallet_from_device>>(
|
|
// 'restore_wallet_from_device')
|
|
// .asFunction<RestoreWalletFromDevice>();
|
|
|
|
final isWalletExistNative = moneroApi
|
|
.lookup<NativeFunction<is_wallet_exist>>('is_wallet_exist')
|
|
.asFunction<IsWalletExist>();
|
|
|
|
final loadWalletNative = moneroApi
|
|
.lookup<NativeFunction<load_wallet>>('load_wallet')
|
|
.asFunction<LoadWallet>();
|
|
|
|
final errorStringNative = moneroApi
|
|
.lookup<NativeFunction<error_string>>('error_string')
|
|
.asFunction<ErrorString>();
|
|
|
|
void createWalletSync(
|
|
{required String path,
|
|
required String password,
|
|
required String language,
|
|
int nettype = 0}) {
|
|
final pathPointer = path.toNativeUtf8();
|
|
final passwordPointer = password.toNativeUtf8();
|
|
final languagePointer = language.toNativeUtf8();
|
|
final errorMessagePointer = ''.toNativeUtf8();
|
|
final isWalletCreated = createWalletNative(pathPointer, passwordPointer,
|
|
languagePointer, nettype, errorMessagePointer) !=
|
|
0;
|
|
|
|
calloc.free(pathPointer);
|
|
calloc.free(passwordPointer);
|
|
calloc.free(languagePointer);
|
|
|
|
if (!isWalletCreated) {
|
|
throw WalletCreationException(
|
|
message: convertUTF8ToString(pointer: errorMessagePointer));
|
|
}
|
|
|
|
// setupNodeSync(address: "node.moneroworld.com:18089");
|
|
}
|
|
|
|
bool isWalletExistSync({required String path}) {
|
|
final pathPointer = path.toNativeUtf8();
|
|
final isExist = isWalletExistNative(pathPointer) != 0;
|
|
|
|
calloc.free(pathPointer);
|
|
|
|
return isExist;
|
|
}
|
|
|
|
void restoreWalletFromSeedSync(
|
|
{required String path,
|
|
required String password,
|
|
required String seed,
|
|
int nettype = 0,
|
|
int restoreHeight = 0}) {
|
|
final pathPointer = path.toNativeUtf8();
|
|
final passwordPointer = password.toNativeUtf8();
|
|
final seedPointer = seed.toNativeUtf8();
|
|
final errorMessagePointer = ''.toNativeUtf8();
|
|
final isWalletRestored = restoreWalletFromSeedNative(
|
|
pathPointer,
|
|
passwordPointer,
|
|
seedPointer,
|
|
nettype,
|
|
restoreHeight,
|
|
errorMessagePointer) !=
|
|
0;
|
|
|
|
calloc.free(pathPointer);
|
|
calloc.free(passwordPointer);
|
|
calloc.free(seedPointer);
|
|
|
|
if (!isWalletRestored) {
|
|
throw WalletRestoreFromSeedException(
|
|
message: convertUTF8ToString(pointer: errorMessagePointer));
|
|
}
|
|
}
|
|
|
|
void restoreWalletFromKeysSync(
|
|
{required String path,
|
|
required String password,
|
|
required String language,
|
|
required String address,
|
|
required String viewKey,
|
|
required String spendKey,
|
|
int nettype = 0,
|
|
int restoreHeight = 0}) {
|
|
final pathPointer = path.toNativeUtf8();
|
|
final passwordPointer = password.toNativeUtf8();
|
|
final languagePointer = language.toNativeUtf8();
|
|
final addressPointer = address.toNativeUtf8();
|
|
final viewKeyPointer = viewKey.toNativeUtf8();
|
|
final spendKeyPointer = spendKey.toNativeUtf8();
|
|
final errorMessagePointer = ''.toNativeUtf8();
|
|
final isWalletRestored = restoreWalletFromKeysNative(
|
|
pathPointer,
|
|
passwordPointer,
|
|
languagePointer,
|
|
addressPointer,
|
|
viewKeyPointer,
|
|
spendKeyPointer,
|
|
nettype,
|
|
restoreHeight,
|
|
errorMessagePointer) !=
|
|
0;
|
|
|
|
calloc.free(pathPointer);
|
|
calloc.free(passwordPointer);
|
|
calloc.free(languagePointer);
|
|
calloc.free(addressPointer);
|
|
calloc.free(viewKeyPointer);
|
|
calloc.free(spendKeyPointer);
|
|
|
|
if (!isWalletRestored) {
|
|
throw WalletRestoreFromKeysException(
|
|
message: convertUTF8ToString(pointer: errorMessagePointer));
|
|
}
|
|
}
|
|
|
|
void restoreWalletFromSpendKeySync(
|
|
{required String path,
|
|
required String password,
|
|
required String seed,
|
|
required String language,
|
|
required String spendKey,
|
|
int nettype = 0,
|
|
int restoreHeight = 0}) {
|
|
final pathPointer = path.toNativeUtf8();
|
|
final passwordPointer = password.toNativeUtf8();
|
|
final seedPointer = seed.toNativeUtf8();
|
|
final languagePointer = language.toNativeUtf8();
|
|
final spendKeyPointer = spendKey.toNativeUtf8();
|
|
final errorMessagePointer = ''.toNativeUtf8();
|
|
final isWalletRestored = restoreWalletFromSpendKeyNative(
|
|
pathPointer,
|
|
passwordPointer,
|
|
seedPointer,
|
|
languagePointer,
|
|
spendKeyPointer,
|
|
nettype,
|
|
restoreHeight,
|
|
errorMessagePointer) !=
|
|
0;
|
|
|
|
calloc.free(pathPointer);
|
|
calloc.free(passwordPointer);
|
|
calloc.free(languagePointer);
|
|
calloc.free(spendKeyPointer);
|
|
|
|
storeSync();
|
|
|
|
if (!isWalletRestored) {
|
|
throw WalletRestoreFromKeysException(
|
|
message: convertUTF8ToString(pointer: errorMessagePointer));
|
|
}
|
|
}
|
|
|
|
// void restoreMoneroWalletFromDevice(
|
|
// {required String path,
|
|
// required String password,
|
|
// required String deviceName,
|
|
// int nettype = 0,
|
|
// int restoreHeight = 0}) {
|
|
//
|
|
// final pathPointer = path.toNativeUtf8();
|
|
// final passwordPointer = password.toNativeUtf8();
|
|
// final deviceNamePointer = deviceName.toNativeUtf8();
|
|
// final errorMessagePointer = ''.toNativeUtf8();
|
|
//
|
|
// final isWalletRestored = restoreWalletFromDeviceNative(
|
|
// pathPointer,
|
|
// passwordPointer,
|
|
// deviceNamePointer,
|
|
// nettype,
|
|
// restoreHeight,
|
|
// errorMessagePointer) != 0;
|
|
//
|
|
// calloc.free(pathPointer);
|
|
// calloc.free(passwordPointer);
|
|
//
|
|
// storeSync();
|
|
//
|
|
// if (!isWalletRestored) {
|
|
// throw WalletRestoreFromKeysException(
|
|
// message: convertUTF8ToString(pointer: errorMessagePointer));
|
|
// }
|
|
// }
|
|
|
|
|
|
void loadWallet({
|
|
required String path,
|
|
required String password,
|
|
int nettype = 0}) {
|
|
final pathPointer = path.toNativeUtf8();
|
|
final passwordPointer = password.toNativeUtf8();
|
|
final loaded = loadWalletNative(pathPointer, passwordPointer, nettype) != 0;
|
|
calloc.free(pathPointer);
|
|
calloc.free(passwordPointer);
|
|
|
|
if (!loaded) {
|
|
throw WalletOpeningException(
|
|
message: convertUTF8ToString(pointer: errorStringNative()));
|
|
}
|
|
}
|
|
|
|
void _createWallet(Map<String, dynamic> args) {
|
|
final path = args['path'] as String;
|
|
final password = args['password'] as String;
|
|
final language = args['language'] as String;
|
|
|
|
createWalletSync(path: path, password: password, language: language);
|
|
}
|
|
|
|
void _restoreFromSeed(Map<String, dynamic> args) {
|
|
final path = args['path'] as String;
|
|
final password = args['password'] as String;
|
|
final seed = args['seed'] as String;
|
|
final restoreHeight = args['restoreHeight'] as int;
|
|
|
|
restoreWalletFromSeedSync(
|
|
path: path, password: password, seed: seed, restoreHeight: restoreHeight);
|
|
}
|
|
|
|
void _restoreFromKeys(Map<String, dynamic> args) {
|
|
final path = args['path'] as String;
|
|
final password = args['password'] as String;
|
|
final language = args['language'] as String;
|
|
final restoreHeight = args['restoreHeight'] as int;
|
|
final address = args['address'] as String;
|
|
final viewKey = args['viewKey'] as String;
|
|
final spendKey = args['spendKey'] as String;
|
|
|
|
restoreWalletFromKeysSync(
|
|
path: path,
|
|
password: password,
|
|
language: language,
|
|
restoreHeight: restoreHeight,
|
|
address: address,
|
|
viewKey: viewKey,
|
|
spendKey: spendKey);
|
|
}
|
|
|
|
void _restoreFromSpendKey(Map<String, dynamic> args) {
|
|
final path = args['path'] as String;
|
|
final password = args['password'] as String;
|
|
final seed = args['seed'] as String;
|
|
final language = args['language'] as String;
|
|
final spendKey = args['spendKey'] as String;
|
|
final restoreHeight = args['restoreHeight'] as int;
|
|
|
|
restoreWalletFromSpendKeySync(
|
|
path: path,
|
|
password: password,
|
|
seed: seed,
|
|
language: language,
|
|
restoreHeight: restoreHeight,
|
|
spendKey: spendKey);
|
|
}
|
|
|
|
Future<void> _openWallet(Map<String, String> args) async =>
|
|
loadWallet(path: args['path'] as String, password: args['password'] as String);
|
|
|
|
bool _isWalletExist(String path) => isWalletExistSync(path: path);
|
|
|
|
void openWallet({required String path, required String password, int nettype = 0}) async =>
|
|
loadWallet(path: path, password: password, nettype: nettype);
|
|
|
|
Future<void> openWalletAsync(Map<String, String> args) async =>
|
|
compute(_openWallet, args);
|
|
|
|
Future<void> createWallet(
|
|
{required String path,
|
|
required String password,
|
|
required String language,
|
|
int nettype = 0}) async =>
|
|
compute(_createWallet, {
|
|
'path': path,
|
|
'password': password,
|
|
'language': language,
|
|
'nettype': nettype
|
|
});
|
|
|
|
Future<void> restoreFromSeed(
|
|
{required String path,
|
|
required String password,
|
|
required String seed,
|
|
int nettype = 0,
|
|
int restoreHeight = 0}) async =>
|
|
compute<Map<String, Object>, void>(_restoreFromSeed, {
|
|
'path': path,
|
|
'password': password,
|
|
'seed': seed,
|
|
'nettype': nettype,
|
|
'restoreHeight': restoreHeight
|
|
});
|
|
|
|
Future<void> restoreFromKeys(
|
|
{required String path,
|
|
required String password,
|
|
required String language,
|
|
required String address,
|
|
required String viewKey,
|
|
required String spendKey,
|
|
int nettype = 0,
|
|
int restoreHeight = 0}) async =>
|
|
compute<Map<String, Object>, void>(_restoreFromKeys, {
|
|
'path': path,
|
|
'password': password,
|
|
'language': language,
|
|
'address': address,
|
|
'viewKey': viewKey,
|
|
'spendKey': spendKey,
|
|
'nettype': nettype,
|
|
'restoreHeight': restoreHeight
|
|
});
|
|
|
|
Future<void> restoreFromSpendKey(
|
|
{required String path,
|
|
required String password,
|
|
required String seed,
|
|
required String language,
|
|
required String spendKey,
|
|
int nettype = 0,
|
|
int restoreHeight = 0}) async =>
|
|
compute<Map<String, Object>, void>(_restoreFromSpendKey, {
|
|
'path': path,
|
|
'password': password,
|
|
'seed': seed,
|
|
'language': language,
|
|
'spendKey': spendKey,
|
|
'nettype': nettype,
|
|
'restoreHeight': restoreHeight
|
|
});
|
|
|
|
Future<bool> isWalletExist({required String path}) => compute(_isWalletExist, path);
|