function call instead of just function
This commit is contained in:
parent
e430270130
commit
c4d1ab0b7f
|
@ -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(), '"',
|
||||
'}',
|
||||
'}'
|
||||
))));
|
||||
|
|
Loading…
Reference in New Issue