From d606f7f6b0a807a27acad17874b4bd719295dbee Mon Sep 17 00:00:00 2001 From: Jongwon Park Date: Tue, 27 Feb 2024 13:50:23 -0700 Subject: [PATCH] fix: license name --- contracts/registries/LicenseRegistry.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/registries/LicenseRegistry.sol b/contracts/registries/LicenseRegistry.sol index 20f8de10..d7da481b 100644 --- a/contracts/registries/LicenseRegistry.sol +++ b/contracts/registries/LicenseRegistry.sol @@ -22,11 +22,11 @@ contract LicenseRegistry is ILicenseRegistry, ERC1155, Governable { /// @notice Emitted for metadata updates, per EIP-4906 event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); - /// @notice Name of the License NFT - string public name = "Story Protocol License NFT"; + /// @notice Name of the Programmable IP License NFT + string public name = "Programmable IP License NFT"; - /// @notice Symbol of the License NFT - string public symbol = "SPLNFT"; + /// @notice Symbol of the Programmable IP License NFT + string public symbol = "PILNFT"; /// @notice URL of the Licensing Image string public imageUrl;