UNPKG

@bithomp/xrpl-api

Version:

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

12 lines (11 loc) 410 B
import { FormattedBaseSpecification } from "./specification"; export interface FormattedAuthorizeCredentials { issuer?: string; type?: string; } export type FormattedDepositPreauthSpecification = { authorize?: string; unauthorize?: string; authorizeCredentials?: FormattedAuthorizeCredentials[]; unauthorizeCredentials?: FormattedAuthorizeCredentials[]; } & FormattedBaseSpecification;