hanerx / ipfs-dart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An IPFS client library for Dart developers.

Copy from https://pub.dev/packages/ipfs

Usage

A simple usage example:

import 'package:ipfs/ipfs.dart';

void main() {

  Ipfs ipfs = Ipfs();

  // This method will return a list of peers in the swarm
  ipfs.getPeers(); 

  // The cid or content identifier has to be of type string
  String cid = 'bafybeifx7yeb55armcsxwwitkymga5xf53dxiarykms3ygqic223w5sk3m';

  // Fetches an ipfs object 
  ipfs.getObject(cid);

  // Traverses through a DAG given its root cid
  ipfs.resolveDag(cid);

}

The response should be

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

License:Other


Languages

Language:Dart 100.0%