0 purchases
dart multiaddr
dart_multiaddr #
multiaddr implementation in Dart
Multiaddr aims to make network addresses future-proof, composable, and efficient.
Warning: This is a work in progress. The API is not stable yet.
Usage #
import 'package:dart_multiaddr/dart_multiaddr.dart';
void main() {
var addr = Multiaddr.fromString('/ip4/1.1.1.1');
print(addr.toString()); // Output: /ip4/1.1.1.1
var anotherAddr = Multiaddr.fromString('/ip4/1.1.1.1');
print(addr == anotherAddr); // Output: true
}
copied to clipboard
License #
MIT © 2023 YogiLiu
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.