Skip to content

Commit eb0bf2e

Browse files
committed
update docs, version
1 parent 4f63f43 commit eb0bf2e

14 files changed

+950
-1296
lines changed

contracts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thirdweb-dev/contracts",
33
"description": "Collection of smart contracts deployable via the thirdweb SDK, dashboard and CLI",
4-
"version": "3.1.0",
4+
"version": "3.1.1",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",

docs/ERC20.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ function allowance(address owner, address spender) external view returns (uint25
2424

2525
| Name | Type | Description |
2626
|---|---|---|
27-
| owner | address | undefined
28-
| spender | address | undefined
27+
| owner | address | undefined |
28+
| spender | address | undefined |
2929

3030
#### Returns
3131

3232
| Name | Type | Description |
3333
|---|---|---|
34-
| _0 | uint256 | undefined
34+
| _0 | uint256 | undefined |
3535

3636
### approve
3737

@@ -47,14 +47,14 @@ function approve(address spender, uint256 amount) external nonpayable returns (b
4747

4848
| Name | Type | Description |
4949
|---|---|---|
50-
| spender | address | undefined
51-
| amount | uint256 | undefined
50+
| spender | address | undefined |
51+
| amount | uint256 | undefined |
5252

5353
#### Returns
5454

5555
| Name | Type | Description |
5656
|---|---|---|
57-
| _0 | bool | undefined
57+
| _0 | bool | undefined |
5858

5959
### balanceOf
6060

@@ -70,13 +70,13 @@ function balanceOf(address account) external view returns (uint256)
7070

7171
| Name | Type | Description |
7272
|---|---|---|
73-
| account | address | undefined
73+
| account | address | undefined |
7474

7575
#### Returns
7676

7777
| Name | Type | Description |
7878
|---|---|---|
79-
| _0 | uint256 | undefined
79+
| _0 | uint256 | undefined |
8080

8181
### decimals
8282

@@ -93,7 +93,7 @@ function decimals() external view returns (uint8)
9393

9494
| Name | Type | Description |
9595
|---|---|---|
96-
| _0 | uint8 | undefined
96+
| _0 | uint8 | undefined |
9797

9898
### decreaseAllowance
9999

@@ -109,14 +109,14 @@ function decreaseAllowance(address spender, uint256 subtractedValue) external no
109109

110110
| Name | Type | Description |
111111
|---|---|---|
112-
| spender | address | undefined
113-
| subtractedValue | uint256 | undefined
112+
| spender | address | undefined |
113+
| subtractedValue | uint256 | undefined |
114114

115115
#### Returns
116116

117117
| Name | Type | Description |
118118
|---|---|---|
119-
| _0 | bool | undefined
119+
| _0 | bool | undefined |
120120

121121
### increaseAllowance
122122

@@ -132,14 +132,14 @@ function increaseAllowance(address spender, uint256 addedValue) external nonpaya
132132

133133
| Name | Type | Description |
134134
|---|---|---|
135-
| spender | address | undefined
136-
| addedValue | uint256 | undefined
135+
| spender | address | undefined |
136+
| addedValue | uint256 | undefined |
137137

138138
#### Returns
139139

140140
| Name | Type | Description |
141141
|---|---|---|
142-
| _0 | bool | undefined
142+
| _0 | bool | undefined |
143143

144144
### name
145145

@@ -156,7 +156,7 @@ function name() external view returns (string)
156156

157157
| Name | Type | Description |
158158
|---|---|---|
159-
| _0 | string | undefined
159+
| _0 | string | undefined |
160160

161161
### symbol
162162

@@ -173,7 +173,7 @@ function symbol() external view returns (string)
173173

174174
| Name | Type | Description |
175175
|---|---|---|
176-
| _0 | string | undefined
176+
| _0 | string | undefined |
177177

178178
### totalSupply
179179

@@ -190,7 +190,7 @@ function totalSupply() external view returns (uint256)
190190

191191
| Name | Type | Description |
192192
|---|---|---|
193-
| _0 | uint256 | undefined
193+
| _0 | uint256 | undefined |
194194

195195
### transfer
196196

@@ -206,14 +206,14 @@ function transfer(address to, uint256 amount) external nonpayable returns (bool)
206206

207207
| Name | Type | Description |
208208
|---|---|---|
209-
| to | address | undefined
210-
| amount | uint256 | undefined
209+
| to | address | undefined |
210+
| amount | uint256 | undefined |
211211

212212
#### Returns
213213

214214
| Name | Type | Description |
215215
|---|---|---|
216-
| _0 | bool | undefined
216+
| _0 | bool | undefined |
217217

218218
### transferFrom
219219

@@ -229,15 +229,15 @@ function transferFrom(address from, address to, uint256 amount) external nonpaya
229229

230230
| Name | Type | Description |
231231
|---|---|---|
232-
| from | address | undefined
233-
| to | address | undefined
234-
| amount | uint256 | undefined
232+
| from | address | undefined |
233+
| to | address | undefined |
234+
| amount | uint256 | undefined |
235235

236236
#### Returns
237237

238238
| Name | Type | Description |
239239
|---|---|---|
240-
| _0 | bool | undefined
240+
| _0 | bool | undefined |
241241

242242

243243

0 commit comments

Comments
 (0)