-
Notifications
You must be signed in to change notification settings - Fork 16
/
docs_template.sqrl
119 lines (71 loc) · 1.94 KB
/
docs_template.sqrl
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
---
{{@if (it.name)}}title: {{it.name}}{{/if}}
{{@if (it.title)}}description: {{it.title}}{{/if}}
---
{{@if (it.notice)}}{{it.notice}}{{/if}}
{{@if (it.details)}}*{{it.details}}*{{/if}}
{{@if (Object.keys(it.methods).length > 0)}}
## Methods
{{@foreach(it.methods) => key, val}}
### {{key.split('(')[0]}}
```solidity
{{val.code}}
```
{{@if (val.notice)}}{{val.notice}}{{/if}}
{{@if (val.details)}}*{{val.details}}*{{/if}}
{{@if (Object.keys(val.inputs).length > 0)}}
**Parameters**
| Name | Type | Description |
|---|---|---|
{{@foreach(val.inputs) => key, val}}
| {{key}} | `{{val.type}}` | {{@if (val.description)}}{{val.description}}{{/if}} |
{{/foreach}}
{{/if}}
{{@if (Object.keys(val.outputs).length > 0)}}
**Returns**
| Name | Type | Description |
|---|---|---|
{{@foreach(val.outputs) => key, val}}
| {{key}} | `{{val.type}}` | {{@if (val.description)}}{{val.description}}{{/if}} |
{{/foreach}}
{{/if}}
{{/foreach}}
{{/if}}
{{@if (Object.keys(it.events).length > 0)}}
## Events
{{@foreach(it.events) => key, val}}
### {{key}}
```solidity
{{val.code}}
```
{{@if (val.notice)}}{{val.notice}}{{/if}}
{{@if (val.details)}}*{{val.details}}*{{/if}}
{{@if (Object.keys(val.inputs).length > 0)}}
**Parameters**
| Name | Type | Description |
|---|---|---|
{{@foreach(val.inputs) => key, val}}
| {{key}} {{@if (val.indexed)}}`indexed`{{/if}} | `{{val.type}}` | {{@if (val.description)}}{{val.description}}{{/if}} |
{{/foreach}}
{{/if}}
{{/foreach}}
{{/if}}
{{@if (Object.keys(it.errors).length > 0)}}
## Errors
{{@foreach(it.errors) => key, val}}
### {{key}}
```solidity
{{val.code}}
```
{{@if (val.notice)}}{{val.notice}}{{/if}}
{{@if (val.details)}}*{{val.details}}*{{/if}}
{{@if (Object.keys(val.inputs).length > 0)}}
**Parameters**
| Name | Type | Description |
|---|---|---|
{{@foreach(val.inputs) => key, val}}
| {{key}} | `{{val.type}}` | {{@if (val.description)}}{{val.description}}{{/if}} |
{{/foreach}}
{{/if}}
{{/foreach}}
{{/if}}