@vechain/sdk-network
Version:
This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain
20 lines (18 loc) • 376 B
text/typescript
import { type BlockId } from '@vechain/sdk-core';
/**
* Type for target of TraceTransactionClause.
*/
export interface TransactionTraceTarget {
/**
* Block ID.
*/
blockId: BlockId;
/**
* Clause index.
*/
clauseIndex: number;
/**
* Transaction index if `number`, else ID if `ThorId`.
*/
transaction: number | BlockId;
}