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
//! Rosetta client.
#![deny(missing_docs)]
#![deny(warnings)]
use crate::types::Amount;
use anyhow::{Context, Result};
use fraction::{BigDecimal, BigInt};
use std::path::Path;

pub use crate::client::Client;
pub use crate::mnemonic::{generate_mnemonic, MnemonicStore};
pub use crate::signer::{RosettaAccount, RosettaPublicKey, Signer};
pub use crate::wallet::EthereumExt;
pub use crate::wallet::Wallet;
pub use rosetta_core::{crypto, types, BlockchainConfig, TransactionBuilder};

mod client;
mod mnemonic;
mod signer;
mod wallet;

/// Converts an amount to a human readable string.
pub fn amount_to_string(amount: &Amount) -> Result<String> {
    let value = BigInt::parse_bytes(amount.value.as_bytes(), 10)
        .ok_or_else(|| anyhow::anyhow!("invalid amount {:?}", amount))?;
    let decimals = BigInt::pow(&10u32.into(), amount.currency.decimals);
    let value = BigDecimal::from(value) / BigDecimal::from(decimals);
    Ok(format!("{:.256} {}", value, amount.currency.symbol))
}

/// Parses a string into an amount using the equation `amount * 10 ** decimals`.
///
/// Example:
/// `string_to_amount("1.1", 10)` converts 1.1 dot into 11_000_000_000 planc.
pub fn string_to_amount(amount: &str, decimals: u32) -> Result<u128> {
    let (amount, decimals): (u128, u32) = if let Some((main, rest)) = amount.split_once('.') {
        let decimals = decimals
            .checked_sub(rest.chars().count() as _)
            .context("too many decimals")?;
        let mut amount = main.to_string();
        amount.push_str(rest);
        (amount.parse()?, decimals)
    } else {
        (amount.parse()?, decimals)
    };
    amount
        .checked_mul(u128::pow(10, decimals))
        .context("u128 overflow")
}

/// Returns a blockchain config for a given blockchain and network.
pub fn create_config(blockchain: &str, network: &str) -> Result<BlockchainConfig> {
    match blockchain {
        "bitcoin" => rosetta_config_bitcoin::config(network),
        "ethereum" => rosetta_config_ethereum::config(network),
        "polkadot" => rosetta_config_polkadot::config(network),
        _ => anyhow::bail!("unsupported blockchain"),
    }
}

/// Returns a signer for a given keyfile.
pub fn create_signer(_keyfile: Option<&Path>) -> Result<Signer> {
    let store = MnemonicStore::new(_keyfile)?;
    let mnemonic = store.get_or_generate_mnemonic()?;
    Signer::new(&mnemonic, "")
}

/// Returns a client instance.
/// Parameters:
/// - `blockchain`: blockchain name e.g. "bitcoin", "ethereum".
/// - `network`: network name e.g. "dev".
/// - `url`: rosetta server url.
pub async fn create_client(
    blockchain: Option<String>,
    network: Option<String>,
    url: Option<String>,
) -> Result<(BlockchainConfig, Client)> {
    let (blockchain, network) = if let (Some(blockchain), Some(network)) = (blockchain, network) {
        (blockchain, network)
    } else if let Some(url) = url.as_ref() {
        let network = Client::new(url)?.network_list().await?[0].clone();
        (network.blockchain, network.network)
    } else {
        anyhow::bail!("requires url or blockchain argument");
    };
    let config = create_config(&blockchain, &network)?;
    let url = url.unwrap_or_else(|| config.connector_url());
    let client = Client::new(&url)?;
    Ok((config, client))
}

/// Returns a wallet instance.
/// Parameters:
/// - `blockchain`: blockchain name e.g. "bitcoin", "ethereum".
/// - `network`: network name e.g. "dev".
/// - `url`: rosetta server url.
/// - `keyfile`: path to a keyfile.
pub async fn create_wallet(
    blockchain: Option<String>,
    network: Option<String>,
    url: Option<String>,
    keyfile: Option<&Path>,
) -> Result<Wallet> {
    let (config, client) = create_client(blockchain, network, url).await?;
    let signer = create_signer(keyfile)?;
    Wallet::new(config, &signer, client)
}