blockfrost-js-ratelimited
Version:
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
14 lines (13 loc) • 1.57 kB
TypeScript
import { components } from '../../../types/OpenApi';
import { BlockFrostAPI } from '../../../index';
import { PaginationOptions } from '../../../types';
export declare function pools(this: BlockFrostAPI, pagination?: PaginationOptions): Promise<components['schemas']['pool_list']>;
export declare function poolsRetired(this: BlockFrostAPI, pagination?: PaginationOptions): Promise<components['schemas']['pool_list_retire']>;
export declare function poolsRetiring(this: BlockFrostAPI, pagination?: PaginationOptions): Promise<components['schemas']['pool_list_retire']>;
export declare function poolsById(this: BlockFrostAPI, poolId: string): Promise<components['schemas']['pool']>;
export declare function poolsByIdHistory(this: BlockFrostAPI, poolId: string, pagination?: PaginationOptions): Promise<components['schemas']['pool_history']>;
export declare function poolMetadata(this: BlockFrostAPI, poolId: string): Promise<components['schemas']['pool_metadata']>;
export declare function poolsByIdRelays(this: BlockFrostAPI, poolId: string): Promise<components['schemas']['pool_relays']>;
export declare function poolsByIdDelegators(this: BlockFrostAPI, poolId: string, pagination?: PaginationOptions): Promise<components['schemas']['pool_delegators']>;
export declare function poolsByIdBlocks(this: BlockFrostAPI, poolId: string, pagination?: PaginationOptions): Promise<components['schemas']['pool_blocks']>;
export declare function poolsByIdUpdates(this: BlockFrostAPI, poolId: string, pagination?: PaginationOptions): Promise<components['schemas']['pool_updates']>;