1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//! This example shows how to set the follower's read pointer without stopping it.

use std::error::Error;

use cardano_chain_follower::{ChainUpdate, Follower, FollowerConfigBuilder, Network, Point};
use tracing::level_filters::LevelFilter;
use tracing_subscriber::EnvFilter;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    tracing_subscriber::fmt()
        .with_env_filter(
            EnvFilter::builder()
                .with_default_directive(LevelFilter::INFO.into())
                .from_env_lossy(),
        )
        .init();

    // Defaults to start following from the tip.
    let config = FollowerConfigBuilder::default().build();

    let mut follower = Follower::connect(
        "relays-new.cardano-mainnet.iohk.io:3001",
        Network::Mainnet,
        config,
    )
    .await?;

    let (tx, mut rx) = tokio::sync::oneshot::channel::<()>();
    let mut pointer_set = false;
    tokio::spawn(async move {
        let _tx = tx;
        tokio::time::sleep(std::time::Duration::from_secs(2)).await;
    });

    loop {
        tokio::select! {
            _ = &mut rx, if !pointer_set => {
                follower.set_read_pointer(Point::Specific(
                    110_908_236,
                    hex::decode("ad3798a1db2b6097c71f35609399e4b2ff834f0f45939803d563bf9d660df2f2")?,
                )).await?;
                println!("set read pointer");

                pointer_set = true;
            }

            chain_update = follower.next() => {
                match chain_update? {
                    ChainUpdate::Block(data) => {
                        let block = data.decode()?;

                        println!(
                            "New block NUMBER={} SLOT={} HASH={}",
                            block.number(),
                            block.slot(),
                            hex::encode(block.hash()),
                        );
                    },
                    ChainUpdate::Rollback(data) => {
                        let block = data.decode()?;

                        println!(
                            "Rollback block NUMBER={} SLOT={} HASH={}",
                            block.number(),
                            block.slot(),
                            hex::encode(block.hash()),
                        );
                    },
                }
            }
        }
    }
}