aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/bind
Commit message (Expand)AuthorAgeFilesLines
* accounts/abi/bind: add optional block number for calls (#17942)Dragan Milic2019-01-032-6/+70
* accounts/abi: fix case of generated java functions (#18372)Guillaume Ballet2019-01-021-4/+6
* accounts/abi: change unpacking of abi fields w/ underscores (#16513)Matt K2018-12-291-37/+4
* accounts/abi/bind: stop using goimports in the binding generator (#17768)Jeremy Schlatter2018-10-063-19/+153
* accounts/abi/bind/backends: fix typo (#17749)CDsigma2018-09-291-1/+1
* all: protect self-mined block during reorg (#17656)gary rong2018-09-201-1/+1
* all: remove the duplicate 'the' in annotations (#17509)Wenbiao Zheng2018-08-271-2/+2
* backends: configurable gas limit to allow testing large contracts (#17358)Jeff Prestes2018-08-153-17/+19
* accounts, eth, les: blockhash based filtering on all code pathsPéter Szilágyi2018-07-121-11/+21
* core, eth: minor txpool event cleanupsPéter Szilágyi2018-05-181-1/+1
* all: collate new transaction events togetherrjl4934564422018-05-181-1/+1
* all: get rid of error when creating memory database (#16716)gary rong2018-05-091-1/+1
* core/rawdb: separate raw database access to own package (#16666)Péter Szilágyi2018-05-071-3/+12
* Merge pull request #15990 from markya0616/sim_backend_block_hashMartin Holst Swende2018-03-191-2/+2
|\
| * accounts/abi, core: add AddTxWithChain in BlockGen for simulationmark.lin2018-01-291-2/+2
* | accounts/abi: normalize method name to a camel-case string (#15976)Mark2018-03-072-10/+45
* | accounts/abi: Abi binding support for nested arrays, fixes #15648, including ...protolambda2018-03-052-70/+165
* | eth, les, light: filter on logs only, derive receipts on demandPéter Szilágyi2018-02-231-0/+13
* | core, trie: intermediate mempool between trie and database (#15857)Péter Szilágyi2018-02-061-4/+10
* | accounts/abi/bind: support event filtering in abigenPéter Szilágyi2018-01-247-33/+903
|/
* all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-035-21/+20
* accounts/abi: handle named ouputs prefixed with underscores (#15766)Péter Szilágyi2017-12-302-2/+80
* accounts, consensus, core, eth: make chain maker consensus agnostic (#15497)gary rong2017-12-221-3/+3
* all: use gometalinter.v2, fix new gosimple issues (#15650)Zach2017-12-131-1/+1
* accounts, internal: fail if no suitable estimated gas found (#15477)gary rong2017-11-151-11/+26
* all: gofmt -w -s (#15419)ferhat elmas2017-11-081-1/+1
* cmd, consensus, core, miner: instatx clique for --dev (#15323)Péter Szilágyi2017-10-241-1/+1
* accounts/abi: improve type handling, add event support (#14743)RJ Catalano2017-10-171-1/+1
* internal, accounts, eth: utilize vm failed flag to help gas estimationrjl4934564422017-10-021-11/+13
* accounts/abi/backends: add AdjustTime (#15077)Dave Appleton2017-09-151-0/+17
* accounts/abi/bind: pass non-empty directory when calling goimports (#15070)nkbai2017-09-082-2/+2
* core: implement Metropolis EIP 658, receipt status byterjl4934564422017-08-221-1/+2
* core, light: send chain events using event.Feed (#14865)Miya Chen2017-08-181-2/+1
* cmd/abigen: update generated go file header text (#14845)Leo Shklovskii2017-07-241-2/+2
* core: remove redundant storage of transactions and receipts (#14801)Péter Szilágyi2017-07-151-1/+2
* core/state: access trie through Database interface, track errors (#14589)Felix Lange2017-06-271-2/+2
* consensus, core, ethstats: use engine specific block beneficiary (#14318)Péter Szilágyi2017-04-121-1/+1
* core, consensus: pluggable consensus engines (#3817)Péter Szilágyi2017-04-051-2/+2
* core: refactor genesis handlingFelix Lange2017-03-233-22/+19
* all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-235-5/+5
* accounts/abi/bind: allow client to specify sender address for call (#3782)bas-vk2017-03-162-2/+42
* all: swap out the C++ ethash to the pure Go one (mining todo)Péter Szilágyi2017-03-091-1/+2
* Merge pull request #3723 from karalabe/logger-updates-2Péter Szilágyi2017-02-281-1/+1
|\
| * all: next batch of log polishes to contextual versionsPéter Szilágyi2017-02-281-1/+1
* | all: unify big.Int zero checks, use common/math in more places (#3716)Felix Lange2017-02-281-1/+1
|/
* accounts, eth/downloader: use "err" instead of "error" in logsPéter Szilágyi2017-02-271-1/+1
* common: move big integer math to common/math (#3699)Felix Lange2017-02-271-2/+3
* accounts, cmd: port packages over to the new logging systemPéter Szilágyi2017-02-231-4/+5
* all: blidly swap out glog to our log15, logs need reworkPéter Szilágyi2017-02-231-4/+3
* accounts, cmd, eth, internal, mobile, node: split account backendsPéter Szilágyi2017-02-131-2/+2
* accounts/abi/bind, internal/ethapi: binary search gas estimation (#3587)Péter Szilágyi2017-01-212-7/+72
* cmd/geth, core: add support for recording SHA3 preimages (#3543)Nick Johnson2017-01-171-1/+1
* all: fix ineffectual assignments and remove uses of crypto.Sha3Felix Lange2017-01-091-1/+1
* all: fix issues reported by honnef.co/go/simple/cmd/gosimpleFelix Lange2017-01-071-10/+10
* core/types: remove redundant SignECDSA wrappers, rename to SignTxFelix Lange2017-01-051-1/+1
* core/vm: improved EVM run loop & instruction calling (#3378)Jeffrey Wilcke2017-01-051-1/+1
* accounts, core, crypto, internal: use normalised V during signature handling ...Péter Szilágyi2017-01-051-1/+1
* core, core/vm: implemented a generic environment (#3348)Jeffrey Wilcke2016-12-061-1/+5
* accounts/abi/bind, mobile: review fixes and android testsPéter Szilágyi2016-11-152-8/+12
* mobile: initial wrappers for mobile supportPéter Szilágyi2016-11-143-12/+266
* 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
* 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
* 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
* eth: separate common and full node-specific API and backend servicezsfelfoldi2016-06-165-48/+77
* accounts/abi/bind, eth: rely on getCode for sanity checks, not estimate and callPéter Szilágyi2016-05-205-6/+101
* accounts/abi/bind: fix multi-value anonymous unmarshallingPéter Szilágyi2016-05-122-3/+37
* release, all: integrate the release service into gethPéter Szilágyi2016-05-021-2/+3
* 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
* 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
* 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-248-244/+696
* accounts/abi/bind, cmd/abigen: Go API generator around an EVM ABIPéter Szilágyi2016-03-244-0/+834