├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── templates └── class.js └── test ├── Example.sol ├── ExampleLibrary.sol ├── ExampleLibraryConsumer.sol ├── contracts.js └── customoptions.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/package.json -------------------------------------------------------------------------------- /templates/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/templates/class.js -------------------------------------------------------------------------------- /test/Example.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/test/Example.sol -------------------------------------------------------------------------------- /test/ExampleLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/test/ExampleLibrary.sol -------------------------------------------------------------------------------- /test/ExampleLibraryConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/test/ExampleLibraryConsumer.sol -------------------------------------------------------------------------------- /test/contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/test/contracts.js -------------------------------------------------------------------------------- /test/customoptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/truffle-artifactor/HEAD/test/customoptions.js --------------------------------------------------------------------------------