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

    Interface TrustedServer

    Trusted server data structure (unified format for both subgraph and RPC modes)

    interface TrustedServer {
        id: string;
        serverAddress: `0x${string}`;
        serverUrl: string;
        trustedAt: bigint;
        user: `0x${string}`;
        trustIndex?: number;
    }
    Index

    Properties

    id: string

    Unique identifier for the trusted server relationship

    serverAddress: `0x${string}`

    Server address (EVM address)

    serverUrl: string

    Server URL

    trustedAt: bigint

    Timestamp when server was trusted

    user: `0x${string}`

    User who trusted the server

    trustIndex?: number

    Index in user's trusted server list (only available in RPC mode)