blockfrost-js-ratelimited
Version:
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
8 lines (7 loc) • 342 B
TypeScript
import { BlockFrostAPI } from '..';
import * as Account from '../types/account';
export declare const deriveAddress: (publicKey: string, addressIndex: number, type: 0 | 1) => {
address: string;
path: string;
};
export declare function getAccount(this: BlockFrostAPI, publicKey: string, type: Account.Type): Promise<Account.Result[]>;