Plugin Input
Please see
heat-server-common/src/constants.ts
for type definitions
interface {
/**
* Enum of blockchain identifiers
*/
blockchain?: Blockchains
}
Plugin Output
interface {
/**
* The height of the last block
*/
lastBlockHeight: number;
/**
* The last block timestamp in UTC format
*/
lastBlockTime: Date;
/**
* The unique block id (hex encoded)
*/
lastBlockId: string;
}