Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'rpcfrontier' into develop | obscuren | 2015-03-14 | 1 | -1/+7 |
|\ | |||||
| * | Return null coinbase when accounts not created | Taylor Gerring | 2015-03-14 | 1 | -1/+7 |
| | | | | | | | | Was previously returning nonsensical “0x” | ||||
* | | DRY up the use of fromHex and put it in ethutil | Maran | 2015-03-14 | 3 | -45/+7 |
|/ | |||||
* | Rename db_put db_get | Taylor Gerring | 2015-03-13 | 1 | -2/+4 |
| | |||||
* | Consolidate error type switch | Taylor Gerring | 2015-03-13 | 1 | -14/+2 |
| | |||||
* | Fix eth_newBlockFilter | Taylor Gerring | 2015-03-13 | 2 | -6/+15 |
| | |||||
* | Add web3_clientVersion | Taylor Gerring | 2015-03-13 | 1 | -7/+7 |
| | |||||
* | Convert to proper errors | Taylor Gerring | 2015-03-13 | 5 | -104/+183 |
| | | | | Allow returning different JSON RPC error codes depending on error type | ||||
* | Fix arg names in tests | Taylor Gerring | 2015-03-13 | 1 | -3/+3 |
| | |||||
* | Get transaction implemented | obscuren | 2015-03-12 | 2 | -6/+18 |
| | | | | | * Added a GetTransaction to XEth * Implemented the `eth_getTransactionByHash` RPC method | ||||
* | Should on empty params #466 | Taylor Gerring | 2015-03-12 | 2 | -1/+46 |
| | |||||
* | Output filter ID as hex | Taylor Gerring | 2015-03-12 | 1 | -1/+1 |
| | |||||
* | Check for existance of key before delete | Taylor Gerring | 2015-03-12 | 1 | -1/+4 |
| | |||||
* | shh_uninstallFilter | Taylor Gerring | 2015-03-12 | 1 | -1/+11 |
| | |||||
* | block&index args unmarshal plus test | Taylor Gerring | 2015-03-12 | 2 | -0/+96 |
| | |||||
* | Lowered default gas price and increased default gas limit | obscuren | 2015-03-12 | 1 | -3/+2 |
| | |||||
* | Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into ↵ | obscuren | 2015-03-12 | 4 | -15/+56 |
|\ | | | | | | | rpcfrontier | ||||
| * | Rename Topic to Topics | Taylor Gerring | 2015-03-11 | 3 | -7/+7 |
| | | |||||
| * | Get Uncles | Taylor Gerring | 2015-03-11 | 1 | -1/+36 |
| | | |||||
| * | BlockHash must be a string | Taylor Gerring | 2015-03-11 | 1 | -1/+6 |
| | | |||||
| * | TxIndex -> Index | Taylor Gerring | 2015-03-11 | 3 | -6/+7 |
| | | |||||
* | | Default block number changes | obscuren | 2015-03-12 | 1 | -44/+26 |
|/ | |||||
* | Merge branch 'rpcfrontier' of github.com:ethereum/go-ethereum into rpcfrontier | Taylor Gerring | 2015-03-11 | 3 | -140/+72 |
|\ | |||||
| * | Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into ↵ | obscuren | 2015-03-11 | 4 | -34/+64 |
| |\ | | | | | | | | | | rpcfrontier | ||||
| * \ | Merge branch 'develop' into rpcfrontier | obscuren | 2015-03-11 | 3 | -139/+71 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: rpc/api.go rpc/args.go | ||||
| | * \ | Merge ethereum/poc-9 into accounts-integration | Felix Lange | 2015-03-10 | 2 | -15/+12 |
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go | ||||
| | * | | | rpc/http: delete package | Felix Lange | 2015-03-10 | 1 | -116/+0 |
| | | | | | |||||
| | * | | | rpc: add dataDir parameter and JSON-RPC handler | Felix Lange | 2015-03-10 | 2 | -2/+45 |
| | | | | | |||||
| | * | | | xeth: don't sign transactions for tx call | Felix Lange | 2015-03-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This should make calls faster and removes interaction with account manager. | ||||
| | * | | | Integrate eth_accounts and eth_transact to use new account manager | Gustav Simonsson | 2015-03-06 | 2 | -25/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add from to eth_transact / xeth.Transact and add static pass in lieu of integrating with native Mist window for user passphrase entry * Make eth_accounts return AccountManager.Accounts() * Add a Generate Key menu item in Mist | ||||
| * | | | | fallback | obscuren | 2015-03-11 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Get transaction via block & index | Taylor Gerring | 2015-03-11 | 2 | -0/+37 |
| | | | | | |||||
* | | | | | Nil check block | Taylor Gerring | 2015-03-11 | 1 | -0/+4 |
| |_|_|/ |/| | | | |||||
* | | | | Output hex should be prepended with 0x | Taylor Gerring | 2015-03-11 | 3 | -34/+36 |
| | | | | |||||
* | | | | Left-pad odd length hex inputs and tests | Taylor Gerring | 2015-03-11 | 2 | -0/+28 |
|/ / / | |||||
* | | | id to hex | obscuren | 2015-03-11 | 1 | -1/+1 |
| | | | |||||
* | | | Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into ↵ | obscuren | 2015-03-11 | 4 | -11/+303 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | rpcfrontier Conflicts: rpc/args.go | ||||
| * | | | Update response types | Taylor Gerring | 2015-03-11 | 3 | -6/+297 |
| | | | | |||||
| * | | | Merge branch 'rpcfrontier' of github.com:ethereum/go-ethereum into rpcfrontier | Taylor Gerring | 2015-03-11 | 1 | -13/+37 |
| |\ \ \ | |||||
| * | | | | Allow integers for BlockNumber | Taylor Gerring | 2015-03-10 | 1 | -6/+21 |
| | | | | | | | | | | | | | | | | | | | | If parsing fails, fall back to hex decoding | ||||
* | | | | | Updated RPC | obscuren | 2015-03-11 | 3 | -111/+90 |
| |/ / / |/| | | | | | | | | | | | | | | | | | | | * Added a generic RawMessage deserialiser * Updated ethereum.js * Updated coin test app | ||||
* | | | | Added unmarshalState | obscuren | 2015-03-10 | 1 | -13/+37 |
|/ / / | |||||
* | | | merge | obscuren | 2015-03-10 | 2 | -18/+15 |
| | | | |||||
* | | | wip | obscuren | 2015-03-10 | 4 | -144/+31 |
|\ \ \ | | |/ | |/| | |||||
| * | | Max size JSON data. Closes #418 | obscuren | 2015-03-10 | 1 | -0/+8 |
| | | | |||||
| * | | Updated xeth instances to take extra param for ui.Interface | obscuren | 2015-03-09 | 1 | -13/+0 |
| | | | | | | | | | | | | | | | | | | Please be aware that if any of the instances on xeth.frontend are called the program will crash due to the default, temporarily, frontend interface. | ||||
| * | | Separated block db from state db. Partial fix for #416 | obscuren | 2015-03-07 | 1 | -1/+1 |
| |/ | |||||
| * | Merge pull request #408 from tgerring/removews | Jeffrey Wilcke | 2015-03-04 | 1 | -121/+0 |
| |\ | | | | | | | Remove Websockets RPC transport | ||||
| | * | Merge branch 'develop' of github.com:ethereum/go-ethereum into removews | Taylor Gerring | 2015-03-02 | 1 | -3/+5 |
| | |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/ethereum/flags.go cmd/mist/flags.go | ||||
| | * | | Remove Websockets RPC transport | Taylor Gerring | 2015-03-01 | 1 | -121/+0 |
| | | | | |||||
| * | | | Filter accepts multiple topics per entry. Fixes #403 | obscuren | 2015-03-02 | 1 | -4/+14 |
| | |/ | |/| | |||||
* | | | Undo client_version changes | Taylor Gerring | 2015-03-10 | 1 | -2/+0 |
| | | | |||||
* | | | Remove support for compiling serpent | Taylor Gerring | 2015-03-09 | 1 | -16/+2 |
| | | | |||||
* | | | Increased args test coverage | Taylor Gerring | 2015-03-06 | 2 | -51/+384 |
| | | | |||||
* | | | Initial args tests | Taylor Gerring | 2015-03-06 | 2 | -13/+138 |
| | | | |||||
* | | | Add web3_sha3 test | Taylor Gerring | 2015-03-06 | 1 | -0/+18 |
| | | | |||||
* | | | Tidy | Taylor Gerring | 2015-03-06 | 3 | -62/+58 |
| | | | |||||
* | | | Refactor & cleanup | Taylor Gerring | 2015-03-06 | 3 | -648/+538 |
| | | | |||||
* | | | Resolve storage/storageat | Taylor Gerring | 2015-03-06 | 3 | -16/+24 |
| | | | |||||
* | | | Revert to hex response | Taylor Gerring | 2015-03-06 | 1 | -4/+3 |
| | | | |||||
* | | | Final name changes | Taylor Gerring | 2015-03-06 | 1 | -8/+9 |
| | | | |||||
* | | | Update RPC methods | Taylor Gerring | 2015-03-05 | 1 | -84/+115 |
| | | | | | | | | | | | | Re-order to match spec and explicitly list unimplemented methods | ||||
* | | | Output 0x0 instead of 0x | Taylor Gerring | 2015-03-05 | 1 | -1/+6 |
| | | | |||||
* | | | Output net_peerCount as hex | Taylor Gerring | 2015-03-04 | 1 | -1/+2 |
| | | | |||||
* | | | Return block number as hex | Taylor Gerring | 2015-03-04 | 1 | -1/+1 |
| | | | |||||
* | | | Update NewTXArgs to accept hex | Taylor Gerring | 2015-03-04 | 2 | -21/+28 |
| | | | |||||
* | | | Add client_version RPC message | Taylor Gerring | 2015-03-04 | 1 | -0/+2 |
| | | | |||||
* | | | Remove defunct calls | Taylor Gerring | 2015-03-02 | 1 | -62/+30 |
| | | | |||||
* | | | Rename "net" methods | Taylor Gerring | 2015-03-02 | 1 | -4/+4 |
|/ / | |||||
* | | Report RPC listening address in logs | Taylor Gerring | 2015-02-28 | 1 | -1/+3 |
| | | |||||
* | | Add flag to set RPC port | Taylor Gerring | 2015-02-28 | 1 | -2/+2 |
|/ | |||||
* | Defautl block | obscuren | 2015-02-26 | 1 | -32/+31 |
| | |||||
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop | obscuren | 2015-02-26 | 2 | -4/+36 |
|\ | | | | | | | | | Conflicts: accounts/account_manager.go | ||||
| * | Stub defaultBlock methods | Taylor Gerring | 2015-02-25 | 2 | -0/+34 |
| | | |||||
* | | wip | obscuren | 2015-02-26 | 1 | -33/+113 |
|/ | |||||
* | Consolidate related items | Taylor Gerring | 2015-02-25 | 1 | -37/+36 |
| | |||||
* | Remove errParseRequest | Taylor Gerring | 2015-02-25 | 3 | -3/+2 |
| | |||||
* | Rename files | Taylor Gerring | 2015-02-25 | 3 | -0/+0 |
| | |||||
* | Cleanup RPC packcage | Taylor Gerring | 2015-02-25 | 3 | -131/+90 |
| | |||||
* | Merge pull request #373 from tgerring/issue370 | Taylor Gerring | 2015-02-25 | 1 | -6/+6 |
|\ | | | | | Convert gas values to integers | ||||
| * | Move amounts to global vars | Taylor Gerring | 2015-02-25 | 1 | -14/+14 |
| | | |||||
| * | Fix duplicate leading 0x | Taylor Gerring | 2015-02-24 | 1 | -1/+1 |
| | | |||||
| * | Convert gas values to integers | Taylor Gerring | 2015-02-24 | 1 | -14/+14 |
| | | | | | | | | Fixes #370 | ||||
* | | Merge pull request #369 from tgerring/issue367 | Jeffrey Wilcke | 2015-02-25 | 2 | -15/+4 |
|\ \ | | | | | | | Allow zero and negative block numbers | ||||
| * | | Allow zero and negative block numbers | Taylor Gerring | 2015-02-23 | 2 | -15/+4 |
| |/ | | | | | | | 0 is genesis block. Xeth recognises -1 as current | ||||
* | | topics fix | Fabian Vogelsteller | 2015-02-24 | 1 | -1/+1 |
| | | |||||
* | | skipping test | obscuren | 2015-02-24 | 1 | -0/+1 |
| | | |||||
* | | Properly uninstall filters. Mining issue fixed #closes #365 | obscuren | 2015-02-23 | 2 | -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 logs | obscuren | 2015-02-22 | 1 | -0/+2 |
| | |||||
* | Added eth_logs & fixed issue with manual log filtering | obscuren | 2015-02-22 | 1 | -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 mutex | obscuren | 2015-02-21 | 1 | -0/+2 |
| | |||||
* | Fixed chain event issue | obscuren | 2015-02-20 | 1 | -4/+2 |
| | |||||
* | fixed merge | obscuren | 2015-02-20 | 2 | -0/+107 |
|\ | |||||
| * | Add setMining RPC method | Taylor Gerring | 2015-02-20 | 2 | -0/+26 |
| | | |||||
| * | Add serpent compilation to RPC | Taylor Gerring | 2015-02-20 | 2 | -0/+38 |
| | | |||||
| * | Added uninstall filter methods | Taylor Gerring | 2015-02-19 | 2 | -0/+28 |
| | | |||||
* | | Added timeout for filter & removed clipboard. Closes #350 | obscuren | 2015-02-20 | 3 | -13/+129 |
| | | |||||
* | | Optimisations and fixed a couple of DDOS issues in the miner | obscuren | 2015-02-20 | 1 | -0/+1 |
| | | |||||
* | | WIP QT Clipboard | obscuren | 2015-02-19 | 1 | -3/+3 |
| | | |||||
* | | Topics => Topic. Closes #343 | obscuren | 2015-02-19 | 3 | -22/+7 |
|/ | |||||
* | Merge pull request #325 from fjl/deps-cleanup | Jeffrey Wilcke | 2015-02-18 | 1 | -1/+1 |
|\ | | | | | Cleanup imports | ||||
| * | rpc/ws: switch to golang.org/x/net | Felix Lange | 2015-02-17 | 1 | -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 #336 | obscuren | 2015-02-18 | 1 | -18/+9 |
| | | |||||
* | | Changed to ChainEvent and fixed a nil pointer in transact | obscuren | 2015-02-18 | 2 | -0/+35 |
| | | |||||
* | | Implement register and watchTx | obscuren | 2015-02-17 | 2 | -2/+86 |
| | | |||||
* | | Added optional address slice. Closes #326 | obscuren | 2015-02-17 | 1 | -2/+16 |
|/ | |||||
* | HTTP RPC only listen on localhost | obscuren | 2015-02-15 | 1 | -1/+1 |
| | |||||
* | Use a mutex write-lock for a write operation | obscuren | 2015-02-15 | 1 | -4/+4 |
| | |||||
* | Unmarshal in to pointer to string | obscuren | 2015-02-15 | 1 | -3/+3 |
| | |||||
* | #295 Allow RPC ID to be string | Taylor Gerring | 2015-02-11 | 4 | -6/+6 |
| | |||||
* | Merge branch 'develop' into jsonrpc | Taylor Gerring | 2015-02-11 | 6 | -128/+651 |
|\ | | | | | | | | | Conflicts: rpc/ws/server.go | ||||
| * | Moved log message to detail output | obscuren | 2015-02-08 | 1 | -1/+1 |
| | | |||||
| * | pending / chain event | obscuren | 2015-02-06 | 2 | -1/+41 |
| | | |||||
| * | Merge branch 'develop' of https://github.com/tgerring/go-ethereum into ↵ | obscuren | 2015-02-06 | 3 | -37/+36 |
| |\ | | | | | | | | | | | | | | | | | | | tgerring-develop Conflicts: rpc/http/server.go | ||||
| | * | Update RPC message format | Taylor Gerring | 2015-02-04 | 3 | -22/+27 |
| | | | |||||
| | * | Update signature for rpc websockets | Taylor Gerring | 2015-02-02 | 1 | -14/+8 |
| | | | |||||
| | * | Decrease log level for Sending RPC payload | Taylor Gerring | 2015-02-02 | 1 | -2/+3 |
| | | | |||||
| * | | Default gas price and default gas for rpc | obscuren | 2015-02-05 | 2 | -14/+13 |
| | | | |||||
| * | | Propagate known transactions to new peers on connect | obscuren | 2015-02-05 | 3 | -4/+5 |
| | | | |||||
| * | | Filtering | obscuren | 2015-02-05 | 3 | -4/+6 |
| |/ | |||||
| * | Added whisper messages | obscuren | 2015-01-30 | 2 | -3/+39 |
| | | | | | | | | * have identity & get messages | ||||
| * | Added whisper interface for xeth, added examples, updated RPC | obscuren | 2015-01-30 | 3 | -9/+124 |
| | | | | | | | | | | * Added RPC methods for whisper * Added whisper example | ||||
| * | default values removed | obscuren | 2015-01-30 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'qt5.4' of github.com-obscure:ethereum/go-ethereum into qt5.4 | obscuren | 2015-01-30 | 4 | -44/+44 |
| |\ | | | | | | | | | | | | | Conflicts: rpc/message.go | ||||
| | * | Cleanup | Taylor Gerring | 2015-01-30 | 4 | -67/+44 |
| | | | |||||
| * | | More dapp samples | obscuren | 2015-01-30 | 3 | -36/+174 |
| |/ | | | | | | | | | * Info DApp, coin DApp * Additional rpc methods | ||||
| * | Reimplemented message filters for rpc calls | obscuren | 2015-01-29 | 3 | -8/+169 |
| | | |||||
| * | Samples and disams cmd for evm code | obscuren | 2015-01-29 | 1 | -1/+14 |
| | | |||||
| * | Added RPC "Call" for JS calls to contracts | obscuren | 2015-01-29 | 2 | -7/+23 |
| | | |||||
| * | removed create | obscuren | 2015-01-29 | 1 | -11/+0 |
| | | |||||
| * | implement transact | obscuren | 2015-01-29 | 3 | -43/+22 |
| | | |||||
| * | updated ethereum.js and moved to subfolder | obscuren | 2015-01-29 | 3 | -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 storage | obscuren | 2015-01-29 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'jsonrpc' of github.com:ethereum/go-ethereum into jsonrpc | Taylor Gerring | 2015-01-29 | 3 | -27/+24 |
|\| | |||||
| * | further cleaned up xeth interface | obscuren | 2015-01-29 | 3 | -8/+8 |
| | | |||||
| * | moving to a better xeth | obscuren | 2015-01-29 | 2 | -20/+17 |
| | | |||||
* | | Use custom Send methods | Taylor Gerring | 2015-01-29 | 1 | -7/+11 |
|/ | |||||
* | Rename api var for clarity | Taylor Gerring | 2015-01-28 | 2 | -7/+6 |
| | |||||
* | Return a websocker.Handler of the function | Taylor Gerring | 2015-01-28 | 1 | -1/+1 |
| | |||||
* | Rename transport to ws | Taylor Gerring | 2015-01-28 | 1 | -9/+9 |
| | | | | Cleanup object naming for clarity | ||||
* | New simplified Websocket transport | Taylor Gerring | 2015-01-28 | 1 | -0/+124 |
| | | | | Uses rpc.EthereumApi abstraction | ||||
* | Indicate port in startup log message | Taylor Gerring | 2015-01-28 | 1 | -1/+3 |
| | |||||
* | Move HTTP transport to sub package of RPC | Taylor Gerring | 2015-01-28 | 4 | -50/+63 |
| | |||||
* | Move GetRequestReply to EthereumApi | Taylor Gerring | 2015-01-21 | 3 | -51/+48 |
| | | | | Off of jsonWrapper | ||||
* | Move argument types to separate file | Taylor Gerring | 2015-01-21 | 2 | -211/+218 |
| | |||||
* | Stub missing UnmarshalJSON methods | Taylor Gerring | 2015-01-13 | 1 | -0/+16 |
| | |||||
* | cleanup | Taylor Gerring | 2015-01-13 | 4 | -16/+5 |
| | |||||
* | Add support for CodeAt | Taylor Gerring | 2015-01-13 | 3 | -2/+58 |
| | |||||
* | Added license headers | Taylor Gerring | 2015-01-13 | 4 | -0/+64 |
| | |||||
* | cleanup | Taylor Gerring | 2015-01-13 | 2 | -46/+9 |
| | |||||
* | begin conversion to rpc over http | Taylor Gerring | 2015-01-13 | 5 | -263/+438 |
| | | | | | Per specification at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC | ||||
* | ethpipe => xeth (eXtended ETHereum) | obscuren | 2014-10-31 | 2 | -5/+5 |
| | |||||
* | ethlog => logger | obscuren | 2014-10-31 | 2 | -7/+7 |
| | |||||
* | Merge eth-go repository into go-ethereum | Felix Lange | 2014-10-23 | 3 | -5/+5 |
| | | | | mist, etheruem have been moved to cmd/ | ||||
* | Updated the VM & VM tests | obscuren | 2014-10-23 | 1 | -1/+1 |
| | | | | | | * Stack Error shouldn't revert to previous state * Updated VM Test tool * Added Transfer method to VM Env | ||||
* | WIP RPC interface | obscuren | 2014-10-21 | 5 | -0/+487 |