Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 537 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 537 Bytes

atomicassets-dart

AtomicAssets API wrapper for Dart.

Usage

More examples on how to use in the examples

final atom = AtomicAssets("wax.api.atomicassets.io");
final api = atom.newAssetsApi();


final myAssets = await api.getAssets(
      collectionName: "cryptopuppie", limit: 10, owner: "5g2vm.wam");

for (var el in myAssets) {
    print(el["data"]["name"]);
}

Implemented api paths

  • assets
  • collections
  • schemas
  • templates
  • accounts
  • transfers
  • offers

tbdsux | 2023