filecoin-pin
Version:
Bridge IPFS content to Filecoin Onchain Cloud using familiar tools
14 lines • 679 B
TypeScript
export declare const ERC8004_TYPES: readonly ["registration", "validationrequest", "validationresponse", "feedback"];
export type ERC8004Type = (typeof ERC8004_TYPES)[number];
export interface MetadataConfigInput {
pieceMetadata?: Record<string, string> | undefined;
dataSetMetadata?: Record<string, string> | undefined;
erc8004Type?: ERC8004Type;
erc8004Agent?: string;
}
export interface MetadataConfigResult {
pieceMetadata?: Record<string, string> | undefined;
dataSetMetadata?: Record<string, string> | undefined;
}
export declare function normalizeMetadataConfig(input: MetadataConfigInput): MetadataConfigResult;
//# sourceMappingURL=index.d.ts.map