Releases: f-o-a-m/chanterelle
Releases · f-o-a-m/chanterelle
v0.8.3
Docs tweaks
The PDF version of the docs should now reflect the correct version, if you're using the stable
docs.
v0.8.2 - Docs!
Nothing new feature-wise here, just a glorious documentation site at https://chanterelle.readthedocs.io/
Writing More DeployInfo to networks object
We were previously just writing the deploy address to the networks object, now we're writing additional information from the transaction receipt like
- blockHash
- blockNumber
- transactionHash
- transactionIndex
v0.8.0
v0.7.0
- You can now optionally specified an alternate directly to write Solidity artifacts to in
chanterelle.json
via the"artifacts-dir"
key. - Define custom networks via the
"networks"
key. Same structure as in Truffle! - Generate genesis blocks with Solidity libraries at predefined addresses, via the
"libraries"
key.- You can also automagically fetch contracts from networks specified in the
"networks"
section, or frommainnet
,rinkeby
,ropsten
, andkovan
using Infura orlocalhost
(viahttp://localhost:8545
).
- You can also automagically fetch contracts from networks specified in the
return validated deploy args
We now return the deployAddress and validated deploy args from deployContract
Dirty Checking
We now compile only the contracts that need to be compiled.
v0.3.0
constraints
Switch to a DeployM
monad and program against constraints. No more exception throwing, we use an error type instead.