UNPKG

@bithomp/xrpl-api

Version:

A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger

13 lines (12 loc) 318 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseSigners = parseSigners; function parseSigners(tx) { if (tx && tx.Signers) { return tx.Signers.map((signer) => { return { address: signer.Signer.Account, }; }); } }