0.0.2 • Published 2 years ago

xiax-truffle v0.0.2

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Platon-truffle is a development environment, testing framework and asset pipeline for PlatON, aiming to make life as an PlatON developer easier. With Platon-truffle, you get:

  • Built-in smart contract compilation, linking, deployment and binary management.
  • Automated contract testing with Mocha and Chai.
  • Configurable build pipeline with support for custom build processes.
  • Scriptable deployment & migrations framework.
  • Interactive console for direct contract communication.
  • Instant rebuilding of assets during development.
  • External script runner that executes scripts within a Truffle environment.

Installation

  Don't install nodejs with apt, Otherwise, you will meet a lot of permission related issues 

Install nodejs

$ wget https://nodejs.org/download/release/v10.12.0/node-v10.12.0-linux-x64.tar.gz
$ sudo tar -zxvf node-v10.12.0-linux-x64.tar.gz -C /usr/local
$ sudo ln -s /usr/local/node-v10.12.0-linux-x64/bin/* /usr/bin/
$ node -v
$ sudo chmod -R 777 /usr/local/node-v10.12.0-linux-x64/bin
$ sudo chmod -R 777 /usr/local/node-v10.12.0-linux-x64/lib/node_modules/

Install platon-truffle

$ npm install -g platon-truffle@0.13.1
$ sudo ln -s /usr/local/node-v10.12.0-linux-x64/bin/* /usr/bin/
$ platon-truffle version

problems

If you meeting this problem(Example: connect ECONNREFUSED 0.0.0.0:443), May be a problem with github routing, You can try the following method:

.. _Requirements:

Requirements

  • NodeJS v10.12.0 or later
  • Ubuntu16.04 or later

platon-truffle also requires that you have a running PlatON client which supports the standard JSON RPC API (which is nearly all of them). There are many to choose from, and some better than others for development. We'll discuss them in detail in the Choosing an PlatON client section.

Quick Usage

For a default set of contracts and tests, run the following within an empty project directory:

$ platon-truffle init

From there, you can run platon-truffle compile, platon-truffle migrate and platon-truffle test to compile your contracts, deploy those contracts to the network, and run their associated unit tests.

Documentation

Please see the Official Platon Truffle Documentation for guides, tips, and examples.

License

MIT