aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
Commit message (Collapse)AuthorAgeFilesLines
* removed compileobscuren2015-03-162-22/+4
|
* Moved ethutil => commonobscuren2015-03-1614-79/+79
|
* removed seed hashobscuren2015-03-151-1/+1
|
* mergeobscuren2015-03-154-12/+83
|\
| * cmd/ethereum: add blocktest commandFelix Lange2015-03-142-0/+67
| |
| * cmd/utils: GetEthereum -> MakeEthConfigFelix Lange2015-03-143-12/+16
| | | | | | | | | | This allows changing the config before starting Ethereum with it.
* | Support for addresses with or without 0x. Fixes #472Maran2015-03-141-1/+1
| |
* | more obvious failure for ethtestobscuren2015-03-131-5/+5
| |
* | Merge branch 'rpcfrontier' into developobscuren2015-03-131-1/+2
|\ \
| * | #469Taylor Gerring2015-03-131-1/+2
| | |
* | | fixed ethtestobscuren2015-03-131-1/+3
| | |
* | | Return 1 on failobscuren2015-03-131-0/+5
|/ /
* | Update path to web3 libraryTaylor Gerring2015-03-121-1/+1
| |
* | Update ethereum.jsTaylor Gerring2015-03-1244-6328/+0
| | | | | | | | Added to git modules
* | Merge pull request #460 from tgerring/ethutilFelix Lange2015-03-121-2/+1
|\ \ | |/ |/| Move MakeName to ethutil
| * Move MakeName to ethutilTaylor Gerring2015-03-121-2/+1
| |
* | updated rnd vm test => state testobscuren2015-03-121-28/+88
| |
* | cmd/ethereum: remove extra check for 'no accounts' errorFelix Lange2015-03-121-9/+2
| | | | | | | | This error can no longer be returned from eth.New.
* | miner: provide coinbase when starting the minerFelix Lange2015-03-125-47/+38
|/ | | | | | | | | | This avoids having to query the coinbase when creating the miner, which in turn eliminates the dreaded startup error when no accounts are set up. Later, this will also allow us to simply restart the miner when the user picks a different coinbase. This causes a lot of changes in other packages. These are included in this commit because they're impossible to separate.
* mergeobscuren2015-03-122-16/+29
|\
| * cmd/ethereum: add a flag to switch to unencrytped keystoreFelix Lange2015-03-112-14/+28
| | | | | | | | | | | | | | | | | | This is mostly for automated tests. The tests can use the following commands to start the node: ethereum --unencrypted-keys account new ... ethereum --unencrypted-keys
* | Reverted globalobscuren2015-03-112-8/+3
| |
* | Merge branch 'develop' into rpcfrontierobscuren2015-03-1114-710/+430
|\| | | | | | | | | | | Conflicts: rpc/api.go rpc/args.go
| * Merge branch origin/develop into accounts-integrationFelix Lange2015-03-117-472/+62
| |\ | | | | | | | | | | | | | | | | | | Conflicts: cmd/blocktest/main.go cmd/mist/debugger.go cmd/utils/cmd.go
| * | cmd/utils: improve CLI help templatesFelix Lange2015-03-101-0/+27
| | | | | | | | | | | | Help for a specific command now shows available subcommands.
| * | cmd/ethereum: show some help before prompting for encryption passphraseFelix Lange2015-03-101-0/+3
| | |
| * | cmd/ethereum: show more helpful message if no accounts existFelix Lange2015-03-103-9/+23
| | |
| * | cmd/utils: remove extra space in fatal error messageFelix Lange2015-03-101-1/+1
| | |
| * | cmd/ethereum: fix line editing setup and historyFelix Lange2015-03-101-6/+11
| | |
| * | cmd/evm, core, ethdb, state, tests/helper: remove ReadConfig callsFelix Lange2015-03-101-2/+0
| | |
| * | cmd/ethereum: remove "prompter" in identifiersFelix Lange2015-03-101-9/+10
| | |
| * | cmd/ethereum: unlock accounts on JS REPLFelix Lange2015-03-102-104/+111
| | |
| * | cmd/ethereum: allow multiple js filesFelix Lange2015-03-101-5/+5
| | |
| * | accounts: add {Timed,}Unlock, remove SignLockedFelix Lange2015-03-101-2/+1
| | |
| * | Merge ethereum/poc-9 into accounts-integrationFelix Lange2015-03-1012-338/+703
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go
| * | | cmd/utils: delete InitConfig, KeyTasksFelix Lange2015-03-101-40/+0
| | | |
| * | | cmd/mist: use cli library and package accountsFelix Lange2015-03-106-304/+58
| | | |
| * | | rpc: add dataDir parameter and JSON-RPC handlerFelix Lange2015-03-103-15/+19
| | | |
| * | | cmd/utils: add NewAppFelix Lange2015-03-102-5/+12
| | | |
| * | | cmd/blocktest: simplify to fix buildFelix Lange2015-03-102-189/+34
| | | | | | | | | | | | | | | | block tests only need the chain, not all of ethereum.
| * | | accounts: AccountManager -> ManagerFelix Lange2015-03-081-2/+2
| | | |
| * | | cmd/ethereum: add account commandsFelix Lange2015-03-072-34/+93
| | | |
| * | | Integrate eth_accounts and eth_transact to use new account managerGustav Simonsson2015-03-064-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
| | | |
* | | | Updated RPCobscuren2015-03-112-24/+61
| | | | | | | | | | | | | | | | | | | | | | | | * Added a generic RawMessage deserialiser * Updated ethereum.js * Updated coin test app
* | | | Added unmarshalStateobscuren2015-03-102-1004/+1473
| |_|/ |/| |
* | | Merge pull request #449 from Gustav-Simonsson/add_blockchain_tests2Jeffrey Wilcke2015-03-102-3/+20
|\ \ \ | | | | | | | | Add empty total difficulty to test blocks and clean up stopping the node
| * | | Add empty total difficulty to test blocks and clean up stopping the nodeGustav Simonsson2015-03-102-3/+20
| | |/ | |/|
* | | removed debuggerobscuren2015-03-104-435/+1
| | |
* | | Merge pull request #438 from ethersphere/poc9/cliJeffrey Wilcke2015-03-102-35/+49
|\ \ \ | |/ / |/| | Poc9/cli (exportchain)
| * | version outputzelig2015-03-081-5/+7
| | | | | | | | | | | | | | | | | | - make version output more verbose - include NetworkId - go version and os not displayed like env vars (confusing)
| * | add export blockchain subcommand, remove BlockDozelig2015-03-082-30/+42
| | |
* | | Updated xeth instances to take extra param for ui.Interfaceobscuren2015-03-095-140/+5
|/ / | | | | | | | | | | 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.
* | Bump vobscuren2015-03-083-3/+3
| |
* | Updated ethereum.jsobscuren2015-03-081-180/+663
| |
* | Separated block db from state db. Partial fix for #416obscuren2015-03-075-9/+14
| |
* | Debug option for VM & command line flagobscuren2015-03-062-4/+12
|/
* Merge pull request #433 from fjl/newcliFelix Lange2015-03-0613-846/+624
|\ | | | | Improved CLI
| * cmd/ethereum: fix JS REPL exit and add support for dumb terminalsFelix Lange2015-03-062-31/+60
| | | | | | | | It is now possible to exit the REPL using Ctrl-C, Ctrl-D or by typing "exit".
| * cmd/ethereum: new JS repl with cross-platform line editingFelix Lange2015-03-067-538/+209
| |
| * cmd/ethereum: improve command line interfaceFelix Lange2015-03-065-272/+350
| | | | | | | | | | | | | | | | | | | | The ethereum command line interface is now structured using subcommands. These separate the different tasks it can perform. Almost all flag names are backwards compatible. The key tasks have not been ported to subcommands since they will be replaced by the new accounts infrastructure very soon.
| * ethutil: remove Config variableFelix Lange2015-03-063-4/+4
| | | | | | | | | | | | | | | | | | | | | | Various functions throughout the codebase used it to grab settings. This has to stop because I want to use them without reading the config file. These functions can now be used without reading the config first: * ethdb.NewLDBDatabase * ethrepl.NewJSRepl * vm.New
* | Merge pull request #426 from Gustav-Simonsson/add_blockchain_testsJeffrey Wilcke2015-03-062-0/+361
|\ \ | | | | | | Add initial implementation of block tests
| * | Add initial implementation of block testsGustav Simonsson2015-03-052-0/+361
| | | | | | | | | | | | | | | | | | | | | * Add blocktest cmd and support for block tests files in tests/BlockTests , the launched node does not connect to network, resets state with a genesis block from the test file and starts the RPC API
* | | Merge branch 'develop' into poc-9obscuren2015-03-0627-36/+544
|\ \ \ | |_|/ |/| |
| * | Removed unused variablesobscuren2015-03-061-2/+1
| | |
| * | network back to local filesAlexandre Van de Sande2015-03-051-5/+0
| | |
| * | Fixed Average Return calculationAlexandre Van de Sande2015-03-052-3/+3
| | |
| * | updated network app to latest buildAlexandre Van de Sande2015-03-043-4/+5
| | |
| * | Merge branch 'develop' into uiAlexandre Van de Sande2015-03-0411-484/+586
| |\ \
| * | | network dashboard is now a local fileAlexandre Van de Sande2015-03-0423-1/+346
| | | |
| * | | updating to new network health pageAlexandre Van de Sande2015-03-042-4/+5
| | | |
| * | | Network Health Panel with miningAlexandre Van de Sande2015-03-035-27/+178
| | | |
| * | | Merge branch 'develop' into uiAlexandre Van de Sande2015-02-2314-93/+88
| |\ \ \
| * | | | changes to sidebar sizesAlexandre Van de Sande2015-02-231-17/+32
| | | | |
* | | | | Miner fixes and updates (including miner)obscuren2015-03-052-3/+2
| |_|_|/ |/| | |
* | | | Clean up REPLobscuren2015-03-044-37/+127
| | | |
* | | | Merge branch 'develop' into poc-9obscuren2015-03-041-1/+0
|\ \ \ \ | | |_|/ | |/| |
| * | | removed double flag. Closes #421obscuren2015-03-041-1/+0
| | | |
* | | | updated genesisobscuren2015-03-041-1/+0
| | | |
* | | | Merge branch 'develop' into poc-9obscuren2015-03-041-5/+0
|\| | |
| * | | removed all old filtersobscuren2015-03-041-5/+0
| | | |
* | | | Merge branch 'develop' into poc-9obscuren2015-03-045-34/+7
|\| | | | | | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go
| * | | Merge pull request #411 from ethersphere/readmeJeffrey Wilcke2015-03-042-6/+7
| |\ \ \ | | | | | | | | | | [WIP] Update Readme
| | * | | minor cleanupzelig2015-03-032-6/+7
| | | | |
| * | | | Merge branch 'develop' of github.com:ethereum/go-ethereum into removewsTaylor Gerring2015-03-026-79/+95
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/ethereum/flags.go cmd/mist/flags.go
| * | | | Remove Websockets RPC transportTaylor Gerring2015-03-015-27/+0
| | | | |
* | | | | Fixes and debug addedobscuren2015-03-041-4/+0
| | | | |
* | | | | mergeobscuren2015-03-045-77/+89
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Fixed miner threads for ethereum CLIobscuren2015-03-012-18/+22
| | | | |
| * | | | Merge pull request #402 from tgerring/rpcupdatesJeffrey Wilcke2015-03-015-63/+67
| |\ \ \ \ | | | | | | | | | | | | Set RPC listening address via param
| | * | | | Add flag to set RPC portTaylor Gerring2015-02-285-63/+67
| | |/ / /
* | | | | fixed pow stuffobscuren2015-03-042-40/+1
| | | | |
* | | | | Secure trieobscuren2015-03-011-1/+0
|/ / / /
* | | | Unused variableobscuren2015-03-011-1/+0
| | | |
* | | | Removed some methods from the JS REPLobscuren2015-03-013-0/+10
|/ / /
* | | Bumpobscuren2015-02-273-3/+3
| | |
* | | Defautl blockobscuren2015-02-262-284/+457
| | |
* | | Cleanup importsTaylor Gerring2015-02-262-5/+0
| | |
* | | DRY DefaultAssetPath()Taylor Gerring2015-02-262-54/+1
| | |
* | | Update osext import pathTaylor Gerring2015-02-262-2/+2
| | |
* | | Merge pull request #368 from maran/feature/changeDataDirJeffrey Wilcke2015-02-252-15/+6
|\ \ \ | | | | | | | | Implement OS sensitive dataDirs
| * | | Implement OS sensitive dataDirsMaran2015-02-232-15/+6
| | |/ | |/|
* / | Properly uninstall filters. Mining issue fixed #closes #365obscuren2015-02-231-6/+18
|/ / | | | | | | | | | | * 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
* | Bumpobscuren2015-02-223-3/+3
| |
* | Added eth_logs & fixed issue with manual log filteringobscuren2015-02-222-13/+12
| | | | | | | | | | | | * Implemented `eth_logs` * Fixed issue with `filter.Find()` where logs were appended to an incorrect, non-returned slice resulting in no logs found
* | reverted back to proper version numberobscuren2015-02-213-3/+3
| |
* | Minor updates for releaseobscuren2015-02-213-3/+3
| |
* | Removed exported fields from state object and added proper set/gettersobscuren2015-02-202-4/+4
| |
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-209-39/+49
|\ \
| * \ Merge pull request #352 from fjl/no-enc-handshakeJeffrey Wilcke2015-02-202-2/+4
| |\ \ | | | | | | | | p2p: disable encryption handshake, enable log events
| | * | cmd/mist: show peer names in peers windowFelix Lange2015-02-192-2/+4
| | | |
| * | | Merge pull request #345 from maran/feature/minerthreadsJeffrey Wilcke2015-02-203-14/+18
| |\ \ \ | | | | | | | | | | Implement command line argument to set the amount miner threads
| | * | | Implement command line argument to set the amount of agents created by the minerMaran2015-02-193-14/+18
| | | | | | | | | | | | | | | | | | | | Defaults to the amount of cores available on the CPU
| * | | | Merge pull request #335 from alexvandesande/uiJeffrey Wilcke2015-02-204-23/+26
| |\ \ \ \ | | |_|/ / | |/| | / | | | |/ | | |/| Cut, Copy, Undo and Redo working in webview
| | * | Removed console logs from mist.jsAlexandre Van de Sande2015-02-182-7/+8
| | | | | | | | | | | | | | | | also fixed an issue where it would force reloads unnecessarily
| | * | Cut, Copy, Undo and Redo working in webviewAlexandre Van de Sande2015-02-183-18/+20
| | | |
| * | | Merge pull request #339 from tgerring/jsonlogTaylor Gerring2015-02-191-0/+1
| |\ \ \ | | |_|/ | |/| | JSON log updates
| | * | Re-add LogFormat to ConfigTaylor Gerring2015-02-181-0/+1
| | | |
* | | | Optimisations and fixed a couple of DDOS issues in the minerobscuren2015-02-202-17/+25
| | | |
* | | | WIP QT Clipboardobscuren2015-02-192-0/+2
|/ / /
* / / Disabled ability to disable whisper. Closes #334obscuren2015-02-183-2/+3
|/ /
* | removed old walletobscuren2015-02-181-1/+0
| |
* | Removed mined transactions from pending view. Closes #321obscuren2015-02-183-27/+12
| |
* | Changed to ChainEvent and fixed a nil pointer in transactobscuren2015-02-182-6/+4
| |
* | Implement register and watchTxobscuren2015-02-171-0/+2
| |
* | Merge branch 'alexvandesande-ui' into developobscuren2015-02-171-1/+1
|\ \
| * | commented peer count outobscuren2015-02-171-1/+1
| |/
* | Merge branch 'ui' of https://github.com/alexvandesande/go-ethereum into developobscuren2015-02-1715-187/+255
|\|
| * Merge branch 'develop' into uiAlexandre Van de Sande2015-02-173-14/+7
| |\
| * | Updated iconsAlexandre Van de Sande2015-02-176-4/+3
| | |
| * | removed status bar codeAlexandre Van de Sande2015-02-171-73/+0
| | |
| * | badge supportAlexandre Van de Sande2015-02-172-9/+9
| | |
| * | side iconsAlexandre Van de Sande2015-02-174-19/+103
| | |
| * | SideIcons work. Copy paste still doesn't.Alexandre Van de Sande2015-02-173-13/+55
| | |
| * | merge conflictsAlexandre Van de Sande2015-02-1622-333/+447
| |\ \
| * | | Solved Issue #318 and added states to back buttonAlexandre Van de Sande2015-02-166-20/+21
| | | |
| * | | Add http when not present on browserAlexandre Van de Sande2015-02-161-1/+6
| | | |
| * | | changed url bar behaviour. Failed attempt at iconAlexandre Van de Sande2015-02-143-75/+77
| | | |
* | | | Filter and mutex locks addedobscuren2015-02-172-7/+0
| |_|/ |/| |
* | | "centralised" mining to backend. Closes #323obscuren2015-02-173-14/+7
| |/ |/|
* | Changed default denominatorsobscuren2015-02-163-3/+5
| |
* | Resolved some bugs in the minerobscuren2015-02-151-1/+1
| | | | | | | | | | | | * TODO nonce error sometimes persists * Fixed mining on wrong blocks * Fixed state error & receipt fail
* | removed some old menu itemsobscuren2015-02-152-32/+0
| |
* | Reset URL barobscuren2015-02-151-1/+9
| |
* | Fixed a few errors in the browser special meta tags objectsobscuren2015-02-151-30/+28
| |
* | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-143-25/+37
|\ \
| * | cmd/mist: fix peer windowFelix Lange2015-02-143-25/+37
| | |
* | | Moved ECIES to repo & added secondary title for webviewobscuren2015-02-142-2/+14
|/ / | | | | | | | | * ECIES moved from obscuren to ethereum * Added html META[name=badge] to reflect menuItem.secondaryTitle
* | Fixed QML errorsobscuren2015-02-143-7/+1
| |
* | Updated coin.js abiobscuren2015-02-141-56/+57
| |
* | Update balance label when miningobscuren2015-02-142-1/+14
| |
* | Propagate blocksobscuren2015-02-141-3/+1
| |
* | Fixed issue in peer windowobscuren2015-02-143-10/+14
| | | | | | | | | | * Fixed issues where new peer window could cause a crash when entering an empty string
* | Updated windowobscuren2015-02-141-20/+6
| |
* | Fixed a few issues in the miner and updated hash rate titleobscuren2015-02-142-1/+27
| | | | | | | | | | * Sometimes old nonces were set by "old" agents * Added the hash rate to the miner
* | Merge branch 'develop' into minerobscuren2015-02-1417-201/+287
|\ \
| * | mergeobscuren2015-02-132-868/+7
| | |
| * | wipobscuren2015-02-1312-154/+1080
| |\ \
| | * | p2p/discover: map listening port using configured mechanismFelix Lange2015-02-131-3/+10
| | | |
| | * | cmd/ethereum, cmd/mist, eth, p2p: use package p2p/natFelix Lange2015-02-134-35/+38
| | | | | | | | | | | | | | | | This deletes the old NAT implementation.
| | * | cmd/bootnode: new command (replaces cmd/peerserver)Felix Lange2015-02-101-0/+86
| | | |
| | * | cmd/mist, cmd/ethereum: add CLI arguments for node keyFelix Lange2015-02-104-13/+62
| | | |
| | * | cmd/ethereum, cmd/mist: add flag for discovery bootstrap nodesFelix Lange2015-02-076-10/+12
| | | |
| | * | cmd/mist, eth, javascript, p2p: use Node URLs for peer suggestionsFelix Lange2015-02-072-44/+12
| | | |
| | * | cmd/ethereum, cmd/mist, core, eth, javascript, xeth: fixes for new p2p APIFelix Lange2015-02-068-49/+38
| | | |
| | * | cmd/peerserver: is goneFelix Lange2015-02-061-58/+0
| | | | | | | | | | | | | | | | Will be back soon. Maybe.
| * | | mergeobscuren2015-02-13109-6623/+6883
| |\ \ \
| | * | | removed messagesobscuren2015-02-133-46/+0
| | | | |
| | * | | cmd + t switches to new dapp windowobscuren2015-02-121-2/+3
| | | | |
| * | | | Add LogFormat flagTaylor Gerring2015-01-222-0/+3
| | | | |
* | | | | Merge branch 'develop' into minerobscuren2015-02-1223-932/+1511
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Documented methods & removed old manifestobscuren2015-02-121-0/+1
| | | | |
| * | | | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-123-119/+96
| |\ \ \ \ | | | |_|/ | | |/| |
| | * | | Catalog Page BehaviourAlexandre Van de Sande2015-02-123-119/+96
| | | | |
| * | | | updated coinobscuren2015-02-111-12/+7
| |/ / /
| * | | removed icomoonAlexandre Van de Sande2015-02-101-0/+0
| | | |
| * | | Recreated the changes on a new branchAlexandre Van de Sande2015-02-1022-920/+1526
| | | |
* | | | Basic structure minerobscuren2015-02-102-9/+12
| | | |
* | | | mergedobscuren2015-02-0912-169/+179
|\| | |
| * | | Updated coinobscuren2015-02-081-30/+66
| | | |
| * | | API changed to use Pubkey only. Reflected that change in the rest of the apiobscuren2015-02-061-1/+2
| | |/ | |/|
| * | Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into developobscuren2015-02-066-9/+9
| |\ \
| | * \ Merge pull request #287 from ethereum/system-testingJeffrey Wilcke2015-02-066-9/+9
| | |\ \ | | | | | | | | | | Seednode CLI param updates
| | | * | Move hardcoded seed node address to app flagTaylor Gerring2015-02-036-9/+9
| | | | | | | | | | | | | | | | | | | | Replaces functionality `-seed=true` with `-seed="ip:port"`
| * | | | updated homeobscuren2015-02-061-1/+1
| | | | |
| * | | | Merge commit '9d84609b3faf797f4a611587abdda3d6b3b07917' into developobscuren2015-02-064-51/+17
| | | | |
| * | | | pending / chain eventobscuren2015-02-061-1/+9
| | | | |
| * | | | Merge branch 'develop' of https://github.com/tgerring/go-ethereum into ↵obscuren2015-02-063-3/+3
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | tgerring-develop Conflicts: rpc/http/server.go
| | * | | Merge branch 'develop' of github.com:tgerring/go-ethereum into developTaylor Gerring2015-02-051-1/+1
| | |\ \ \
| | | * \ \ Merge branch 'develop' of github.com:tgerring/go-ethereum into developTaylor Gerring2015-02-041-1/+1
| | | |\ \ \
| | | | * | | Update signature for rpc websocketsTaylor Gerring2015-02-021-1/+1
| | | | |/ /
| | * | / / Use different default RPC port per #186Taylor Gerring2015-02-052-2/+2
| | |/ / /
* | | | | Merge branch 'develop' into minerobscuren2015-02-062-2/+3
|\| | | |
| * | | | Default gas price and default gas for rpcobscuren2015-02-051-2/+2
| | | | |
| * | | | fixed testobscuren2015-02-051-0/+1
| | | | |
* | | | | wipobscuren2015-02-062-81/+81
|/ / / /
* | | | Propagate known transactions to new peers on connectobscuren2015-02-051-4/+4
| | | |
* | | | Merge branch 'develop' into minerobscuren2015-02-0527-477/+1203
|\ \ \ \
| * | | | updated testsobscuren2015-02-0528-946/+2130
| |/ / /
* / / / Filteringobscuren2015-02-054-475/+950
|/ / /
* | | Removed minimum height. Closes #282obscuren2015-02-031-2/+1
| | |
* | | Fixed whisper "to" filtering. Closes #283obscuren2015-02-031-0/+10
| | |
* | | Added a different default home pageobscuren2015-02-033-2/+77
| | |
* | | Raw data for existing blocksobscuren2015-02-031-1/+1
| | |
* | | Removed some VMEnv & Added VmType() to vm.Environmentobscuren2015-02-012-102/+8
|/ /
* | added new default faviconobscuren2015-01-301-0/+0
| |
* | "fixed" transaction viewobscuren2015-01-303-6/+5
| |
* | Bumped version numberobscuren2015-01-302-2/+2
| |
* | Added whisper messagesobscuren2015-01-301-2/+20
| | | | | | | | * have identity & get messages
* | Added whisper interface for xeth, added examples, updated RPCobscuren2015-01-304-3/+48
| | | | | | | | | | * Added RPC methods for whisper * Added whisper example
* | Fixed issue with Storage()obscuren2015-01-301-1/+2
| | | | | | | | | | | | * Storage() returned encoded values. They are now decode prior to hexing * Removed old code from state object * Updated coin
* | default values removedobscuren2015-01-301-11/+19
| |
* | Merge branch 'qt5.4' of github.com-obscure:ethereum/go-ethereum into qt5.4obscuren2015-01-301-3/+0
|\ \ | | | | | | | | | | | | Conflicts: rpc/message.go
| * \ Merge branch 'qt5.4' of github.com:ethereum/go-ethereum into qt5.4Taylor Gerring2015-01-3049-3016/+240
| |\ \
| * | | Remove old websocket implementationTaylor Gerring2015-01-291-3/+0
| | | |
* | | | More dapp samplesobscuren2015-01-302-0/+161
| |/ / |/| | | | | | | | | | | * Info DApp, coin DApp * Additional rpc methods
* | | Reimplemented message filters for rpc callsobscuren2015-01-291-1/+1
| | |
* | | Samples and disams cmd for evm codeobscuren2015-01-293-4/+89
| | |
* | | Added RPC "Call" for JS calls to contractsobscuren2015-01-291-2/+1
| | |
* | | Added abi exampleobscuren2015-01-291-0/+44
| | |
* | | implement transactobscuren2015-01-292-5/+2
| | |
* | | updated ethereum.js and moved to subfolderobscuren2015-01-294-2/+101
| | | | | | | | | | | | | | | * 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
* | | removed old js yet againobscuren2015-01-2939-7018/+0
| | |
* | | default http rpc onobscuren2015-01-291-1/+1
|/ /
* | Added webengine initializerobscuren2015-01-292-0/+694
| |
* | removed key while in the process of moving to the new key storageobscuren2015-01-296-698/+5
| |
* | Merge branch 'jsonrpc' into qt5.4obscuren2015-01-296-17/+17
|\ \
| * | further cleaned up xeth interfaceobscuren2015-01-296-17/+17
| | |
* | | merge jsonrpcobscuren2015-01-2910-129/+59
|\| |
| * | moving to a better xethobscuren2015-01-294-118/+41
| | |
| * | Rename transport to wsTaylor Gerring2015-01-281-1/+1
| | | | | | | | | | | | Cleanup object naming for clarity
| * | Add wsport flag to MistTaylor Gerring2015-01-282-1/+3
| | |
| * | Update CLI to use new Websocket RPCTaylor Gerring2015-01-283-5/+15
| | | | | | | | | | | | Use “wsport” flag to change default port
| * | Move HTTP transport to sub package of RPCTaylor Gerring2015-01-281-2/+2
| | |
* | | switched to obscuren/qmlobscuren2015-01-288-8/+8
| | |
* | | Updated assets & moved messagesobscuren2015-01-289-65/+81
| | |
* | | Added big numbersobscuren2015-01-281-0/+2
| | |
* | | Merge branch 'develop' into qt5.4obscuren2015-01-2834-0/+4018
|\ \ \
| * | | new ethereum.jsobscuren2015-01-2834-0/+4018
| | | |
* | | | removed old ethereum.jsobscuren2015-01-2825-2938/+0
| | | |
* | | | Merge branch 'jsonrpc' into qt5.4obscuren2015-01-282-220/+8
|\ \ \ \ | | |/ / | |/| |
| * | | Merge branch 'develop' into jsonrpcobscuren2015-01-234-281/+268
| |\| |
| * | | Move websockets out of cmd/utilTaylor Gerring2015-01-212-220/+8
| | |/ | |/|
* | | Reworking browserobscuren2015-01-253-38/+241
| |/ |/|
* | UI Updatesobscuren2015-01-224-66/+39
| | | | | | | | | | * Browser now has tabs * Fixed a callback issue
* | Updated browser & pass view to callback functionobscuren2015-01-222-231/+245
|/
* fixed url bug in browserobscuren2015-01-211-5/+0
|
* StdVm by defaultobscuren2015-01-203-4/+8
|