You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nitowa df833a1084 fix doc generation 2 years ago
src Fix broken test case 2 years ago
test Fix broken test case 2 years ago
.drone.yml rename drone.yml to .drone.yml 2 years ago
.gitignore fix doc generation 2 years ago
LICENSE.md rebase to npm-packages, add README and LICENSE 2 years ago
README.md drone config and doc generation 2 years ago
package-lock.json fix doc generation 2 years ago
package.json fix doc generation 2 years ago
tsconfig.json update testnet node address because it moved 2 years ago

README.md

Overview

Build Status Current Version Weekly Downloads License Type

xrpio is a library that allows you to write and read arbitrary data in the ripple blockchain.

How to install

npm i xrpio

Quickstart

import {treeRead, treeWrite} from 'xrpio'

const api = new RippleAPI({ server: "..." }) 
await api.connect()

const dataRootHash = await treeWrite(
    api, 
    "Arbitrary string data 123", 
    { 
        address: "Sender address", 
        secret: "Sender private key"
    }, 
    "Receiver address"
)

const data = await treeRead(api, [dataRootHash])
console.log(data) //"Arbitrary string data 123"

Full documentation