Avalanche SDK Client
    Preparing search index...

    Type Alias GetRegistrationJustificationParams

    Parameters for the public.getRegistrationJustification method.

    type GetRegistrationJustificationParams = {
        chunkSize?: number;
        maxBootstrapValidators?: number;
        maxChunks?: number;
        searchOrder?: "asc" | "desc";
        startBlock?: number | bigint | "latest";
        subnetIDStr: string;
        validationID: string;
    }
    Index

    Properties

    chunkSize?: number

    The number of blocks to search in each chunk. Default is 2000.

    maxBootstrapValidators?: number

    The number of bootstrap validators to search. Default is 100.

    maxChunks?: number

    The maximum number of chunks to search. Default is 100.

    searchOrder?: "asc" | "desc"

    The order to search in. Default is desc. Searches from toBlock to fromBlock.

    startBlock?: number | bigint | "latest"
    subnetIDStr: string

    The string representation of the subnet ID.

    validationID: string

    The hexadecimal representation or the base58check encoded string of the validation ID.