filecoin-pin
    Preparing search index...

    Interface UploadExecutionResult

    interface UploadExecutionResult {
        complete: boolean;
        copies: CopyResult[];
        failedAttempts: FailedAttempt[];
        ipniValidated: boolean;
        network: string;
        pieceCid: string;
        requestedCopies: number;
        size: number;
    }

    Hierarchy (View Summary)

    Index
    complete: boolean
    copies: CopyResult[]
    failedAttempts: FailedAttempt[]
    ipniValidated: boolean

    True if the IPNI indexer confirmed the piece's advertisement(s) as indexed and the IPFS Root CID was confirmed present on the indexer.

    You should block any displaying, or attempting to access, of IPFS download URLs unless the IPNI validation is successful.

    network: string

    Active network derived from the Synapse instance.

    pieceCid: string
    requestedCopies: number
    size: number