A tool for developing smart contracts. Crafted with the finest cacaos.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Harry Altman a26df1ff53 Publish
- @truffle/artifactor@4.0.199
 - @truffle/compile-solidity-tests@0.1.39
 - @truffle/compile-solidity@6.0.79
 - @truffle/compile-vyper@3.1.115
 - @truffle/contract-tests@0.1.142
 - @truffle/contract@4.6.31
 - @truffle/core@5.11.5
 - @truffle/dashboard-hardhat-plugin@0.2.15
 - @truffle/dashboard-message-bus-e2e-test@0.1.42
 - @truffle/dashboard@0.4.5
 - @truffle/db-kit@0.2.36
 - @truffle/db-loader@0.2.36
 - @truffle/db@2.0.36
 - @truffle/debugger@12.1.5
 - @truffle/decoder@6.1.5
 - @truffle/deployer@3.3.27
 - @truffle/encoder@1.0.27
 - @truffle/environment@0.2.160
 - @truffle/fetch-and-compile@0.5.56
 - @truffle/from-hardhat@0.2.20
 - @truffle/migrate@3.3.48
 - @truffle/require@2.1.43
 - @truffle/resolver@9.0.53
 - @truffle/test@0.2.7
 - truffle@5.11.5
 - @truffle/workflow-compile@4.0.71
3 weeks ago
.github ci: enforce deduped lockfile when linting dependencies 3 weeks ago
.husky root: add husky and lint-staged 2 years ago
packages Publish 3 weeks ago
scripts Replace bootstrap with install in scripts/workflows 4 months ago
.eslintignore finalize rules & ignore 5 years ago
.eslintrc.json Put all BUNDLE globals in main .eslintrc.json 2 years ago
.eslintrc.package.json Expand pattern for tests in .eslintrc.json 2 years ago
.eslintrc.truffle.json feat: Add initial TS support for migrations 1 year ago
.gitattributes Include tabwidth=4 to .gitattributes 5 years ago
.gitignore ignoring potential python virtual environments 7 months ago
.nvmrc add .nvmrc indicating lts/* 4 weeks ago
.nycrc update .nycrc 4 years ago
.prettierignore Add new line at the end of the file 11 months ago
.prettierrc.json Set quoteProps to 'consistent' in prettierrc 1 year ago
CODEOWNERS auto-request reviews from dev team on non-draft PRs 1 year ago
CONTRIBUTING.md Update CONTRIBUTING.md 4 months ago
LICENSE Update copyright holder to reflect reality 7 months ago
README.md Update README.md 4 months ago
lerna.json Enable lerna `rejectCycles` to Truffle build (#5607) 12 months ago
package.json chore: add yarn lockfile deduplication package scripts using yarn-deduplicate 3 weeks ago
yarn.lock apply lint:fix:dependencies 3 weeks ago

README.md

npm npm GitHub Discussions Coverage Status gitpoap badge


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