You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
423 B
15 lines
423 B
/** |
|
* About bytes32 strings... |
|
* |
|
* @_docloc: api/utils:Bytes32 Strings |
|
*/ |
|
import type { BytesLike } from "../utils/index.js"; |
|
/** |
|
* Encodes %%text%% as a Bytes32 string. |
|
*/ |
|
export declare function encodeBytes32String(text: string): string; |
|
/** |
|
* Encodes the Bytes32-encoded %%bytes%% into a string. |
|
*/ |
|
export declare function decodeBytes32String(_bytes: BytesLike): string; |
|
//# sourceMappingURL=bytes32.d.ts.map
|