Documentation
    Preparing search index...

    Blockchain network information

    This type defines the properties of a supported blockchain network for cross-chain bridging operations.

    type Chain = {
        blockExplorers: { default: { name: string; url: string } };
        iconUrl: string;
        id: number;
        name: string;
        nativeCurrency: Token;
        rpcUrl: { default: string };
    }
    Index

    Properties

    blockExplorers: { default: { name: string; url: string } }

    Block explorer configuration

    Type declaration

    • default: { name: string; url: string }

      Default block explorer

      • name: string

        Explorer name

      • url: string

        Explorer URL

    iconUrl: string

    URL to chain icon/logo

    id: number

    Unique chain identifier

    name: string

    Human-readable chain name

    nativeCurrency: Token

    Native currency of the chain

    rpcUrl: { default: string }

    RPC endpoint configuration

    Type declaration

    • default: string

      Default RPC URL for the chain