UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

11 lines (10 loc) 269 B
import { TronTransaction } from './TronTransaction'; export interface TronBlock { hash: string; blockNumber: number; timestamp: number; parentHash: string; witnessAddress: string; witnessSignature: string; transactions: TronTransaction[]; }