@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
23 lines (22 loc) • 463 B
TypeScript
export interface SignerEntry {
SignerEntry: {
Account: string;
SignerWeight: number;
};
}
export interface FormattedSigner {
address: string;
weight: number;
}
export interface TransactionSigner {
Signer: {
SigningPubKey: string;
TxnSignature: string;
Account?: string;
};
}
export interface FormattedTransactionSigner {
address: string;
signingPubKey?: string;
txnSignature?: string;
}