Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/datastructure/blockChain/helper.d.ts>BlockChainApi

Implement different Data Structures using TypeScript. Deno Third-party Module.
Go to Latest
interface BlockChainApi
import { type BlockChainApi } from "https://deno.land/x/datastructure@1.1.0/blockChain/helper.d.ts";

Properties

length: number

Methods

createBlock(data: DataType<any>): boolean
search(key: null | string, index: null | number): boolean | BlockType
latestBlock(): boolean | BlockType
log(key: null | string, index: null | number): void
iterator(): Generator
checkValidation(): boolean