Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | accounts/abi/bind: add optional block number for calls (#17942) | Dragan Milic | 2019-01-03 | 1 | -6/+6 |
| | |||||
* | accounts/abi/bind: support event filtering in abigen | Péter Szilágyi | 2018-01-24 | 1 | -2/+119 |
| | |||||
* | all: switch gas limits from big.Int to uint64 | Péter Szilágyi | 2018-01-03 | 1 | -2/+2 |
| | |||||
* | all: import "context" instead of "golang.org/x/net/context" | Felix Lange | 2017-03-23 | 1 | -1/+1 |
| | | | | | | | | | | There is no need to depend on the old context package now that the minimum Go version is 1.7. The move to "context" eliminates our weird vendoring setup. Some vendored code still uses golang.org/x/net/context and it is now vendored in the normal way. This change triggered new vet checks around context.WithTimeout which didn't fire with golang.org/x/net/context. | ||||
* | accounts/abi/bind: allow client to specify sender address for call (#3782) | bas-vk | 2017-03-16 | 1 | -2/+3 |
| | |||||
* | all: fix ineffectual assignments and remove uses of crypto.Sha3 | Felix Lange | 2017-01-09 | 1 | -1/+1 |
| | | | | | go get github.com/gordonklaus/ineffassign ineffassign . | ||||
* | core/types, params: EIP#155 | Jeffrey Wilcke | 2016-11-13 | 1 | -2/+2 |
| | |||||
* | all: update license information | Felix Lange | 2016-11-09 | 1 | -1/+1 |
| | |||||
* | accounts/abi/bind: use ethereum interfaces | Felix Lange | 2016-08-22 | 1 | -27/+48 |
| | | | | | | | | | | | | | | | | | | | | | | | | | In this commit, contract bindings and their backend start using the Ethereum Go API interfaces offered by ethclient. This makes ethclient a suitable replacement for the old remote backend and gets us one step closer to the final stable Go API that is planned for go-ethereum 1.5. The changes in detail: * Pending state is optional for read only contract bindings. BoundContract attempts to discover the Pending* methods via an interface assertion. There are a couple of advantages to this: ContractCaller is just two methods and can be implemented on top of pretty much anything that provides Ethereum data. Since the backend interfaces are now disjoint, ContractBackend can simply be declared as a union of the reader and writer side. * Caching of HasCode is removed. The caching could go wrong in case of chain reorganisations and removing it simplifies the code a lot. We'll figure out a performant way of providing ErrNoCode before the 1.5 release. * BoundContract now ensures that the backend receives a non-nil context with every call. | ||||
* | eth: separate common and full node-specific API and backend service | zsfelfoldi | 2016-06-16 | 1 | -7/+12 |
| | |||||
* | accounts/abi/bind, eth: rely on getCode for sanity checks, not estimate and call | Péter Szilágyi | 2016-05-20 | 1 | -0/+27 |
| | |||||
* | accounts/abi/bind: surface raw wrappers to access low level ops | Péter Szilágyi | 2016-04-01 | 1 | -2/+7 |
| | |||||
* | accounts/abi/bind, cmd/abigen: port to templates, bind to solidity | Péter Szilágyi | 2016-03-24 | 1 | -17/+9 |
| | |||||
* | accounts/abi/bind: constructor, auth utils and various backends | Péter Szilágyi | 2016-03-24 | 1 | -7/+59 |
| | |||||
* | accounts/abi/bind, cmd/abigen: Go API generator around an EVM ABI | Péter Szilágyi | 2016-03-24 | 1 | -0/+130 |