cake_wallet/lib/ethereum/cw_ethereum.dart

89 lines
2.8 KiB
Dart
Raw Normal View History

2022-12-28 15:02:04 +00:00
part of 'ethereum.dart';
class CWEthereum extends Ethereum {
@override
2023-01-03 20:19:02 +00:00
List<String> getEthereumWordList(String language) => EthereumMnemonics.englishWordlist;
2022-12-28 15:02:04 +00:00
2023-01-03 20:19:02 +00:00
WalletService createEthereumWalletService(Box<WalletInfo> walletInfoSource) =>
EthereumWalletService(walletInfoSource);
@override
WalletCredentials createEthereumNewWalletCredentials({
required String name,
WalletInfo? walletInfo,
}) =>
EthereumNewWalletCredentials(name: name, walletInfo: walletInfo);
@override
WalletCredentials createEthereumRestoreWalletFromSeedCredentials({
required String name,
required String mnemonic,
required String password,
}) =>
EthereumRestoreWalletFromSeedCredentials(name: name, password: password, mnemonic: mnemonic);
@override
String getAddress(WalletBase wallet) => (wallet as EthereumWallet).walletAddresses.address;
@override
TransactionPriority getDefaultTransactionPriority() => EthereumTransactionPriority.medium;
@override
List<TransactionPriority> getTransactionPriorities() => EthereumTransactionPriority.all;
@override
TransactionPriority deserializeEthereumTransactionPriority(int raw) =>
EthereumTransactionPriority.deserialize(raw: raw);
@override
int getEstimatedFee(Object wallet, TransactionPriority priority) {
final ethereumWallet = wallet as EthereumWallet;
return ethereumWallet.feeRate(priority);
}
2023-03-16 17:24:21 +00:00
2023-06-02 01:02:43 +00:00
Object createEthereumTransactionCredentials(
List<Output> outputs, {
required TransactionPriority priority,
required CryptoCurrency currency,
int? feeRate,
}) =>
2023-03-16 17:24:21 +00:00
EthereumTransactionCredentials(
outputs
.map((out) => OutputInfo(
fiatAmount: out.fiatAmount,
cryptoAmount: out.cryptoAmount,
address: out.address,
note: out.note,
sendAll: out.sendAll,
extractedAddress: out.extractedAddress,
isParsedAddress: out.isParsedAddress,
formattedCryptoAmount: out.formattedCryptoAmount))
.toList(),
priority: priority as EthereumTransactionPriority,
2023-06-02 01:02:43 +00:00
currency: currency,
2023-03-16 17:24:21 +00:00
feeRate: feeRate,
);
2023-06-02 01:02:43 +00:00
Object createEthereumTransactionCredentialsRaw(
List<OutputInfo> outputs, {
TransactionPriority? priority,
required CryptoCurrency currency,
required int feeRate,
}) =>
2023-03-16 17:24:21 +00:00
EthereumTransactionCredentials(
outputs,
2023-06-02 01:02:43 +00:00
priority: priority as EthereumTransactionPriority?,
currency: currency,
2023-03-16 17:24:21 +00:00
feeRate: feeRate,
);
@override
int formatterEthereumParseAmount(String amount) => EthereumFormatter.parseEthereumAmount(amount);
2023-06-02 01:02:43 +00:00
@override
List<CryptoCurrency> getERC20Currencies(Object wallet) {
final ethereumWallet = wallet as EthereumWallet;
return ethereumWallet.erc20Currencies;
}
2022-12-28 15:02:04 +00:00
}