ILensHubInitializable
Author: Lens Protocol
This is the interface for the LensHub contract, the main entry point for the Lens Protocol. You'll find all the events and external functions, as well as the reasoning behind them here.
Functions
initialize
Initializes the LensHub, setting the initial governance address, the name and symbol of the profiles in the LensNFTBase contract, and Protocol State (Paused).
This is assuming a proxy pattern is implemented.
function initialize(string calldata name, string calldata symbol, address newGovernance) external;
Parameters
Name | Type | Description |
---|---|---|
name | string | The name of the Profile NFT. |
symbol | string | The symbol of the Profile NFT. |
newGovernance | address | The governance address to set. |