Row 45439

Row ID: 45439 | Dataset Entry | Axioma AXP Content Repository

Content Data

This page contains data entry 45439 from the Axioma AXP content repository. The structured data below represents the complete record for this entry.

I've been trying to configure a private Proof of Authority (PoA) network using Geth on an EC2 instance. I have set up two nodes, but when I check the ETH balance of the accounts, it returns 0. Below is my configuration:

\`\`\`

{   "config": { "chainId": 123454321, "homesteadBlock": 0, "eip150Block": 0, "eip155Block": 0, "eip158Block": 0, "byzantiumBlock": 0, "constantinopleBlock": 0, "petersburgBlock": 0, "istanbulBlock": 0, "muirGlacierBlock": 0, "berlinBlock": 0, "londonBlock": 0, "arrowGlacierBlock": 0, "grayGlacierBlock": 0, "clique": { "period": 5, "epoch": 30000 }   },   "difficulty": "1",   "gasLimit": "800000000",   "extradata": "0x00000000000000000000000000000000000000000000000000000000000000000405717696912fE792Db0d94C54F567a2d1e46CD0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",   "alloc": { "0405717696912fE792Db0d94C54F567a2d1e46CD": { "balance": "0x200000000000000000000000000000000000000000000000000000000000000" }, "04e2f579f9B8B27B7B133F74860dB210cE4b8F63": { "balance": "0x200000000000000000000000000000000000000000000000000000000000000" }   } }

\`\`\`

**Commands used:**

* **Initialize Node1/2:** geth --datadir node1 init genesis.json * **Retrieve enode for bootnode:** bootnode -nodekey boot.key -addr :30305 * **Start Node1/2:** bootnode -nodekey boot.key -addr :30305

**Check ETH balance:**

1. Attach to Geth: geth attach node1/geth.ipc 2. Check balance: web3.fromWei(eth.getBalance("0x0405717696912fE792Db0d94C54F567a2d1e46CD"), "ether")

I get a 0 ETH balance for the allocated accounts. I have tried multiple solutions but cannot figure out what is causing this error. Any help or suggestions would be greatly appreciated!

**Extra Notes:**

* I have created a separate account for each node. * I have checked `admin.peers` on node1 and it has one peer connected. * `eth.syncing` returns false. * `eth.blockNumber` is undefined.

FieldValue
text I've been trying to configure a private Proof of Authority (PoA) network using Geth on an EC2 instance. I have set up two nodes, but when I check the ETH balance of the accounts, it returns 0. Below is my configuration: \`\`\` {   "config": { "chainId": 123454321, "homesteadBlock": 0, "eip150Block": 0, "eip155Block": 0, "eip158Block": 0, "byzantiumBlock": 0, "constantinopleBlock": 0, "petersburgBlock": 0, "istanbulBlock": 0, "muirGlacierBlock": 0, "berlinBlock": 0, "l…
label r/ethereum
dataType post
communityName r/ethereum
datetime 2024-05-22
username_encoded Z0FBQUFBQm5Lak1QLUlmcXJhTDRkNURrTDBZV2RpZjZRaU82dWlJRWhPenZNOFhFR2JYYktNQllzb1lGeVl0T0dJeDVDRWRsOHZIUzZ1bmJENnJ4YU1Oamx0dHloWmNSenc9PQ==
url_encoded Z0FBQUFBQm5Lak9mdGV6M1dONGJLc1N5c2RFSXhJTndPcGxWZ2UyWUhpVUFhZG1CVnl1a2ZpR0ZYRFptYm0wUE5sdEdpeFA0ZHotTmRFMDVGazdyLU9qOXRFUXBsNGpFLUc5Zms5c1RYMHlIbE1tYXJZRzlsN2Rma1hmUS12aTdncVVvR09RSFIxMEFnR0hsUWx3Q3BmMER5WHFnMlBldlVKdTd4a25TRzVtWGZBeklLX2RGQ2FqUWFiRFU2OHJnUlFud0lhQ0hwMUNfdWc1Y09PNHNtT0RscF9IUG8tQmRMQT09

Raw Record

{
  "text": "I've been trying to configure a private Proof of Authority (PoA) network using Geth on an EC2 instance. I have set up two nodes, but when I check the ETH balance of the accounts, it returns 0. Below is my configuration:\n\n\\`\\`\\`\n\n{  \n  \"config\": {  \n\"chainId\": 123454321,  \n\"homesteadBlock\": 0,  \n\"eip150Block\": 0,  \n\"eip155Block\": 0,  \n\"eip158Block\": 0,  \n\"byzantiumBlock\": 0,  \n\"constantinopleBlock\": 0,  \n\"petersburgBlock\": 0,  \n\"istanbulBlock\": 0,  \n\"muirGlacierBlock\": 0,  \n\"berlinBlock\": 0,  \n\"londonBlock\": 0,  \n\"arrowGlacierBlock\": 0,  \n\"grayGlacierBlock\": 0,  \n\"clique\": {  \n\"period\": 5,  \n\"epoch\": 30000  \n}  \n  },  \n  \"difficulty\": \"1\",  \n  \"gasLimit\": \"800000000\",  \n  \"extradata\": \"0x00000000000000000000000000000000000000000000000000000000000000000405717696912fE792Db0d94C54F567a2d1e46CD0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",  \n  \"alloc\": {  \n\"0405717696912fE792Db0d94C54F567a2d1e46CD\": { \"balance\": \"0x200000000000000000000000000000000000000000000000000000000000000\" },  \n\"04e2f579f9B8B27B7B133F74860dB210cE4b8F63\": { \"balance\": \"0x200000000000000000000000000000000000000000000000000000000000000\" }  \n  }  \n}  \n\n\n\\`\\`\\`\n\n**Commands used:**\n\n* **Initialize Node1/2:** geth --datadir node1 init genesis.json\n* **Retrieve enode for bootnode:** bootnode -nodekey boot.key -addr :30305\n* **Start Node1/2:** bootnode -nodekey boot.key -addr :30305\n\n**Check ETH balance:**\n\n1. Attach to Geth: geth attach node1/geth.ipc\n2. Check balance: web3.fromWei(eth.getBalance(\"0x0405717696912fE792Db0d94C54F567a2d1e46CD\"), \"ether\")\n\nI get a 0 ETH balance for the allocated accounts. I have tried multiple solutions but cannot figure out what is causing this error. Any help or suggestions would be greatly appreciated!\n\n**Extra Notes:**\n\n* I have created a separate account for each node.\n* I have checked `admin.peers` on node1 and it has one peer connected.\n* `eth.syncing` returns false.\n* `eth.blockNumber` is undefined.",
  "label": "r/ethereum",
  "dataType": "post",
  "communityName": "r/ethereum",
  "datetime": "2024-05-22",
  "username_encoded": "Z0FBQUFBQm5Lak1QLUlmcXJhTDRkNURrTDBZV2RpZjZRaU82dWlJRWhPenZNOFhFR2JYYktNQllzb1lGeVl0T0dJeDVDRWRsOHZIUzZ1bmJENnJ4YU1Oamx0dHloWmNSenc9PQ==",
  "url_encoded": "Z0FBQUFBQm5Lak9mdGV6M1dONGJLc1N5c2RFSXhJTndPcGxWZ2UyWUhpVUFhZG1CVnl1a2ZpR0ZYRFptYm0wUE5sdEdpeFA0ZHotTmRFMDVGazdyLU9qOXRFUXBsNGpFLUc5Zms5c1RYMHlIbE1tYXJZRzlsN2Rma1hmUS12aTdncVVvR09RSFIxMEFnR0hsUWx3Q3BmMER5WHFnMlBldlVKdTd4a25TRzVtWGZBeklLX2RGQ2FqUWFiRFU2OHJnUlFud0lhQ0hwMUNfdWc1Y09PNHNtT0RscF9IUG8tQmRMQT09"
}

Entry Information