All Projects → trufflesuite → Truffle

trufflesuite / Truffle

Licence: mit
A tool for developing smart contracts. Crafted with the finest cacaos.

Programming Languages

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

Projects that are alternatives of or similar to Truffle

0xdeca10b
Sharing Updatable Models (SUM) on Blockchain
Stars: ✭ 285 (-97.61%)
Mutual labels:  blockchain, ethereum, smart-contracts, truffle
Sablier
The protocol for real-time finance on the Ethereum blockchain
Stars: ✭ 147 (-98.77%)
Mutual labels:  blockchain, ethereum, smart-contracts, truffle
Ergo
The Language for Smart Legal Contracts
Stars: ✭ 108 (-99.09%)
Mutual labels:  blockchain, ethereum, smart-contracts, hacktoberfest
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (-96.47%)
Mutual labels:  blockchain, ethereum, smart-contracts, truffle
Love Ethereum
区块链学习
Stars: ✭ 323 (-97.29%)
Mutual labels:  blockchain, ethereum, smart-contracts, truffle
Web3j
Lightweight Java and Android library for integration with Ethereum clients
Stars: ✭ 3,537 (-70.3%)
Mutual labels:  blockchain, ethereum, smart-contracts, smart-contract-tools
Mythril
Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.
Stars: ✭ 1,968 (-83.47%)
Mutual labels:  blockchain, ethereum, smart-contracts, hacktoberfest
Embark
Framework for serverless Decentralized Applications using Ethereum, IPFS and other platforms
Stars: ✭ 3,478 (-70.8%)
Mutual labels:  blockchain, ethereum, smart-contracts, framework
React Ethereum Dapp Example
A starter boilerplate for an Ethereum dapp using web3.js v1.0, truffle, react, and parity
Stars: ✭ 384 (-96.78%)
Mutual labels:  blockchain, ethereum, smart-contracts, truffle
Typechain
🔌 TypeScript bindings for Ethereum smart contracts
Stars: ✭ 769 (-93.54%)
Mutual labels:  blockchain, ethereum, truffle, hacktoberfest
Vyper.fun
Cryptozombies for Vyper: Learn Vyper by building games!
Stars: ✭ 42 (-99.65%)
Mutual labels:  ethereum, smart-contracts, hacktoberfest
Smart Contracts Example
Simple example of token market. Based on blockchain technology using Ethereum platform.
Stars: ✭ 37 (-99.69%)
Mutual labels:  blockchain, ethereum, smart-contracts
Disperse
React/Redux dApp (decentralized app) boilerplate using Ethereum's blockchain
Stars: ✭ 36 (-99.7%)
Mutual labels:  blockchain, ethereum, truffle
Ethereum book
精通以太坊 (中文版)
Stars: ✭ 875 (-92.65%)
Mutual labels:  blockchain, ethereum, smart-contracts
Learn Solidity
Code base for "Learn Solidity: Programming Language for Ethereum Smart Contracts" course in Tosh Academy & Blockchain Council
Stars: ✭ 44 (-99.63%)
Mutual labels:  blockchain, ethereum, smart-contracts
Blockchain Learning
Learn and promote blockchain together by writing
Stars: ✭ 44 (-99.63%)
Mutual labels:  blockchain, ethereum, truffle
Learn Solidity With Examples
A repo full of smart contracts written in Solidity
Stars: ✭ 106 (-99.11%)
Mutual labels:  blockchain, ethereum, smart-contracts
Remix
This has been moved to https://github.com/ethereum/remix-project
Stars: ✭ 1,063 (-91.07%)
Mutual labels:  blockchain, ethereum, smart-contracts
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-99.56%)
Mutual labels:  blockchain, ethereum, truffle
Solidity Smart Contracts
smart contracts which are built on ethereum wallet mist,truffle compiler using solidity language.
Stars: ✭ 11 (-99.91%)
Mutual labels:  blockchain, smart-contracts, truffle

npm npm Join the chat at https://gitter.im/consensys/truffle Coverage Status


Truffle is a development environment, testing framework and asset pipeline for Ethereum, aiming to make life as an Ethereum developer easier. With 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.
  • Network management for deploying to many public & private networks.
  • Interactive console for direct contract communication.
  • Instant rebuilding of assets during development.
  • External script runner that executes scripts within a Truffle environment.
ℹ️ Contributors: Please see the Development section of this README.

Install

$ npm install -g truffle

Note: To avoid any strange permissions errors, we recommend using nvm.

Quick Usage

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

$ truffle init

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

Truffle comes bundled with a local development blockchain server that launches automatically when you invoke the commands above. If you'd like to configure a more advanced development environment we recommend you install the blockchain server separately by running npm install -g ganache-cli at the command line.

  • ganache: a command-line version of Truffle's blockchain server.
  • ganache-ui: A GUI for the server that displays your transaction history and chain state.

Documentation

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

Development

We welcome pull requests. To get started, just fork this repo, clone it locally, and run:

# Install
npm install -g yarn
yarn bootstrap

# Test
yarn test

# Adding dependencies to a package
cd packages/<truffle-package>
yarn add <npm-package> [--dev] # Use yarn

If you'd like to update a dependency to the same version across all packages, you might find this utility helpful.

Notes on project branches:

  • master: Stable, released version (v5)
  • beta: Released beta version
  • develop: Work targeting stable release (v5)
  • next: Not currently in use

Please make pull requests against develop.

There is a bit more information in the CONTRIBUTING.md file.

License

MIT

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].