Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Ğecko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
Ğecko
Commits
b546078c
Commit
b546078c
authored
2 years ago
by
poka
Browse files
Options
Downloads
Patches
Plain Diff
fix: sentry 3334937784
parent
eaf81aa7
No related branches found
No related tags found
No related merge requests found
Pipeline
#16770
waiting for manual action
Stage: format
Stage: build_and_test
Stage: package
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/providers/generate_wallets.dart
+2
-6
2 additions, 6 deletions
lib/providers/generate_wallets.dart
lib/providers/substrate_sdk.dart
+7
-34
7 additions, 34 deletions
lib/providers/substrate_sdk.dart
lib/screens/onBoarding/10.dart
+0
-1
0 additions, 1 deletion
lib/screens/onBoarding/10.dart
with
9 additions
and
41 deletions
lib/providers/generate_wallets.dart
+
2
−
6
View file @
b546078c
...
...
@@ -409,10 +409,7 @@ class GenerateWalletsProvider with ChangeNotifier {
?
'currentWallet'
.
tr
()
:
'
${'wallet'.tr()}
${scanedValidWalletNumber + 1}
'
;
await
sub
.
importAccount
(
mnemonic:
''
,
fromMnemonic:
true
,
derivePath:
'//
$derivationNbr
'
,
password:
pin
.
text
);
derivePath:
'//
$derivationNbr
'
,
password:
pin
.
text
);
WalletData
myWallet
=
WalletData
(
version:
dataVersion
,
...
...
@@ -448,8 +445,7 @@ class GenerateWalletsProvider with ChangeNotifier {
"
${addressData.address!}
:
${balance['transferableBalance']}
$currencyName
"
);
if
(
balance
[
'transferableBalance'
]
!=
0
)
{
String
walletName
=
'myRootWallet'
.
tr
();
await
sub
.
importAccount
(
mnemonic:
''
,
fromMnemonic:
true
,
password:
pin
.
text
);
await
sub
.
importAccount
(
password:
pin
.
text
);
WalletData
myWallet
=
WalletData
(
version:
dataVersion
,
...
...
This diff is collapsed.
Click to expand it.
lib/providers/substrate_sdk.dart
+
7
−
34
View file @
b546078c
import
'package:easy_localization/easy_localization.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
import
'package:gecko/globals.dart'
;
import
'package:gecko/models/chest_data.dart'
;
import
'package:gecko/models/wallet_data.dart'
;
...
...
@@ -30,9 +29,6 @@ class SubstrateSdk with ChangeNotifier {
String
transactionStatus
=
''
;
int
ss58
=
42
;
TextEditingController
jsonKeystore
=
TextEditingController
();
TextEditingController
keystorePassword
=
TextEditingController
();
/////////////////////////////////////
////////// 1: API METHODS ///////////
/////////////////////////////////////
...
...
@@ -374,40 +370,18 @@ class SubstrateSdk with ChangeNotifier {
Future
<
String
>
importAccount
(
{
String
mnemonic
=
''
,
bool
fromMnemonic
=
false
,
String
derivePath
=
''
,
String
password
=
''
})
async
{
// toy exercise immense month enter answer table prefer speed cycle gold phone
final
clipboardData
=
await
Clipboard
.
getData
(
Clipboard
.
kTextPlain
);
if
(
mnemonic
!=
''
)
{
fromMnemonic
=
true
;
generatedMnemonic
=
mnemonic
;
}
else
if
(
clipboardData
!.
text
!.
split
(
' '
)
.
length
==
12
)
{
fromMnemonic
=
true
;
generatedMnemonic
=
clipboardData
.
text
!
;
}
if
(
password
==
''
)
{
password
=
keystorePassword
.
text
;
}
final
KeyType
keytype
;
final
String
keyToImport
;
if
(
fromMnemonic
)
{
keytype
=
KeyType
.
mnemonic
;
keyToImport
=
generatedMnemonic
;
}
else
{
keytype
=
KeyType
.
keystore
;
keyToImport
=
jsonKeystore
.
text
.
replaceAll
(
"'"
,
"
\\
'"
);
}
required
String
password
})
async
{
const
keytype
=
KeyType
.
mnemonic
;
if
(
mnemonic
!=
''
)
generatedMnemonic
=
mnemonic
;
importIsLoading
=
true
;
notifyListeners
();
if
(
clipboardData
?.
text
!=
null
)
jsonKeystore
.
text
=
clipboardData
!.
text
!
;
var
json
=
await
sdk
.
api
.
keyring
final
json
=
await
sdk
.
api
.
keyring
.
importAccount
(
keyring
,
keyType:
keytype
,
key:
keyToImport
,
key:
generatedMnemonic
,
name:
derivePath
,
password:
password
,
derivePath:
derivePath
,
...
...
@@ -543,7 +517,6 @@ class SubstrateSdk with ChangeNotifier {
return
await
importAccount
(
mnemonic:
generatedMnemonic
,
fromMnemonic:
true
,
derivePath:
'//
$number
'
,
password:
password
);
}
...
...
@@ -558,7 +531,7 @@ class SubstrateSdk with ChangeNotifier {
final
List
seedList
=
seedMap
!
[
'seed'
]
.
split
(
'//'
);
generatedMnemonic
=
seedList
[
0
];
return
await
importAccount
(
fromMnemonic:
true
,
password:
password
);
return
await
importAccount
(
password:
password
);
}
Future
<
bool
>
isMnemonicValid
(
String
mnemonic
)
async
{
...
...
This diff is collapsed.
Click to expand it.
lib/screens/onBoarding/10.dart
+
0
−
1
View file @
b546078c
...
...
@@ -203,7 +203,6 @@ class OnboardingStepTen extends StatelessWidget {
}
if
(
!
isAlive
)
{
final
address
=
await
sub
.
importAccount
(
fromMnemonic:
true
,
mnemonic:
generateWalletProvider
.
generatedMnemonic
!
,
derivePath:
'//2'
,
password:
generateWalletProvider
.
pin
.
text
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment