-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3be57ae
commit f5ff9c3
Showing
16 changed files
with
517 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.7.0 | ||
|
||
- feat: getAccounts RPC method. | ||
|
||
## 0.6.0 | ||
|
||
Daemon API upgrade : | ||
|
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
28 changes: 28 additions & 0 deletions
28
lib/src/data_transfer_objects/get_accounts/get_accounts_params.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,28 @@ | ||
import 'package:freezed_annotation/freezed_annotation.dart'; | ||
|
||
part 'get_accounts_params.freezed.dart'; | ||
|
||
part 'get_accounts_params.g.dart'; | ||
|
||
/// @nodoc | ||
@freezed | ||
class GetAccountsParams with _$GetAccountsParams { | ||
/// @nodoc | ||
const factory GetAccountsParams({ | ||
/// @nodoc | ||
@JsonKey(name: 'skip') int? skip, | ||
|
||
/// @nodoc | ||
@JsonKey(name: 'maximum') int? maximum, | ||
|
||
/// @nodoc | ||
@JsonKey(name: 'minimum_topoheight') int? minTopoHeight, | ||
|
||
/// @nodoc | ||
@JsonKey(name: 'maximum_topoheight') int? maxTopoHeight, | ||
}) = _GetAccountsParams; | ||
|
||
/// @nodoc | ||
factory GetAccountsParams.fromJson(Map<String, dynamic> json) => | ||
_$GetAccountsParamsFromJson(json); | ||
} |
262 changes: 262 additions & 0 deletions
262
lib/src/data_transfer_objects/get_accounts/get_accounts_params.freezed.dart
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
lib/src/data_transfer_objects/get_accounts/get_accounts_params.g.dart
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
lib/src/data_transfer_objects/get_accounts/get_accounts_result.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,13 @@ | ||
import 'package:freezed_annotation/freezed_annotation.dart'; | ||
|
||
part 'get_accounts_result.freezed.dart'; | ||
|
||
/// @nodoc | ||
@freezed | ||
class GetAccountsResult with _$GetAccountsResult { | ||
/// @nodoc | ||
const factory GetAccountsResult({ | ||
/// @nodoc | ||
required List<String> publicKeys, | ||
}) = _GetAccountsResult; | ||
} |
Oops, something went wrong.