2024-09-12 18:03:06 +02:00
|
|
|
import type { Team } from './team'
|
2023-12-19 18:43:42 +01:00
|
|
|
import type { Fund } from './fund'
|
|
|
|
import type { ClientDiversability } from './clientDiversability'
|
|
|
|
import type { Audit } from './audit'
|
|
|
|
|
|
|
|
export interface Project {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
categories: string[]
|
2024-09-17 08:12:43 +02:00
|
|
|
usecases?: string[]
|
2024-09-12 18:03:06 +02:00
|
|
|
ecosystem?: string[]
|
2023-12-19 18:43:42 +01:00
|
|
|
product_readiness?: string
|
|
|
|
security?: string
|
|
|
|
have_token?: boolean
|
|
|
|
token_link?: string
|
2024-09-17 08:12:43 +02:00
|
|
|
assets_used?: string[]
|
2023-12-19 18:43:42 +01:00
|
|
|
tokens?: {
|
|
|
|
name?: string
|
2024-09-12 18:03:06 +02:00
|
|
|
symbol?: string
|
2023-12-19 18:43:42 +01:00
|
|
|
network?: string
|
|
|
|
contract_address?: string
|
2024-09-12 18:03:06 +02:00
|
|
|
token_link?: string
|
2023-12-19 18:43:42 +01:00
|
|
|
[k: string]: unknown
|
|
|
|
}[]
|
2024-09-18 20:46:47 +02:00
|
|
|
percentage: number
|
2023-12-19 18:43:42 +01:00
|
|
|
description?: string
|
|
|
|
project_type?: string
|
|
|
|
product_launch_day?: string
|
2024-09-12 18:03:06 +02:00
|
|
|
project_phase?: string
|
|
|
|
sunset: boolean
|
2023-12-19 18:43:42 +01:00
|
|
|
technology?: {
|
|
|
|
type: string
|
|
|
|
name?: string
|
|
|
|
features: string[]
|
|
|
|
[k: string]: unknown
|
|
|
|
}
|
|
|
|
links?: {
|
|
|
|
web?: string
|
|
|
|
twitter?: string
|
|
|
|
telegram?: string
|
|
|
|
discord?: string
|
|
|
|
blog?: string
|
2024-09-12 11:56:16 +02:00
|
|
|
governance?: string
|
2023-12-19 18:43:42 +01:00
|
|
|
facebook?: string
|
|
|
|
block_explorer?: string
|
|
|
|
whitepaper?: string
|
|
|
|
github?: string
|
|
|
|
docs?: string
|
|
|
|
changelog?: string
|
|
|
|
forum?: string
|
|
|
|
snapshot?: string
|
|
|
|
lens?: string
|
|
|
|
farcaster?: string
|
|
|
|
rss_feed?: string
|
|
|
|
coingecko?: string
|
|
|
|
token?: string
|
|
|
|
[k: string]: unknown
|
|
|
|
}
|
|
|
|
blockchain_features?: {
|
|
|
|
p2p?: boolean
|
|
|
|
encryption?: string
|
|
|
|
network?: string
|
|
|
|
upgradability?: {
|
|
|
|
enabled?: boolean
|
|
|
|
type?: string
|
|
|
|
admin_keys?: string
|
|
|
|
[k: string]: unknown
|
|
|
|
}
|
|
|
|
[k: string]: unknown
|
|
|
|
opensource: boolean
|
2024-09-12 18:03:06 +02:00
|
|
|
viewing_key?: boolean
|
|
|
|
dissapearing_tx?: boolean
|
|
|
|
frontend_anonymity?: string
|
|
|
|
identity_integration?: null
|
|
|
|
connected_tx?: boolean
|
|
|
|
revealed_recipient?: boolean
|
|
|
|
revealed_sender?: boolean
|
|
|
|
revealed_ammount?: boolean
|
|
|
|
reversability_condition?: string
|
|
|
|
data_masking?: string
|
|
|
|
asset_custody_type?: string
|
2023-12-19 18:43:42 +01:00
|
|
|
}
|
|
|
|
licences?: string
|
|
|
|
privacy_policy?: {
|
|
|
|
defined?: boolean
|
|
|
|
link?: string
|
|
|
|
data_usage?: string
|
|
|
|
[k: string]: unknown
|
|
|
|
}
|
2024-09-12 18:03:06 +02:00
|
|
|
team?: Team
|
2023-12-19 18:43:42 +01:00
|
|
|
storage?: {
|
|
|
|
decentralized?: boolean
|
|
|
|
[k: string]: unknown
|
|
|
|
}
|
|
|
|
tracebility?: {
|
|
|
|
tracked_data?: string
|
|
|
|
kyc?: boolean
|
2024-09-12 18:03:06 +02:00
|
|
|
sign_in_type_requirments?: string[]
|
2023-12-19 18:43:42 +01:00
|
|
|
[k: string]: unknown
|
|
|
|
}
|
|
|
|
third_party_dependency?: string
|
|
|
|
compliance?: string
|
|
|
|
audits?: Audit[]
|
|
|
|
social_trust?: string
|
|
|
|
technical_spof?: string
|
|
|
|
history?: {
|
|
|
|
title?: string
|
|
|
|
event_type?: string
|
|
|
|
description?: string
|
|
|
|
time?: string
|
|
|
|
link?: string
|
|
|
|
[k: string]: unknown
|
2024-09-12 18:03:06 +02:00
|
|
|
}[]
|
2023-12-19 18:43:42 +01:00
|
|
|
client_diversability?: ClientDiversability[]
|
|
|
|
default_privacy?: boolean
|
|
|
|
funding?: Fund[]
|
|
|
|
project_status?: {
|
|
|
|
live_status?: boolean
|
|
|
|
version?: string
|
|
|
|
testnet?: boolean
|
|
|
|
mainnet?: boolean
|
|
|
|
[k: string]: unknown
|
|
|
|
}
|
|
|
|
logos?: {
|
|
|
|
file?: string
|
|
|
|
ext?: string
|
|
|
|
url?: string
|
|
|
|
[k: string]: unknown
|
|
|
|
}[]
|
2024-09-17 08:12:43 +02:00
|
|
|
ratings?: ProjectRating[]
|
2023-12-19 18:43:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ProjectShallow {
|
|
|
|
id: string
|
|
|
|
image: string
|
|
|
|
title1: string
|
|
|
|
description: string
|
|
|
|
percentage: number
|
2024-09-12 18:03:06 +02:00
|
|
|
forum?: string
|
|
|
|
github?: string
|
|
|
|
website?: string
|
|
|
|
twitter?: string
|
|
|
|
coingecko?: string
|
|
|
|
explorer?: string
|
|
|
|
newsletter?: string
|
|
|
|
readyness?: string
|
|
|
|
team?: Team
|
|
|
|
docs?: string
|
|
|
|
audits?: Audit[]
|
|
|
|
support?: number
|
|
|
|
anonymity?: boolean
|
2024-09-12 08:43:01 +02:00
|
|
|
categories: string[]
|
2024-09-17 08:12:43 +02:00
|
|
|
usecases?: string[]
|
|
|
|
ecosystem?: string[]
|
|
|
|
assets_used?: string []
|
|
|
|
ratings?: ProjectRating[]
|
2023-12-19 18:43:42 +01:00
|
|
|
}
|
2024-07-22 12:17:18 +02:00
|
|
|
|
|
|
|
export interface ProjectIndexable extends Project {
|
2024-09-02 15:13:43 +02:00
|
|
|
[key: string]: unknown
|
2024-07-22 12:17:18 +02:00
|
|
|
}
|
2024-09-12 08:43:01 +02:00
|
|
|
|
2024-09-17 08:12:43 +02:00
|
|
|
export interface ProjectRating {
|
|
|
|
type: string
|
|
|
|
name: string
|
|
|
|
items: ProjectRatingItem[]
|
|
|
|
points: number
|
2024-09-12 08:43:01 +02:00
|
|
|
}
|
|
|
|
|
2024-09-17 08:12:43 +02:00
|
|
|
export interface ProjectRatingItem {
|
|
|
|
isValid: boolean
|
|
|
|
label: string
|
|
|
|
positive: string
|
|
|
|
negative: string
|
|
|
|
value: any
|
2024-09-12 08:43:01 +02:00
|
|
|
}
|