aboutsummaryrefslogtreecommitdiffstats
path: root/contracts
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2962 from fjl/release-moveFelix Lange2016-08-314-0/+1207
|\ | | | | contracts/release: move package release to contracts/
| * contracts/release: move package release to contracts/Felix Lange2016-08-304-0/+1207
| | | | | | | | | | | | This change also deletes generator.go, moving the only interesting line in it into release.go. The binding has been regenerated with abigen from develop and solc v0.3.6.
* | Merge pull request #2963 from fjl/ens-solc-0.3.6Felix Lange2016-08-313-12/+12
|\ \ | | | | | | contracts/ens: regenerate binding with solc v0.3.6
| * | contracts/ens: regenerate binding with solc v0.3.6Felix Lange2016-08-303-12/+12
| |/
* / contracts/chequebook/contract: fix possible reentrancy bug in chequebook.solDaniel A. Nagy2016-08-314-39/+10
|/
* Merge pull request #2952 from Arachnid/ensFelix Lange2016-08-305-0/+1391
|\ | | | | contracts/ens: Add ENS contract binding
| * contracts/ens: Add ENS contract bindingNick Johnson2016-08-305-0/+1391
|
* contracts/chequebook: add chequebook contract wrapperViktor TrĂ³n2016-08-297-0/+1930
The wrapper code is adapted from the swarm/services/chequebook package with the following mostly cosmetic changes: * The code now uses the new Go API interfaces to query balances. Some minor functional changes were required to make this work. * The package no longer depends on swarm/services/swap/swap. References to swap.Promise are replaced by interface{}, the base type of Promise. This is temporary. * The contract wrapper has been regenerated with latest abigen and solc v0.3.6. * There is a new generator that creates the 'deployed code' variable. * Documentation comments now follow the recommended godoc style. * [CHEQUEBOOK] log prefixes are gone. * LGPL license headers have been added to all files.