forked from cypherstack/stack_wallet
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from cypherstack/upgrades_from_stack
Upgrades from stack
- Loading branch information
Showing
231 changed files
with
13,482 additions
and
14,623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule flutter_libmonero
updated
7 files
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
lib/models/add_wallet_list_entity/add_wallet_list_entity.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* This file is part of Stack Wallet. | ||
* | ||
* Copyright (c) 2023 Cypher Stack | ||
* All Rights Reserved. | ||
* The code is distributed under GPLv3 license, see LICENSE file for details. | ||
* Generated by Cypher Stack on 2023-05-26 | ||
* | ||
*/ | ||
|
||
import 'package:equatable/equatable.dart'; | ||
import 'package:stackduo/utilities/enums/coin_enum.dart'; | ||
|
||
abstract class AddWalletListEntity extends Equatable { | ||
Coin get coin; | ||
String get name; | ||
String get ticker; | ||
} |
30 changes: 30 additions & 0 deletions
30
lib/models/add_wallet_list_entity/sub_classes/coin_entity.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* This file is part of Stack Wallet. | ||
* | ||
* Copyright (c) 2023 Cypher Stack | ||
* All Rights Reserved. | ||
* The code is distributed under GPLv3 license, see LICENSE file for details. | ||
* Generated by Cypher Stack on 2023-05-26 | ||
* | ||
*/ | ||
|
||
import 'package:stackduo/models/add_wallet_list_entity/add_wallet_list_entity.dart'; | ||
import 'package:stackduo/utilities/enums/coin_enum.dart'; | ||
|
||
class CoinEntity extends AddWalletListEntity { | ||
CoinEntity(this._coin); | ||
|
||
final Coin _coin; | ||
|
||
@override | ||
Coin get coin => _coin; | ||
|
||
@override | ||
String get name => coin.prettyName; | ||
|
||
@override | ||
String get ticker => coin.ticker; | ||
|
||
@override | ||
List<Object?> get props => [coin, name, ticker]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.