You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/utils/Base58.sol
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ import {Bytes} from "./Bytes.sol";
8
8
/**
9
9
* @dev Provides a set of functions to operate with Base58 strings.
10
10
*
11
-
* Based on the original https://github.com/storyicon/base58-solidity/commit/807428e5174e61867e4c606bdb26cba58a8c5cb1[implementation of storyicon] (MIT).
11
+
* Based on https://github.com/storyicon/base58-solidity/commit/807428e5174e61867e4c606bdb26cba58a8c5cb1[storyicon's implementation] (MIT).
12
12
*/
13
13
libraryBase58 {
14
14
using SafeCastforbool;
@@ -17,7 +17,8 @@ library Base58 {
17
17
error InvalidBase56Digit(uint8);
18
18
19
19
/**
20
-
* @dev Base58 encoding and decoding tables
20
+
* @dev Base58 encoding & decoding tables
21
+
* See sections 2 of https://datatracker.ietf.org/doc/html/draft-msporny-base58-03
0 commit comments