mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
75136431f4
* Add nested-property for easy work with objects * Add infoList interface * Modify and run script to gen new "username" property * Add "username" prop for all coins * Optimised images with calibre/image-actions * Optimised images with calibre/image-actions * Rename username -> handle * Rename username -> handle * Optimised images with calibre/image-actions * rename * Update handle Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
36 lines
560 B
TypeScript
36 lines
560 B
TypeScript
export interface ValidatorModel {
|
|
id: string,
|
|
name: string,
|
|
description: string,
|
|
website: string,
|
|
}
|
|
|
|
export interface InfoList {
|
|
name: string;
|
|
website: string;
|
|
source_code: string;
|
|
whitepaper: string;
|
|
explorers: Explorer[];
|
|
socials: Social[];
|
|
details: Detail[];
|
|
data_source: string;
|
|
}
|
|
|
|
interface Detail {
|
|
language: string;
|
|
description: string;
|
|
}
|
|
|
|
interface Social {
|
|
name: string;
|
|
url: string;
|
|
handle: string;
|
|
}
|
|
|
|
interface Explorer {
|
|
name: string;
|
|
url: string;
|
|
}
|
|
|
|
|