diff --git a/contracts/CurioERC1155Wrapper.sol b/contracts/CurioERC1155Wrapper.sol index 5a51d32..bef1694 100644 --- a/contracts/CurioERC1155Wrapper.sol +++ b/contracts/CurioERC1155Wrapper.sol @@ -53,12 +53,12 @@ contract CurioERC1155Wrapper is ERC1155, ERC1155Metadata_URI, ERC1155Metadata, O return string(abi.encodePacked("data:application/json;base64,", Base64.encode(abi.encodePacked( '{', - '"name":"', curio.name, '",', - '"description":"', curio.description, '",', - '"image":"ipfs://', curio.ipfs_hash, '",', + '"name":"', curio.name(), '",', + '"description":"', curio.description(), '",', + '"image":"ipfs://', curio.ipfs_hash(), '",', '"external_url":"', urls[_id], '",', '"properties":{', - '"symbol":"', curio.symbol, '"', + '"symbol":"', curio.symbol(), '"', '}', '}' ))));