@dappnode/dappnodesdk
Version:
dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain
19 lines (18 loc) • 408 B
TypeScript
/**
* Pinata DAppNodePackage build pin metadata
*/
export interface DnpPinMetadata {
dnpName: string;
version: string;
upstreamVersion: string | undefined | string[];
commit: string | undefined;
branch: string | undefined;
}
export interface PinDataSummary {
ipfsHash: string;
commit?: string;
}
export interface PinsByBranch {
branch: string;
pins: PinDataSummary[];
}