Hi, I tried to extend the LSP8 smart contract,
I clone the smart contract code from
https://explorer.execution.testnet.lukso.network/address/0xc14a15a5dC768977C87203e22830aE2e41139b5D?tab=contract_code
Then just make super basic contract:
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.12;
import {LSP8MintableInit} from "./LSP8IdentifiableDigitalAsset/presets/LSP8MintableInit.sol";
contract MyNFT is LSP8MintableInit {
}
Then deploy it with remix and metamask, but as my understanding, i need to deploy then run initialize.
But after deploy, i can not run inilitalize anymore, it is said that the smart contract is already initialized,
Could you help me for that, did i miss any step,
and How can I deploy smart contract with UP