UNPKG

@apexfusionfoundation/blockfrost-js

Version:

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

11 lines (10 loc) 1.39 kB
import { components } from '@blockfrost/openapi'; import { AllMethodOptions, PaginationOptions } from '../../../types'; import { BlockFrostAPI } from '../../../index'; export declare function nutlinkAddress(this: BlockFrostAPI, address: string): Promise<components['schemas']['nutlink_address']>; export declare function nutlinkAddressTickers(this: BlockFrostAPI, address: string, pagination?: PaginationOptions): Promise<components['schemas']['nutlink_address_tickers']>; export declare function nutlinkAddressTickersAll(this: BlockFrostAPI, address: string, allMethodOptions?: AllMethodOptions): Promise<components['schemas']['nutlink_address_tickers']>; export declare function nutlinkAddressTicker(this: BlockFrostAPI, address: string, ticker: string, pagination?: PaginationOptions): Promise<components['schemas']['nutlink_address_ticker']>; export declare function nutlinkAddressTickerAll(this: BlockFrostAPI, address: string, ticker: string, allMethodOptions?: AllMethodOptions): Promise<components['schemas']['nutlink_address_ticker']>; export declare function nutlinkTickers(this: BlockFrostAPI, ticker: string, pagination?: PaginationOptions): Promise<components['schemas']['nutlink_tickers_ticker']>; export declare function nutlinkTickersAll(this: BlockFrostAPI, ticker: string, allMethodOptions?: AllMethodOptions): Promise<components['schemas']['nutlink_tickers_ticker']>;