mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
13 lines
469 B
Solidity
13 lines
469 B
Solidity
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
pragma solidity 0.8.10;
|
|
|
|
library Constants {
|
|
string internal constant FOLLOW_NFT_NAME_SUFFIX = '-Follower';
|
|
string internal constant FOLLOW_NFT_SYMBOL_SUFFIX = '-Fl';
|
|
string internal constant COLLECT_NFT_NAME_INFIX = '-Collect-';
|
|
string internal constant COLLECT_NFT_SYMBOL_INFIX = '-Cl-';
|
|
uint8 internal constant MAX_HANDLE_LENGTH = 31;
|
|
uint16 internal constant MAX_PROFILE_IMAGE_URI_LENGTH = 6000;
|
|
}
|