multiversx_sdk_http/gateway_http_proxy/
http_chain_simulator.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
use super::GatewayHttpProxy;
use anyhow::Error;
use multiversx_sdk::{
    chain_core::types::Address,
    gateway::{
        ChainSimulatorGenerateBlocksRequest, ChainSimulatorSendFundsRequest, GatewayAsyncService,
    },
};

impl GatewayHttpProxy {
    pub async fn send_user_funds(&self, receiver: &Address) -> Result<String, Error> {
        self.request(ChainSimulatorSendFundsRequest::to_address(receiver))
            .await
    }

    pub async fn generate_blocks(&self, num_blocks: u64) -> Result<String, Error> {
        self.request(ChainSimulatorGenerateBlocksRequest::num_blocks(num_blocks))
            .await
    }

    pub async fn generate_blocks_until_epoch(&self, epoch_number: u64) -> Result<String, Error> {
        self.request(ChainSimulatorGenerateBlocksRequest::until_epoch(
            epoch_number,
        ))
        .await
    }

    pub async fn generate_blocks_until_tx_processed(&self, tx_hash: &str) -> Result<String, Error> {
        self.request(ChainSimulatorGenerateBlocksRequest::until_tx_processed(
            tx_hash,
        ))
        .await
    }
}