nitowa 29e48f1403 SLL no verify | před 2 roky | |
---|---|---|
src | před 2 roky | |
test | před 2 roky | |
.drone.yml | před 2 roky | |
.gitignore | před 2 roky | |
LICENSE.md | před 2 roky | |
README.md | před 2 roky | |
package-lock.json | před 2 roky | |
package.json | před 2 roky | |
tsconfig.json | před 3 roky |
xrpio is a library that allows you to write and read arbitrary data in the ripple blockchain.
npm i xrpio
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"