Documentation
    Preparing search index...

    Type Alias WalletConnectMetadata

    Metadata information about your application that will be displayed to users during WalletConnect pairing.

    type WalletConnectMetadata = {
        description: string;
        icons: string[];
        name: string;
        url: string;
    }
    Index

    Properties

    description: string

    A brief description of your application.

    'My awesome TON DApp'
    
    icons: string[]

    An array of icon URLs representing your application. These icons are shown in wallet interfaces.

    ['https://mydapp.com/icon-192.png', 'https://mydapp.com/icon-512.png']
    
    name: string

    The name of your application.

    'My DApp'
    
    url: string

    The URL of your application. This is used as the domain for ton_proof authentication.

    'https://mydapp.com'