aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix eth_newBlockFilterTaylor Gerring2015-03-131-4/+8
|
* Add web3_clientVersionTaylor Gerring2015-03-131-7/+7
|
* Convert to proper errorsTaylor Gerring2015-03-131-9/+9
| | | | Allow returning different JSON RPC error codes depending on error type
* Get transaction implementedobscuren2015-03-121-3/+15
| | | | | * Added a GetTransaction to XEth * Implemented the `eth_getTransactionByHash` RPC method
* Output filter ID as hexTaylor Gerring2015-03-121-1/+1
|
* Check for existance of key before deleteTaylor Gerring2015-03-121-1/+4
|
* shh_uninstallFilterTaylor Gerring2015-03-121-1/+11
|
* Lowered default gas price and increased default gas limitobscuren2015-03-121-3/+2
|
* Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into ↵obscuren2015-03-121-6/+41
|\ | | | | | | rpcfrontier
| * Rename Topic to TopicsTaylor Gerring2015-03-111-1/+1
| |
| * Get UnclesTaylor Gerring2015-03-111-1/+36
| |
| * TxIndex -> IndexTaylor Gerring2015-03-111-4/+4
| |
* | Default block number changesobscuren2015-03-121-44/+26
|/
* Merge branch 'rpcfrontier' of github.com:ethereum/go-ethereum into rpcfrontierTaylor Gerring2015-03-111-16/+20
|\
| * Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into ↵obscuren2015-03-111-1/+1
| |\ | | | | | | | | | rpcfrontier
| * \ Merge branch 'develop' into rpcfrontierobscuren2015-03-111-15/+19
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: rpc/api.go rpc/args.go
| | * \ Merge ethereum/poc-9 into accounts-integrationFelix Lange2015-03-101-14/+1
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go
| | * | | rpc: add dataDir parameter and JSON-RPC handlerFelix Lange2015-03-101-2/+3
| | | | |
| | * | | xeth: don't sign transactions for tx callFelix Lange2015-03-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This should make calls faster and removes interaction with account manager.
| | * | | Integrate eth_accounts and eth_transact to use new account managerGustav Simonsson2015-03-061-25/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
| * | | | fallbackobscuren2015-03-111-1/+1
| | | | |
* | | | | Get transaction via block & indexTaylor Gerring2015-03-111-0/+27
| |_|_|/ |/| | |
* | | | Output hex should be prepended with 0xTaylor Gerring2015-03-111-1/+1
|/ / /
* | | id to hexobscuren2015-03-111-1/+1
| | |
* | | Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into ↵obscuren2015-03-111-5/+90
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | rpcfrontier Conflicts: rpc/args.go
| * | | Update response typesTaylor Gerring2015-03-111-5/+90
| | | |
* | | | Updated RPCobscuren2015-03-111-3/+3
|/ / / | | | | | | | | | | | | | | | * Added a generic RawMessage deserialiser * Updated ethereum.js * Updated coin test app
* | | mergeobscuren2015-03-101-3/+13
| | |
* | | wipobscuren2015-03-101-15/+2
|\ \ \ | | |/ | |/|
| * | Updated xeth instances to take extra param for ui.Interfaceobscuren2015-03-091-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 #416obscuren2015-03-071-1/+1
| |/
* | Undo client_version changesTaylor Gerring2015-03-101-2/+0
| |
* | Remove support for compiling serpentTaylor Gerring2015-03-091-16/+2
| |
* | TidyTaylor Gerring2015-03-061-32/+58
| |
* | Refactor & cleanupTaylor Gerring2015-03-061-172/+110
| |
* | Resolve storage/storageatTaylor Gerring2015-03-061-5/+5
| |
* | Revert to hex responseTaylor Gerring2015-03-061-4/+3
| |
* | Final name changesTaylor Gerring2015-03-061-8/+9
| |
* | Update RPC methodsTaylor Gerring2015-03-051-84/+115
| | | | | | | | Re-order to match spec and explicitly list unimplemented methods
* | Output net_peerCount as hexTaylor Gerring2015-03-041-1/+2
| |
* | Return block number as hexTaylor Gerring2015-03-041-1/+1
| |
* | Update NewTXArgs to accept hexTaylor Gerring2015-03-041-6/+9
| |
* | Add client_version RPC messageTaylor Gerring2015-03-041-0/+2
| |
* | Remove defunct callsTaylor Gerring2015-03-021-62/+30
| |
* | Rename "net" methodsTaylor Gerring2015-03-021-4/+4
|/
* Defautl blockobscuren2015-02-261-32/+31
|
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-261-4/+23
|\ | | | | | | | | Conflicts: accounts/account_manager.go
| * Stub defaultBlock methodsTaylor Gerring2015-02-251-0/+21
| |
* | wipobscuren2015-02-261-33/+113
|/
* Consolidate related itemsTaylor Gerring2015-02-251-37/+36
|
* Rename filesTaylor Gerring2015-02-251-0/+637