2022-10-30 19:13:01 +00:00
|
|
|
export interface Coordinator {
|
|
|
|
alias: string;
|
2022-11-24 17:42:30 +00:00
|
|
|
enabled: boolean;
|
2022-10-30 19:13:01 +00:00
|
|
|
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;
|