Vana SDK - v0.1.0
    Preparing search index...

    Interface AddRefinerParams

    Parameters for registering a new data refiner in the Vana network.

    Refiners are processors that transform and validate user data according to specific schemas and instructions. They enable applications to work with structured, verified user data while maintaining privacy and user control.

    const refinerParams: AddRefinerParams = {
    dlpId: 1, // Data Liquidity Pool ID
    name: 'Social Media Refiner',
    schemaId: 5, // Pre-defined schema for social media data
    refinementInstructionUrl: 'ipfs://Qm...' // Instructions for data processing
    };
    interface AddRefinerParams {
        dlpId: number;
        name: string;
        schemaId: number;
        refinementInstructionUrl: string;
    }
    Index

    Properties

    dlpId: number

    DLP ID this refiner belongs to

    name: string

    Refiner name

    schemaId: number

    Schema ID to associate with this refiner

    refinementInstructionUrl: string

    URL containing refinement instructions