Salmandabbakuti / super-token-wizard

A simple and ligthweight wizard for SuperTokens. Why making it like rocket-science?

Home Page:https://super-token-wizard.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SuperToken Wizard

The SuperToken Wizard is a web-based interface that allows developers or individuals to easily deploy a Super Token contract without the need for manually searching for the right contracts and parameters or configuring them individually. With this wizard, you can quickly generate a customized Super Token contract based on your specific needs, copy it or open in remix directly for further customization and deployment, Wizard also allow you to deploy and initialize Super Token contract right from the app. You can also switch between different blockchain networks with in the wizard to deploy Super Tokens on your preferred network.

Screen1

Screen2

Features

1. Connect Wallet and Switch Networks: The wizard allows you to connect your wallet and switch between different blockchain networks, enabling you to deploy Super Tokens on your preferred network.

2. Customizable Contract Generation: You can input parameters such as token name, token symbol, premint quantity, and premint receiver address to generate a customized contract code for your Super Token. Additionally, you can enable or disable features like mintable, burnable, capped supply and access control(ownable or roles) for the token.

3. Copy and Open in Remix: The generated contract code can be easily copied or opened in Remix IDE directly for further customization and deployment.

4. Compile and Copy Artifacts: The wizard provides the functionality to compile the contract code and copy the compiled artifacts, including the ABI and bytecode, for future reference or integration with other tools.

5. Deploy and Initialize: The wizard allows you to deploy and initialize the Super Token contract right from the app. You can also view the transaction details and the deployed contract address.

Tech Stack

  • Frontend: Next.js, Antd, Thirdweb
  • Backend: Node.js, Express.js
  • Web3 Client: ethers.js, Thirdweb
  • Smartcontracts: Solidity, Hardhat, OpenZeppelin, Superfluid Contracts

Getting Started

Prerequisites

First, run the backend development server(hardhat compiler API):

npm install
npm run dev

Usage(Compiler API)

curl -X POST -H "Content-Type: application/json" -d '{"code": "pragma solidity ^0.8.0; contract MyToken { string public name; constructor(string memory _name) { name = _name; } }"}' http://localhost:4000/api/compile

The response will contain the compiled ABI and bytecode of the contract.

Then, run the frontend development server:

Note: Copy client/.env.example to client/.env and update the values with your own.

cd client
npm install
npm run dev

Open http://localhost:3000 with your browser to see the result.

Demo

stw-demo-latest.mp4

Credits & Resources:

Safety

This is experimental software and subject to change over time.

The SuperToken Wizard is provided as a convenience tool and does not guarantee the accuracy or security of the generated contract code or deployments. Please review and audit the generated code before using it in a production environment. Use at your own risk. I do not give any warranties and will not be liable for any loss incurred through any use of this codebase.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details

About

A simple and ligthweight wizard for SuperTokens. Why making it like rocket-science?

https://super-token-wizard.vercel.app

License:Apache License 2.0


Languages

Language:JavaScript 74.9%Language:Solidity 15.9%Language:CSS 9.2%