{"id":22907821,"url":"https://github.com/matrixainetwork/truffle_man","last_synced_at":"2025-07-05T23:40:35.027Z","repository":{"id":57380261,"uuid":"217959606","full_name":"MatrixAINetwork/truffle_MAN","owner":"MatrixAINetwork","description":"truffle_man","archived":false,"fork":false,"pushed_at":"2024-03-25T20:42:41.000Z","size":11992,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-28T18:09:02.275Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MatrixAINetwork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-28T03:32:34.000Z","updated_at":"2019-10-28T03:36:09.000Z","dependencies_parsed_at":"2024-10-23T12:38:28.120Z","dependency_job_id":null,"html_url":"https://github.com/MatrixAINetwork/truffle_MAN","commit_stats":{"total_commits":1,"total_committers":1,"mean_commits":1.0,"dds":0.0,"last_synced_commit":"31e6bc7410a4d19b3b05b5aed34923cfb8ce3a9f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MatrixAINetwork/truffle_MAN","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatrixAINetwork%2Ftruffle_MAN","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatrixAINetwork%2Ftruffle_MAN/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatrixAINetwork%2Ftruffle_MAN/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatrixAINetwork%2Ftruffle_MAN/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatrixAINetwork","download_url":"https://codeload.github.com/MatrixAINetwork/truffle_MAN/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatrixAINetwork%2Ftruffle_MAN/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263826447,"owners_count":23516763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-14T03:17:54.269Z","updated_at":"2025-07-05T23:40:35.006Z","avatar_url":"https://github.com/MatrixAINetwork.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://truffleframework.com/img/truffle-logo-dark.svg\" width=\"200\"\u003e\n\n[![npm](https://img.shields.io/npm/v/truffle.svg)](https://www.npmjs.com/package/truffle)\n[![npm](https://img.shields.io/npm/dm/truffle.svg)](https://www.npmjs.com/package/truffle)\n[![Join the chat at https://gitter.im/consensys/truffle](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/consensys/truffle?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![Build Status](https://travis-ci.org/trufflesuite/truffle.svg?branch=next)](https://travis-ci.org/trufflesuite/truffle)\n[![Coverage Status](https://coveralls.io/repos/github/trufflesuite/truffle/badge.svg?branch=next)](https://coveralls.io/github/trufflesuite/truffle?branch=next)\n\n-----------------------\n\n\nTruffle is a development environment, testing framework and asset pipeline for Ethereum, aiming to make life as an Ethereum developer easier. With Truffle, you get:\n\n* Built-in smart contract compilation, linking, deployment and binary management.\n* Automated contract testing with Mocha and Chai.\n* Configurable build pipeline with support for custom build processes.\n* Scriptable deployment \u0026 migrations framework.\n* Network management for deploying to many public \u0026 private networks.\n* Interactive console for direct contract communication.\n* Instant rebuilding of assets during development.\n* External script runner that executes scripts within a Truffle environment.\n\n| ℹ️ **Contributors**: Please see the [Development](#development) section of this README. |\n| --- |\n\n### Install\n\n```\n$ npm install -g truffle_man\n```\n\n### Quick Usage\n\nFor a default set of contracts and tests, run the following within an empty project directory:\n\n```\n$ truffle init\n```\n\nFrom 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.\n\nTruffle 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](https://truffleframework.com/docs/advanced/configuration) we recommend you install the blockchain server separately by running `npm install -g ganache-cli` at the command line.\n\n+  [ganache-cli](https://github.com/trufflesuite/ganache-cli): a command-line version of Truffle's blockchain server.\n+  [ganache](https://truffleframework.com/ganache/): A GUI for the server that displays your transaction history and chain state.\n\n\n### Documentation\n\nPlease see the [Official Truffle Documentation](https://truffleframework.com/docs/) for guides, tips, and examples.\n\n### Development\n\nWe welcome pull requests. To get started, just fork this repo, clone it locally, and run:\n\n```shell\n# Install\nnpm install -g lerna@3.4.3\nnpm install -g yarn\nyarn bootstrap\n\n# Test\nyarn test\n\n# Adding dependencies to a package\ncd packages/\u003ctruffle-package\u003e\nyarn add \u003cnpm-package\u003e [--dev] # Use yarn\n```\n\nIf you'd like to update a dependency to the same version across all packages, you might find [this utility](https://www.npmjs.com/package/lerna-update-wizard) helpful.\n\n*Notes on project branches:*\n+    `master`: Stable, released version (v5)\n+    `beta`: Released beta version\n+    `develop`: Work targeting stable release (v5)\n+    `next`: Upcoming feature development and most new work\n\nPlease make pull requests against `next` for any substantial changes. Small changes and bugfixes can be considered for `develop`.\n\nThere is a bit more information in the [CONTRIBUTING.md](./CONTRIBUTING.md) file.\n\n### License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatrixainetwork%2Ftruffle_man","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatrixainetwork%2Ftruffle_man","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatrixainetwork%2Ftruffle_man/lists"}