defy.tools

Interface ContactChannelPayload

interface ContactChannelPayload {
    contacts: {
        [pubkey: string]: ContactInfo;
    };
    kind: number;
    pubkey: string;
    tags?: string[][];
}

Hierarchy (view full)

Properties

contacts: {
    [pubkey: string]: ContactInfo;
}

Type declaration

kind: number
pubkey: string
tags?: string[][]