aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/event_test.go
Commit message (Collapse)AuthorAgeFilesLines
* accounts/abi: allow abi: tags when unpacking structsGuillaume Ballet2018-05-141-1/+80
| | | | | | Go code users can now tag event struct members with `abi:` to specify in what fields the event will be de-serialized. See PR #16648 for details.
* accounts/abi: merging of https://github.com/ethereum/go-ethereum/pull/15452 ↵Martin Holst Swende2017-12-231-6/+4
| | | | + lookup by id
* acounts/abi: refactor abi, generalize abi pack/unpack to ArgumentsMartin Holst Swende2017-12-231-0/+75
|
* accounts/abi: add unpack into array testRobert Zaremba2017-12-211-1/+11
|
* accounts/abi: adding event unpacker testsRobert Zaremba2017-12-211-0/+154
|
* accounts/abi: update array length after parsing array (#15618)Dmitry Shulyak2017-12-201-0/+23
| | | Fixes #15617
* accounts/abi: improve type handling, add event support (#14743)RJ Catalano2017-10-171-1/+1
|
* all: update license informationFelix Lange2016-04-151-0/+16
|
* all: Rename crypto.Sha3{,Hash}() to crypto.Keccak256{,Hash}()Ricardo Catalinas Jiménez2016-02-221-2/+2
| | | | As we aren't really using the standarized SHA-3
* account/abi: implements event parsingJeffrey Wilcke2016-02-021-0/+40
Implementation of basic event parsing and its input types. This separates methods and events and fixes an issue with go type parsing and validation.