2023-05-26 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Stack Wallet.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-03-27 14:01:35 +00:00
|
|
|
import 'dart:convert';
|
2023-03-03 17:35:43 +00:00
|
|
|
import 'dart:typed_data';
|
|
|
|
|
|
|
|
import 'package:dart_bs58/dart_bs58.dart';
|
|
|
|
import 'package:dart_bs58check/dart_bs58check.dart';
|
|
|
|
import 'package:hex/hex.dart';
|
|
|
|
import 'package:stackwallet/utilities/extensions/extensions.dart';
|
|
|
|
|
|
|
|
extension StringExtensions on String {
|
2023-03-27 14:01:35 +00:00
|
|
|
Uint8List get toUint8ListFromUtf8 => Uint8List.fromList(utf8.encode(this));
|
|
|
|
|
2023-03-03 17:35:43 +00:00
|
|
|
Uint8List get toUint8ListFromHex =>
|
|
|
|
Uint8List.fromList(HEX.decode(startsWith("0x") ? substring(2) : this));
|
|
|
|
|
|
|
|
Uint8List get toUint8ListFromBase58Encoded => bs58.decode(this);
|
|
|
|
|
|
|
|
Uint8List get toUint8ListFromBase58CheckEncoded => bs58check.decode(this);
|
|
|
|
|
|
|
|
BigInt get toBigIntFromHex => toUint8ListFromHex.toBigInt;
|
|
|
|
}
|