-
Notifications
You must be signed in to change notification settings - Fork 61
/
docgen.js
135 lines (131 loc) · 4.19 KB
/
docgen.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const swaggerAutogen = require('swagger-autogen')({ openapi: '3.0.0' });
const PORT = process.env.PORT || 8080;
const HOST = process.env.HOST || 'localhost';
const ENV = process.env.ENV || 'local'; // local/prod
const SERVER_URL =
ENV === 'local' ? `http://localhost:${PORT}` : `https://${HOST}`;
const outputFile = './src/assets/doc_output.json';
const endpointsFiles = ['./src/endpoint.ts'];
const doc = {
info: {
version: '0.0.1-alpha.1',
title: 'ENS Metadata Service',
description: 'Set of endpoints to query ENS metadata and more',
contact: '[email protected]',
license: 'MIT License',
x_logo: {
url: './src/assets/logo.svg',
backgroundColor: '#FFFFFF',
},
},
host: SERVER_URL,
definitions: {
AvatarMetadata: {
$uri: 'ENS name of avatar holder',
is_owner: 'Ownership verification of NFT',
host_meta: {
chain_id: 'Chain ID where NFT resides',
namespace: 'Type of NFT contract',
contract_address: 'Contract address of NFT',
token_id: 'Token ID of NFT',
reference_url:
'Marketplace URL of NFT',
},
$name: 'Name of NFT',
$description:
"Description of NFT",
$attributes: 'Attributes of NFT',
$image: 'Image data/URL of NFT',
image_url: 'Image data/URL of NFT',
image_data: 'Image data of NFT',
background_color: 'Background color of NFT',
youtube_url: 'Youtube URL of NFT'
},
ENSMetadata: {
$name: 'ENS name',
$description: 'Short ENS name description',
$attributes: 'Custom traits about ENS',
$name_length: 'Character length of ens name',
$url: 'ENS App URL of the name',
$version: 'ENS NFT version',
$background_image: 'Origin URL of avatar image',
$image_url: 'URL of ENS NFT image',
},
contractAddress: '0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85',
ensName: 'nick.eth',
tokenId: '4221908525551133525058944220830153...',
networkName: {
description: 'Name of the chain to query for.',
'@enum': ['mainnet', 'sepolia'],
},
},
components: {
examples: {
AvatarMetadata: {
$uri: 'matoken.eth',
is_owner: true,
host_meta: {
chain_id: 1,
namespace: 'erc721',
contract_address: '0x31385d3520bced94f77aae104b406994d8f2168c',
token_id: '9421',
reference_url:
'https://opensea.io/assets/0x31385d3520bced94f77aae104b406994d8f2168c/9421',
},
$name: 'BASTARD GAN PUNK V2 #9421',
$description:
"FOR THE CHANCES\nI HAVEN'T GOT A BURIAL IN MY ARMS\nAND I'VE HAD ENOUGH\nTIME IS NOW\nIT'S TIME\nI'VE GOT NOTHING TO PROVE\nI'VE GOT NOTHING TO LOSE\n",
$attributes: [
{
trait_type: 'HYPE TYPE',
value: 'CALM AF (STILL)',
},
{
trait_type: 'BASTARDNESS',
value: 'FOMBOI BASTARD',
},
{
trait_type: 'TYPE',
value: 'LARGE',
},
],
image:
'https://ipfs.io/ipfs/QmRagxjj2No4T8gNCjpM42mLZGQE3ZwMYdTFUYe6e6LMBG',
},
ENSMetadata: {
$name: 'nick.eth',
$description: 'nick.eth, an ENS name.',
$attributes: [
{
trait_type: 'Created Date',
display_type: 'date',
value: null,
},
{
trait_type: 'Length',
display_type: 'number',
value: 4,
},
{
trait_type: 'Registration Date',
display_type: 'date',
value: 1580803395000,
},
{
trait_type: 'Expiration Date',
display_type: 'date',
value: 1698131707000,
},
],
name_length: 4,
url: 'https://app.ens.domains/name/nick.eth',
version: 0,
background_image:
'https://metadata.ens.domains/mainnet/avatar/nick.eth',
image_url:
'https://metadata.ens.domains/mainnet/0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85/0x5d5727cb0fb76e4944eafb88ec9a3cf0b3c9025a4b2f947729137c5d7f84f68f/image',
},
},
},
};
swaggerAutogen(outputFile, endpointsFiles, doc);