@ripplex/xrpl-fetch-unl
v1.0.2
Published
Fetch and verify an XRPL validator list (UNL) and use it to verify validations
Downloads
3
Readme
XRPL-Fetch-UNL
Fetch and validate a validator list from a validator list site
Install
npm install xrpl-fetch-unl
Usage:
const xf = require('xrpl-fetch-unl');
xf.fetch_validated_unl('https://vl.xrplf.org').then(unl =>
{
console.log(unl);
}).catch(e =>
{
console.log("error", e);
});