Skip to content

Commit 5253137

Browse files
Krishang NadgaudaKrishang Nadgauda
authored andcommitted
generated docs update
1 parent e68d386 commit 5253137

File tree

5 files changed

+42
-5
lines changed

5 files changed

+42
-5
lines changed

docs/DelayedReveal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function isEncryptedBatch(uint256 _batchId) external view returns (bool)
8686

8787

8888

89-
89+
*Returns whether the relvant batch of NFTs is subject to a delayed reveal.*
9090

9191
#### Parameters
9292

docs/SigMint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function verify(ISignatureMintERC721.MintRequest _req, bytes _signature) externa
4141

4242

4343

44-
*Verifies that a mint request is signed by an account holding MINTER_ROLE (at the time of the function call).*
44+
*Verifies that a mint request is signed by an authorized account.*
4545

4646
#### Parameters
4747

docs/SignatureDrop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ function isEncryptedBatch(uint256 _batchId) external view returns (bool)
610610

611611

612612

613-
613+
*Returns whether the relvant batch of NFTs is subject to a delayed reveal.*
614614

615615
#### Parameters
616616

@@ -1161,7 +1161,7 @@ function verify(ISignatureMintERC721.MintRequest _req, bytes _signature) externa
11611161

11621162

11631163

1164-
1164+
*Verifies that a mint request is signed by an account holding MINTER_ROLE (at the time of the function call).*
11651165

11661166
#### Parameters
11671167

docs/SignatureMintERC721.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function verify(ISignatureMintERC721.MintRequest _req, bytes _signature) externa
4141

4242

4343

44-
*Verifies that a mint request is signed by an account holding MINTER_ROLE (at the time of the function call).*
44+
*Verifies that a mint request is signed by an authorized account.*
4545

4646
#### Parameters
4747

docs/Strings2.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Strings2
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
## Methods
12+
13+
### toHexString
14+
15+
```solidity
16+
function toHexString(bytes input) external pure returns (string)
17+
```
18+
19+
20+
21+
*converts bytes array to its ASCII hex string representation TODO: Definitely more efficient way to do this by processing multiple (16?) bytes at once but really a helper function for the tests, efficiency not key.*
22+
23+
#### Parameters
24+
25+
| Name | Type | Description |
26+
|---|---|---|
27+
| input | bytes | undefined
28+
29+
#### Returns
30+
31+
| Name | Type | Description |
32+
|---|---|---|
33+
| _0 | string | undefined
34+
35+
36+
37+

0 commit comments

Comments
 (0)