part of 'haven.dart'; class CWHavenAccountList extends HavenAccountList { CWHavenAccountList(this._wallet); Object _wallet; @override @computed ObservableList get accounts { final havenWallet = _wallet as HavenWallet; final accounts = havenWallet.walletAddresses.accountList .accounts .map((acc) => Account(id: acc.id, label: acc.label)) .toList(); return ObservableList.of(accounts); } @override void update(Object wallet) { final havenWallet = wallet as HavenWallet; havenWallet.walletAddresses.accountList.update(); } @override void refresh(Object wallet) { final havenWallet = wallet as HavenWallet; havenWallet.walletAddresses.accountList.refresh(); } @override List getAll(Object wallet) { final havenWallet = wallet as HavenWallet; return havenWallet.walletAddresses.accountList .getAll() .map((acc) => Account(id: acc.id, label: acc.label)) .toList(); } @override Future addAccount(Object wallet, {String label}) async { final havenWallet = wallet as HavenWallet; await havenWallet.walletAddresses.accountList.addAccount(label: label); } @override Future setLabelAccount(Object wallet, {int accountIndex, String label}) async { final havenWallet = wallet as HavenWallet; await havenWallet.walletAddresses.accountList .setLabelAccount( accountIndex: accountIndex, label: label); } } class CWHavenSubaddressList extends MoneroSubaddressList { CWHavenSubaddressList(this._wallet); Object _wallet; @override @computed ObservableList get subaddresses { final havenWallet = _wallet as HavenWallet; final subAddresses = havenWallet.walletAddresses.subaddressList .subaddresses .map((sub) => Subaddress( id: sub.id, address: sub.address, label: sub.label)) .toList(); return ObservableList.of(subAddresses); } @override void update(Object wallet, {int accountIndex}) { final havenWallet = wallet as HavenWallet; havenWallet.walletAddresses.subaddressList.update(accountIndex: accountIndex); } @override void refresh(Object wallet, {int accountIndex}) { final havenWallet = wallet as HavenWallet; havenWallet.walletAddresses.subaddressList.refresh(accountIndex: accountIndex); } @override List getAll(Object wallet) { final havenWallet = wallet as HavenWallet; return havenWallet.walletAddresses .subaddressList .getAll() .map((sub) => Subaddress(id: sub.id, label: sub.label, address: sub.address)) .toList(); } @override Future addSubaddress(Object wallet, {int accountIndex, String label}) async { final havenWallet = wallet as HavenWallet; await havenWallet.walletAddresses.subaddressList .addSubaddress( accountIndex: accountIndex, label: label); } @override Future setLabelSubaddress(Object wallet, {int accountIndex, int addressIndex, String label}) async { final havenWallet = wallet as HavenWallet; await havenWallet.walletAddresses.subaddressList .setLabelSubaddress( accountIndex: accountIndex, addressIndex: addressIndex, label: label); } } class CWHavenWalletDetails extends HavenWalletDetails { CWHavenWalletDetails(this._wallet); Object _wallet; @computed Account get account { final havenWallet = _wallet as HavenWallet; final acc = havenWallet.walletAddresses.account as monero_account.Account; return Account(id: acc.id, label: acc.label); } @computed HavenBalance get balance { final havenWallet = _wallet as HavenWallet; final balance = havenWallet.balance; return null; //return HavenBalance( // fullBalance: balance.fullBalance, // unlockedBalance: balance.unlockedBalance); } } class CWHaven extends Haven { HavenAccountList getAccountList(Object wallet) { return CWHavenAccountList(wallet); } MoneroSubaddressList getSubaddressList(Object wallet) { return CWHavenSubaddressList(wallet); } TransactionHistoryBase getTransactionHistory(Object wallet) { final havenWallet = wallet as HavenWallet; return havenWallet.transactionHistory; } HavenWalletDetails getMoneroWalletDetails(Object wallet) { return CWHavenWalletDetails(wallet); } int getHeigthByDate({DateTime date}) { return getMoneroHeigthByDate(date: date); } TransactionPriority getDefaultTransactionPriority() { return MoneroTransactionPriority.slow; } TransactionPriority deserializeMoneroTransactionPriority({int raw}) { return MoneroTransactionPriority.deserialize(raw: raw); } List getTransactionPriorities() { return MoneroTransactionPriority.all; } List getMoneroWordList(String language) { switch (language.toLowerCase()) { case 'english': return EnglishMnemonics.words; case 'chinese (simplified)': return ChineseSimplifiedMnemonics.words; case 'dutch': return DutchMnemonics.words; case 'german': return GermanMnemonics.words; case 'japanese': return JapaneseMnemonics.words; case 'portuguese': return PortugueseMnemonics.words; case 'russian': return RussianMnemonics.words; case 'spanish': return SpanishMnemonics.words; case 'french': return FrenchMnemonics.words; case 'italian': return ItalianMnemonics.words; default: return EnglishMnemonics.words; } } WalletCredentials createHavenRestoreWalletFromKeysCredentials({ String name, String spendKey, String viewKey, String address, String password, String language, int height}) { return HavenRestoreWalletFromKeysCredentials( name: name, spendKey: spendKey, viewKey: viewKey, address: address, password: password, language: language, height: height); } WalletCredentials createHavenRestoreWalletFromSeedCredentials({String name, String password, int height, String mnemonic}) { return HavenRestoreWalletFromSeedCredentials( name: name, password: password, height: height, mnemonic: mnemonic); } WalletCredentials createHavenNewWalletCredentials({String name, String password, String language}) { return HavenNewWalletCredentials( name: name, password: password, language: language); } Map getKeys(Object wallet) { final havenWallet = wallet as HavenWallet; final keys = havenWallet.keys; return { 'privateSpendKey': keys.privateSpendKey, 'privateViewKey': keys.privateViewKey, 'publicSpendKey': keys.publicSpendKey, 'publicViewKey': keys.publicViewKey}; } Object createHavenTransactionCreationCredentials({List outputs, TransactionPriority priority, String assetType}) { return HavenTransactionCreationCredentials( outputs: outputs.map((out) => OutputInfo( fiatAmount: out.fiatAmount, cryptoAmount: out.cryptoAmount, address: out.address, note: out.note, sendAll: out.sendAll, extractedAddress: out.extractedAddress, isParsedAddress: out.isParsedAddress, formattedCryptoAmount: out.formattedCryptoAmount)) .toList(), priority: priority as MoneroTransactionPriority, assetType: assetType); } String formatterMoneroAmountToString({int amount}) { return moneroAmountToString(amount: amount); } double formatterMoneroAmountToDouble({int amount}) { return moneroAmountToDouble(amount: amount); } int formatterMoneroParseAmount({String amount}) { return moneroParseAmount(amount: amount); } Account getCurrentAccount(Object wallet) { final havenWallet = wallet as HavenWallet; final acc = havenWallet.walletAddresses.account as monero_account.Account; return Account(id: acc.id, label: acc.label); } void setCurrentAccount(Object wallet, int id, String label) { final havenWallet = wallet as HavenWallet; havenWallet.walletAddresses.account = monero_account.Account(id: id, label: label); } void onStartup() { monero_wallet_api.onStartup(); } int getTransactionInfoAccountId(TransactionInfo tx) { final havenTransactionInfo = tx as HavenTransactionInfo; return havenTransactionInfo.accountIndex; } WalletService createHavenWalletService(Box walletInfoSource) { return HavenWalletService(walletInfoSource); } String getTransactionAddress(Object wallet, int accountIndex, int addressIndex) { final havenWallet = wallet as HavenWallet; return havenWallet.getTransactionAddress(accountIndex, addressIndex); } }