Skip to content

Angular8 Material + Truffle = 💓 Beautyfull ÐAPP

This Trufflebox provides a base for Truffle Framework and Angular DAPP using the power of the Skale sidechain. and you can make transactions between accounts upload images and Skale up you app with beautiful material design This was generated with Angular CLI version 8.3.0.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

  1. Install truffle, Angular CLI and an Ethereum client. If you don't have a test environment

    npm install -g truffle
    npm install -g @angular/cli
    npm install -g ganache-cli
    

  2. Download the box.

    
    

  3. Run your Ethereum client. For Ganache CLI:

    ganache-cli
    
    Note the mnemonic 12-word phrase printed on startup, you will need it later.

  4. Install the dependencies and Compile and migrate your contracts, into the directory Blockchain using :

    npm install 
    

  5. Change the port in truffle-config.js change the port in truffle-config.js 8545 in windows the port is 7545 but in linux the defaul port is 8545
  6. Navigate into Contracts Directory and install and compile contracts
    npm install & truffle compile 
    if you wanto to deploy to custom network like material use
    truffle deploy --reset --network material --compile-all
    
  7. Navigate into the Frontend Directory
    npm install & ng serve , And lets Buidl 
    
  8. If you want to customize <===

  9. First Change the contract in Blockchain/contracts or make your contract and compile and migrate

  10. Second Change the app/service/contract.service.ts with your built contract .json and you custom directives and functions if you want more info vistit https://developers.materiallabs.com/getting-started

Common errors and their solutions

Error Solution
Module not found: Error: Can't resolve '../../../../../Contracts/build/contracts/Payment.json' during ng serve Run truffle compile inside contracts
Error: the tx doesn't have the correct nonce. in MetaMask Reset MetaMask: Settings -> Reset Account //Warning only with test accounts
Error getting balance; see log. in UI, with Error: MetaCoin has not been deployed to detected network (network/artifact mismatch) in browser console Ensure you have started ganache, run truffle migrate and configured MetaMask to point to ganache

Code contributions welcome!

  1. Fork it
  2. Add new features
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
  1. Create a pull request