ethstorage-sdk-ts
Version:
eip-4844 blobs upload sdk from ethstorage-sdk
13 lines (12 loc) • 384 B
TypeScript
/// <reference types="node" />
import { BaseEthStorage } from "./ethstorage";
export declare class EthStorage extends BaseEthStorage {
getFileInfo(pathOrFile: any): {
isFile: boolean;
isDirectory: boolean;
name: any;
size: any;
path: any;
};
getFileChunk(file: any, fileSize: number, start: number, end: number): Promise<Buffer>;
}