aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
Commit message (Expand)AuthorAgeFilesLines
* cmd/geth, jsre, rpc: run all JS code on the event loopFelix Lange2015-05-251-3/+3
* core/vm, rpc: added disasm to `ext_` RPCobscuren2015-05-221-1/+8
* core: added RPC sign back inobscuren2015-05-222-42/+42
* rpc: NewNotAvailableError instead of NewNotImplementedError if no solczelig2015-05-201-1/+1
* fix eth.sign. now implemented in admin jsre until web3.js has it .zelig2015-05-202-42/+42
* multiple contract source for solidity compiler: returns contract array if mul...zelig2015-05-202-13/+16
* fix solc tests unskipzelig2015-05-201-9/+11
* Merge pull request #1036 from tgerring/issue884Jeffrey Wilcke2015-05-191-6/+16
|\
| * Use bytes.Repeat() instead of 32-byte literalTaylor Gerring2015-05-191-1/+2
| * CleanupTaylor Gerring2015-05-181-3/+1
| * Return nil for certain fields on eth_getTransactionByHash when not part of a ...Taylor Gerring2015-05-181-3/+7
| * Return nil for certain fields on eth_getBlockByNumber pendingTaylor Gerring2015-05-181-0/+7
* | Permit multiple CORS domainsTaylor Gerring2015-05-181-1/+2
|/
* Merge pull request #984 from tgerring/issue924Jeffrey Wilcke2015-05-151-3/+21
|\
| * Unreverse orderingTaylor Gerring2015-05-151-2/+1
| * Omit replies for notification requestsTaylor Gerring2015-05-151-3/+22
* | Format contract code as hexdataTaylor Gerring2015-05-151-0/+1
|/
* fix hex conversion bug in RPC for byte slicesGustav Simonsson2015-05-121-1/+8
* sol: skipped source checking stepobscuren2015-05-121-4/+7
* rpc: hexData => hexNumobscuren2015-05-121-2/+2
* xeth, rpc: implement eth_estimateGas. Closes #930obscuren2015-05-121-4/+21
* cmd/geth, miner, backend, xeth: Fixed miner threads to be settableobscuren2015-05-111-1/+1
* Merge branch 'develop' of github.com:ethereum/go-ethereum into developDaniel A. Nagy2015-05-114-1/+52
|\
| * rpc: display error message to stdoutobscuren2015-05-111-0/+2
| * rpc, xeth: fix #881, gracefully handle offline whisperPéter Szilágyi2015-05-113-1/+50
* | Signing (almost) works.Daniel A. Nagy2015-05-082-2/+35
* | eth_sign added to API for signing arbitrary data.Daniel A. Nagy2015-05-081-1/+1
* | New API call for signatures.Daniel A. Nagy2015-05-082-0/+16
|/
* Merge pull request #833 from ethersphere/frontier/solidityJeffrey Wilcke2015-05-084-16/+160
|\
| * solidity compiler and contract metadocs integrationzelig2015-05-074-16/+160
* | rpc: eth_transactionFilter => eth_newPendingTransactionFilterobscuren2015-05-071-1/+1
* | xeth, core, event/filter, rpc: new block and transaction filtersobscuren2015-05-072-7/+27
|/
* xeth, rpc: added nonce setting through RPC and xeth transactobscuren2015-05-072-1/+17
* setTimeout and sendAsync implementedzsfelfoldi2015-05-061-22/+47
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-04-283-34/+73
|\
| * rpc, xeth: finish cleaning up xethPéter Szilágyi2015-04-281-5/+8
| * rpc: use nil topic wildcards instead of ""Péter Szilágyi2015-04-281-1/+1
| * rpc, ui/qt/qwhisper, whisper, xeth: introduce complex topic filtersPéter Szilágyi2015-04-283-23/+56
| * rpc, whisper, xeth: fix RPC message retrieval data racePéter Szilágyi2015-04-281-1/+1
| * rpc, whisper, xeth: polish whisper RPC interfacePéter Szilágyi2015-04-281-7/+10
* | eth, rpc, xeth: ext_hanhrate => eth_hashrateobscuren2015-04-281-1/+1
* | Merge branch 'develop' of https://github.com/kobigurk/go-ethereum into kobigu...obscuren2015-04-281-0/+2
|\ \ | |/ |/|
| * move eth_hashrate to extKobi Gurkan2015-04-211-2/+2
| * uses newHexNum for eth_hashrateKobi Gurkan2015-04-211-1/+1
| * adds eth_hashrate RPC methodKobi Gurkan2015-04-211-0/+2
* | Return Gas Price not GasTaylor Gerring2015-04-281-2/+2
* | Remove old logger from RPC pkgTaylor Gerring2015-04-272-4/+3
* | Merge pull request #786 from tgerring/issue739Jeffrey Wilcke2015-04-231-1/+5
|\ \
| * | Handle bug in parent call responseTaylor Gerring2015-04-231-1/+5
* | | Merge pull request #783 from tgerring/issue777Jeffrey Wilcke2015-04-232-11/+61
|\ \ \
| * | | Tests for magic wordsTaylor Gerring2015-04-231-0/+35
| * | | Accept num or hex as indexTaylor Gerring2015-04-232-5/+5
| * | | Update eth_getBlockByNumber to accept wordsTaylor Gerring2015-04-232-6/+21
| |/ /
* / / Rename eth_Version to eth_protocolVersion. Closes #737Taylor Gerring2015-04-231-1/+1
|/ /
* / Treat hexnums as big.Int instead of int64Taylor Gerring2015-04-211-41/+46
|/
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-04-211-6/+0
|\
| * fix for: Please remove the "minGasPrice" from block returns #754Andy2015-04-211-6/+0
* | core/rpc: fix for null entries in log filters. Closes #725obscuren2015-04-211-0/+4
|/
* Merge pull request #734 from bas-vk/issue-729Jeffrey Wilcke2015-04-212-4/+120
|\
| * Don't export types/functionsBas van Kervel2015-04-192-16/+16
| * Replaced channel pointer field with non pointer channelBas van Kervel2015-04-192-11/+14
| * Stop accepted and alive connections (http keep-alive) when the rpc service is...Bas van Kervel2015-04-172-38/+67
| * admin.stopRPC support added which stops the RPC HTTP listenerBas van Kervel2015-04-162-2/+86
* | NatSpec passing end to end testzsfelfoldi2015-04-201-5/+2
* | NatSpec, URL register storage retrievalzsfelfoldi2015-04-201-1/+10
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-04-181-2/+2
|\ \
| * | Fix call output when emptyTaylor Gerring2015-04-161-2/+2
| |/
* / rpc: set from. Closes #742obscuren2015-04-181-0/+2
|/
* rpc: changed logging to use glogobscuren2015-04-151-2/+3
* rpc: change eth_protocolVersion to eth_version. Closes #714obscuren2015-04-151-1/+1
* rpc: removed hash from LogRes. Closes #701obscuren2015-04-141-1/+0
* glogobscuren2015-04-101-1/+3
* Removed from as a requirement and changedobscuren2015-04-092-20/+0
* Fixed tests to reflect log changesobscuren2015-04-091-2/+2
* Changed how logs are being recordedobscuren2015-04-081-6/+10
* merge conflictobscuren2015-04-076-67/+514
|\
| * More type fixesTaylor Gerring2015-04-071-10/+9
| * Output format and nil fixesTaylor Gerring2015-04-071-11/+21
| * Increased test coverage for argsTaylor Gerring2015-04-051-0/+214
| * Improved test coverage for rpc typesTaylor Gerring2015-04-042-14/+158
| * More test coverage for responsesTaylor Gerring2015-04-041-34/+111
| * Allow "earliest" block heightTaylor Gerring2015-04-041-0/+2
* | Fixed testsobscuren2015-04-071-4/+2
|/
* Merge pull request #626 from tgerring/rpcfabianJeffrey Wilcke2015-04-034-32/+171
|\
| * Return nil if block does not existTaylor Gerring2015-04-031-1/+6
| * New UncleRes typeTaylor Gerring2015-04-022-11/+56
| * Return nil when requested uncle index is not validTaylor Gerring2015-04-021-12/+12
| * Return nil when requested index does not existTaylor Gerring2015-04-021-4/+8
| * Detect non-valid strings for blockheightTaylor Gerring2015-04-021-1/+5
| * Make "To" field optional in whisper filterTaylor Gerring2015-04-022-5/+33
| * More nil checksTaylor Gerring2015-04-022-2/+10
| * HashArgs fix + testsTaylor Gerring2015-04-022-0/+46
| * Use HashArgs for eth_getTransactionByHashTaylor Gerring2015-04-021-2/+1
* | Merge pull request #619 from tgerring/rpcfabianJeffrey Wilcke2015-04-027-82/+381
|\|
| * No longer require gas & gas price in transactionsTaylor Gerring2015-04-022-8/+19
| * Default Value to 0 for NewTxArgsTaylor Gerring2015-04-022-4/+10
| * Merge branch 'develop' into rpcfabianTaylor Gerring2015-04-021-6/+4
| |\
| * | Format code as hexdataTaylor Gerring2015-04-021-1/+2
| * | Guard from nil pointersTaylor Gerring2015-04-021-0/+9
| * | New args types with stricter checkingTaylor Gerring2015-04-023-33/+79
| * | Output empty block as nilTaylor Gerring2015-04-021-1/+1
| * | Guard for nil *big.IntTaylor Gerring2015-04-021-1/+5
| * | Don't ignore user-specified "include tx" paramTaylor Gerring2015-04-021-2/+2
| * | Better decoding of uint*Taylor Gerring2015-04-021-2/+6
| * | More types supportedTaylor Gerring2015-04-021-0/+20
| * | Trim left only, not rightTaylor Gerring2015-04-021-1/+1
| * | transactionRoot -> transactionsRootTaylor Gerring2015-04-022-31/+31
| * | Default BlockNumber to -1 when missingTaylor Gerring2015-04-021-0/+14
| * | Better nil handlingTaylor Gerring2015-04-021-5/+22
| * | Fixed decoding for uint64 into bytesTaylor Gerring2015-04-021-1/+4
| * | PatchesTaylor Gerring2015-04-011-2/+3
| * | Update nonce fieldTaylor Gerring2015-04-011-1/+1
| * | Respect fullTx option #614Taylor Gerring2015-04-012-0/+158
| * | rename messages to typesTaylor Gerring2015-04-012-0/+0
| * | If nil, type doesn't matterTaylor Gerring2015-04-011-0/+3
| * | Fix block size output #613Taylor Gerring2015-04-012-2/+3
| * | Block nonce as dataTaylor Gerring2015-04-012-3/+3
| * | Make block context optional nullsTaylor Gerring2015-04-011-3/+3
| * | Add new formatting regexTaylor Gerring2015-04-011-6/+7
* | | Default gasobscuren2015-04-022-1/+3
| |/ |/|
* | info => debugobscuren2015-04-021-1/+1
* | Fixes for balanceobscuren2015-04-021-3/+4
* | Changed getters on account objects. Closes #610obscuren2015-04-021-4/+1
|/
* Build transaction context in BlockResTaylor Gerring2015-04-011-9/+10
* Set fullTx option in constructorTaylor Gerring2015-04-013-19/+17
* merge conflictobscuren2015-04-012-2/+34
|\
| * Add settable domain to CORS handler #331Taylor Gerring2015-03-301-3/+17
| * Abstract http into rpc packageTaylor Gerring2015-03-302-0/+18
* | #612 rename eth_protocol methodTaylor Gerring2015-04-011-1/+1
* | Remove extra type assetionTaylor Gerring2015-04-011-12/+12
* | Improved response testsTaylor Gerring2015-04-012-17/+117
* | Re-enabled response tests (needs improvement)Taylor Gerring2015-04-011-117/+52
* | Merge branch 'rpccall' into hexifyTaylor Gerring2015-04-013-9/+357
|\ \
| * | New CallArgsTaylor Gerring2015-03-303-9/+357
| |/
* | Store and retrieve tx context metadata #608Taylor Gerring2015-04-011-2/+6
* | Remove custom MarshalJSON methodsTaylor Gerring2015-04-013-314/+202
* | Make new types StringersTaylor Gerring2015-04-011-4/+11
* | Index is zero-based #607Taylor Gerring2015-03-311-4/+4
* | Update output types to use hexnum or hexdataTaylor Gerring2015-03-312-106/+112
* | Add hexdata and hexnum typesTaylor Gerring2015-03-311-0/+76
|/
* Add ExtraData field to RPC outputTaylor Gerring2015-03-291-2/+2
* Prefer hex prefixed with 0xTaylor Gerring2015-03-291-2/+2
* Report InvalidTypeError as -32602 to JSON RPCTaylor Gerring2015-03-291-1/+1
* CleanupTaylor Gerring2015-03-292-15/+7
* eth_getStorageAt output hex should begin with 0xTaylor Gerring2015-03-291-1/+1
* Merge branch 'develop' of https://github.com/kobigurk/go-ethereum into kobigu...Taylor Gerring2015-03-291-1/+2
|\
| * eth_getTransactionCount now returns a hex stringKobi Gurkan2015-03-281-2/+2
* | Decouple core from rpcTaylor Gerring2015-03-271-35/+2
* | Merge branch 'develop' into rpcargsTaylor Gerring2015-03-275-112/+244
|\|
| * Merge pull request #584 from tgerring/issue577Jeffrey Wilcke2015-03-273-54/+42
| |\
| | * Use ExtraDB for storage. Fixes #577Taylor Gerring2015-03-273-54/+42
| * | Merge pull request #565 from tgerring/responsetypesJeffrey Wilcke2015-03-272-58/+202
| |\ \ | | |/ | |/|
| | * Update response types + testsTaylor Gerring2015-03-252-58/+202
* | | BlockFilterArgsTaylor Gerring2015-03-273-62/+319
* | | Test blockHeightFromJsonInvalidTaylor Gerring2015-03-271-0/+9
* | | NewTxArgs accept numbers or strings for value/gas/gaspriceTaylor Gerring2015-03-272-16/+162
* | | tidyTaylor Gerring2015-03-272-9/+15
* | | Merge remote-tracking branch 'origin' into rpcargsTaylor Gerring2015-03-271-0/+31
|\| |
| * | moved helperobscuren2015-03-261-20/+20
| * | fixed block filter argsobscuren2015-03-261-1/+1
| * | debug logobscuren2015-03-261-1/+1
| * | updated web3.js light for consoleobscuren2015-03-261-1/+1
| * | Fixed filter and refactored codeobscuren2015-03-261-23/+28
| |/
* | Prefer args as strings not objectsTaylor Gerring2015-03-273-53/+51
* | Merge branch 'rpcargs' of github.com:tgerring/go-ethereum into rpcargsTaylor Gerring2015-03-273-7/+7
|\ \
| * | Undo xeth changesTaylor Gerring2015-03-273-9/+9
* | | Undo XEth changesTaylor Gerring2015-03-271-7/+7
|/ /
* | WhisperMessageArgsTaylor Gerring2015-03-272-5/+104
* | WhisperFilterArgsTaylor Gerring2015-03-273-13/+60
* | CompileArgsTaylor Gerring2015-03-272-4/+38
* | SubmitWorkArgs testsTaylor Gerring2015-03-271-0/+48
* | WhisperIdentityArgsTaylor Gerring2015-03-272-4/+40
* | FilterIdArgsTaylor Gerring2015-03-272-4/+37
* | FilterStringArgs testsTaylor Gerring2015-03-273-18/+35
* | DbHexArgs testsTaylor Gerring2015-03-272-2/+80
* | DbArgs testsTaylor Gerring2015-03-271-0/+79
* | Accept number or string for BlockFilterArgs limit/offsetTaylor Gerring2015-03-271-14/+26
* | Accept number or string for BlockFilterArgs to/fromBlockTaylor Gerring2015-03-272-11/+14
* | Sha3ArgsTaylor Gerring2015-03-262-13/+48
* | Convert error checks to Expect functionsTaylor Gerring2015-03-261-312/+168
* | HashIndexArgsTaylor Gerring2015-03-263-6/+66
* | BlockNumIndexArgsTaylor Gerring2015-03-262-4/+62
* | GetDataArgsTaylor Gerring2015-03-263-20/+56
* | DecodeParamError -> InvalidTypeError for unexpected input typeTaylor Gerring2015-03-262-53/+53
* | Add InvalidTypeErrorTaylor Gerring2015-03-262-0/+25
* | GetBalanceArgsTaylor Gerring2015-03-263-26/+56
* | GetTxCountArgsTaylor Gerring2015-03-263-23/+57
* | GetStorageAtArgsTaylor Gerring2015-03-263-27/+74
* | improved NewTxArgs testsTaylor Gerring2015-03-262-7/+55
* | Add blockHeightFromJson convenience functionTaylor Gerring2015-03-261-2/+10
* | improved GetBlockByNumber testsTaylor Gerring2015-03-262-4/+60
* | improved GetBlockByHashArgs testsTaylor Gerring2015-03-261-2/+37
* | GetStorageArgsTaylor Gerring2015-03-263-21/+56
* | NewTxArgsTaylor Gerring2015-03-263-38/+17
* | GetBlockByHashArgsTaylor Gerring2015-03-263-7/+7
|/
* Merge pull request #560 from tgerring/xethcleanupJeffrey Wilcke2015-03-251-4/+8
|\
| * Improve protocol version reportingTaylor Gerring2015-03-251-1/+5
| * Don't expose backend directlyTaylor Gerring2015-03-241-3/+3
* | back to debug logobscuren2015-03-251-1/+1
* | Temp fix for console outputobscuren2015-03-251-2/+4
* | Better error reporting in the console. Updated ethereum.jsobscuren2015-03-251-1/+1
|/
* Implement RPC net_versionTaylor Gerring2015-03-241-1/+1
* Add Close() method to EthereumApiTaylor Gerring2015-03-241-0/+4
* tests + fixesTaylor Gerring2015-03-242-7/+37
* moved state and vm to coreobscuren2015-03-231-1/+1
* "pending" convention should be -2 instead of 0Taylor Gerring2015-03-231-1/+1
* Rename blockAge to blockHeightTaylor Gerring2015-03-231-7/+7
* db_putHex/db_getHex + testsTaylor Gerring2015-03-234-15/+181
* go away!Taylor Gerring2015-03-231-81/+0
* Move remote mining agent to XEthTaylor Gerring2015-03-231-9/+4
* Consistent var namesTaylor Gerring2015-03-231-60/+60
* Always return 3 stringsTaylor Gerring2015-03-231-6/+5
* Stub corrected getWork responseTaylor Gerring2015-03-232-4/+9
* Rename for filename typoTaylor Gerring2015-03-231-0/+0
* Cleanup get/submitWorkTaylor Gerring2015-03-233-12/+54
* Merge pull request #536 from zsfelfoldi/developJeffrey Wilcke2015-03-231-8/+19
|\
| * using robertkrimen/otto, godeps updatedzsfelfoldi2015-03-201-8/+19
* | check for nil ptrsobscuren2015-03-221-2/+2
* | Get work / submit work partially implemented.obscuren2015-03-222-3/+90
* | Merge branch 'develop' into conversionobscuren2015-03-211-3/+3
|\ \
| * | Rename topic to topics #544Taylor Gerring2015-03-211-3/+3
* | | wipobscuren2015-03-211-0/+8
* | | mergeobscuren2015-03-208-708/+318
|\| |
| * | Merge branch 'rpcxeth' into rpcfrontierTaylor Gerring2015-03-204-650/+243
| |\ \
| | * | Add xethAtStateNum convenience methodTaylor Gerring2015-03-201-6/+10
| | * | Move Account register to xethTaylor Gerring2015-03-201-46/+12
| | * | inline GetStorageAtTaylor Gerring2015-03-201-23/+8
| | * | Make prettyTaylor Gerring2015-03-201-12/+14
| | * | inline TransactTaylor Gerring2015-03-201-14/+10
| | * | Move transact gas check to XEthTaylor Gerring2015-03-201-10/+0
| | * | inline CallTaylor Gerring2015-03-201-11/+7
| | * | inline GetBlockByNumberTaylor Gerring2015-03-201-20/+13
| | * | inline GetBlockByHashTaylor Gerring2015-03-201-31/+20
| | * | Reorg for clarityTaylor Gerring2015-03-201-52/+30
| | * | Move gas defaults to XEthTaylor Gerring2015-03-201-10/+3
| | * | Rename FilterOptions to BlockFilterArgsTaylor Gerring2015-03-203-15/+15
| | * | Remove unnecessary event muxTaylor Gerring2015-03-201-3/+1
| | * | Move stateAt func to XEthTaylor Gerring2015-03-201-30/+6
| | * | Rename for clarityTaylor Gerring2015-03-203-21/+21
| | * | inline MessagesChangedTaylor Gerring2015-03-201-6/+1
| | * | inline UninstallWhisperFilterTaylor Gerring2015-03-201-7/+1
| | * | inline NewWhisperFilterTaylor Gerring2015-03-201-11/+6
| | * | inline AllLogsTaylor Gerring2015-03-201-8/+2
| | * | inline LogsTaylor Gerring2015-03-201-7/+1
| | * | inline FilterChangedTaylor Gerring2015-03-201-6/+1
| | * | inline NewFilterStringTaylor Gerring2015-03-201-11/+6
| | * | inline UninstallFilterTaylor Gerring2015-03-201-7/+1
| | * | inline NewFilterTaylor Gerring2015-03-201-9/+4
| | * | Merge branch 'rpcinline' into rpcxethTaylor Gerring2015-03-201-156/+69
| | |\ \
| | | * | inline WhisperPostTaylor Gerring2015-03-201-11/+7