This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
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
be383c8
commit 5686852
Showing
377 changed files
with
3,860 additions
and
49,032 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 |
---|---|---|
|
@@ -68,3 +68,4 @@ ios/Flutter/.last_build_id | |
pubspec.lock | ||
ios/fastlane/report.xml | ||
ios/Flutter/.last_build_id | ||
preparePackage.txt |
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 @@ | ||
- Fix connection issue to public node |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
// Project imports: | ||
import 'package:my_idena/model/db/account.dart'; | ||
|
||
class AccountChangedEvent implements Event { | ||
final Account? account; | ||
final bool delayPop; | ||
final bool noPop; | ||
|
||
AccountChangedEvent({this.account, this.delayPop = false, this.noPop = false}); | ||
} | ||
AccountChangedEvent( | ||
{this.account, this.delayPop = false, this.noPop = false}); | ||
} |
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,9 +1,12 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
// Project imports: | ||
import 'package:my_idena/model/db/account.dart'; | ||
|
||
class AccountModifiedEvent implements Event { | ||
final Account? account; | ||
final bool deleted; | ||
|
||
AccountModifiedEvent({this.account, this.deleted = false}); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
// Project imports: | ||
import 'package:my_idena/model/db/contact.dart'; | ||
|
||
class ContactAddedEvent implements Event { | ||
final Contact? contact; | ||
|
||
ContactAddedEvent({this.contact}); | ||
} | ||
} |
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,8 +1,11 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
// Project imports: | ||
import 'package:my_idena/model/db/contact.dart'; | ||
|
||
class ContactModifiedEvent implements Event { | ||
final Contact? contact; | ||
|
||
ContactModifiedEvent({this.contact}); | ||
} | ||
} |
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,8 +1,11 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
// Project imports: | ||
import 'package:my_idena/model/db/contact.dart'; | ||
|
||
class ContactRemovedEvent implements Event { | ||
final Contact? contact; | ||
|
||
ContactRemovedEvent({this.contact}); | ||
} | ||
} |
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,8 +1,8 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
class ContractDeployEvent implements Event { | ||
|
||
final String? response; | ||
|
||
ContractDeployEvent({this.response}); | ||
} | ||
} |
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,7 +1,8 @@ | ||
// Package imports: | ||
import 'package:event_taxi/event_taxi.dart'; | ||
|
||
class DisableLockTimeoutEvent implements Event { | ||
final bool? disable; | ||
|
||
DisableLockTimeoutEvent({this.disable}); | ||
} | ||
} |
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.