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 6540060942 remove readme.md před 2 roky
src rebase to npm-packages, add README and LICENSE před 2 roky
test update testnet node address because it moved před 3 roky
.gitignore update testnet node address because it moved před 3 roky
LICENSE.md rebase to npm-packages, add README and LICENSE před 2 roky
README.md rebase to npm-packages, add README and LICENSE před 2 roky
getTestnetWallet.js update testnet node address because it moved před 3 roky
package-lock.json rebase to npm-packages, add README and LICENSE před 2 roky
package.json rebase to npm-packages, add README and LICENSE před 2 roky
tsconfig.json update testnet node address because it moved před 3 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 to 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