convex

Creator: coderz1093

Last updated:

0 purchases

convex Image
convex Images

Languages

Categories

Add to Cart

Description:

convex

Convex #
Convenient extension utilities for Dart libraries.
Type conversions #
Quickly convert between different types #
import "package:convex/convex.dart";

void main() {
final privateKey = "0x4646464646464646464646464646464646464646464646464646464646464646";
print(privateKey.toBigInt());
// 31786063712204445802548897845522170783250584025862115618674630904133015979590
print(privateKey.toBytes());
// [52, 54, 52, 54, 52, 54, ..., 54]

final privateKeyBigInt = BigInt.from(42);
print(privateKeyBigInt.toBytes());
// [16, 146]

final privateKeyBytes = Uint8List.fromList([16, 146]);
print(privateKeyBytes.toBigInt());
// 4242
}
copied to clipboard
Validate a hex string #
import "package:convex/convex.dart";

void main() {
final privateKeyA = "0x4646464646464646464646464646464646464646464646464646464646464646";
print(privateKeyA.isHex());
// true

final privateKeyB = "902MIsam)pp";
print(privateKeyB.isHex());
// false
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.