Configuration interface for L2PS instances. Defines the structure for L2PS network configuration and metadata.

interface L2PSConfig {
    config: {
        created_at_block: number;
        known_rpcs: string[];
    };
    uid: string;
}

Properties

Properties

config: {
    created_at_block: number;
    known_rpcs: string[];
}

Network configuration parameters

Type declaration

  • created_at_block: number

    Block number when this L2PS was created

  • known_rpcs: string[]

    List of known RPC endpoints for this L2PS network

uid: string

Unique identifier for the L2PS network