
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
xrpl-accountlib
Advanced tools
XRPL Account helper: generation, derivation and signing.
npm install --save xrpl-accountlib
Sample: https://jsfiddle.net/WietseWind/gkefpnu0/
You can get a prebuilt / prebuilt & minified version from Github / CDNJS
const {generate} = require('xrpl-accountlib')
const account = generate.familySeed()
console.log(account.address)
require version:You can get a prebuilt / prebuilt & minified version from Github / CDNJS
const {generate} = XrplAccountLib
const account = generate.familySeed()
console.log(account.address)
Please note: this lib primarily provides signing and derivation capabilities. To connect to the XRPL and submit transactions, please take a look at xrpl-client.
Here's an example on how these two libs can work together (manually).
xrpl-client as well, and comes with helpers to prepare transactions & submit transactions 🎉The bundled xrpl-client instance & behaviour is network definitions aware, meaning it will dynamically load definitions from supporting networks, like Hooks enabled networks. An example how to load definitions dynamically can be found Here's an example
utils.accountAndLedgerSequence(wss, account) (async) can be used to get values required to prepare a transaction:
xrpl-client or a string containing a WebSocket node endpoint. In case of a string (endpoint) a connection will be created & closed automatically.XRPL_Account object (see below).txValues property. The given LastLedgerSequence is the current ledger index + 20.signAndSubmit(tx, wss, account) (async) can be used to sign a transaction & submit it to the network provided:
accountAndLedgerSequence method txValuesXRPL_Account object (see below).XRPL_Account object (see below). An account 'r-address' string can't be used here as a keypair needs to be present to sign.A sample can be viewed here: https://github.com/WietseWind/xrpl-accountlib/blob/master/samples/sign-and-submit.mjs
Both the generate and the derive methods will return an XRPL_Account object, containing all information to sign:
{
accountType: '...',
address: 'rXXXXXXXXX...',
secret:
{ familySeed: 'rYYYYYYYYY...',
mnemonic: 'word word word...',
passphrase: 'Hello World! ...',
path: 'm/44'/144'/X'/Y/Z' },
keypair:
{ algorithm: 'xxxxxxxx',
publicKey: 'AABBCC001122...',
privateKey: 'CCDDEE332211...' } }
All XRPL_Account objects allow calling the signAs method to set the signAs user for MultiSign transactions (when a MultiSign user also uses a RegularKey);
derive
.familySeed('snYHBZDJ51PPSuzWYVhEh1kb9zvEU')
.signAs('rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY')
lib.generateAll generate methods return an XRPL_Account object.
Samples: https://github.com/WietseWind/xrpl-accountlib/blob/master/samples/generate.js
lib.generate.familySeed(options{})Options:
lib.generate.secretNumbers()See:
lib.generate.mnemonic(options{})Options:
lib.deriveAll derive methods return an XRPL_Account object.
Samples: https://github.com/WietseWind/xrpl-accountlib/blob/master/samples/derive.js
lib.derive.familySeed(familyseed'')The familyseed argument is required, and should contain a string, like: sXXXXXXXXX...
lib.derive.secretNumbers(secretNumbers''|[], acceptWithoutChecksum?:false)The secretNumbers argument is required, and should contain a string, like: 012345 123456 ... or an array containing 8 elements of the type string containing 6 digits.
lib.derive.mnemonic(mnemonic'', options{})The _ mnemonic_ argument is required, and should contain a string with a valid word list, like: state green stem tower...
Options:
lib.derive.passphrase(passphrase'')Derive from a passphrase, like masterpassphrase
lib.derive.privatekey(hex'')Derive from a 66 char HEX private key, like 001ACAAEDECE405B2A958212629E16F2EB46B153EEE94CDD350FDEFF52795525B7
lib.sign(Transaction{}, XRPL_Account{}/[{}])The first argument of the sign-method should be a Transaction object, the second argument can either contain one XRPL_Account object (returned by either
the generate or derive methods) or an array with multiple XRPL_Account objects (multiSign).
When combining previously signed MultiSign transactions as HEX blob, the second argument can also be an array with { signedTransaction: '...' } objects (or an array of strings with the HEX blob).
https://github.com/WietseWind/xrpl-accountlib/blob/master/samples/sign.js
lib.sign(Tx, lib.derive.familySeed('shqNUmrgnkBmK9iCijrtid2Ua4uHd'))
lib.sign(Tx, [
lib.derive.familySeed('sp5mkm12oJj3t8fFRiaMNrDbc73N2'),
lib.derive.familySeed('snYHBZDJ51PPSuzWYVhEh1kb9zvEU')
])
If you want to sign a single transaction that will be part of a MultiSigned transaction (combined later on) it's mandatory to specify the signAs account (with the chained (signAs( .. ) method). The output (signed transaction blob, hex) signed by multiple accounts can then be combined later on:
lib.sign(
Tx,
lib.derive.familySeed('sp5mkm12oJj3t8XXXXXXXXXXXXXXX')
.signAs('r9yzFismdTTWzc6Ea3mJr9by26QaFrFHP7')
)
const Tx = lib.sign([
{ signedTransaction: '120000240000000B2E000001EF614000000002FAF0806840000000000003E873008114723F34B08C70F3EF8759B1A2CD4934D434A3C2518314628891E80B72684CF065A0AE8EC3482472C1C0DCF3E010732103AC651208BDA639C7AEC10873771A5B5F1A2008CAB3B2155871EE16A966D5860774473045022100CD9BC97047BF8EE0AF2D7631540FFF4C5FFE863AFAA9E2DE7AD98156F3323CF9022031D0454947833536028029FB9B61B224F4C2BFC1D1F670C49880AD004A76315C8114723F34B08C70F3EF8759B1A2CD4934D434A3C251E1F1' },
{ signedTransaction: '12000024000000042E000001EF614000000007F81ED96840000000000003E873008114F84E8A80D08854F3621F9214D58F04D41A07EE108314F40B468D5AC0DBA36E2941877AC2E9BBD48262A1F3E010732103CA9799516799A1139BED8958A9FDD0033389396422B888A7E56FB9991B0A179E74473045022100B22D6874CC4ECC92D32E657A1F863245A4DB1B425260052A9427616BE397D244022023CA82B76ADD26909549381C5CCB7BB09084936B294577299F5796A22F5AC39E8114F40B468D5AC0DBA36E2941877AC2E9BBD48262A1E1F1' }
])
You can also pass the signed HEX blob as an array with strings.
To obtain network information, fetch Hooks fees, etc. there are some helpers present in the utils object.
To prevent new connections from being setup all the time, you can connect a pre-constructed XrplClient class.
utils.txNetworkAndAccountValues(
client: XrplClient | string,
account: string | Account
)
Returns:
{
networkInfo: {
ledgerSequence: 4782267,
accountSequence: 4404168,
endpoint: 'wss://hooks-testnet-v3.xrpl-labs.com/',
networkId: 21338,
features: { hooks: true }
},
txValues: {
Account: 'rDUsh2K9rFeEZNU24zyjHD61ceeDwspFAU',
NetworkID: 21338,
Sequence: 4404168,
LastLedgerSequence: 4782287,
Fee: '0'
}
}
If you are obtaining network information and passing a string as client, a connection
will be created for you. If you want to keep the connection alive for further communcation,
pass keepCreatedConnectionAlive as true, and fetch the XrplClient connection from the
connection return property.
utils.networkInfo(
client: XrplClient | string,
keepCreatedConnectionAlive = false
)
Returns:
endpoint: string,
networkId: number,
ledgerSequence: number,
ledger: number,
amendments: string[],
features: {
hooks: boolean,
},
connection: XrplClient,
utils.networkTxFee(
client: XrplClient | string,
tx?: string | Object,
keepCreatedConnectionAlive = false
)
Returns (string in drops):
13371337
FAQs
XRPL Account helper: generation, derivation and signing
The npm package xrpl-accountlib receives a total of 419 weekly downloads. As such, xrpl-accountlib popularity was classified as not popular.
We found that xrpl-accountlib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.