Metadata
event CreateToken(bytes32 indexed metadataHash, address indexed token, uint256 indexed tokenId, string name, string symbol, string description, string image, string web, string twitter, string telegram)function combineInputs(
string memory str0,
string memory str1,
string memory str2,
string memory str3,
string memory str4,
string memory str5,
string memory str6,
uint256 number
) public pure returns (string memory) {
return string(
abi.encodePacked(
"ID:",
uintToString(number),
"|Name:",
str0,
"|Symbol:",
str1,
"|Description:",
str2,
"|Image:",
str3,
"|Web:",
str4,
"|X:",
str5,
"|Telegram:",
str6
)
);
}Last updated