UNPKG

@bithomp/xrpl-api

Version:

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

8 lines (7 loc) 297 B
export interface MPTokenInterface { MPTokenIssuanceID: string; Issuer: string; Sequence: number; } export declare function buildMPTokenIssuanceID(sequence: number, issuer: string): string; export declare function parseMPTokenIssuanceID(mptIssuanceID: string): MPTokenInterface | null;