xrpl
    Preparing search index...

    Interface VaultInfoRequest

    The vault_info method gets information about a Vault instance. Returns an VaultInfoResponse.

    interface VaultInfoRequest {
        api_version?: number;
        command: "vault_info";
        id?: string | number;
        owner?: string;
        seq?: number;
        vault_id?: 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: "vault_info"

    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.

    owner?: string

    ID of the Vault Owner account.

    seq?: number

    Sequence number of the vault entry.

    vault_id?: string

    The object ID of the Vault to be returned.