Giter Club home page Giter Club logo

ckb-peersyst-sdk's Introduction

Description

Peersyst typescrypt sdk to connect with nervos network

Examples

In the folder example you can find examples on how to use the sdk.

To run any example use:

npm run example --name=wallet-balance

Where wallet-balance can be any other example file name (import-wallet, create-wallet, get-transactions...)

Installation

  • To install the package with yarn use:
yarn add git+https://github.com/Peersyst/ckb-peersyst-sdk#1.0.0
  • To install the package with npm use:
npm install --save git+https://github.com/Peersyst/ckb-peersyst-sdk#1.0.0

You can change the version changing what comes after #

Usage

  1. Instantiate connection service:
import { ConnectionService, Environments, WalletService, Logger } from "@peersyst/ckb-peersyst-sdk";

const ckbUrl = "YourMainNodeRpcUrl";
const indexerUrl = "YourMainNodeIndexerUrl";
const connectionService = new ConnectionService(ckbUrl, indexerUrl, Environments.Mainnet);
  1. Instantiate wallet service:
// To create mnemonic if you do not have one:
const mnemonic = WalletService.createNewMnemonic();
const wallet = new WalletService(connectionService, mnemonic);
  1. Refresh wallet data:
await wallet.synchronize();
  1. Make any call from the wallet:
const totalBalance = await wallet.getBalance();
Logger.info(totalBalance);

const amount = BigInt(500 * 10 ** 8);
const txHash = await wallet.depositInDAO(amount, mnemonic);

ckb-peersyst-sdk's People

Contributors

adriacarrera avatar guillemgarciadev avatar jpeersyst avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

0xgoerlimainnet

ckb-peersyst-sdk's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.