2024-09-04 22:50:56 +00:00
|
|
|
import 'package:bech32/bech32.dart';
|
Btc address types (#1263)
* inital migration changes
* feat: rest of changes
* minor fix [skip ci]
* fix: P2wshAddress & wallet address index
* fix: address review comments
* fix: address type restore
* feat: add testnet
* Fix review comments
Remove bitcoin_base from cw_core
* Fix address not matching selected type on start
* remove un-necessary parameter [skip ci]
* Remove bitcoin specific code from main lib
Fix possible runtime exception from list wrong access
* Minor fix
* fix: fixes for Testnet
* fix: bitcoin receive option dependency breaks monerocom
* Fix issues when building Monero.com
* feat: Transaction Builder changes
* fix: discover addresses, testnet restoring, duplicate unspent coins, and taproot address vs schnorr sig tweak
* fix: remove print
* feat: improve error when failed broadcast response
* feat: create fish shell env script
* fix: unmodifiable maps
* fix: build
* fix: build
* fix: computed observable side effect bug
* feat: add nix script for android build_all
* fix: wrong keypairs used for signing
* fix: wrong addresses when using fromScriptPubKey scripts
* fix(actual commit): testnet tx expanded + wrong addresses when using fromScriptPubKey scripts (update bitcoin_base deps)
* fix: self-send [skip ci]
* fix: p2wsh
* fix: testnet fees
* New versions
* Update macos build number
Minor UI fix
* fix: use new bitcoin_base ref, fix tx list wrong hex value & refactor hidden vs hd use
- if always use sideHd for isHidden, it is easier to simplify the functions instead of passing both which can be error prone
- (ps: now this could probably be changed, for example from isHidden to isChange since with address list we now see "hidden" addresses)
* Fix if condition to handle litecoin case
* fix: self-send, change address was always making direction incoming
* refactor: improve estimation function, add more inputs if balance missing
* fix: new bitcoin_base update, fixes script issues
* Update evm chain wallet service arguments
* Fix translation [skip ci]
* Fix translation [skip ci]
* Update strings_fr.arb [skip ci]
* fix: async isChange function not being awaited, refactor to reduce looping into a single place
* fix: _address vs address, missing p2sh
* fix: minor mistake in storing p2sh page type [skip ci]
* refactor: use already matched addresses property
* feat: improved perfomance for fetching transaction histories
* feat: continue perfomance change, improve address discovery only to last address by type with history
* fix: make sure transaction list is sorted by date
* refactor: isTestnet only for bitcoin
* fix: walletInfo type null case
* fix: deprecated p2pk
* refactor: make condition more readable
* refactor: remove unnecessary Str variant
* refactor: make condition more readable
* fix: infinite loop possible
* Revert removing isTestnet from other wallets [skip ci]
* refactor: rename addresses when matched by receive type
* Make the beta build [skip ci]
Remove app_env.fish
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-02-23 16:13:30 +00:00
|
|
|
import 'package:bitcoin_base/bitcoin_base.dart';
|
2024-09-04 22:50:56 +00:00
|
|
|
import 'package:blockchain_utils/bech32/bech32_base.dart';
|
2024-08-11 23:49:45 +00:00
|
|
|
import 'package:blockchain_utils/blockchain_utils.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_bitcoin/utils.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_wallet_addresses.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
2024-04-22 10:45:16 +00:00
|
|
|
import 'package:cw_mweb/cw_mweb.dart';
|
|
|
|
import 'package:cw_mweb/mwebd.pb.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
|
2024-09-04 22:50:56 +00:00
|
|
|
// import 'dart:typed_data';
|
|
|
|
// import 'package:bech32/bech32.dart';
|
|
|
|
// import 'package:r_crypto/r_crypto.dart';
|
2024-09-04 18:06:52 +00:00
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
part 'litecoin_wallet_addresses.g.dart';
|
|
|
|
|
2024-09-04 22:50:56 +00:00
|
|
|
// class Keychain {
|
|
|
|
// // ECPrivate scan;
|
|
|
|
// // ECPrivate? spend;
|
|
|
|
// ECPrivate scan;
|
|
|
|
// ECPrivate? spend;
|
|
|
|
// ECPublic? spendPubKey;
|
|
|
|
|
|
|
|
// Keychain({required this.scan, this.spend, this.spendPubKey}) {
|
|
|
|
// if (this.spend != null) {
|
|
|
|
// spendPubKey = this.spend!.getPublic();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// static const HashTagAddress = 'A';
|
|
|
|
|
|
|
|
// ECPrivate mi(int index) {
|
|
|
|
// final input = BytesBuilder();
|
|
|
|
|
|
|
|
// // Write HashTagAddress to the input
|
|
|
|
// input.addByte(HashTagAddress.codeUnitAt(0));
|
|
|
|
|
|
|
|
// // Write index to the input in little endian
|
|
|
|
// final indexBytes = Uint8List(4);
|
|
|
|
// final byteData = ByteData.view(indexBytes.buffer);
|
|
|
|
// byteData.setUint32(0, index, Endian.little);
|
|
|
|
// input.add(indexBytes);
|
|
|
|
|
|
|
|
// // Write scan to the input
|
|
|
|
// input.add(scan.prive.raw);
|
|
|
|
|
|
|
|
// // Hash the input using Blake3 with a length of 32 bytes
|
|
|
|
// final hash = rHash.hashString(HashType.blake3(length: 32), input.toString());
|
|
|
|
|
|
|
|
// // Return the hash digest
|
|
|
|
// var res = Uint8List.fromList(hash);
|
|
|
|
// return ECPrivate.fromBytes(res);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// Keychain address(int index) {
|
|
|
|
|
|
|
|
// final miPub = this.mi(index).getPublic();
|
|
|
|
// final Bi = spendPubKey!.pubkeyAdd(miPub);
|
|
|
|
// // final Ai = Bi.pubkeyMult(ECPublic.fromBytes(scan.toBytes()));
|
|
|
|
// final Ai = Bi.tweakMul(scan.toBigInt());
|
|
|
|
|
|
|
|
// // final miPubKey = ECCurve_secp256k1().G * BigInt.parse(hex.encode(mi), radix: 16);
|
|
|
|
// // final Bi = spendPubKey + miPubKey;
|
|
|
|
// // return Uint8List.fromList(Ai.getEncoded(compressed: true) + Bi.getEncoded(compressed: true));
|
|
|
|
// final AiPriv = ECPrivate.fromBytes(Ai.toBytes());
|
|
|
|
// final BiPriv = ECPrivate.fromBytes(Bi.toBytes());
|
|
|
|
|
|
|
|
// return Keychain(scan: AiPriv, spend: BiPriv);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// String addressString(int index) {
|
|
|
|
// final address = this.address(index);
|
|
|
|
// List<int> bytes = [];
|
|
|
|
// bytes.addAll(address.scan.toBytes());
|
|
|
|
// bytes.addAll(address.spend!.toBytes());
|
|
|
|
// return encodeMwebAddress(bytes);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // Uint8List spendKey(int index) {
|
|
|
|
// // final mi = this.mi(index);
|
|
|
|
// // final spendKey = spend + ECCurve_secp256k1().G * BigInt.parse(hex.encode(mi), radix: 16);
|
|
|
|
// // return spendKey.getEncoded(compressed: true);
|
|
|
|
// // }
|
|
|
|
|
|
|
|
// String encodeMwebAddress(List<int> scriptPubKey) {
|
|
|
|
// return bech32.encode(Bech32("ltcmweb", scriptPubKey));
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
String encodeMwebAddress(List<int> scriptPubKey) {
|
|
|
|
return bech32.encode(Bech32("ltcmweb1", scriptPubKey), 250);
|
2024-09-04 18:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class LitecoinWalletAddresses = LitecoinWalletAddressesBase with _$LitecoinWalletAddresses;
|
2024-09-04 22:50:56 +00:00
|
|
|
|
Btc address types (#1263)
* inital migration changes
* feat: rest of changes
* minor fix [skip ci]
* fix: P2wshAddress & wallet address index
* fix: address review comments
* fix: address type restore
* feat: add testnet
* Fix review comments
Remove bitcoin_base from cw_core
* Fix address not matching selected type on start
* remove un-necessary parameter [skip ci]
* Remove bitcoin specific code from main lib
Fix possible runtime exception from list wrong access
* Minor fix
* fix: fixes for Testnet
* fix: bitcoin receive option dependency breaks monerocom
* Fix issues when building Monero.com
* feat: Transaction Builder changes
* fix: discover addresses, testnet restoring, duplicate unspent coins, and taproot address vs schnorr sig tweak
* fix: remove print
* feat: improve error when failed broadcast response
* feat: create fish shell env script
* fix: unmodifiable maps
* fix: build
* fix: build
* fix: computed observable side effect bug
* feat: add nix script for android build_all
* fix: wrong keypairs used for signing
* fix: wrong addresses when using fromScriptPubKey scripts
* fix(actual commit): testnet tx expanded + wrong addresses when using fromScriptPubKey scripts (update bitcoin_base deps)
* fix: self-send [skip ci]
* fix: p2wsh
* fix: testnet fees
* New versions
* Update macos build number
Minor UI fix
* fix: use new bitcoin_base ref, fix tx list wrong hex value & refactor hidden vs hd use
- if always use sideHd for isHidden, it is easier to simplify the functions instead of passing both which can be error prone
- (ps: now this could probably be changed, for example from isHidden to isChange since with address list we now see "hidden" addresses)
* Fix if condition to handle litecoin case
* fix: self-send, change address was always making direction incoming
* refactor: improve estimation function, add more inputs if balance missing
* fix: new bitcoin_base update, fixes script issues
* Update evm chain wallet service arguments
* Fix translation [skip ci]
* Fix translation [skip ci]
* Update strings_fr.arb [skip ci]
* fix: async isChange function not being awaited, refactor to reduce looping into a single place
* fix: _address vs address, missing p2sh
* fix: minor mistake in storing p2sh page type [skip ci]
* refactor: use already matched addresses property
* feat: improved perfomance for fetching transaction histories
* feat: continue perfomance change, improve address discovery only to last address by type with history
* fix: make sure transaction list is sorted by date
* refactor: isTestnet only for bitcoin
* fix: walletInfo type null case
* fix: deprecated p2pk
* refactor: make condition more readable
* refactor: remove unnecessary Str variant
* refactor: make condition more readable
* fix: infinite loop possible
* Revert removing isTestnet from other wallets [skip ci]
* refactor: rename addresses when matched by receive type
* Make the beta build [skip ci]
Remove app_env.fish
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-02-23 16:13:30 +00:00
|
|
|
abstract class LitecoinWalletAddressesBase extends ElectrumWalletAddresses with Store {
|
2021-12-24 12:52:08 +00:00
|
|
|
LitecoinWalletAddressesBase(
|
Btc address types (#1263)
* inital migration changes
* feat: rest of changes
* minor fix [skip ci]
* fix: P2wshAddress & wallet address index
* fix: address review comments
* fix: address type restore
* feat: add testnet
* Fix review comments
Remove bitcoin_base from cw_core
* Fix address not matching selected type on start
* remove un-necessary parameter [skip ci]
* Remove bitcoin specific code from main lib
Fix possible runtime exception from list wrong access
* Minor fix
* fix: fixes for Testnet
* fix: bitcoin receive option dependency breaks monerocom
* Fix issues when building Monero.com
* feat: Transaction Builder changes
* fix: discover addresses, testnet restoring, duplicate unspent coins, and taproot address vs schnorr sig tweak
* fix: remove print
* feat: improve error when failed broadcast response
* feat: create fish shell env script
* fix: unmodifiable maps
* fix: build
* fix: build
* fix: computed observable side effect bug
* feat: add nix script for android build_all
* fix: wrong keypairs used for signing
* fix: wrong addresses when using fromScriptPubKey scripts
* fix(actual commit): testnet tx expanded + wrong addresses when using fromScriptPubKey scripts (update bitcoin_base deps)
* fix: self-send [skip ci]
* fix: p2wsh
* fix: testnet fees
* New versions
* Update macos build number
Minor UI fix
* fix: use new bitcoin_base ref, fix tx list wrong hex value & refactor hidden vs hd use
- if always use sideHd for isHidden, it is easier to simplify the functions instead of passing both which can be error prone
- (ps: now this could probably be changed, for example from isHidden to isChange since with address list we now see "hidden" addresses)
* Fix if condition to handle litecoin case
* fix: self-send, change address was always making direction incoming
* refactor: improve estimation function, add more inputs if balance missing
* fix: new bitcoin_base update, fixes script issues
* Update evm chain wallet service arguments
* Fix translation [skip ci]
* Fix translation [skip ci]
* Update strings_fr.arb [skip ci]
* fix: async isChange function not being awaited, refactor to reduce looping into a single place
* fix: _address vs address, missing p2sh
* fix: minor mistake in storing p2sh page type [skip ci]
* refactor: use already matched addresses property
* feat: improved perfomance for fetching transaction histories
* feat: continue perfomance change, improve address discovery only to last address by type with history
* fix: make sure transaction list is sorted by date
* refactor: isTestnet only for bitcoin
* fix: walletInfo type null case
* fix: deprecated p2pk
* refactor: make condition more readable
* refactor: remove unnecessary Str variant
* refactor: make condition more readable
* fix: infinite loop possible
* Revert removing isTestnet from other wallets [skip ci]
* refactor: rename addresses when matched by receive type
* Make the beta build [skip ci]
Remove app_env.fish
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-02-23 16:13:30 +00:00
|
|
|
WalletInfo walletInfo, {
|
|
|
|
required super.mainHd,
|
|
|
|
required super.sideHd,
|
|
|
|
required super.network,
|
2024-08-19 19:11:08 +00:00
|
|
|
required this.mwebHd,
|
|
|
|
required this.mwebEnabled,
|
Btc address types (#1263)
* inital migration changes
* feat: rest of changes
* minor fix [skip ci]
* fix: P2wshAddress & wallet address index
* fix: address review comments
* fix: address type restore
* feat: add testnet
* Fix review comments
Remove bitcoin_base from cw_core
* Fix address not matching selected type on start
* remove un-necessary parameter [skip ci]
* Remove bitcoin specific code from main lib
Fix possible runtime exception from list wrong access
* Minor fix
* fix: fixes for Testnet
* fix: bitcoin receive option dependency breaks monerocom
* Fix issues when building Monero.com
* feat: Transaction Builder changes
* fix: discover addresses, testnet restoring, duplicate unspent coins, and taproot address vs schnorr sig tweak
* fix: remove print
* feat: improve error when failed broadcast response
* feat: create fish shell env script
* fix: unmodifiable maps
* fix: build
* fix: build
* fix: computed observable side effect bug
* feat: add nix script for android build_all
* fix: wrong keypairs used for signing
* fix: wrong addresses when using fromScriptPubKey scripts
* fix(actual commit): testnet tx expanded + wrong addresses when using fromScriptPubKey scripts (update bitcoin_base deps)
* fix: self-send [skip ci]
* fix: p2wsh
* fix: testnet fees
* New versions
* Update macos build number
Minor UI fix
* fix: use new bitcoin_base ref, fix tx list wrong hex value & refactor hidden vs hd use
- if always use sideHd for isHidden, it is easier to simplify the functions instead of passing both which can be error prone
- (ps: now this could probably be changed, for example from isHidden to isChange since with address list we now see "hidden" addresses)
* Fix if condition to handle litecoin case
* fix: self-send, change address was always making direction incoming
* refactor: improve estimation function, add more inputs if balance missing
* fix: new bitcoin_base update, fixes script issues
* Update evm chain wallet service arguments
* Fix translation [skip ci]
* Fix translation [skip ci]
* Update strings_fr.arb [skip ci]
* fix: async isChange function not being awaited, refactor to reduce looping into a single place
* fix: _address vs address, missing p2sh
* fix: minor mistake in storing p2sh page type [skip ci]
* refactor: use already matched addresses property
* feat: improved perfomance for fetching transaction histories
* feat: continue perfomance change, improve address discovery only to last address by type with history
* fix: make sure transaction list is sorted by date
* refactor: isTestnet only for bitcoin
* fix: walletInfo type null case
* fix: deprecated p2pk
* refactor: make condition more readable
* refactor: remove unnecessary Str variant
* refactor: make condition more readable
* fix: infinite loop possible
* Revert removing isTestnet from other wallets [skip ci]
* refactor: rename addresses when matched by receive type
* Make the beta build [skip ci]
Remove app_env.fish
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-02-23 16:13:30 +00:00
|
|
|
super.initialAddresses,
|
|
|
|
super.initialRegularAddressIndex,
|
|
|
|
super.initialChangeAddressIndex,
|
2024-06-24 19:48:42 +00:00
|
|
|
}) : super(walletInfo) {
|
2024-08-23 21:52:40 +00:00
|
|
|
if (mwebEnabled) {
|
2024-09-03 18:05:55 +00:00
|
|
|
// give the server a few seconds to start up before trying to get the addresses:
|
|
|
|
Future.delayed(const Duration(seconds: 5), () async {
|
|
|
|
await topUpMweb(0);
|
|
|
|
});
|
2024-08-23 21:52:40 +00:00
|
|
|
}
|
2024-06-24 19:48:42 +00:00
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2024-08-12 17:54:24 +00:00
|
|
|
final Bip32Slip10Secp256k1 mwebHd;
|
2024-08-19 19:11:08 +00:00
|
|
|
bool mwebEnabled;
|
2024-08-12 21:55:55 +00:00
|
|
|
|
2024-08-12 17:54:24 +00:00
|
|
|
List<int> get scanSecret => mwebHd.childKey(Bip32KeyIndex(0x80000000)).privateKey.privKey.raw;
|
2024-08-12 21:55:55 +00:00
|
|
|
List<int> get spendPubkey =>
|
|
|
|
mwebHd.childKey(Bip32KeyIndex(0x80000001)).publicKey.pubKey.compressed;
|
2024-08-12 17:54:24 +00:00
|
|
|
|
2024-04-22 12:11:31 +00:00
|
|
|
List<String> mwebAddrs = [];
|
2024-09-04 18:06:52 +00:00
|
|
|
List<String> oldMwebAddrs = [];
|
|
|
|
|
2024-04-22 10:45:16 +00:00
|
|
|
Future<void> topUpMweb(int index) async {
|
2024-09-03 18:05:55 +00:00
|
|
|
final stub = await CwMweb.stub();
|
2024-09-04 18:06:52 +00:00
|
|
|
while (oldMwebAddrs.length - index < 1000) {
|
|
|
|
final length = oldMwebAddrs.length;
|
2024-04-22 10:45:16 +00:00
|
|
|
final resp = await stub.addresses(AddressRequest(
|
|
|
|
fromIndex: length,
|
|
|
|
toIndex: index + 1000,
|
2024-08-12 17:54:24 +00:00
|
|
|
scanSecret: scanSecret,
|
|
|
|
spendPubkey: spendPubkey,
|
2024-04-22 10:45:16 +00:00
|
|
|
));
|
2024-09-04 18:06:52 +00:00
|
|
|
if (oldMwebAddrs.length == length) {
|
|
|
|
oldMwebAddrs.addAll(resp.address);
|
2024-04-22 10:45:16 +00:00
|
|
|
}
|
|
|
|
}
|
2024-09-04 18:06:52 +00:00
|
|
|
|
2024-09-04 22:50:56 +00:00
|
|
|
// Keychain k = Keychain(scan: ECPrivate.fromBytes(scanSecret), spendPubKey: ECPublic.fromBytes(spendPubkey),);
|
2024-09-04 18:06:52 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
2024-09-04 22:50:56 +00:00
|
|
|
// final address = k.addressString(i + 1000);
|
|
|
|
final addressHex =
|
|
|
|
await CwMweb.address(hex.encode(scanSecret), hex.encode(spendPubkey), index);
|
|
|
|
// print(addressHex);
|
|
|
|
// print(hex.decode(addressHex!).length);
|
|
|
|
// return;
|
|
|
|
final address = encodeMwebAddress(hex.decode(addressHex!));
|
2024-09-04 18:06:52 +00:00
|
|
|
mwebAddrs.add(address);
|
|
|
|
}
|
|
|
|
print("old function: ${oldMwebAddrs.first} new function!: ${mwebAddrs.first}");
|
2024-04-22 10:45:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2024-08-12 17:54:24 +00:00
|
|
|
String getAddress({
|
|
|
|
required int index,
|
|
|
|
required Bip32Slip10Secp256k1 hd,
|
|
|
|
BitcoinAddressType? addressType,
|
|
|
|
}) {
|
2024-08-23 21:52:40 +00:00
|
|
|
if (addressType == SegwitAddresType.mweb && mwebEnabled) {
|
2024-04-22 10:45:16 +00:00
|
|
|
topUpMweb(index);
|
2024-06-24 19:48:42 +00:00
|
|
|
return hd == sideHd ? mwebAddrs[0] : mwebAddrs[index + 1];
|
2024-04-22 10:45:16 +00:00
|
|
|
}
|
|
|
|
return generateP2WPKHAddress(hd: hd, index: index, network: network);
|
|
|
|
}
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
@override
|
2024-08-12 17:54:24 +00:00
|
|
|
Future<String> getAddressAsync({
|
|
|
|
required int index,
|
|
|
|
required Bip32Slip10Secp256k1 hd,
|
|
|
|
BitcoinAddressType? addressType,
|
|
|
|
}) async {
|
2024-08-23 21:52:40 +00:00
|
|
|
// if mweb isn't enabled we'll just return the regular address type which does effectively nothing
|
|
|
|
// sort of a hack but easier than trying to pull the mweb setting into the electrum_wallet_addresses initialization code
|
|
|
|
// (we want to avoid initializing the mweb.stub() if it's not enabled or we'd be starting the whole server for no reason and it's slow)
|
|
|
|
// TODO: find a way to do address generation without starting the whole mweb server
|
|
|
|
if (addressType == SegwitAddresType.mweb && mwebEnabled) {
|
2024-04-22 10:45:16 +00:00
|
|
|
await topUpMweb(index);
|
|
|
|
}
|
|
|
|
return getAddress(index: index, hd: hd, addressType: addressType);
|
|
|
|
}
|
2024-04-24 13:49:51 +00:00
|
|
|
|
|
|
|
@action
|
|
|
|
@override
|
|
|
|
Future<String> getChangeAddress() async {
|
2024-08-19 19:11:08 +00:00
|
|
|
if (mwebEnabled) {
|
|
|
|
await topUpMweb(0);
|
|
|
|
return mwebAddrs[0];
|
|
|
|
}
|
|
|
|
return super.getChangeAddress();
|
2024-04-24 13:49:51 +00:00
|
|
|
}
|
Btc address types (#1263)
* inital migration changes
* feat: rest of changes
* minor fix [skip ci]
* fix: P2wshAddress & wallet address index
* fix: address review comments
* fix: address type restore
* feat: add testnet
* Fix review comments
Remove bitcoin_base from cw_core
* Fix address not matching selected type on start
* remove un-necessary parameter [skip ci]
* Remove bitcoin specific code from main lib
Fix possible runtime exception from list wrong access
* Minor fix
* fix: fixes for Testnet
* fix: bitcoin receive option dependency breaks monerocom
* Fix issues when building Monero.com
* feat: Transaction Builder changes
* fix: discover addresses, testnet restoring, duplicate unspent coins, and taproot address vs schnorr sig tweak
* fix: remove print
* feat: improve error when failed broadcast response
* feat: create fish shell env script
* fix: unmodifiable maps
* fix: build
* fix: build
* fix: computed observable side effect bug
* feat: add nix script for android build_all
* fix: wrong keypairs used for signing
* fix: wrong addresses when using fromScriptPubKey scripts
* fix(actual commit): testnet tx expanded + wrong addresses when using fromScriptPubKey scripts (update bitcoin_base deps)
* fix: self-send [skip ci]
* fix: p2wsh
* fix: testnet fees
* New versions
* Update macos build number
Minor UI fix
* fix: use new bitcoin_base ref, fix tx list wrong hex value & refactor hidden vs hd use
- if always use sideHd for isHidden, it is easier to simplify the functions instead of passing both which can be error prone
- (ps: now this could probably be changed, for example from isHidden to isChange since with address list we now see "hidden" addresses)
* Fix if condition to handle litecoin case
* fix: self-send, change address was always making direction incoming
* refactor: improve estimation function, add more inputs if balance missing
* fix: new bitcoin_base update, fixes script issues
* Update evm chain wallet service arguments
* Fix translation [skip ci]
* Fix translation [skip ci]
* Update strings_fr.arb [skip ci]
* fix: async isChange function not being awaited, refactor to reduce looping into a single place
* fix: _address vs address, missing p2sh
* fix: minor mistake in storing p2sh page type [skip ci]
* refactor: use already matched addresses property
* feat: improved perfomance for fetching transaction histories
* feat: continue perfomance change, improve address discovery only to last address by type with history
* fix: make sure transaction list is sorted by date
* refactor: isTestnet only for bitcoin
* fix: walletInfo type null case
* fix: deprecated p2pk
* refactor: make condition more readable
* refactor: remove unnecessary Str variant
* refactor: make condition more readable
* fix: infinite loop possible
* Revert removing isTestnet from other wallets [skip ci]
* refactor: rename addresses when matched by receive type
* Make the beta build [skip ci]
Remove app_env.fish
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-02-23 16:13:30 +00:00
|
|
|
}
|