blockfrost-js-ratelimited
Version:
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
19 lines (18 loc) • 412 B
TypeScript
declare type State = 'queued' | 'pinned' | 'unpinned' | 'failed' | 'gc';
export declare type AddResponse = {
name: string;
ipfs_hash: string;
size: number;
};
export declare type PinResponse = {
ipfs_hash: string;
state: State;
};
export declare type ListResponse = {
time_created: number;
time_pinned: number;
ipfs_hash: string;
size: string;
state: State;
};
export {};