multiversx_api 0.1.5 copy "multiversx_api: ^0.1.5" to clipboard
multiversx_api: ^0.1.5 copied to clipboard

A strongly-typed MultiversX API client for Dart, ensuring type safety while interacting with blockchain endpoints.

example/example.dart

import 'package:multiversx_api/multiversx_api.dart';
import 'package:http/io_client.dart';

void main() async {
  final api = MultiverXApi(
    client: IOClient(),
    baseUrl: mainnetApiBaseUrl,
  );

  try {
    final result = await api.hello();
    print('result = $result');
  } on ApiException catch (e) {
    print(e.toJson());
  } finally {
    api.client.close();
  }
}
copied to clipboard
0
likes
160
points
328
downloads

Publisher

verified publisherkleak.dev

Weekly Downloads

2024.09.19 - 2025.04.03

A strongly-typed MultiversX API client for Dart, ensuring type safety while interacting with blockchain endpoints.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

http, json_annotation, meta

More

Packages that depend on multiversx_api