o3-dapi-ont
Version:
Ontology Plugin for o3-dapi
12 lines • 339 B
TypeScript
interface GetBlockTxsByHeightInput {
height: number;
network: string;
}
interface BlockWithTxList {
Hash: string;
Height: number;
Transactions: string[];
}
export declare function getBlockTxsByHeight(data: GetBlockTxsByHeightInput): Promise<BlockWithTxList>;
export {};
//# sourceMappingURL=getBlockTxsByHeight.d.ts.map