123456789101112131415161718192021222324 |
- export type Relay = {
- name: string;
- publicKey: string;
- created?: string;
- description?: string;
- lastModified?: string;
- };
- export type RelayActivity = {
- firstSeen: string;
- lastSeen: string;
- publicKey: string;
- relayId: string;
- version: string;
- };
- export type RelaysByPublickey = {
- [publicKey: string]: {
- activities: Array<RelayActivity>;
- name: string;
- created?: string;
- description?: string;
- };
- };
|