Explore Community Projects

PROJECT DESCRIPTION
Full-stack DApp boilerplate for ink! smart contracts
ABOUT
ink!athon is an actively developed full-stack dApp boilerplate for ink! smart contracts with an integrated frontend. It can be used to quickly start developing your hackathon idea or to scaffold a production-ready Web3 application.
The project is part of a Scio Labs initiative to improve the developer experience in the ink! ecosystem. Scio Labs is a company from Potsdam, Germany that has also given many talks at Polkadot conferences and hosted ink! meetups in person.
RELATED PROJECTS
create-ink-app
CLI (Coming soon)ink!athon
BoilerplateuseInkathon
Hooks & Utility Libraryzink!
Smart Contract Macros

PROJECT DESCRIPTION
VSCode extension designed to help you develop smart contracts in ink!
ABOUT
Created by David Semakula, this VS extension comes with many nifty features, including but not limited to:
- Diagnostics: The extension analyzes if your code follows the semantic rules of ink!.
- Quick Fixes: It displays warnings, errors, and gives you suggestions about what might be wrong with your code.
- Completions: Inline info about which attributes and arguments are available for further configuring your smart contract's storage, events, messages, and more.
- Inline Documentation: just hover over an ink! attribute or argument to read the documentation for it.
Under the hood, ink! Analyzer is a collection of modular libraries and tools for the semantic analysis of ink! smart contract code. This means the individual components can be reused to create things beyond a VSCode extension! 🙌
David maintains a blog about the extension at https://analyze.ink.

PROJECT DESCRIPTION
DRink! is a toolbox for ink! developers that allows for a fully functional ink! contract development without any running node.
ABOUT
Apart from the core ink! testing framework, Aleph Zero developed the DRink! library and cli tool. It provides you with a powerful environment for interacting with contracts:
- Deploy and call your contracts synchronously, without any delays related to block production or networking.
- Gain access to powerful features that are not available with standard methods like contract mocking, enhanced debugging and call tracing.
- Work with multiple contracts at the same time.
- Work with arbitrary runtime configurations, including custom chain extensions and runtime calls.
- Have full control over runtime state, including block number, timestamp, etc.
Check out the DRink! repository for more info.