@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
15 lines (14 loc) • 607 B
TypeScript
import { FormattedSourceAddress, FormattedSignerRegularKey } from "./account";
import { FormattedEmitDetails } from "./emit_details";
import { FormattedMemo } from "./memos";
import { FormattedTransactionSigner } from "./signers";
import { TxGlobalFlagsKeysInterface } from "./global";
export type FormattedBaseSpecification = {
source?: FormattedSourceAddress;
signers?: FormattedTransactionSigner[];
signer?: FormattedSignerRegularKey;
delegate?: FormattedSignerRegularKey;
emittedDetails?: FormattedEmitDetails;
flags?: TxGlobalFlagsKeysInterface;
memos?: FormattedMemo[];
};