mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
4b4d8a4840
* Add passphrase support for Eth, Polygon, and Tron * move passphrase to advanced settings even for restore
49 lines
1.3 KiB
Dart
49 lines
1.3 KiB
Dart
import 'package:cw_core/wallet_credentials.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
class TronNewWalletCredentials extends WalletCredentials {
|
|
TronNewWalletCredentials({
|
|
required String name,
|
|
WalletInfo? walletInfo,
|
|
String? password,
|
|
this.mnemonic,
|
|
String? parentAddress,
|
|
String? passphrase,
|
|
}) : super(
|
|
name: name,
|
|
walletInfo: walletInfo,
|
|
password: password,
|
|
parentAddress: parentAddress,
|
|
passphrase: passphrase,
|
|
);
|
|
|
|
final String? mnemonic;
|
|
}
|
|
|
|
class TronRestoreWalletFromSeedCredentials extends WalletCredentials {
|
|
TronRestoreWalletFromSeedCredentials({
|
|
required String name,
|
|
required String password,
|
|
required this.mnemonic,
|
|
WalletInfo? walletInfo,
|
|
String? passphrase,
|
|
}) : super(
|
|
name: name,
|
|
password: password,
|
|
walletInfo: walletInfo,
|
|
passphrase: passphrase,
|
|
);
|
|
|
|
final String mnemonic;
|
|
}
|
|
|
|
class TronRestoreWalletFromPrivateKey extends WalletCredentials {
|
|
TronRestoreWalletFromPrivateKey(
|
|
{required String name,
|
|
required String password,
|
|
required this.privateKey,
|
|
WalletInfo? walletInfo})
|
|
: super(name: name, password: password, walletInfo: walletInfo);
|
|
|
|
final String privateKey;
|
|
}
|