UNPKG

@hippocampus-web3/blockfrost-js

Version:

A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API

61 lines (60 loc) 1.57 kB
import { HTTPError } from 'ky'; import { RateLimiterConfig } from '../utils/limiter'; export type GotError = HTTPError; type OptionCombination1 = { projectId: string; customBackend?: string; }; type OptionCombination2 = { projectId?: string; customBackend: string; }; type AdditionalOptions = { network?: CardanoNetwork; version?: number; rateLimiter?: boolean | RateLimiterConfig; http2?: boolean; debug?: boolean; userAgent?: string; requestTimeout?: number; }; export type Options = (OptionCombination1 | OptionCombination2) & AdditionalOptions; export type CardanoNetwork = 'mainnet' | 'preview' | 'preprod' | 'sanchonet'; export type BlockfrostNetwork = CardanoNetwork | 'ipfs'; export interface ValidatedOptions { customBackend?: string; version: number; requestTimeout: number; rateLimiter?: false | RateLimiterConfig; http2?: boolean; debug: boolean; projectId?: string; network?: BlockfrostNetwork; } export type HashOrNumber = string | number; export type ErrorType = // Server error { status_code: number; message: string; error: string; url: string; body?: unknown; } | { message: string; code: string; url: string | undefined; }; export type PaginationOptions = { count: number; page: number; order: 'asc' | 'desc'; }; export type AdditionalEndpointOptions = { from?: string | undefined; to?: string | undefined; }; export type AllMethodOptions = { batchSize?: number | undefined; order?: 'asc' | 'desc'; }; export {};