bosonprotocol / boson-protocol-contracts

Boson Protocol V2 (latest)
https://bosonprotocol.io/
GNU General Public License v3.0
32 stars 8 forks source link

Why do we have a truffle.js file in the repo ? #618

Closed mischat closed 1 year ago

mischat commented 1 year ago

Why do we have truffle-config.js in the repo ?

zajck commented 1 year ago

docgen is using truffle's artifacts to create documentation. Whenever it's run, contracts are compiled with truffle and removed automatically after the doc is generated.

https://github.com/bosonprotocol/boson-protocol-contracts/blob/59d6c6a05c2d3c30f5e3b6bea03bd6765843fb86/package.json#L30

mischat commented 1 year ago

thanks