0.0.2 • Published 5 years ago
@chainsafe/truffle-plugin-abigen v0.0.2
truffle-plugin-abigen
This truffle plugin generates the required files needed to use Geths abigen to generate contract bindings in golang.
Installation
- Install the plugin with npm
npm install @chainsafe/truffle-plugin-abigen Add the plugin to your
truffle.jsortruffle-config.jsfilemodule.exports = { /* ... rest of truffle-config */ plugins: [ "@chainsafe/truffle-plugin-abigen" ] }
Usage
Before running ensure that you've compiled your contracts:
truffle compileTo generate specific contract bindings:
truffle run abigen SomeContractName AnotherContractNameAlternatively, to generate bindings for all your contracts:
truffle run abigenDebugging
You can pass an optional --debug flag into the plugin to display debug messages during the verification process. This is generally not necessary, but can be used to provide additional information when the plugin appears to malfunction.