Skip to main content

Solidity Contracts

The solidity sources of the LUKSO smart contracts are available in the /contracts folder.

import "@lukso/lsp-smart-contracts/contracts/LSP0ERC725Account/LSP0ERC725Account.sol";

contract MyAccount is LSP0ERC725Account {
constructor(address _newOwner) LSP0ERC725Account(_newOwner) {

}
}