UNPKG

pinata-sdk

Version:

Unofficial SDK for [Pinata](https://pinata.cloud), implemented in ReasonML and compiled to Javascript.

15 lines (12 loc) 438 B
declare module 'pinata-sdk' { export interface PinataConfig { apiKey: string, privateApiKey: string, apiURL: string; } export interface PinHashToIPFSResponseJS { ipfsHash: string } export function configure(apiKey: string, privateApiKey: string, apiURL?: string): PinataConfig; export function pinHashToIPFS(config: PinataConfig, hash: string): Promise<PinHashToIPFSResponseJS> }