loom_defi_price/
price_actor.rs

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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
use std::collections::HashMap;
use std::marker::PhantomData;
use std::ops::{Div, Mul};
use std::time::Duration;

use alloy_network::Network;
use alloy_primitives::{address, Address, U256};
use alloy_provider::Provider;
use alloy_transport::Transport;
use loom_core_actors::{Accessor, Actor, ActorResult, SharedState, WorkerResult};
use loom_core_actors_macros::Accessor;
use loom_core_blockchain::Blockchain;
use loom_defi_address_book::TokenAddress;
use loom_defi_pools::protocols::CurveProtocol;
use loom_defi_pools::CurvePool;
use loom_types_entities::{Market, Pool};
use revm::DatabaseRef;
use tracing::{debug, error, info};

async fn price_worker<N: Network, T: Transport + Clone, P: Provider<T, N> + Clone + 'static>(
    client: P,
    market: SharedState<Market>,
    once: bool,
) -> WorkerResult {
    let curve_tricrypto_usdc = CurveProtocol::new_u256_3_eth_to(client.clone(), address!("7F86Bf177Dd4F3494b841a37e810A34dD56c829B"));
    let curve_tricrypto_usdt = CurveProtocol::new_u256_3_eth_to(client.clone(), address!("f5f5b97624542d72a9e06f04804bf81baa15e2b4"));

    let mut coins_hash_map: HashMap<Address, CurvePool<P, T, N>> = HashMap::new();

    let curve_tricrypto_usdc_pool = CurvePool::fetch_pool_data(client.clone(), curve_tricrypto_usdc).await?;

    let curve_tricrypto_usdt_pool = CurvePool::fetch_pool_data(client.clone(), curve_tricrypto_usdt).await?;

    coins_hash_map.insert(TokenAddress::USDC, curve_tricrypto_usdc_pool.clone());
    coins_hash_map.insert(TokenAddress::WBTC, curve_tricrypto_usdc_pool.clone());
    coins_hash_map.insert(TokenAddress::USDT, curve_tricrypto_usdt_pool.clone());

    let one_ether = U256::from(10).pow(U256::from(18));
    let weth_amount = one_ether.mul(U256::from(5));

    match market.read().await.get_token(&TokenAddress::WETH) {
        Some(token) => {
            token.set_eth_price(Some(one_ether));
        }
        _ => {
            error!("WETH_NOT_FOUND")
        }
    }

    loop {
        for (token_address, curve_pool) in coins_hash_map.iter() {
            debug!("Fetching price of {} at {}", token_address, curve_pool.get_address());

            match curve_pool.fetch_out_amount(TokenAddress::WETH, *token_address, weth_amount).await {
                Ok(out_amount) => {
                    let price = out_amount.mul(one_ether).div(weth_amount);
                    info!("Price of ETH in {token_address:#20x} is {price}");
                    match market.read().await.get_token(token_address) {
                        Some(tkn) => {
                            tkn.set_eth_price(Some(price));
                            debug!("Price is set");
                        }
                        _ => {
                            error!(address=%token_address, "Token not found");
                        }
                    }
                }
                Err(error) => {
                    error!(%error, "fetch_out_amount")
                }
            }
        }

        let usdt_price = market.read().await.get_token_or_default(&TokenAddress::USDT).get_eth_price();
        let usdc_price = market.read().await.get_token_or_default(&TokenAddress::USDC).get_eth_price();

        let mut usd_price: Option<U256> = None;
        if let Some(usdc_price) = usdc_price {
            if let Some(usdt_price) = usdt_price {
                usd_price = Some((usdc_price + usdt_price) >> 1);
            }
        }

        if let Some(usd_price) = usd_price {
            match market.read().await.get_token(&TokenAddress::DAI) {
                Some(tkn) => {
                    tkn.set_eth_price(Some(U256::from(10).pow(U256::from(12)).mul(usd_price)));
                }
                _ => {
                    error!("Token {:#20x} not found", TokenAddress::DAI);
                }
            }
        }
        if once {
            break;
        }

        let _ = tokio::time::sleep(Duration::new(60, 0)).await;
    }
    Ok("PriceWorker finished".to_string())
}

#[derive(Accessor)]
pub struct PriceActor<P, T, N> {
    client: P,
    only_once: bool,
    #[accessor]
    market: Option<SharedState<Market>>,
    _t: PhantomData<T>,
    _n: PhantomData<N>,
}

impl<P, T, N> PriceActor<P, T, N>
where
    T: Transport + Clone,
    N: Network,
    P: Provider<T, N> + Send + Sync + Clone + 'static,
{
    pub fn new(client: P) -> Self {
        Self { client, only_once: false, market: None, _t: PhantomData, _n: PhantomData }
    }

    pub fn only_once(self) -> Self {
        Self { only_once: true, ..self }
    }

    pub fn on_bc<DB: DatabaseRef + Send + Sync + Clone + Default + 'static>(self, bc: &Blockchain<DB>) -> Self {
        Self { market: Some(bc.market()), ..self }
    }
}

impl<P, T, N> Actor for PriceActor<P, T, N>
where
    T: Transport + Clone,
    N: Network,
    P: Provider<T, N> + Send + Sync + Clone + 'static,
{
    fn start(&self) -> ActorResult {
        let task = tokio::task::spawn(price_worker(self.client.clone(), self.market.clone().unwrap(), self.only_once));
        Ok(vec![task])
    }

    fn name(&self) -> &'static str {
        "PriceActor"
    }
}