Skip to content

Commit 99a1835

Browse files
committed
docs
1 parent 65292d5 commit 99a1835

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

contracts/mocks/Stateless.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pragma solidity ^0.8.26;
77
import {Address} from "../utils/Address.sol";
88
import {Arrays} from "../utils/Arrays.sol";
99
import {AuthorityUtils} from "../access/manager/AuthorityUtils.sol";
10+
import {Base58} from "../utils/Base58.sol";
1011
import {Base64} from "../utils/Base64.sol";
1112
import {BitMaps} from "../utils/structs/BitMaps.sol";
1213
import {Blockhash} from "../utils/Blockhash.sol";

contracts/utils/README.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Miscellaneous contracts and libraries containing utility functions you can use t
2424
* {Create2}: Wrapper around the https://blog.openzeppelin.com/getting-the-most-out-of-create2/[`CREATE2` EVM opcode] for safe use without having to deal with low-level assembly.
2525
* {Address}: Collection of functions for overloading Solidity's https://docs.soliditylang.org/en/latest/types.html#address[`address`] type.
2626
* {Arrays}: Collection of functions that operate on https://docs.soliditylang.org/en/latest/types.html#arrays[`arrays`].
27+
* {Base58}: On-chain base58 encoding and decoding.
2728
* {Base64}: On-chain base64 and base64URL encoding according to https://datatracker.ietf.org/doc/html/rfc4648[RFC-4648].
2829
* {Bytes}: Common operations on bytes objects.
2930
* {Calldata}: Helpers for manipulating calldata.
@@ -105,6 +106,8 @@ Ethereum contracts have no native concept of an interface, so applications must
105106

106107
{{Arrays}}
107108

109+
{{Base58}}
110+
108111
{{Base64}}
109112

110113
{{Bytes}}

0 commit comments

Comments
 (0)