Git Product home page Git Product logo

Comments (8)

ncitron avatar ncitron commented on July 17, 2024 1

Oh I see what is happening here. Helios only stores block data for blocks that start either after helios starts or within 64 blocks of the current block number (whichever is higher).

This is mostly a limitation due to efficiency as well as how the light client protocol works.

from helios.

ncitron avatar ncitron commented on July 17, 2024

Can you please provide the full code example so I can help you debug?

from helios.

yuvalelmo avatar yuvalelmo commented on July 17, 2024

sure, there's the whole function:

#[tokio::main]
async fn main() -> Result<()> {
    dotenv().ok();
    set_logger();

    let network = Network::GOERLI;
    let cf = checkpoints::CheckpointFallback::new()
        .build()
        .await
        .unwrap();
    info!("Checkpoint fallback services built");

    let checkpoint = cf.fetch_latest_checkpoint(&network).await.unwrap();
    let checkpoint = format!("{:?}", checkpoint);

    let execution_rpc_url = get_env_variable("EXECUTION_RPC")?;
    let consensus_rpc_url = get_env_variable("CONSENSUS_RPC")?;

    let mut client: Client<FileDB> = ClientBuilder::new()
        .network(network)
        .execution_rpc(&execution_rpc_url)
        .consensus_rpc(&consensus_rpc_url)
        .load_external_fallback()
        .checkpoint(&checkpoint)
        .data_dir("/tmp/helios".parse()?)
        .build()?;
    info!("client created");

    client.start().await?;
    client.wait_synced().await;

    let block_number: u64 = 19075597;

    let block = client
        .get_block_by_number(BlockTag::Number(block_number), true)
        .await?;
    info!("block: {:?}", block);
    Ok(())
}

from helios.

yuvalelmo avatar yuvalelmo commented on July 17, 2024

@ncitron first, thanks for your help!

I have a similar problem now but with transactions.
I use the get_transaction_receipt function in order to get the receipt of a transaction that is created after the start of the client, but I keep getting a None result for some reason.

I inject the hash of the transaction to the tx_hash_str variable using a breakpoint, and i am taking a transaction hash from etherscan explorer.
I tried both pending transactions and approved transactions, but both gives the same result of None, when the transaction is clearly created after the client.
I use the same code as above, but with changing the block fetching part with the following:

	let tx_hash_str = "";
	//here i use a breakpoint and put the hash string into tx_hash_str
    let tx_hash = H256::from_str(tx_hash_str).unwrap();
    let tx = client
        .get_transaction_receipt(&tx_hash)
        .await?;

from helios.

ncitron avatar ncitron commented on July 17, 2024

Can you confirm that you can fetch a block for the block number of the transaction?

from helios.

yuvalelmo avatar yuvalelmo commented on July 17, 2024

Yes, I can do this.

from helios.

ncitron avatar ncitron commented on July 17, 2024

Hmm it seems I am able to fetch a receipt using this simple example:

client.start().await?;
client.wait_synced().await;

let head_block_num = client.get_block_number().await?;
let head_block = client.get_block_by_number(BlockTag::Number(head_block_num.as_u64()), false).await;
let tx_hash = head_block.unwrap().unwrap().transactions.hashes()[0];
let receipt = client.get_transaction_receipt(&tx_hash).await.unwrap().unwrap();
println!("{:?}", receipt);

I wonder if the breakpoints are causing it to act up. If helios can fetch the block it should always be able to get a receipt from within that block.

from helios.

yuvalelmo avatar yuvalelmo commented on July 17, 2024

Thanks for all the help!
It seems I did not understand the light client's logics just right. I now understand that I would be able to fetch only transactions from already fetched blocks.

from helios.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.