mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-20 14:19:07 +00:00
refactor CashFusion Address model and add toFusionAddress method
to go from Stack Address -> CashFusion Address
This commit is contained in:
parent
2692ebfc68
commit
6246b6c931
3 changed files with 20 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 58f18eddee78be0ee393a23d03ccba94e252d8cf
|
Subproject commit b4209c1523cf53d9db805ce0924e6902c716c0f3
|
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
|
import 'package:fusiondart/src/models/address.dart' as FusionAddress;
|
||||||
import 'package:isar/isar.dart';
|
import 'package:isar/isar.dart';
|
||||||
import 'package:stackwallet/exceptions/address/address_exception.dart';
|
import 'package:stackwallet/exceptions/address/address_exception.dart';
|
||||||
import 'package:stackwallet/models/isar/models/blockchain_data/crypto_currency_address.dart';
|
import 'package:stackwallet/models/isar/models/blockchain_data/crypto_currency_address.dart';
|
||||||
|
@ -212,3 +213,15 @@ class DerivationPath {
|
||||||
@override
|
@override
|
||||||
int get hashCode => value.hashCode;
|
int get hashCode => value.hashCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extension ToFusionAddress on Address {
|
||||||
|
FusionAddress.Address toFusionAddress() {
|
||||||
|
return FusionAddress.Address(
|
||||||
|
addr: value,
|
||||||
|
id: id.toString(), // Assuming id can be converted to a String
|
||||||
|
publicKey:
|
||||||
|
publicKey, // Assuming List<byte> and List<int> are compatible
|
||||||
|
derivationPath:
|
||||||
|
FusionAddress.DerivationPath(derivationPath?.value ?? ""));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:fusiondart/fusiondart.dart';
|
import 'package:fusiondart/fusiondart.dart';
|
||||||
|
import 'package:fusiondart/src/models/address.dart' as fusion_address;
|
||||||
import 'package:isar/isar.dart';
|
import 'package:isar/isar.dart';
|
||||||
import 'package:stackwallet/db/isar/main_db.dart';
|
import 'package:stackwallet/db/isar/main_db.dart';
|
||||||
import 'package:stackwallet/models/isar/models/blockchain_data/address.dart';
|
import 'package:stackwallet/models/isar/models/blockchain_data/address.dart';
|
||||||
|
@ -41,9 +42,13 @@ mixin FusionInterface {
|
||||||
|
|
||||||
// add stack change address
|
// add stack change address
|
||||||
final String currentChangeAddress = await _getCurrentChangeAddress();
|
final String currentChangeAddress = await _getCurrentChangeAddress();
|
||||||
// await mainFusionObject.addChangeAddress(currentChangeAddress);
|
// cast from String to Address
|
||||||
final Address? changeAddress =
|
final Address? changeAddress =
|
||||||
await _db.getAddress(_walletId, currentChangeAddress);
|
await _db.getAddress(_walletId, currentChangeAddress);
|
||||||
|
// cast from Stack's Address to Fusiondart's Address
|
||||||
|
final fusion_address.Address fusionChangeAddress =
|
||||||
|
changeAddress!.toFusionAddress();
|
||||||
|
await mainFusionObject.addChangeAddress(fusionChangeAddress);
|
||||||
Logging.instance.log(
|
Logging.instance.log(
|
||||||
"FusionInterface fuse() changeAddress: $changeAddress",
|
"FusionInterface fuse() changeAddress: $changeAddress",
|
||||||
level: LogLevel.Info,
|
level: LogLevel.Info,
|
||||||
|
|
Loading…
Reference in a new issue