1.0.3 • Published 6 years ago

xrpsign v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

xrpsign

A simple package for signing XRP transactions.

Installation

npm install xrpsign

Usage

const sign = require('xrpsign');

// tx can be an object or the JSON equivalent.
const tx = {
    TransactionType: 'Payment',
    Account: 'rQBnNY5w5cALHbMaue2VefSzuBfxafwqp9',
    Fee : '12',
    Destination: 'rnQ1WgToG2RL9Fjmofif9ixYVgJTi6BLas',
    Amount: '1000000',
    Sequence: 3
};

const secret = 'sxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';

// signedTx is now a transaction object with the signed data.
let signedTx = sign(tx, secret);

Acknowledgements

Big thanks to @WietseWind for help on this one.