xrpl
    Preparing search index...

    Interface ManifestRequest

    The manifest method reports the current "manifest" information for a given validator public key. The "manifest" is the public portion of that validator's configured token. Expects a response in the form of a ManifestResponse.

    const manifest: ManifestRequest = {
    "command": "manifest",
    "public_key": "nHUFE9prPXPrHcG3SkwP1UzAQbSphqyQkQK9ATXLZsfkezhhda3p"
    }
    interface ManifestRequest {
        api_version?: number;
        command: "manifest";
        id?: string | number;
        public_key: string;
        [x: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [x: string]: unknown
    Index

    Properties

    api_version?: number

    The API version to use. If omitted, use version 1.

    command: "manifest"

    The name of the API method.

    id?: string | number

    A unique value to identify this request. The response to this request uses the same id field. This way, even if responses arrive out of order, you know which request prompted which response.

    public_key: string

    The base58-encoded public key of the validator to look up. This can be the master public key or ephemeral public key.