Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
nitowa 898cad5f55 drone config and doc generation před 2 roky
src rebase to npm-packages, add README and LICENSE před 2 roky
test drone config and doc generation před 2 roky
.gitignore update testnet node address because it moved před 2 roky
LICENSE.md rebase to npm-packages, add README and LICENSE před 2 roky
README.md drone config and doc generation před 2 roky
drone.yml drone config and doc generation před 2 roky
getTestnetWallet.js update testnet node address because it moved před 2 roky
package-lock.json rebase to npm-packages, add README and LICENSE před 2 roky
package.json drone config and doc generation před 2 roky
tsconfig.json update testnet node address because it moved před 2 roky

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