Dart

In this section, we will delve into the details of the Circular Protocol official Dart package.

The Circular Blockchain API suite provides a robust and efficient interface for interacting with the Circular Protocol, a decentralized and highly scalable blockchain network. These APIs enable developers to integrate, query, and execute operations on the Circular Protocol blockchain, supporting a wide range of decentralized applications (dApps), financial transactions, and smart contracts.

Install

Clone the GitHub repository with

git clone https://github.com/circular-protocol/circular-dart.git

Put the circular_api in the project folder where you're working on.

Enter in the pubspec.yaml this value in the dependencies list:

dependencies:
  CircularDartAPI:
    path: ./circular_api

and then launch

dart pub get

import where you need the API with

import 'package:CircularDartAPI/circular.dart';

Last updated