Lumos is still under active development and considered to be a work in progress.
Lumos is a full featured JavaScript/TypeScript based dapp framework for Nervos CKB. It aims to simplify dapp development on Nervos CKB. The name explains what the project is about: the wonderland of CKB, though vast and fertile, still remains dark in most of the parts, lumos tries to shed light upon the land, guiding people into this beautiful new world.
As of now, lumos contains the following components:
- ckb-indexer: a cell/tx indexer base on ckb-indexer.
- BI: a big number library for lumos.
- toolkit: JavaScript toolkit for Nervos CKB. It contains a series of independent tools that can aid development of CKB dapps. This is different from a normal CKB SDK, since it tries to minimize the work done in an SDK, while providing more utilities that could be handy.
- lumos: A root package to integrate of common functions from the Lumos sub-package.
- base: a base package containing common types and utilities that are used by most packages. If there is a CKB specific task you need to perform, you might want to look here first. Chances are they are already provided.
- helpers: a helper package containing more utilities. The difference between
helpers
andbase
, is thatbase
contains pure stateless functions, whilehelpers
works in a more intrinsic way: it requiresconfig-manager
mentioned below to be setup. - common-scripts: integrations for known scripts on CKB. While we try our best to provide integrations for popular CKB scripts, people might be working on innovations every day. As a result, we are also designing a set of APIs, so developers can freely integrate their own scripts into lumos for everyone to use. One integrated,
common-scripts
should be able to leverage those new scripts as well. - config-manager: a manager for dealing with differences between different chains, such as mainnet, testnet, or numerous dev chains. We abstract each chain into individual config file. Once loaded, config manager will be able to handle the chain specific logic, so you don't have to deal with this in your own code.
- transaction-manager: a transaction manager for CKB. One problem with UTXO based blockchains, is that a certain amount of gap period exists between a transaction is accepted by a blockchain, and when it is actually committed on chain. During this gap, new cells created by the pending transaction will not be available. Transaction manager package takes care of this. It wraps an indexer instance, and makes sure cells created in pending transactions, are also exposed and available for assembling new transactions. This means you are no longer bounded to one transaction at a time, you can freely send series of transactions as you wish.
- hd: an HD wallet manager for CKB. It supports mnemonic and keystore, compatible with
Neuron
andckb-cli
, you can load keystore fromNeuron
orckb-cli
directly and import mnemonic generated byNeuron
. - hd-cache: an HD cache manager for CKB. It build a memory cache for derived addresses and live cells of these addresses.
- rpc: RPC module for CKB RPC. Provide type definitions for CKB RPC interface.
- experiment-tx-assembler: here are some experimental features for simplifying the transaction assembling process.
we have provided some use cases for Lumos, such as interactions with MetaMask, transfers CKB, address conversions, etc. which you can find in examples
sudo apt-get update
sudo apt install nodejs
npm install -g pnpm
pnpm run build
pnpm run test
pnpm run test-coverage
pnpm run lint
pnpm run clean