All Questions
Tagged with server-side nodes
12 questions
0
votes
1
answer
44
views
Go-Ethereum/core-geth: Consensus engine interface, on changing coinbase via Prepare method
I assumed the coinbase could be altered from Prepare, so that transaction fees could be paid out to a custom coinbase. But, it seems like worker.go simply ignores the header.Coinbase after calling ...
0
votes
0
answers
9
views
Disk database cleanup during reorg, where in Go-Ethereum (or other node codebase) does that happen?
I'm curious about how the discarded "oldchain" during reorg also has its data cleaned up from the disk drive database. I'm unable to see anything about that in the reorg method in core/...
0
votes
0
answers
19
views
Possible to use CallContract during validation (on block not yet included in blockchain)?
I'm building a consensus engine. Already built a prototype of it, and now interested in improving it (mostly simplifying the implementation so it fits better with existing Ethereum codebase with least ...
1
vote
2
answers
360
views
How to install infura to a server runing ubuntu 16.04
Im setting up an exchange and came to the installation of ethereum using this document http://support.bitexchange.systems/support/articles/how-to-install-ethereum-in-your-server.
The 'geth' command ...
0
votes
1
answer
146
views
How to prepare VPS enviroment for instalation and running of Ambrosus node?
I would like to run Ambrosus development node. On Ambrosus github there are sume instructions, but I do not know how to prepare enviroment, what version of Ubuntu I should use and what tools should I ...
2
votes
1
answer
2k
views
How to generate Ethereum wallets & keys on serverside with JS?
Anybody knows, how can ether wallets be generated on serverside (node.js). It's needed for service, to create a new wallets for new customers. Maybe something like bitcoinJS-lib but for ethereum? But ...
0
votes
2
answers
89
views
For production dApps, what kind of sync should be done on server node?
I plan to use web3 server side using NodeJs with geth. For production usage, should I do a full sync or fast sync is enough?
Also, how much space do I need to store the blockchain data for each of ...
1
vote
1
answer
2k
views
Parity Full History Node
I'm trying to setup personal full node in archive mode (whole history) on server with this parameters:
Intel i3 3.4GHz
8GB DDR3 1333 MHz
2TB HDD
100 Mbps / 128
I was expecting issues with HDD speed (...
6
votes
2
answers
5k
views
Best possible way to launch the ethereum mainnet node on AWS
I have multiple applications running on my local system. I want to make them live, I need ethereum main net node of my own. I launch the ethereum node on AWS server using supervisory mode but it doesn'...
1
vote
1
answer
266
views
Event listening on a VPS server with limited ressources
I need to listen to events on the Ethereum blockchain on a small vps server with limited ressources (1 vcore, 10go SSD, 2go of RAM). Is it possible to do so without running a full Ethereum node ? What ...
5
votes
1
answer
11k
views
Ethereum node hardware requirements
I'm about to start syncing node on the server, do you know if there are any requirements to the server, like CPU or GPU and most of all, free disk space.
Any tips about syncing on server?
Cheers!
...
5
votes
1
answer
3k
views
How do I host Ethereum on a server?
I recently tried to get geth and solidity up and running on a virtual server I have some free time on.
I got stuck trying to build the Solidity compiler due to issues with the OpenGL library. I've ...