mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
2ac81250c2
* feat: Check if address is a valid Externally Owned Address * feat: Check if the EVM address received when exchanging tokens is a valid EOA address * move the contract address check to be only in the case of ThorChain [skip ci] * some enhancements * feat: Implement check for contract address for inputAddress when exchanging to ETH * fix: Remove previous implementation and clean up current implementation for the check for contract address * chore: Remove unneed space * chore: Remove unneed space --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
9 lines
145 B
Dart
9 lines
145 B
Dart
class CreateTradeResult {
|
|
bool result;
|
|
String? errorMessage;
|
|
|
|
CreateTradeResult({
|
|
required this.result,
|
|
this.errorMessage,
|
|
});
|
|
}
|