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
pub mod get_account;
pub mod get_auction_info;
pub mod get_balance;
pub mod get_block;
pub mod get_block_transfers;
pub mod get_chainspec;
pub mod get_deploy;
pub mod get_dictionary_item;
pub mod get_entity;
pub mod get_era_info;
pub mod get_era_summary;
pub mod get_node_status;
pub mod get_peers;
pub mod get_state_root_hash;
pub mod get_transaction;
pub mod get_validator_changes;
pub mod list_rpcs;
pub mod put_deploy;
pub mod put_transaction;
pub mod query_balance;
pub mod query_balance_details;
pub mod query_global_state;
pub mod speculative_exec;
pub mod speculative_exec_deploy;

#[cfg(test)]
use dotenvy::dotenv;

#[cfg(test)]
mod setup {
    use super::*;
    #[ctor::ctor]
    fn setup() {
        dotenv().ok();
    }
}