mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
cdf081edfd
* thorChain btc to eth swap
* eth to btc swap
* update the UI
* update localization
* Update thorchain_exchange.provider.dart
* minor fixes
* minor fix
* fix min amount bug
* revert amount_converter changes
* fetching thorChain traid info
* resolve evm related merge conflicts
* minor fix
* Fix eth transaction hash for Thorchain Integration
* add new status endpoint and refund address for eth
* Adjust affiliate fee
* Fix conflicts with main
* review comments + transaction filter item
* taproot addresses check
* added 10 outputs check
* Update thorchain_exchange.provider.dart
* minor fixes
* update thorchain title
* fix fetching rate for thorchain
* Revert "fix fetching rate for thorchain"
This reverts commit 3aa1386ecf
.
* fix thorchain exchange rate
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
22 lines
No EOL
514 B
Dart
22 lines
No EOL
514 B
Dart
class OutputInfo {
|
|
const OutputInfo(
|
|
{required this.address,
|
|
required this.sendAll,
|
|
required this.isParsedAddress,
|
|
this.cryptoAmount,
|
|
this.formattedCryptoAmount,
|
|
this.fiatAmount,
|
|
this.note,
|
|
this.extractedAddress,
|
|
this.memo});
|
|
|
|
final String? fiatAmount;
|
|
final String? cryptoAmount;
|
|
final String address;
|
|
final String? note;
|
|
final String? extractedAddress;
|
|
final bool sendAll;
|
|
final bool isParsedAddress;
|
|
final int? formattedCryptoAmount;
|
|
final String? memo;
|
|
} |