-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtail.py
56 lines (53 loc) · 1.19 KB
/
tail.py
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
class Tail:
hash: str
name: str
code: str
description: str
category: str
launcher_id: str
eve_coin_id: str
tail_reveal: str
nft_uri: str
website_url: str
twitter_url: str
discord_url: str
def __init__(
self,
hash: str,
name: str,
code: str,
description: str,
category: str,
launcher_id: str,
eve_coin_id: str,
tail_reveal: str,
nft_uri: str,
website_url: str,
twitter_url: str,
discord_url: str,
):
self.hash = hash
self.name = name
self.code = code
self.description = description
self.category = category
self.launcher_id = launcher_id
self.eve_coin_id = eve_coin_id
self.tail_reveal = tail_reveal
self.nft_uri = nft_uri
self.website_url = website_url
self.twitter_url = twitter_url
self.discord_url = discord_url
class TailDetails:
name: str
code: str
nft_uri: str
def __init__(
self,
name: str,
code: str,
nft_uri: str,
):
self.name = name
self.code = code
self.nft_uri = nft_uri