-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfeatures.yaml
121 lines (109 loc) · 2.46 KB
/
features.yaml
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
# These prompts are what need to be implemented to get to parity with OpenZeppelin.
# Each one represents an individual task to be implemented on an underlying template.
# They all abide by the same schema.
# name: Not used
# question: For prompt when enabling feature
# templates: A dict
# <contract_standard> - The dir that is rendered
# status: One of `status_types` in the tackle.yaml
# issue: Makes the table linkable to an issue for the feature
mintable:
name: Mintable
question: Is this token mintable?
templates:
irc2:
status: WIP
issue: https://github.com/sudoblockio/tackle-icon-contract/issues/7
irc3:
status: Todo
irc31:
status: Todo
stable:
name: Mintable
question: Is this token stable (ie pegged to an oracle)?
templates:
irc2:
status: WIP
issue: https://github.com/sudoblockio/tackle-icon-contract/issues/8
auto_increment_ids:
name: Auto Increment NFT IDs
question: Do you want the token IDs to auto-increment?
templates:
irc3:
status: Todo
irc31:
status: Todo
burnable:
name: Burnable
question: Is this token burnable?
templates:
irc2:
status: Todo
irc3:
status: Todo
irc31:
status: Todo
pausable:
name: Pausable
question: Is this contract pausable?
templates:
contract:
status: Todo
irc2:
status: Todo
irc3:
status: Todo
irc31:
status: Todo
permit:
name: Permissioned
question: Is this token permissioned?
templates:
contract:
status: Todo
irc2:
status: Todo
irc3:
status: Todo
irc31:
status: Todo
votes:
name: Governance
question: Will there be voting enabled for this token?
templates:
contract:
status: Todo
irc2:
status: Todo
irc3:
status: Todo
irc31:
status: Todo
flash_minting:
name: Flash Minting
question: Will there be flash minting enabled for this token?
templates:
irc2:
status: Todo
snapshots:
name: Snapshots
question: Will there be snapshotting of this token?
templates:
irc2:
status: Todo
enumerable:
name: Enumberable
question: Enable enumerable properties - optional interfaces for totalSupply, tokenByIndex, and tokenOfOwnerByIndex?
templates:
irc3:
status: Todo
irc31:
status: Todo
uri_storage:
name: URI Storage
question: Does this NFT have storage URI?
templates:
irc3:
status: Todo
irc31:
status: Todo