// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.18; interface ISmartAssetURIStorage { function baseURI() external view returns (string memory); function setBaseURI(string memory newBaseURI) external; }