Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
nitowa 6540060942 remove readme.md il y a 3 ans
src rebase to npm-packages, add README and LICENSE il y a 3 ans
test update testnet node address because it moved il y a 3 ans
.gitignore update testnet node address because it moved il y a 3 ans
LICENSE.md rebase to npm-packages, add README and LICENSE il y a 3 ans
README.md rebase to npm-packages, add README and LICENSE il y a 3 ans
getTestnetWallet.js update testnet node address because it moved il y a 3 ans
package-lock.json rebase to npm-packages, add README and LICENSE il y a 3 ans
package.json rebase to npm-packages, add README and LICENSE il y a 3 ans
tsconfig.json update testnet node address because it moved il y a 3 ans

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