aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/argument.go
Commit message (Collapse)AuthorAgeFilesLines
* core/vm: move Log to core/typesFelix Lange2017-01-061-2/+2
| | | | | | | | This significantly reduces the dependency closure of ethclient, which no longer depends on core/vm as of this change. All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too, the constructor simply returned a literal.
* accounts/abi: add support for "anonymous" and "indexed" for events (#3464)bas-vk2016-12-221-0/+2
|
* account/abi: implements event parsingJeffrey Wilcke2016-02-021-2/+3
| | | | | | Implementation of basic event parsing and its input types. This separates methods and events and fixes an issue with go type parsing and validation.
* accounts/abi: added output parsing & added call mechanismJeffrey Wilcke2015-11-251-0/+48
Added calling mechanism and return value parsing