UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

14 lines 466 B
import { SignerEntry } from '../common'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface SignerList extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'SignerList'; Flags: number; OwnerNode: string; SignerEntries: SignerEntry[]; SignerListID: number; SignerQuorum: number; } export declare enum SignerListFlags { lsfOneOwnerCount = 65536 } //# sourceMappingURL=SignerList.d.ts.map