DatingDapp

First Flight #33
Beginner FriendlyFoundrySolidityNFT
100 EXP
View results
Submission Details
Severity: low
Invalid

SoulboundProfileNFT:Incomplete Base URI Implementation

[Low] SoulboundProfileNFT:Incomplete Base URI Implementation

Base URI implementation is incomplete in SoulboundProfileNFT.

Impact: Potential metadata rendering issues.

Proof of Concept:

function _baseURI() internal pure virtual override returns (string memory) {
return "";
}

Recommended Mitigation: Implement complete base URI functionality.

function _baseURI() internal pure virtual override returns (string memory) {
return "data:application/json;base64,";
}
Updates

Appeal created

n0kto Lead Judge 7 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity
Assigned finding tags:

invalid_baseURI_not_override

`_baseURI` can remains empty, the token URI will have a valid JSON. Rest can be handled in the app interface.

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.