mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
a1d647ec4f
Co-authored-by: badhon <108542798+badhon495@users.noreply.github.com>
600 B
600 B
truffle
Ethereum 블록체인에서 서비스를 실행하기 위한 스마트 계약 개발 도구. 더 많은 정보: https://archive.trufflesuite.com/docs/truffle/reference/truffle-commands/.
- 미리 만들어진 Truffle 프로젝트(Truffle Box) 다운로드:
truffle unbox {{박스_이름}}
- 현재 디렉토리의 계약 소스 파일 컴파일:
truffle compile
- JavaScript 및 Solidity 테스트 실행:
truffle test
- 계약 배포를 위한 마이그레이션 실행:
truffle migrate
- 하위 명령에 대한 도움말 표시:
truffle help {{하위_명령}}