mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
66301ff247
* initial commit
* creating and restoring a wallet
* [skip ci] add transaction priority
* fix send and unspent screen
* fix transaction priority type
* replace Unspend with BitcoinUnspent
* add transaction creation
* fix transaction details screen
* minor fix
* fix create side wallet
* basic transaction creation flow
* fix fiat amount calculation
* edit wallet
* minor fix
* fix address book parsing
* merge commit fixes
* minor fixes
* Update gradle.properties
* fix bch unspent coins
* minor fix
* fix BitcoinCashTransactionPriority
* Fetch tags first before switching to one of them
* Update build_haven.sh
* Update build_haven.sh
* Update build_haven.sh
* Update build_haven.sh
* update transaction build function
* Update build_haven.sh
* add ability to rename and delete
* fix address format
* Update pubspec.lock
* Revert "fix address format"
This reverts commit 1549bf4d8c
.
* fix address format for exange
* restore from qr
* Update configure.dart
* [skip ci] minor fix
* fix default fee rate
* Update onramper_buy_provider.dart
* Update wallet_address_list_view_model.dart
* PR comments fixes
* Update exchange_view_model.dart
* fix merge conflict
* Update address_validator.dart
* merge fixes
* update initialMigrationVersion
* move cw_bitbox to Cake tech
* PR fixes
* PR fixes
* Fix configure.dart brackets
* update the new version text after macos
* dummy change to run workflow
* Fix Nano restore from QR issue
Fix Conflicts with main
* PR fixes
* Update app_config.sh
---------
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
88 lines
3 KiB
Dart
88 lines
3 KiB
Dart
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cake_wallet/themes/extensions/cake_text_theme.dart';
|
|
import 'package:cake_wallet/utils/device_info.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
class OnRamperBuyProvider {
|
|
OnRamperBuyProvider({required SettingsStore settingsStore, required WalletBase wallet})
|
|
: this._settingsStore = settingsStore,
|
|
this._wallet = wallet;
|
|
|
|
final SettingsStore _settingsStore;
|
|
final WalletBase _wallet;
|
|
|
|
static const _baseUrl = 'buy.onramper.com';
|
|
|
|
String get _apiKey => secrets.onramperApiKey;
|
|
|
|
String get _normalizeCryptoCurrency {
|
|
switch (_wallet.currency) {
|
|
case CryptoCurrency.ltc:
|
|
return "LTC_LITECOIN";
|
|
case CryptoCurrency.xmr:
|
|
return "XMR_MONERO";
|
|
case CryptoCurrency.bch:
|
|
return "BCH_BITCOINCASH";
|
|
case CryptoCurrency.nano:
|
|
return "XNO_NANO";
|
|
default:
|
|
return _wallet.currency.title;
|
|
}
|
|
}
|
|
|
|
String getColorStr(Color color) {
|
|
return color.value.toRadixString(16).replaceAll(RegExp(r'^ff'), "");
|
|
}
|
|
|
|
Uri requestUrl(BuildContext context) {
|
|
String primaryColor,
|
|
secondaryColor,
|
|
primaryTextColor,
|
|
secondaryTextColor,
|
|
containerColor,
|
|
cardColor;
|
|
|
|
primaryColor = getColorStr(Theme.of(context).primaryColor);
|
|
secondaryColor = getColorStr(Theme.of(context).colorScheme.background);
|
|
primaryTextColor = getColorStr(Theme.of(context).extension<CakeTextTheme>()!.titleColor);
|
|
secondaryTextColor =
|
|
getColorStr(Theme.of(context).extension<CakeTextTheme>()!.secondaryTextColor);
|
|
containerColor = getColorStr(Theme.of(context).colorScheme.background);
|
|
cardColor = getColorStr(Theme.of(context).cardColor);
|
|
|
|
if (_settingsStore.currentTheme.title == S.current.high_contrast_theme) {
|
|
cardColor = getColorStr(Colors.white);
|
|
}
|
|
|
|
final networkName = _wallet.currency.fullName?.toUpperCase().replaceAll(" ", "");
|
|
|
|
return Uri.https(_baseUrl, '', <String, dynamic>{
|
|
'apiKey': _apiKey,
|
|
'defaultCrypto': _normalizeCryptoCurrency,
|
|
'networkWallets': '${networkName}:${_wallet.walletAddresses.address}',
|
|
'supportSell': "false",
|
|
'supportSwap': "false",
|
|
'primaryColor': primaryColor,
|
|
'secondaryColor': secondaryColor,
|
|
'primaryTextColor': primaryTextColor,
|
|
'secondaryTextColor': secondaryTextColor,
|
|
'containerColor': containerColor,
|
|
'cardColor': cardColor
|
|
});
|
|
}
|
|
|
|
Future<void> launchProvider(BuildContext context) async {
|
|
final uri = requestUrl(context);
|
|
if (DeviceInfo.instance.isMobile) {
|
|
Navigator.of(context).pushNamed(Routes.webViewPage, arguments: [S.of(context).buy, uri]);
|
|
} else {
|
|
await launchUrl(uri);
|
|
}
|
|
}
|
|
}
|