mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-07 22:09:09 +00:00
23 lines
579 B
TypeScript
23 lines
579 B
TypeScript
|
export interface Coordinator {
|
||
|
alias: string;
|
||
|
description: string | undefined;
|
||
|
coverLetter: string | undefined;
|
||
|
logo: string;
|
||
|
color: string;
|
||
|
contact: {
|
||
|
email: string | undefined;
|
||
|
telegram: string | undefined;
|
||
|
matrix: string | undefined;
|
||
|
twitter: string | undefined;
|
||
|
website: string | undefined;
|
||
|
};
|
||
|
mainnetOnion: string | undefined;
|
||
|
mainnetClearnet: string | undefined;
|
||
|
testnetOnion: string | undefined;
|
||
|
testnetClearnet: string | undefined;
|
||
|
mainnetNodesPubkeys: string[];
|
||
|
testnetNodesPubkeys: string[];
|
||
|
}
|
||
|
|
||
|
export default Coordinator;
|