bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iClaimAttempt<T>

    interface iClaimAttempt<T extends NumberType> {
        attemptData?: { [instanceId: string]: Record<string, any> };
        attemptedAt: T;
        bitbadgesAddress: string;
        claimAttemptId: string;
        claimId: string;
        claimNumber: number;
        error?: string;
        success: boolean;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    attemptData?: { [instanceId: string]: Record<string, any> }

    This is in the format of { [instanceId: string]: Record<string, any> } where the object is what was configured via the plugin.

    The instanceId is for the requestBin plugin's instance ID.

    attemptedAt: T
    bitbadgesAddress: string
    claimAttemptId: string
    claimId: string
    claimNumber: number
    error?: string
    success: boolean