UNPKG

@transia/xrpl

Version:

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

17 lines 582 B
import { GlobalFlagsInterface } from '../transactions/common'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export interface CredentialFlags extends GlobalFlagsInterface { lsfAccepted?: boolean; } export default interface Credential extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'Credential'; Flags: number | CredentialFlags; Subject: string; Issuer: string; CredentialType: string; SubjectNode: string; IssuerNode: string; Expiration?: number; URI?: string; } //# sourceMappingURL=Credential.d.ts.map