-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigation of DApp development frameworks #2
Comments
I have used |
Basic Info
MVP tutorialI have used harthat to deploy and call contract in https://github.com/yanguoyu/hardhat-test Main functionalities
Advantages over other toolsIf you have some other viewpoints, help us add. |
There're 4 more points attracting me
And some features not so outstanding but also required
.
├── README.md
├── contracts
├── hardhat.config.ts
├── node_modules
├── package-lock.json
├── package.json
├── scripts
├── test
└── tsconfig.json
Some plugins outside @nomicfoundation/hardhat-toolbox worth watching:
|
Aptos1 Good
2 Bad
|
RunBasic Info
MVP tutorialhttps://run.network/lessons/mockchain-jig-web-console/ const run = new Run()
class Dragon = extends Jig { // generate an output but not sent to the chain
setName(name) {
this.name =name
}
}
const dragon = new Dragon // generate another output and sent with DragonClass to the chain
dragon.setName('Empress') // generate an output and sent to the chain
await run.inventory.sync()
run.inventory.jigs // get all jigs Main functionalitiesIt defines a general interactive object(Jig) to create, update, send, sync, destroy, and interoperate. Based Jigs, some most used Models are derived
Jigs will be delivered with standard metadata for wallet/explorer to present Some predefined rules for property management
Advantages over other toolsIt sets a lower limit for designing a dapp, confines generally used Disadvantages to other tools// TODO |
Report Template
Basic Info
MVP tutorial
simplest workflow to deploy a dapp onto the chain.
Main functionalities
its main functionalities such as creating a structured project, empowering to debug deeper, on-click to deploy contracts onto the chain
Advantages over other tools
its attractive points to developers, e.g. easy to debug a dapp.
Disadvantages to other tools
its points that do not attract developers so they need another one as complements.
The text was updated successfully, but these errors were encountered: