Open UsmArs opened 1 year ago
Hi, I wanted to execute a private transaction in linea network. this is what I have found with the help of BARD. Can you please re confirm
import requests
url = "https://rpc.linea.build/"
headers = { "Content-Type": "application/json" }
payload = { "method": "linea_sendTransaction", "params": [ { "from": "0x1234567890ABCDEF1234567890ABCDEF12345678", "to": "0x9876543210FEDCBA9876543210FEDCBA98765432", "value": 1000000000000000000, "data": "", "private": True } ] }
response = requests.post(url, headers=headers, json=payload)
if response.status_code == 200: print("Transaction sent successfully!") else: print("Error sending transaction:", response.status_code)
This issue is stale because it has been open for 6 months with no activity.
Description
Hi there, I want to explore and become a contributor, I've cloned the repo from zkbesu and I'm trying to create the new network with a new genesis file using the protocol MERGE (reference: consensus/merge/src/main/java/org/hyperledger/besu/consensus/merge ) at the place of ibft2, by supposing the besu prerequisites, but it causes an error, genesis file and the error is in the following:
Genesis
Error
By running the following command:
besu --data-path=data --genesis-file=../genesis.json --rpc-http-enabled --rpc-http-api=ETH,NET --host-allowlist="*" --rpc-http-cors-origins="all"
Unknown consensus mechanism defined And when I use MERGE in the command it gives me such an error.
besu --data-path=data --genesis-file=../genesis.json --rpc-http-enabled --rpc-http-api=ETH,NET,MERGE --host-allowlist="*" --rpc-http-cors-origins="all"
I also have used some of the flags, by supposing that it will work and enable the zk protocol, that are listed below, but all in vain.
Is there any kind of change in flags or in the main command that I'm using to run the network node, which I haven't noticed or is there any eligibility criteria for the network or something else?
Any help or suggestion would be appreciated!