@apexfusionfoundation/blockfrost-js
Version:
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
11 lines (10 loc) • 417 B
TypeScript
import { components } from '@blockfrost/openapi';
import { BlockFrostAPI } from '../../../index';
/**
* Obtains the information about blockchain genesis.
* @see {@link https://docs.blockfrost.io/#tag/Cardano-Ledger/paths/~1genesis/get| API docs for Blockchain genesis}
*
* @returns Genesis parameters
*
*/
export declare function genesis(this: BlockFrostAPI): Promise<components['schemas']['genesis_content']>;