-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocusaurus.sqrl
More file actions
143 lines (88 loc) · 2.08 KB
/
docusaurus.sqrl
File metadata and controls
143 lines (88 loc) · 2.08 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
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
136
137
138
139
140
141
142
143
---
description: {{@if(it.title)}}{{it.title}}{{#else}}{{it.name}}{{/if}}
---
{{@if (it.name)}}# {{it.name}}.sol{{/if}}
> [Read code on GitHub](https://github.com/primitivefinance/rmm-manager/blob/main/contracts{{it.path}}/{{it.name}}.sol)
{{@if (it.notice)}}{{it.notice}}{{/if}}
{{@if (it.details)}}
:::note Details
{{it.details}}
:::
{{/if}}
{{@if (Object.keys(it.methods).length > 0)}}
## Methods
{{@foreach(it.methods) => key, val}}
### {{key.split('(')[0]}}
{{@if (val.notice)}}{{val.notice}}{{/if}}
```solidity title="Solidity"
{{val.code}}
```
{{@if (val.details)}}
:::note Details
{{val.details}}
:::
{{/if}}
{{@if (Object.keys(val.inputs).length > 0)}}
#### Parameters
| Name | Type | Description |
|---|---|---|
{{@foreach(val.inputs) => key, val}}
| {{key}} | {{val.type}} | {{val.description}} |
{{/foreach}}
{{/if}}
{{@if (Object.keys(val.outputs).length > 0)}}
#### Returns
| Name | Type | Description |
|---|---|---|
{{@foreach(val.outputs) => key, val}}
| {{key}} | {{val.type}} | {{val.description}} |
{{/foreach}}
{{/if}}
{{/foreach}}
{{/if}}
{{@if (Object.keys(it.events).length > 0)}}
## Events
{{@foreach(it.events) => key, val}}
### {{key}}
{{@if (val.notice)}}{{val.notice}}{{/if}}
```solidity title="Solidity"
{{val.code}}
```
{{@if (val.details)}}
:::note 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}} | {{val.description}} |
{{/foreach}}
{{/if}}
{{/foreach}}
{{/if}}
{{@if (Object.keys(it.errors).length > 0)}}
## Errors
{{@foreach(it.errors) => key, val}}
### {{key}}
{{@if (val.notice)}}{{val.notice}}{{/if}}
```solidity title="Solidity"
{{val.code}}
```
{{@if (val.details)}}
:::note Details
{{val.details}}
:::
{{/if}}
{{@if (Object.keys(val.inputs).length > 0)}}
#### Parameters
| Name | Type | Description |
|---|---|---|
{{@foreach(val.inputs) => key, val}}
| {{key}} | {{val.type}} | {{val.description}} |
{{/foreach}}
{{/if}}
{{/foreach}}
{{/if}}