Questions tagged [geth]

Go implementation of command line tools for Ethereum blockchain

Go implementation of command line tools will allow you to connect your server to or run your application on the Ethereum blockchain

Ethereum CLI: https://www.ethereum.org/cli

Github: https://github.com/ethereum/go-ethereum/wiki/geth

237 questions
0
votes
2 answers

Why do I get `sealing paused while waiting for transactions` error when mining in Ethereum private network?

I launched a private network by using geth --datadir data/node1 --http --dev --http.corsdomain "*" --http.api web3,eth,debug,personal,net,miner --allow-insecure-unlock --mine command. I am able to attach to it geth attach http://localhost:8545 but…
Joey Yi Zhao
  • 37,514
  • 71
  • 268
  • 523
0
votes
1 answer

How to use GETH to obtain the ABI corresponding to the contract address?

Now the ABI code can be obtained through solc compilation or etherscan. Currently we have deployed ethereum full node, is there a way to directly obtain the corresponding ABI based on the contract address.
OPZ
  • 1
0
votes
1 answer

jsonrpc eth_getBalance fails

I get an undefined error and the id is null when running the following code: Geth is running on port 3334 and is running on the rinkeby network. Any ideas why this is failing? the output of running this code is jsonrpc:2.0; id:null; error:[object…
Jeff
  • 137
  • 1
  • 6
0
votes
1 answer

How do I include my own tracer file into eth/tracers for go-eth?

I've modified the call_tracer.js file (https://github.com/ethereum/go-ethereum/tree/master/eth/tracers/internal/tracers)for my own requirements, however I'm unsure as to how include it along with the other tracers. Right now, I'm feeding my tracer…
0
votes
1 answer

Ethereum geth reset the block to 0 again after i restarted my pc

Everything run well when i restarted running command "geth" for my local private network. but when i restarted my pc and run the geth command again, the block reset to 0 again. Here is my code to init the geth from configuration in my…
0
votes
1 answer

How to get some ether in my local Geth account?

I have set up Geth and created some account with no balance in them. So I cannot make any transaction as it costs Gas fee. How to create account with some initial balance so that I can test my contracts. I have created account using the following…
santanu bera
  • 1,281
  • 10
  • 16
0
votes
0 answers

Issue with solidity contract deployment

We have developed/modified a few solidity contracts. Those are properly deployed in Local Ganache dev Rinkeby Testnet Now we have created an environment with ethereum and Kubernetes. Where geth is running properly inside the pod, we can check the…
0
votes
0 answers

Streaming object data from Websocket server instead of pulling whole dictionary on every iteration

I'm pulling data from my websocket server (Geth node) that returns an dictionary. I iterate over this dictionary in order to process data from it. My issue is the following: First iteration would pull a dictionary containing A B C D Second iteration…
0
votes
0 answers

How do I move the geth file to my external drive?

I was in the process of downloading the ethereum blockchain into my computer so i can make it function as a node on the system. I used brew to install geth. After a few hours passed the file ended up taking all the space on my computer with it only…
0
votes
1 answer

PHP - GETH - Cannot return variable inside function

So I am calling a function to get the balance of an ethereum account. I am using the php web 3 found here. I wrapped the web3 class inside my own function. So I call my function -> my function executes the web3 eth command. My function that calls…
0
votes
1 answer

Quorum Marker support Quorum IBFT consensus?

I can't find some website say Quorum maker support IBFT consensus . Maybe someone can recommend DashBoard for IBFT consensus Thanks!
Rock
  • 3
  • 2
0
votes
0 answers

App Crashing on Launch when starting a geth node

I'm trying to start a geth node on android but my app crashes after launching, here is the error it is telling me in my logcat : 2021-04-21 15:36:45.503 9575-9575/? I/om.example.get: Not late-enabling -Xcheck:jni (already on) 2021-04-21…
rim221
  • 1
  • 2
0
votes
1 answer

how do i know my ethereum nodes sync low speed or out of sync

I build four quorum node , i want to detect which node sync too low or out of sync. I think it can be compared using the block number. Can someone help me ?
Rock
  • 3
  • 2
0
votes
1 answer

Fork the actual mainnet from a specific block

I would like to test some imbrications between many smartcontract on Ethereum, but : many of them are not available on testnets/are on different testnets. there is a significant history/status change for some of them and it would be difficult to…
TBouder
  • 2,539
  • 1
  • 14
  • 29
0
votes
1 answer

GoError: Error: could not decrypt key with given password at web3.js:6347:37(47)

Purpose: I would like to unlock the Coinbase account so it can be used to transfer ethers to Metamask. I input the following command on Windows' Command Prompt: geth --datadir ~/eth-dev/ --networkid 326584 --verbosity 4 --ipcdisable --port 30301…