Skip to content

BaojunCZ/ckb-sdk-dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CKB SDK Dart

FOSSA Status pub package

Dart SDK for CKB.Nervos test network has not been released yet,so it is very early stage.Be careful when using this library.

Prerequisites

To build CKB SDK, you'll need:

  • Dart sdk: ">=2.2.2 <3.0.0"

Usage

JSON-RPC

final apiClient = CKBApiClient(nodeUrl: NodeUrl);
String blockHash = await apiClient.getBlockHash("1");

You can see more JSON-RPC requests from RPC Document

Address

 final ckbAddress = CKBAddress(Network.TestNet);
 final address = ckbAddress.generate(PublicKey);

You can find more in here.

api_client_example

address_example

test

FOSSA Status

Changelog

See CHANGELOG.md file.