rlp 2.0.0
rlp: ^2.0.0 copied to clipboard
An Ethereum RLP (Recursive Length Prefix) encoding library for Dart.
import 'package:rlp/rlp.dart';
main() {
var encoded = Rlp.encode(["dog", "cat"]);
print(encoded); // Uint8List [200, 131, 100, 111, 103, 131, 99, 97, 116]
}
copied to clipboard