aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi
Commit message (Expand)AuthorAgeFilesLines
* core/types, params: EIP#155Jeffrey Wilcke2016-11-134-16/+15
* core, core/state, trie: EIP158, reprice & skip empty account writeJeffrey Wilcke2016-11-131-3/+6
* all: update license informationFelix Lange2016-11-093-3/+3
* accounts/abi: differentiate between static and dynamic arrays (#3121)RJ2016-11-044-26/+64
* internal/ethapi: add personal_sign and fix eth_sign to hash message (#2940)bas-vk2016-10-291-1/+1
* core/state: implement reverts by journaling all changesFelix Lange2016-10-061-2/+4
* accounts/abi: fix typo in the comment (dummy commit)Péter Szilágyi2016-09-261-1/+1
* core/state: track all accounts in canon stateFelix Lange2016-09-261-5/+2
* accounts/abi/bind: add utilities for waiting on transactionsFelix Lange2016-08-234-15/+267
* accounts/abi/bind: use ethereum interfacesFelix Lange2016-08-223-175/+157
* accounts/abi/bind/backends: remove nil and remote backendsFelix Lange2016-08-214-203/+10
* rpc: add new client, use it everywhereFelix Lange2016-07-231-142/+18
* accounts, core, eth: pass chain config for chain maker to test DAOPéter Szilágyi2016-07-151-2/+2
* core: added CheckNonce() to Message interfacezsfelfoldi2016-07-111-1/+2
* Merge pull request #2159 from zsfelfoldi/light-backendPéter Szilágyi2016-06-305-48/+77
|\
| * eth: separate common and full node-specific API and backend servicezsfelfoldi2016-06-165-48/+77
* | accounts/abi: fix uint64 upper range encoding.Péter Szilágyi2016-06-102-21/+33
|/
* accounts/abi: Negative numbers not properly converted in ABI encodingThomas Bocek2016-06-064-64/+10
* accounts/abi/bind, eth: rely on getCode for sanity checks, not estimate and callPéter Szilágyi2016-05-205-6/+101
* accounts/abi: fix abi test for go vet...Péter Szilágyi2016-05-121-2/+2
* accounts/abi/bind: fix multi-value anonymous unmarshallingPéter Szilágyi2016-05-122-3/+37
* accounts/abi: fixed unpacking in to already slice interfacesJeffrey Wilcke2016-05-113-31/+94
* release, all: integrate the release service into gethPéter Szilágyi2016-05-021-2/+3
* Merge pull request #2435 from obscuren/abi-array-fixesPéter Szilágyi2016-04-288-362/+733
|\
| * accounts/abi: fixed string and fixed size bytes packingJeffrey Wilcke2016-04-286-85/+137
| * accounts/abi: added unpacking "anything" in to interface{}Jeffrey Wilcke2016-04-282-0/+11
| * accounts/abi: fixed strict go-like unpackingJeffrey Wilcke2016-04-282-27/+158
| * accouns/abi: refactored ABI packageJeffrey Wilcke2016-04-208-314/+491
* | accounts/abi/bind, eth: add contract non-existent errorPéter Szilágyi2016-04-274-4/+60
|/
* accounts/abi/bind/backends: estimate needed gas, not usedPéter Szilágyi2016-04-151-1/+1
* all: fix go vet warningsFelix Lange2016-04-151-5/+5
* all: update license informationFelix Lange2016-04-151-0/+16
* accounts, crypto: move keystore to package accountsFelix Lange2016-04-122-28/+23
* accounts/abi/bind: support generating bindings for various arraysPéter Szilágyi2016-04-052-16/+67
* abi: removed implicit type casting & refactored type parsingJeffrey Wilcke2016-04-053-53/+80
* abi: accept output slices of all supported typesJeffrey Wilcke2016-04-053-5/+143
* abi: accept input slices of all supported typesJeffrey Wilcke2016-04-055-145/+106
* Merge pull request #2405 from karalabe/abigen-default-methodsJeffrey Wilcke2016-04-013-5/+102
|\
| * accounts/abi/bind: surface raw wrappers to access low level opsPéter Szilágyi2016-04-013-5/+102
* | accounts/a/b/backends, core: chain maker homestead block set to 0Jeffrey Wilcke2016-04-011-2/+1
* | core: added basic chain configurationJeffrey Wilcke2016-04-011-3/+8
|/
* accounts/abi/bind: support account slices, drop hash typePéter Szilágyi2016-03-311-2/+2
* accounts/abi/bind: merge all tests into a single suitePéter Szilágyi2016-03-311-22/+22
* accounts/abi/bind: use anonymous ephemeral call result structsPéter Szilágyi2016-03-311-15/+10
* accounts/abi/bind, cmd/abigen: dedup structs, exclude patternsPéter Szilágyi2016-03-261-6/+6
* accounts/abi/bind: fix double pointer in generated codePéter Szilágyi2016-03-252-4/+36
* accounts/abi/bind, cmd/abigen: port to templates, bind to solidityPéter Szilágyi2016-03-249-428/+530
* accounts/abi/bind: constructor, auth utils and various backendsPéter Szilágyi2016-03-249-263/+723
* accounts/abi/bind, cmd/abigen: Go API generator around an EVM ABIPéter Szilágyi2016-03-246-41/+855
* Merge pull request #2348 from obscuren/abi-variable-inputPéter Szilágyi2016-03-174-31/+193
|\
| * accounts/abi: Fixed bytes input accept []byte and variable input supportJeffrey Wilcke2016-03-154-31/+193
* | accounts/abi: handle the "constant" modifier for functionsPéter Szilágyi2016-03-162-9/+12
|/
* all: Rename crypto.Sha3{,Hash}() to crypto.Keccak256{,Hash}()Ricardo Catalinas Jiménez2016-02-224-9/+9
* accounts/abi: support for typed arrayJeffrey Wilcke2016-02-152-43/+114
* accounts/abi: fixed return tuple and string, bytes return type parsingJeffrey Wilcke2016-02-113-30/+363
* account/abi: implements event parsingJeffrey Wilcke2016-02-026-31/+174
* accounts/abi: added output parsing & added call mechanismJeffrey Wilcke2015-11-256-88/+243
* accounts/abi: ABI fixes & added typesJeffrey Wilcke2015-10-303-21/+80
* all: fix license headers one more timeFelix Lange2015-07-246-6/+6
* all: update license headers to distiguish GPL/LGPLFelix Lange2015-07-236-24/+24
* all: update license informationFelix Lange2015-07-076-0/+96
* Moved ethutil => commonobscuren2015-03-162-10/+10
* removedobscuren2015-03-081-106/+0
* Implemented contract ABIobscuren2015-01-277-0/+969