aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* p2p: add I/O timeout for encrytion handshakeFelix Lange2015-02-131-1/+3
|
* p2p: fix goroutine leak for invalid peersFelix Lange2015-02-131-6/+5
| | | | | The deflect logic called Disconnect on the peer, but the peer never ran and wouldn't process the disconnect request.
* p2p: improve read deadlinesFelix Lange2015-02-132-15/+27
| | | | | | | | There are now two deadlines, frameReadTimeout and payloadReadTimeout. The frame timeout is longer and allows for connections that are idle. The message timeout is still short and ensures that we don't get stuck in the middle of a message.
* p2p/discover: map listening port using configured mechanismFelix Lange2015-02-134-18/+35
|
* p2p/discover: code review fixesFelix Lange2015-02-133-7/+9
|
* cmd/ethereum, cmd/mist, eth, p2p: use package p2p/natFelix Lange2015-02-139-522/+54
| | | | This deletes the old NAT implementation.
* p2p/nat: new package for port mapping stuffFelix Lange2015-02-133-0/+499
| | | | | | I have verified that UPnP and NAT-PMP work against an older version of the MiniUPnP daemon running on pfSense. This code is kind of hard to test automatically.
* cmd/bootnode: new command (replaces cmd/peerserver)Felix Lange2015-02-101-0/+86
|
* eth: remove unused Ethereum sync fieldsFelix Lange2015-02-101-4/+0
|
* cmd/mist, cmd/ethereum: add CLI arguments for node keyFelix Lange2015-02-105-16/+72
|
* crypto: add key loading functionsFelix Lange2015-02-102-1/+30
|
* eth: don't warn if no BootNodes are specifiedFelix Lange2015-02-091-0/+3
|
* p2p/discover: deflake UDP testsFelix Lange2015-02-094-59/+123
|
* cmd/ethereum, cmd/mist: add flag for discovery bootstrap nodesFelix Lange2015-02-079-22/+43
|
* cmd/mist, eth, javascript, p2p: use Node URLs for peer suggestionsFelix Lange2015-02-076-62/+21
|
* p2p: fixes for actual connectionsFelix Lange2015-02-076-29/+38
| | | | The unit test hooks were turned on 'in production'.
* p2p/discover: add node URL functions, distinguish TCP/UDP portsFelix Lange2015-02-078-326/+532
| | | | | The discovery RPC protocol does not yet distinguish TCP and UDP ports. But it can't hurt to do so in our internal model.
* cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p APIFelix Lange2015-02-0616-125/+86
|
* cmd/peerserver: is goneFelix Lange2015-02-061-58/+0
| | | | Will be back soon. Maybe.
* p2p: integrate p2p/discoverFelix Lange2015-02-0615-1659/+1056
| | | | | | | | | | | | Overview of changes: - ClientIdentity has been removed, use discover.NodeID - Server now requires a private key to be set (instead of public key) - Server performs the encryption handshake before launching Peer - Dial logic takes peers from discover table - Encryption handshake code has been cleaned up a bit - baseProtocol is gone because we don't exchange peers anymore - Some parts of baseProtocol have moved into Peer instead
* p2p/discover: add some helper functionsFelix Lange2015-02-064-20/+41
|
* p2p/discover: new package implementing the Node Discovery ProtocolFelix Lange2015-02-064-0/+1428
|
* rlp: fix encoding of arrays with byte element typeFelix Lange2015-02-062-1/+27
|
* crypto: make it easier to run Sha3 on multiple inputsFelix Lange2015-02-062-4/+5
| | | | | crypto.Sha3(append(foo, bar)) --> crypto.Sha3(foo, bar) crypto.Sha3([]byte{}) --> crypto.Sha3()
* key generation abstracted out, for testing with deterministic keyszelig2015-02-062-12/+92
|
* fix clientidentity test after privkey removedzelig2015-02-061-6/+2
|
* get rid of Private Key in ClientIdentityzelig2015-02-061-5/+3
|
* make crypto handshake calls package level, store privateKey on peer + tests okzelig2015-02-063-87/+52
|
* apply handshake related improvements from p2p.crypto branchzelig2015-02-063-29/+31
|
* add temporary forced session token generationzelig2015-02-062-0/+8
|
* peer-level integration test for crypto handshakezelig2015-02-063-15/+71
| | | | | | | | | - add const length params for handshake messages - add length check to fail early - add debug logs to help interop testing (!ABSOLUTELY SHOULD BE DELETED LATER) - wrap connection read/writes in error check - add cryptoReady channel in peer to signal when secure session setup is finished - wait for cryptoReady or timeout in TestPeersHandshake
* chop first byte when cryptoid.PubKeyS is set from identity.Pubkey() since ↵zelig2015-02-061-1/+11
| | | | this is directly copied in the auth message
* add initial peer level test (failing)zelig2015-02-061-1/+52
|
* add code documentationzelig2015-02-061-15/+47
|
* changes that fix it all:zelig2015-02-062-57/+146
| | | | | | | | | | | - set proper public key serialisation length in pubLen = 64 - reset all sizes and offsets - rename from DER to S (we are not using DER encoding) - add remoteInitRandomPubKey as return value to respondToHandshake - add ImportPublicKey with error return to read both EC golang.elliptic style 65 byte encoding and 64 byte one - add ExportPublicKey falling back to go-ethereum/crypto.FromECDSAPub() chopping off the first byte - add Import - Export tests - all tests pass
* important fix for peer pubkey. when taken from identity, chop first format byte!zelig2015-02-061-1/+1
|
* add equality check for nonce and remote noncezelig2015-02-061-0/+6
|
* add minor comments to the testzelig2015-02-061-0/+4
|
* first stab at integrating crypto in our p2pzelig2015-02-063-44/+79
| | | | | | | - abstract the entire handshake logic in cryptoId.Run() taking session-relevant parameters - changes in peer to accomodate how the encryption layer would be switched on - modify arguments of handshake components - fixed test getting the wrong pubkey but it till crashes on DH in newSession()
* integrate cryptoId into peer and connection lifecyclezelig2015-02-062-3/+33
|
* completed the test. FAIL now. it crashes at diffie-hellman. ECIES -> ↵zelig2015-02-062-43/+57
| | | | secp256k1-go panics
* handshake test to cryptozelig2015-02-061-1/+1
|
* handshake test to cryptozelig2015-02-062-2/+54
|
* fix crashzelig2015-02-061-22/+29
| | | | | | - add session token check and fallback to shared secret in responder call too - use explicit length for the types of new messages - fix typo resp[resLen-1] = tokenFlag
* rewrite to comply with latest speczelig2015-02-061-53/+138
| | | | | | | | - correct sizes for the blocks : sec signature 65, ecies sklen 16, keylength 32 - added allocation to Xor (should be optimized later) - no pubkey reader needed, just do with copy - restructuring now into INITIATE, RESPOND, COMPLETE -> newSession initialises the encryption/authentication layer - crypto identity can be part of client identity, some initialisation when server created
* add crypto auth logic to p2pzelig2015-02-061-0/+174
|
* fix protocol to accomodate privkeyzelig2015-02-062-1/+14
|
* add privkey to clientIdentity + testszelig2015-02-062-5/+21
|
* initial hook for crypto handshake (void, off by default)zelig2015-02-061-0/+26
|
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-062-6/+5
|\
| * Pin Travis go version to 1.4.1Taylor Gerring2015-02-061-1/+1
| |
| * Only submit on coverage report successTaylor Gerring2015-02-061-2/+1
| |
| * Only download missing deps, not buildTaylor Gerring2015-02-061-1/+1
| |
| * Don't reference by $GOROOTTaylor Gerring2015-02-061-2/+2
| |
* | Undone fix. Will re-enable once chain resetsobscuren2015-02-061-12/+5
|/
* Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-061-2/+1
|\ | | | | | | | | Conflicts: README.md
| * Updated readmeobscuren2015-02-061-10/+10
| |
* | Updated readmeobscuren2015-02-061-10/+10
|/
* Merge pull request #290 from ↵Jeffrey Wilcke2015-02-062-7/+7
|\ | | | | | | | | Gustav-Simonsson/correct_block_parent_timestamp_check Correct block parent timestamp check and typos
| * Correct block parent timestamp check and typosGustav Simonsson2015-02-042-7/+7
| |
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-067-17/+13
|\ \
| * \ Merge pull request #287 from ethereum/system-testingJeffrey Wilcke2015-02-067-17/+13
| |\ \ | | | | | | | | Seednode CLI param updates
| | * | Move hardcoded seed node address to app flagTaylor Gerring2015-02-037-17/+13
| | | | | | | | | | | | | | | | Replaces functionality `-seed=true` with `-seed="ip:port"`
* | | | updated homeobscuren2015-02-061-1/+1
| | | |
* | | | Merge commit '9d84609b3faf797f4a611587abdda3d6b3b07917' into developobscuren2015-02-064-51/+17
|\ \ \ \
| * \ \ \ Merge branch 'master' of https://github.com/ethereum/ethereum.jsMarek Kotewicz2015-02-060-0/+0
| |\ \ \ \
| * | | | | bring back jsonrpc single method calls in pollingMarek Kotewicz2015-02-064-51/+17
| | | | | |
* | | | | | pending / chain eventobscuren2015-02-066-5/+71
| | | | | |
* | | | | | Merge branch 'tgerring-develop' into developobscuren2015-02-066-40/+39
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | Merge branch 'develop' of https://github.com/tgerring/go-ethereum into ↵obscuren2015-02-066-40/+39
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tgerring-develop Conflicts: rpc/http/server.go
| * | | | | Merge branch 'develop' of github.com:tgerring/go-ethereum into developTaylor Gerring2015-02-055-39/+39
| |\ \ \ \ \
| | * | | | | Update RPC message formatTaylor Gerring2015-02-043-22/+27
| | | | | | |
| | * | | | | Merge branch 'develop' of github.com:tgerring/go-ethereum into developTaylor Gerring2015-02-043-17/+12
| | |\ \ \ \ \ | | | |_|_|_|/ | | |/| | | |
| | | * | | | Update signature for rpc websocketsTaylor Gerring2015-02-022-15/+9
| | | | | | |
| | | * | | | Decrease log level for Sending RPC payloadTaylor Gerring2015-02-021-2/+3
| | | | | | |
| | | * | | | Merge pull request #3 from ethereum/developTaylor Gerring2015-02-02553-23848/+2237273
| | | |\ \ \ \ | | | | | | | | | | | | | | | | Update to develop
| * | | | | | | Use different default RPC port per #186Taylor Gerring2015-02-052-2/+2
| |/ / / / / /
* | | | | | | Default gas price and default gas for rpcobscuren2015-02-054-18/+15
| | | | | | |
* | | | | | | set uncles regardless of empty uncle list. Fixes invalid blocks being minedobscuren2015-02-052-5/+4
| | | | | | |
* | | | | | | fixed testobscuren2015-02-052-0/+3
| | | | | | |
* | | | | | | Propagate known transactions to new peers on connectobscuren2015-02-056-22/+30
| | | | | | |
* | | | | | | Merge branch 'develop' into minerobscuren2015-02-0535-482/+1340
|\ \ \ \ \ \ \
| * \ \ \ \ \ \ updated testsobscuren2015-02-0528-946/+2130
| |\ \ \ \ \ \ \ | | | |_|_|_|/ / | | |/| | | | |
| | * | | | | | Merge pull request #55 from ethereum/developMarek Kotewicz2015-02-045-4/+19
| | |\ \ \ \ \ \ | | | | |_|_|/ / | | | |/| | | | fixed jsonrpc result field 0 not handled properly
| | | * | | | | fixed jsonrpc response 0 not handled properlyMarek Kotewicz2015-02-045-4/+19
| | |/ / / / /
| | * | | | | version upgradeMarek Kotewicz2015-02-042-2/+2
| | | | | | |
| | * | | | | jsonrpc.js tests && jsonrpc response validation is more strictMarek Kotewicz2015-02-048-10/+235
| | | | | | |
| | * | | | | jsonrpc.js file && batch pollingMarek Kotewicz2015-02-047-46/+196
| | | | | | |
| | * | | | | simplified polling && jsonrpc payload creationMarek Kotewicz2015-02-047-90/+36
| | | | | | |
| | * | | | | tests && fixes for utils methodsMarek Kotewicz2015-02-046-4/+101
| | | | | | |
| | * | | | | clearing testsMarek Kotewicz2015-02-047-442/+465
| | | | | | |
| | * | | | | version upgrade 0.0.12Marek Kotewicz2015-02-032-2/+2
| | | | | | |
| | * | | | | Merge branch 'develop' into cppMarek Kotewicz2015-02-0313-247/+555
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: dist/ethereum.js.map dist/ethereum.min.js
| | | * | | | | parsing events outputMarek Kotewicz2015-02-036-13/+69
| | | | | | | |
| | | * | | | | gulpMarek Kotewicz2015-02-033-5/+35
| | | | | | | |
| | | * | | | | event outputParser && testsMarek Kotewicz2015-02-038-136/+288
| | | | | | | |
| | | * | | | | common cleanupMarek Kotewicz2015-02-036-110/+114
| | | | | | | |
| | | * | | | | event_inc exampleMarek Kotewicz2015-02-021-0/+66
| | | | | | | |
| | * | | | | | reverted ethereum.jsarkpar2015-02-031-3/+4
| | | | | | | |
| | * | | | | | removed splitter.qmlarkpar2015-02-021-4/+3
| | | | | | | |
| | * | | | | | Better HTML template in Mix.Gav Wood2015-02-024-3/+9
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use happened in JS. Debugging QML enabled.
| | * | | | | fixed event signaturesMarek Kotewicz2015-02-015-10/+20
| | | | | | |
| | * | | | | version upgradeMarek Kotewicz2015-01-312-2/+2
| | | | | | |
| | * | | | | Merge branch 'develop'Marek Kotewicz2015-01-3115-709/+1238
| | |\ \ \ \ \
| | | * | | | | eth.filter next param optionalMarek Kotewicz2015-01-315-9/+20
| | | | | | | |
| | | * | | | | formatInput && formatOutput simplifiedMarek Kotewicz2015-01-315-52/+56
| | | | | | | |
| | | * | | | | few methods moved to utilsMarek Kotewicz2015-01-319-154/+154
| | | | | | | |
| | | * | | | | constants separated to const.js fileMarek Kotewicz2015-01-316-58/+104
| | | | | | | |
| | | * | | | | toAscii && fromAscii moved to utilsMarek Kotewicz2015-01-317-146/+122
| | | | | | | |
| | | * | | | | eventsMarek Kotewicz2015-01-316-19/+63
| | | | | | | |
| | | * | | | | eventsMarek Kotewicz2015-01-315-22/+120
| | | | | | | |
| | | * | | | | abi.js cleanup && new types.js, utils.jsMarek Kotewicz2015-01-319-169/+327
| | | | | | | |
| | | * | | | | gulpMarek Kotewicz2015-01-313-129/+193
| | | | | | | |
| | | * | | | | formatters separatedMarek Kotewicz2015-01-312-119/+179
| | | | | | | |
| | | * | | | | event optionsMarek Kotewicz2015-01-318-36/+104
| | | | | | | |
| | * | | | | | contract with array exampleMarek Kotewicz2015-01-301-0/+76
| | |/ / / / /
| | * | | | | topics are deprecatedMarek Kotewicz2015-01-295-10/+16
| | | | | | |
| | * | | | | topic for backwards compatibilityMarek Kotewicz2015-01-294-3/+5
| | | | | | |
| | * | | | | Merge branch 'cpp' into cpp2Marek Kotewicz2015-01-2918-153/+797
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: example/balance.html
| | | * | | | | moved commentMarek Kotewicz2015-01-293-14/+10
| | | | | | | |
| | | * | | | | event exampleMarek Kotewicz2015-01-298-15/+162
| | | | | | | |
| | | * | | | | contract.js simplifiedMarek Kotewicz2015-01-296-188/+231
| | | | | | | |
| | | * | | | | event.jsMarek Kotewicz2015-01-2910-10/+106
| | | | | | | |
| | | * | | | | events initMarek Kotewicz2015-01-284-5/+66
| | | | | | | |
| | | * | | | | tests for abi.filtersMarek Kotewicz2015-01-282-1/+59
| | | | | | | |
| | | * | | | | abi function typeMarek Kotewicz2015-01-288-12/+209
| | | | | | | |
| | * | | | | | Fix for API.Gav Wood2015-01-291-1/+1
| | | | | | | |
| * | | | | | | Updated testsobscuren2015-02-048-5/+137
| | |_|/ / / / | |/| | | | |
* | | | | | | Filteringobscuren2015-02-0513-498/+983
| | | | | | |
* | | | | | | WIP minerobscuren2015-02-045-54/+219
|/ / / / / /
* | | | | | Removed minimum height. Closes #282obscuren2015-02-031-2/+1
| | | | | |
* | | | | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-032-3/+1
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | Separate Coveralls submission from coverage scriptTaylor Gerring2015-02-032-3/+1
| | |_|_|/ | |/| | |
* | | | | Fixed whisper "to" filtering. Closes #283obscuren2015-02-034-4/+16
| | | | |
* | | | | Added missing whisper timestamp. Closes #284obscuren2015-02-033-7/+5
| | | | |
* | | | | Added a different default home pageobscuren2015-02-033-2/+77
| | | | |
* | | | | Docs & old code removedobscuren2015-02-034-25/+28
| | | | |
* | | | | Make sure that CALL addr is always 20 bytesobscuren2015-02-031-5/+6
| | | | |
* | | | | Raw data for existing blocksobscuren2015-02-031-1/+1
| | | | |
* | | | | Fixed a copy issue in the trie which could cause a consensus failureobscuren2015-02-037-19/+53
| | | | |
* | | | | Updated testsobscuren2015-02-0338-157/+6367
| | | | |
* | | | | Added (disabled) Jit validationobscuren2015-02-015-4/+43
| | | | |
* | | | | Removed some VMEnv & Added VmType() to vm.Environmentobscuren2015-02-016-184/+25
|/ / / /
* | | | Merge branch 'bounty' into developobscuren2015-02-011-1/+2
|\ \ \ \
| * | | | Fixed nobscuren2015-02-011-1/+2
| | | | |
* | | | | Merge branch 'bounty' into developobscuren2015-02-012-6/+2
|\| | | |
| * | | | Fixed Sign nonceobscuren2015-02-012-6/+2
| | | | |
* | | | | Merge branch 'bounty' into developobscuren2015-02-012-7/+23
|\| | | |
| * | | | Validate transactions sender before adding to pool. Closes #272obscuren2015-02-012-7/+23
| | | | |
* | | | | removed old codeobscuren2015-02-011-12/+0
| | | | |
* | | | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-013-22/+24
|\ \ \ \ \
| * | | | | Update coveralls badge to develop branchTaylor Gerring2015-01-311-1/+1
| | | | | |
| * | | | | Travis fixes for Qt5.4Taylor Gerring2015-01-311-4/+7
| | | | | |
| * | | | | Updated for Qt5.4Taylor Gerring2015-01-311-17/+16
| | | | | |
* | | | | | Removed debug logobscuren2015-01-311-2/+0
|/ / / / /
* | | | | added new default faviconobscuren2015-01-301-0/+0
| | | | |
* | | | | "fixed" transaction viewobscuren2015-01-303-6/+5
| | | | |
* | | | | added disasmobscuren2015-01-301-1/+2
| | | | |
* | | | | Bumped version numberobscuren2015-01-302-2/+2
| | | | |
* | | | | Added whisper messagesobscuren2015-01-303-5/+59
| | | | | | | | | | | | | | | | | | | | * have identity & get messages
* | | | | Added whisper interface for xeth, added examples, updated RPCobscuren2015-01-3010-17/+296
| | | | | | | | | | | | | | | | | | | | | | | | | * Added RPC methods for whisper * Added whisper example
* | | | | Fixed whisper pub key bugobscuren2015-01-302-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * Unrecoverable messages would cause segfault when recovering invalid pub key
* | | | | Fixed issue with Storage()obscuren2015-01-303-31/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Storage() returned encoded values. They are now decode prior to hexing * Removed old code from state object * Updated coin
* | | | | debug err removedobscuren2015-01-301-1/+1
| | | | |
* | | | | default values removedobscuren2015-01-304-16/+24
| | | | |
* | | | | Merge branch 'qt5.4' of github.com-obscure:ethereum/go-ethereum into qt5.4obscuren2015-01-3010-518/+45
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: rpc/message.go
| * | | | | Travis fixTaylor Gerring2015-01-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Satisfy dependency for obscuren/qml fork
| * | | | | CleanupTaylor Gerring2015-01-304-67/+44
| | | | | |
| * | | | | Merge branch 'qt5.4' of github.com:ethereum/go-ethereum into qt5.4Taylor Gerring2015-01-3072-3144/+1736
| |\ \ \ \ \
| * | | | | | Remove old websocket implementationTaylor Gerring2015-01-295-474/+0
| | | | | | |
* | | | | | | More dapp samplesobscuren2015-01-307-41/+351
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | * Info DApp, coin DApp * Additional rpc methods
* | | | | | Reimplemented message filters for rpc callsobscuren2015-01-296-15/+206
| | | | | |
* | | | | | Samples and disams cmd for evm codeobscuren2015-01-294-5/+103
| | | | | |
* | | | | | Added RPC "Call" for JS calls to contractsobscuren2015-01-296-11/+55
| | | | | |
* | | | | | Added abi exampleobscuren2015-01-291-0/+44
| | | | | |
* | | | | | removed createobscuren2015-01-291-11/+0
| | | | | |
* | | | | | Merge branch 'develop' into qt5.4obscuren2015-01-291-3/+3
|\ \ \ \ \ \
| * | | | | | Separate golang source dir from GOPATH dirTaylor Gerring2015-01-291-3/+3
| | | | | | |
* | | | | | | implement transactobscuren2015-01-295-48/+24
| | | | | | |
* | | | | | | updated ethereum.js and moved to subfolderobscuren2015-01-297-3/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Previous subtree caused a lot of trouble * Implemented sha3 in our shiny new http JSON RPC
* | | | | | | Add 'cmd/mist/assets/ext/ethereum.js/' from commit ↵obscuren2015-01-2934-0/+4018
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '63d9c070ef7637a3d570a5a45ea931c1680ebc02' git-subtree-dir: cmd/mist/assets/ext/ethereum.js git-subtree-mainline: f80fe9776335312615ce3b1a565e4f48e171ab0d git-subtree-split: 63d9c070ef7637a3d570a5a45ea931c1680ebc02
| * | | | | | fixed incoming messagesMarek Kotewicz2015-01-284-4/+4
| | | | | | |
| * | | | | | log error on console, if api returns an errorMarek Kotewicz2015-01-284-3/+15
| | | | | | |
| * | | | | | removed fromFixed, toFixed && offset from testsMarek Kotewicz2015-01-281-3/+0
| | | | | | |
| * | | | | | removed web3.eth.account, fixed #37Marek Kotewicz2015-01-275-6/+3
| | | | | | |
| * | | | | | fixed #23Marek Kotewicz2015-01-276-6/+46
| | |_|_|/ / | |/| | | |
| * | | | | evaluating solidity method input paramsMarek Kotewicz2015-01-274-3/+6
| | | | | |
| * | | | | contract method nameMarek Kotewicz2015-01-271-0/+1
| | | | | |
| * | | | | getMethodWithNameMarek Kotewicz2015-01-274-32/+32
| | | | | |
| * | | | | fixed contract exampleMarek Kotewicz2015-01-271-2/+2
| | | | | |
| * | | | | fixed natspec exampleMarek Kotewicz2015-01-271-2/+0
| | | | | |
| * | | | | Merge branch 'develop' into cppMarek Kotewicz2015-01-2720-68/+78
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: dist/ethereum.js.map dist/ethereum.min.js
| | * | | | | removed promise dependency, updated readme, fixed node.js version of libMarek Kotewicz2015-01-2713-36/+24
| | | | | | |
| | * | | | | upgraded version to 0.0.9Marek Kotewicz2015-01-262-2/+2
| | | | | | |
| | * | | | | gulpMarek Kotewicz2015-01-263-3/+3
| | | | | | |
| | * | | | | Merge branch 'master' into syncMarek Kotewicz2015-01-261-1/+1
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/websocket.js
| | | * | | | | added localwanderer2015-01-251-0/+18
| | | | | | | |
| | | * | | | | Merge pull request #32 from kumavis/patch-1Marek Kotewicz2015-01-181-1/+1
| | | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | WebsocketProvider - fixed incorrect variable name
| | | | * | | | | WebsocketProvider - fixed incorrect variable nameaaron2015-01-171-1/+1
| | | |/ / / / /
| | | * | | | | shh getMessage => getMessagesJeffrey Wilcke2015-01-131-1/+1
| | | | | | | |
| | * | | | | | Merge branch 'develop' into syncMarek Kotewicz2015-01-261-0/+18
| | |\ \ \ \ \ \
| | | * | | | | | added addressbookwanderer2015-01-251-0/+18
| | | | | | | | |
| | * | | | | | | polling every secondMarek Kotewicz2015-01-264-4/+4
| | | | | | | | |
| | * | | | | | | return null instead of undefined, if not provider is setMarek Kotewicz2015-01-264-4/+4
| | | | | | | | |
| | * | | | | | | watches are calling callback with a single result object, not a full jsonrpc ↵Marek Kotewicz2015-01-265-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | response
| * | | | | | | | Additional work on the JS stuff to make it more similar to Solidity.Gav Wood2015-01-265-4/+40
| | | | | | | | |
| * | | | | | | | Fix string outputs.Gav Wood2015-01-255-8/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Auto collapse for < 2 returns.
| * | | | | | | | Auto select call or transact depending on constness.Gav Wood2015-01-254-6/+6
| | | | | | | | |
| * | | | | | | | Fixes to ethereum.js and standard.js.Gav Wood2015-01-254-5/+29
| | | | | | | | |
| * | | | | | | | Vanity addresses in AZ.Gav Wood2015-01-255-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes to ethereum.js eth.flush()
| * | | | | | | | Merge commit 'b1971f46cce7d21be5f6277c9f8c406a0d195f78' into natspecMarek Kotewicz2015-01-235-50/+34
| |\| | | | | | |
| | * | | | | | | simplified synchronous pollingMarek Kotewicz2015-01-235-50/+34
| | | | | | | | |
| * | | | | | | | natspec.js updated to use sync apiMarek Kotewicz2015-01-221-1/+1
| | | | | | | | |
| * | | | | | | | Merge commit '93fa6855afad7a7eb86e49efe384372a6060da35' into natspecMarek Kotewicz2015-01-224-23/+27
| |\| | | | | | |
| | * | | | | | | not parsing transaction outputMarek Kotewicz2015-01-224-23/+27
| | | | | | | | |
| * | | | | | | | Merge commit 'b32dedc5b54f853cf63bb2663c8bca6aa4272b0b' into natspecMarek Kotewicz2015-01-224-39/+43
| |\| | | | | | |
| | * | | | | | | fixed contract.jsMarek Kotewicz2015-01-224-39/+43
| | | | | | | | |
| * | | | | | | | Merge commit '8e3ba3a4285cc7e902a018196b3849df56944dd0' into natspecMarek Kotewicz2015-01-225-66/+88
| |\| | | | | | |
| | * | | | | | | implicit solidity method callMarek Kotewicz2015-01-225-66/+88
| | | | | | | | |
| * | | | | | | | fixed natspec exampleMarek Kotewicz2015-01-221-9/+8
| | | | | | | | |
| * | | | | | | | Merge commit 'cdd7af2a6e87363d0ff7d2528f9d9b521bf2ef20' into natspecMarek Kotewicz2015-01-225-8/+78
| |\| | | | | | |
| | * | | | | | | qt sync providerMarek Kotewicz2015-01-225-8/+78
| | | | | | | | |
| * | | | | | | | Merge commit 'eb4984c0d036c1420e782ca136810e851e33fb37' into natspecMarek Kotewicz2015-01-2221-1181/+265
| |\| | | | | | |
| | * | | | | | | changes in filter.js (not yet working)Marek Kotewicz2015-01-225-50/+20
| | | | | | | | |
| | * | | | | | | toDecimal/fromDecimal is using bignumber.js nowMarek Kotewicz2015-01-224-29/+63
| | | | | | | | |
| | * | | | | | | removed unused pieces of codeMarek Kotewicz2015-01-224-93/+3
| | | | | | | | |
| | * | | | | | | removed send queues from providermanagerMarek Kotewicz2015-01-225-62/+28
| | | | | | | | |
| | * | | | | | | contract.html example is working with sync apiMarek Kotewicz2015-01-228-62/+60
| | | | | | | | |
| | * | | | | | | sync api tests running, removed unused pieces of codeMarek Kotewicz2015-01-2210-173/+9
| | | | | | | | |
| | * | | | | | | removed unused providersMarek Kotewicz2015-01-228-823/+9
| | | | | | | | |
| | * | | | | | | http sync apiMarek Kotewicz2015-01-228-102/+286
| | |/ / / / / /
| * | | | | | | Merge commit 'c4638ba3edbd14677da5441d61f7845668df2b22' into natspecMarek Kotewicz2015-01-225-6/+11
| |\| | | | | |
| | * | | | | | gulpMarek Kotewicz2015-01-223-5/+8
| | | | | | | |
| | * | | | | | changes to for natspecMarek Kotewicz2015-01-222-1/+3
| | | | | | | |
| * | | | | | | natspec changesMarek Kotewicz2015-01-221-2/+3
| | | | | | | |
| * | | | | | | Merge commit '53b4fda16d0b191be8ab986379a328aa38aaf916' into natspecMarek Kotewicz2015-01-217-38/+112
| |\| | | | | |
| | * | | | | | _currentAbi objectMarek Kotewicz2015-01-211-0/+1
| | | | | | | |
| | * | | | | | solidity methods "overloading"Marek Kotewicz2015-01-207-38/+111
| | | | | | | |
| * | | | | | | fixed natspec_contract.html exampleMarek Kotewicz2015-01-201-1/+2
| | | | | | | |
| * | | | | | | Merge commit '2b4d38b9bf059014596e1ab00c99dc2ad4ab3761' into ethereumjsMarek Kotewicz2015-01-197-28/+149
| |\| | | | | |
| | * | | | | | parsing real, ureal values on outputMarek Kotewicz2015-01-195-14/+85
| | | | | | | |
| | * | | | | | encoding real on inputMarek Kotewicz2015-01-195-7/+61
| | | | | | | |
| | * | | | | | fixes for autoproviderMarek Kotewicz2015-01-195-13/+9
| | | | | | | |
| * | | | | | | Merge commit '6a383d6ed3fb37cf6739f6ac441652adfdb70463' into ethereumjsMarek Kotewicz2015-01-175-242/+411
| |\| | | | | |
| | * | | | | | tests for parsing output arrayMarek Kotewicz2015-01-171-0/+27
| | | | | | | |
| | * | | | | | output parser string supportMarek Kotewicz2015-01-175-127/+207
| | | | | | | |
| | * | | | | | support for int array types[]Marek Kotewicz2015-01-175-109/+180
| | | | | | | |
| | * | | | | | removed unused functionsMarek Kotewicz2015-01-171-9/+0
| | | | | | | |
| * | | | | | | Merge commit '29333fc213b62b27ef826616cf77430947fb6eab' into ethereumjsMarek Kotewicz2015-01-1614-97/+112
| |\| | | | | |
| | * | | | | | default padding set to 32, separated to one variableMarek Kotewicz2015-01-164-11/+15
| | | | | | | |