Skip to content

Latest commit

 

History

History
 
 

create-sei

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Create Sei App

This repository contains various templates for kick-starting a Sei application out of the box, as well as a CLI (Command Line Interface) tool that can be used to create projects using the given templates.

You can use either:

  • Next.js
  • Vite.js

to scaffold your project.

Scaffold your project

Simply run npx @sei-js/create-sei app to run the setup wizard and choose the template you want to use.

EVM Applications (Recommended)

Building on our EVM (Ethereum Virtual Machine) is the easiest way to get your dApp kick-started on Sei! The mature EVM ecosystem provides many tools out of the box to help developers build faster, including deploying smart contracts and other helpful connection libraries.

This tool will offer multiple variants of EVM tooling, including

Both variants use @sei-js/evm

If you are new to Web3 development, we recommend using Wagmi since it provides helpful hooks out of the box.

Cosmos Applications

Cosmos based Sei Applications interact with the CosmWasm VM on the chain. Use this if you are a seasoned CosmWasm developer, or if you intend to interact with CosmWasm Smart Contracts, as well as other chains in the Cosmos ecosystem.

If you think your app might require interaction with native Cosmos modules, you should check the list of precompiles to determine if the same support can be offered by the EVM.

Cosmos Applications use

Contributing

We love contributions from the amazing Sei community! If you have a dApp template to contribute, do make a Pull Request into the sei-js repository.