ipfs_client_flutter 1.0.7 copy "ipfs_client_flutter: ^1.0.7" to clipboard
ipfs_client_flutter: ^1.0.7 copied to clipboard

A flutter client library for the InterPlanetary File System (IPFS) HTTP API.

example/ipfs_client_flutter_example.dart

import 'package:ipfs_client_flutter/ipfs_client_flutter.dart';

Future<void> main() async {
  IpfsClient ipfsClient = IpfsClient();
  var res = await ipfsClient.mkdir(dir: 'testDir');

  var res1 = await ipfsClient.write(
      dir: 'testpath3/Simulator.png',
      filePath: "[FILE_PATH]/Simulator.png",
      fileName: "Simulator.png");

  var res2 = await ipfsClient.ls(dir: "testDir");
}
16
likes
130
pub points
53%
popularity

Publisher

unverified uploader

A flutter client library for the InterPlanetary File System (IPFS) HTTP API.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dio

More

Packages that depend on ipfs_client_flutter