Network interface representing a blockchain network

interface Network {
    attributes: {
        description: null | string;
        identifier: string;
        is_mainnet: boolean;
        logo_url: null | string;
        name: string;
    };
    id: string;
    type: string;
}

Hierarchy (View Summary)

Properties

Properties

attributes: {
    description: null | string;
    identifier: string;
    is_mainnet: boolean;
    logo_url: null | string;
    name: string;
}

Type declaration

  • description: null | string

    Network description

  • identifier: string

    Network identifier

  • is_mainnet: boolean

    Whether this is a mainnet

  • logo_url: null | string

    URL to network logo

  • name: string

    Network name

id: string

Unique identifier for the entity

type: string

Type of the entity