@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
14 lines (13 loc) • 381 B
TypeScript
interface FormattedHooksExecutionInterface {
account: string;
emitCount: number;
executionIndex: number;
hash: string;
instructionCount: string;
result: number;
returnCode: string;
returnString: string;
stateChangeCount: number;
}
export declare function parseHooksExecutions(tx: any): FormattedHooksExecutionInterface[] | undefined;
export {};