aboutsummaryrefslogtreecommitdiffstats
path: root/mobile/ethclient.go
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand as tangerine-network/go-tangerineWei-Ning Huang2019-09-171-2/+2
|
* Change import go github.com/dexon-foundation/dexonWei-Ning Huang2019-06-121-2/+2
|
* mobile: add whisper client (#15922)Eugene Valeyev2018-09-031-2/+6
|
* all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-031-2/+2
|
* mobile: fix FilterLogs (#15418)Eugene Valeyev2017-11-061-2/+2
| | | | All logs in the FilterLog return value would be the same object because the for loop captured the pointer to the iteration variable.
* ethclient, mobile: add TransactionSender (#15127)Felix Lange2017-10-011-0/+7
| | | | | | | | | | | | | | | | | * core/types: make Signer derive address instead of public key There are two reasons to do this now: The upcoming ethclient signer doesn't know the public key, just the address. EIP 208 will introduce a new signer which derives the 'entry point' address for transactions with zero signature. The entry point has no public key. Other changes to the interface ease the path make to moving signature crypto out of core/types later. * ethclient, mobile: add TransactionSender The new method can get the right signer without any crypto, and without knowledge of the signature scheme that was used when the transaction was included.
* core/vm: move Log to core/typesFelix Lange2017-01-061-3/+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.
* mobile: iOS naming and API fixes for generators and Swift (#3408)Péter Szilágyi2016-12-081-78/+78
| | | | | * build: modify the iOS namespace to iGeth (gomobile limitation) * mobile: assign names to return types for ObjC wrapper * mobile: use more expanded names for iOS/Swift API
* ethclient, ethereum: add NotFound, split transactions out of ChainReaderFelix Lange2016-12-051-1/+2
| | | | | | | | | ethclient now returns ethereum.NotFound if the server returns null and no error while accessing blockchain data. The light client cannot provide arbitrary transactions. The change to split transaction access into its own interface emphasizes that transactions should not be relied on and recommends use of logs.
* mobile: initial wrappers for mobile supportPéter Szilágyi2016-11-141-0/+305