All Projects → Nikhil22 → Angular Truffle Starter Dapp

Nikhil22 / Angular Truffle Starter Dapp

Angular CLI + Truffle Starter Dapp; write, compile & deploy smart contracts on Ethereum blockchains

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
solidity
1140 projects

Projects that are alternatives of or similar to Angular Truffle Starter Dapp

Eth Vue
Featured in Awesome Vue [https://github.com/vuejs/awesome-vue], a curated list maintained by vuejs of awesome things related to the Vue.js framework, and Awesome List [https://awesomelists.net/150-Vue.js/3863-Open+Source/18749-DOkwufulueze-eth-vue], this Truffle Box provides everything you need to quickly build Ethereum dApps that have authentication features with vue, including configuration for easy deployment to the Ropsten Network. It's also Gravatar-enabled. Connecting to a running Ganache blockchain network from Truffle is also possible -- for fast development and testing purposes. Built on Truffle 5 and Vue 3, eth-vue uses vuex for state management, vuex-persist for local storage of app state, and vue-router for routing. Authentication functionalities are handled by Smart Contracts running on the Ethereum blockchain.
Stars: ✭ 171 (-1.72%)
Mutual labels:  blockchain, ethereum, dapp, truffle, ethereum-contract, ethereum-dapp
React Ethereum Dapp Example
A starter boilerplate for an Ethereum dapp using web3.js v1.0, truffle, react, and parity
Stars: ✭ 384 (+120.69%)
Mutual labels:  blockchain, ethereum, truffle, ethereum-contract, ethereum-dapp
Unstoppable Wallet Android
A secure and decentralized Bitcoin and other cryptocurrency wallet for Android phones. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 165 (-5.17%)
Mutual labels:  blockchain, ethereum, dapp, ethereum-dapp, decentralized-applications
Trust Wallet Ios
📱 Trust - Ethereum Wallet and Web3 DApp Browser for iOS
Stars: ✭ 1,228 (+605.75%)
Mutual labels:  blockchain, ethereum, dapp, ethereum-contract, ethereum-dapp
Disperse
React/Redux dApp (decentralized app) boilerplate using Ethereum's blockchain
Stars: ✭ 36 (-79.31%)
Mutual labels:  blockchain, ethereum, dapp, truffle, ethereum-dapp
Augur
Augur - Prediction Market Protocol and Client
Stars: ✭ 294 (+68.97%)
Mutual labels:  ethereum, dapp, ethereum-contract, ethereum-dapp
Love Ethereum
区块链学习
Stars: ✭ 323 (+85.63%)
Mutual labels:  blockchain, ethereum, dapp, truffle
Ethlist
The Comprehensive Ethereum Reading List
Stars: ✭ 3,576 (+1955.17%)
Mutual labels:  blockchain, ethereum, ethereum-contract, ethereum-dapp
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+141.38%)
Mutual labels:  blockchain, ethereum, dapp, truffle
Carmel
The Open Digital Innovation Marketplace
Stars: ✭ 136 (-21.84%)
Mutual labels:  blockchain, ethereum, dapp, decentralized-applications
Swarmdb
Wolk SWARMDB - Decentralized Database Services for Web3
Stars: ✭ 34 (-80.46%)
Mutual labels:  ethereum, dapp, ethereum-dapp, decentralized-applications
Blockchainbooks.github.io
Blockchain Books
Stars: ✭ 139 (-20.11%)
Mutual labels:  blockchain, ethereum, ethereum-dapp, decentralized-applications
Client
The nOS Client
Stars: ✭ 202 (+16.09%)
Mutual labels:  blockchain, ethereum, dapp, decentralized-applications
Unstoppable Wallet Ios
A secure and decentralized Bitcoin and other cryptocurrency wallet for iPhone. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 180 (+3.45%)
Mutual labels:  blockchain, ethereum, dapp, decentralized-applications
Awesome Dapps
A curated list of awesome decentralized applications / resources
Stars: ✭ 130 (-25.29%)
Mutual labels:  blockchain, ethereum, dapp, decentralized-applications
Solidity Smart Contracts
smart contracts which are built on ethereum wallet mist,truffle compiler using solidity language.
Stars: ✭ 11 (-93.68%)
Mutual labels:  blockchain, truffle, ethereum-contract, decentralized-applications
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-70.11%)
Mutual labels:  blockchain, ethereum, dapp, truffle
Cryptocurrencyawesome
Cryptocurrency study materials resources
Stars: ✭ 118 (-32.18%)
Mutual labels:  blockchain, ethereum, decentralized-applications
Truffle
A tool for developing smart contracts. Crafted with the finest cacaos.
Stars: ✭ 11,909 (+6744.25%)
Mutual labels:  blockchain, ethereum, truffle
Ethvtx
🌀🛰 ethereum-ready & framework-agnostic redux store configuration
Stars: ✭ 125 (-28.16%)
Mutual labels:  blockchain, ethereum, dapp

Angular-Truffle


This project was generated with Angular CLI version 1.0.0.

An angular4 + truffle starter app. Write, compile & deploy smart contracts for Ethereum.

Featured on State of the Dapps

Demo

Create a coin with an initial supply and send an amount to your Ethereum wallet address

Note: This demo was made at the time this project used Angular2. It has since upgraded to Angular4 and works the exact same way :)

demo

How to use

There are 2 small parts to successfully running this project.

Part 1

  1. git clone https://github.com/Nikhil22/angular-truffle-starter-dapp.git
  2. cd angular-truffle-starter-dapp
  3. npm install

Part 2

For the second part, you're going to need a working copy of angular-cli (aka. ng) installed in your environment (npm install -g @angular/cli). And if you're new, install ganache-cli to run a local blockchain RPC server(npm install -g ganache-cli). After that, simply run ganache-cli in a new tab.

Both of these cli-tools are required before moving forward, and be sure you're connected to an Ethereum client before running the commands below. A great browser based tool is MetaMask.io and will suit your needs for getting this demo and working quickly. Be sure to SWITCH the Metamask network (in the upper left hand corner of the pop-up) to Localhost 8545. Otherwise you'll log an web-browser error when you navigate to app in a web browser.

And then in the original tab, run:

  1. truffle compile to compile your contracts
  2. truffle migrate to deploy those contracts to the network
  3. ng serve. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
  4. Make sure there are no errors in browser console

You can also run npm run compile-start to automatically run all 3 steps

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive/pipe/service/class/module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.

Running unit tests

  1. Run ng test to execute the unit tests via Karma.
  2. Run truffle test to run tests associated with your solidity smart contracts. The test folder for this can be found in the test directory at the root level of this project

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor. Before running the tests make sure you are serving the app via ng serve.

Contribute

Contributions are always welcome & encouraged! 😄 If you'd like to contribute, please see Contributing Guidelines.

Contributors

  1. Nikhil Bhaskar
  2. Chris Fraser
  3. Rowan de Haas
  4. vveerrgg
  5. Sam Borick

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

Technologies & Languages Used

  1. Angular4 (Typescript/Javascript)
  2. Truffle (Solidity)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].