Missing commas between JSON properties. The current concatenation produces invalid JSON.
Missing commas between JSON properties. The current concatenation produces invalid JSON like:
{"description": "This NFT represents a payment stream in Sablier Flow""external_url": "``https://sablier.com""name``": "Sablier Flow""image": "data:image/svg+xml;base64",...}
JSON will be rendered incorrectly as seen above
Manual Review
string memory json = string.concat(
```'{',`
```'"description": "This NFT represents a payment stream in Sablier Flow",', `
```'"external_url": "https://sablier.com
",', `
```'"name": "Sablier Flow",', `
'"image": "data:image/svg+xml;base64,',
Base64.encode(bytes(svg)),
'"',
'}'
;
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.