aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
Commit message (Collapse)AuthorAgeFilesLines
* Separated block db from state db. Partial fix for #416obscuren2015-03-071-1/+1
|
* Merge pull request #408 from tgerring/removewsJeffrey Wilcke2015-03-041-121/+0
|\ | | | | Remove Websockets RPC transport
| * Merge branch 'develop' of github.com:ethereum/go-ethereum into removewsTaylor Gerring2015-03-021-3/+5
| |\ | | | | | | | | | | | | | | | Conflicts: cmd/ethereum/flags.go cmd/mist/flags.go
| * | Remove Websockets RPC transportTaylor Gerring2015-03-011-121/+0
| | |
* | | Filter accepts multiple topics per entry. Fixes #403obscuren2015-03-021-4/+14
| |/ |/|
* | Report RPC listening address in logsTaylor Gerring2015-02-281-1/+3
| |
* | Add flag to set RPC portTaylor Gerring2015-02-281-2/+2
|/
* Defautl blockobscuren2015-02-261-32/+31
|
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-262-4/+36
|\ | | | | | | | | Conflicts: accounts/account_manager.go
| * Stub defaultBlock methodsTaylor Gerring2015-02-252-0/+34
| |
* | wipobscuren2015-02-261-33/+113
|/
* Consolidate related itemsTaylor Gerring2015-02-251-37/+36
|
* Remove errParseRequestTaylor Gerring2015-02-253-3/+2
|
* Rename filesTaylor Gerring2015-02-253-0/+0
|
* Cleanup RPC packcageTaylor Gerring2015-02-253-131/+90
|
* Merge pull request #373 from tgerring/issue370Taylor Gerring2015-02-251-6/+6
|\ | | | | Convert gas values to integers
| * Move amounts to global varsTaylor Gerring2015-02-251-14/+14
| |
| * Fix duplicate leading 0xTaylor Gerring2015-02-241-1/+1
| |
| * Convert gas values to integersTaylor Gerring2015-02-241-14/+14
| | | | | | | | Fixes #370
* | Merge pull request #369 from tgerring/issue367Jeffrey Wilcke2015-02-252-15/+4
|\ \ | | | | | | Allow zero and negative block numbers
| * | Allow zero and negative block numbersTaylor Gerring2015-02-232-15/+4
| |/ | | | | | | 0 is genesis block. Xeth recognises -1 as current
* | topics fixFabian Vogelsteller2015-02-241-1/+1
| |
* | skipping testobscuren2015-02-241-0/+1
| |
* | Properly uninstall filters. Mining issue fixed #closes #365obscuren2015-02-232-7/+6
|/ | | | | | * Added an additional tx state which is used to get the current nonce * Refresh transient state each time a new canonical block is found * Properly uninstall filters. Fixes a possible crash in RPC
* Added Number to logsobscuren2015-02-221-0/+2
|
* Added eth_logs & fixed issue with manual log filteringobscuren2015-02-221-0/+15
| | | | | | * Implemented `eth_logs` * Fixed issue with `filter.Find()` where logs were appended to an incorrect, non-returned slice resulting in no logs found
* unlock mutexobscuren2015-02-211-0/+2
|
* Fixed chain event issueobscuren2015-02-201-4/+2
|
* fixed mergeobscuren2015-02-202-0/+107
|\
| * Add setMining RPC methodTaylor Gerring2015-02-202-0/+26
| |
| * Add serpent compilation to RPCTaylor Gerring2015-02-202-0/+38
| |
| * Added uninstall filter methodsTaylor Gerring2015-02-192-0/+28
| |
* | Added timeout for filter & removed clipboard. Closes #350obscuren2015-02-203-13/+129
| |
* | Optimisations and fixed a couple of DDOS issues in the minerobscuren2015-02-201-0/+1
| |
* | WIP QT Clipboardobscuren2015-02-191-3/+3
| |
* | Topics => Topic. Closes #343obscuren2015-02-193-22/+7
|/
* Merge pull request #325 from fjl/deps-cleanupJeffrey Wilcke2015-02-181-1/+1
|\ | | | | Cleanup imports
| * rpc/ws: switch to golang.org/x/netFelix Lange2015-02-171-1/+1
| | | | | | | | | | code.google.com/p/go.net is deprecated and will cause problems in future versions of Go.
* | Forgot to add the case for logs. Closes #336obscuren2015-02-181-18/+9
| |
* | Changed to ChainEvent and fixed a nil pointer in transactobscuren2015-02-182-0/+35
| |
* | Implement register and watchTxobscuren2015-02-172-2/+86
| |
* | Added optional address slice. Closes #326obscuren2015-02-171-2/+16
|/
* HTTP RPC only listen on localhostobscuren2015-02-151-1/+1
|
* Use a mutex write-lock for a write operationobscuren2015-02-151-4/+4
|
* Unmarshal in to pointer to stringobscuren2015-02-151-3/+3
|
* #295 Allow RPC ID to be stringTaylor Gerring2015-02-114-6/+6
|
* Merge branch 'develop' into jsonrpcTaylor Gerring2015-02-116-128/+651
|\ | | | | | | | | Conflicts: rpc/ws/server.go
| * Moved log message to detail outputobscuren2015-02-081-1/+1
| |
| * pending / chain eventobscuren2015-02-062-1/+41
| |
| * Merge branch 'develop' of https://github.com/tgerring/go-ethereum into ↵obscuren2015-02-063-37/+36
| |\ | | | | | | | | | | | | | | | | | | tgerring-develop Conflicts: rpc/http/server.go
| | * Update RPC message formatTaylor Gerring2015-02-043-22/+27
| | |
| | * Update signature for rpc websocketsTaylor Gerring2015-02-021-14/+8
| | |
| | * Decrease log level for Sending RPC payloadTaylor Gerring2015-02-021-2/+3
| | |
| * | Default gas price and default gas for rpcobscuren2015-02-052-14/+13
| | |
| * | Propagate known transactions to new peers on connectobscuren2015-02-053-4/+5
| | |
| * | Filteringobscuren2015-02-053-4/+6
| |/
| * Added whisper messagesobscuren2015-01-302-3/+39
| | | | | | | | * have identity & get messages
| * Added whisper interface for xeth, added examples, updated RPCobscuren2015-01-303-9/+124
| | | | | | | | | | * Added RPC methods for whisper * Added whisper example
| * default values removedobscuren2015-01-301-1/+1
| |
| * Merge branch 'qt5.4' of github.com-obscure:ethereum/go-ethereum into qt5.4obscuren2015-01-304-44/+44
| |\ | | | | | | | | | | | | Conflicts: rpc/message.go
| | * CleanupTaylor Gerring2015-01-304-67/+44
| | |
| * | More dapp samplesobscuren2015-01-303-36/+174
| |/ | | | | | | | | * Info DApp, coin DApp * Additional rpc methods
| * Reimplemented message filters for rpc callsobscuren2015-01-293-8/+169
| |
| * Samples and disams cmd for evm codeobscuren2015-01-291-1/+14
| |
| * Added RPC "Call" for JS calls to contractsobscuren2015-01-292-7/+23
| |
| * removed createobscuren2015-01-291-11/+0
| |
| * implement transactobscuren2015-01-293-43/+22
| |
| * updated ethereum.js and moved to subfolderobscuren2015-01-293-1/+39
| | | | | | | | | | * Previous subtree caused a lot of trouble * Implemented sha3 in our shiny new http JSON RPC
| * removed key while in the process of moving to the new key storageobscuren2015-01-291-2/+2
| |
* | Merge branch 'jsonrpc' of github.com:ethereum/go-ethereum into jsonrpcTaylor Gerring2015-01-293-27/+24
|\|
| * further cleaned up xeth interfaceobscuren2015-01-293-8/+8
| |
| * moving to a better xethobscuren2015-01-292-20/+17
| |
* | Use custom Send methodsTaylor Gerring2015-01-291-7/+11
|/
* Rename api var for clarityTaylor Gerring2015-01-282-7/+6
|
* Return a websocker.Handler of the functionTaylor Gerring2015-01-281-1/+1
|
* Rename transport to wsTaylor Gerring2015-01-281-9/+9
| | | | Cleanup object naming for clarity
* New simplified Websocket transportTaylor Gerring2015-01-281-0/+124
| | | | Uses rpc.EthereumApi abstraction
* Indicate port in startup log messageTaylor Gerring2015-01-281-1/+3
|
* Move HTTP transport to sub package of RPCTaylor Gerring2015-01-284-50/+63
|
* Move GetRequestReply to EthereumApiTaylor Gerring2015-01-213-51/+48
| | | | Off of jsonWrapper
* Move argument types to separate fileTaylor Gerring2015-01-212-211/+218
|
* Stub missing UnmarshalJSON methodsTaylor Gerring2015-01-131-0/+16
|
* cleanupTaylor Gerring2015-01-134-16/+5
|
* Add support for CodeAtTaylor Gerring2015-01-133-2/+58
|
* Added license headersTaylor Gerring2015-01-134-0/+64
|
* cleanupTaylor Gerring2015-01-132-46/+9
|
* begin conversion to rpc over httpTaylor Gerring2015-01-135-263/+438
| | | | | Per specification at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
* ethpipe => xeth (eXtended ETHereum)obscuren2014-10-312-5/+5
|
* ethlog => loggerobscuren2014-10-312-7/+7
|
* Merge eth-go repository into go-ethereumFelix Lange2014-10-233-5/+5
| | | | mist, etheruem have been moved to cmd/
* Updated the VM & VM testsobscuren2014-10-231-1/+1
| | | | | | * Stack Error shouldn't revert to previous state * Updated VM Test tool * Added Transfer method to VM Env
* WIP RPC interfaceobscuren2014-10-215-0/+487