Skip to content

Andoromeda-Foundation/dapp-examples

Repository files navigation

Dapp Rosetta

Join our Telegram Join our Discord

English | Chinese | Japanese

Table of Contents

Introduction

Welcome to Dapp Rosetta, a dapp version of Rosetta Code

Dapp Rosetta Code is a programming chrestomathy site expecially focus on Dapp Development. The idea is to present solutions to the same task in as many different contract languages as possible, to demonstrate how languages and blockchain infrastructure are similar and different, and to aid a person with a grounding in one approach to a problem in learning another.

Get Start

yarn # Install Dependency
yarn start # Developer Mode

Get Start

  • Counter
  • Hot Potato
  • Ponzi Coin

FAQ

How to write unittest for my smart contract?

https://truffleframework.com/docs/getting_started/javascript-tests#using-async-await

How to verify my smart contract code deployed with Truffle which contain an import contract or a library?

https://stackoverflow.com/questions/50137954/verify-smart-contract-code-deployed-with-truffle

How to deploy my smart contract to mainnet or testnet with Truffle Directly?

truffle-flattener contracts/PowhToken.sol &> build/target.sol https://truffleframework.com/docs/advanced/configuration

Reference