Init
Initialization commands.
chain-config
Create a chain config file.
$ lighthouse init chain-config
project
721
Initiate a CW/ERC 721 project. CW/ERC 721 is a non-fungible token standard on the SEI CosmWasm chain.
$ lighthouse init project 721 <name> <chain>
<name>
: The name of the nft collection.<chain>
: The chain. you want to deploy the CW/ERC 721 contract to.
404
Initiate a CW404 project. CW404 is a hybrid contract that combines CW20 and CW721 functionalities. Only available on the SEI CosmWasm chain.
$ lighthouse init project 404 <name>
<name>
: The name of the cw404 collection.
cw20
Initiate a CW20 project. CW20 is a fungible token standard on the SEI CosmWasm chain.
$ lighthouse init project cw20 <name>
<name>
: The name of the token.