-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocgen-custom-markdown-extend.js
More file actions
48 lines (43 loc) · 1.87 KB
/
docgen-custom-markdown-extend.js
File metadata and controls
48 lines (43 loc) · 1.87 KB
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
module.exports = function dataExtend() {
return {
'contracts/Community.sol': {
'description': [
'Smart contract for managing community membership and roles.',
''
].join("<br>"),
'exclude': [
'getIntercoinAddress',
//'DEFAULT_OWNERS_ROLE', 'DEFAULT_ADMINS_ROLE', 'DEFAULT_MEMBERS_ROLE', 'DEFAULT_RELAYERS_ROLE', '',
// 'ADMIN_ROLE', 'DEFAULT_ADMIN_ROLE', 'REDEEM_ROLE', 'CIRCULATION_ROLE', 'CIRCULATION_DEFAULT',
// 'authorizeOperator',
// 'decimals',
// 'defaultOperators',
// 'tokensReceived',
// 'supportsInterface',
],
'fix': {
}
},
'contracts/CommunityERC721.sol': {
'description': [
'Extend Community Smart contract. Each role it\'s ERC721 token, URI can be set by user who can manage. Also any user who belong to role can set ExtraURI ',
''
].join("<br>"),
'exclude': [
'getIntercoinAddress',
//'DEFAULT_OWNERS_ROLE', 'DEFAULT_ADMINS_ROLE', 'DEFAULT_MEMBERS_ROLE', 'DEFAULT_RELAYERS_ROLE', '',
// 'ADMIN_ROLE', 'DEFAULT_ADMIN_ROLE', 'REDEEM_ROLE', 'CIRCULATION_ROLE', 'CIRCULATION_DEFAULT',
// 'authorizeOperator',
// 'decimals',
// 'defaultOperators',
// 'tokensReceived',
// 'supportsInterface',
],
'fix': {
// 'allowance': {'custom:shortd': 'part of ERC20'},
// 'approve': {'custom:shortd': 'part of ERC20'},
// 'balanceOf': {'custom:shortd': 'part of ERC777'},
}
}
};
}