smolder-core 0.2.0

Core library for Smolder - contract registry and interaction platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod abi;
pub mod bytecode;
pub mod dir;
pub mod error;
pub mod keyring;
pub mod types;

pub use abi::{
    json_to_sol_value, parse_int, parse_uint, sol_value_to_json, Abi, ConstructorInfo,
    FunctionInfo, ParamInfo, ParsedFunctions,
};
pub use bytecode::Bytecode;
pub use dir::SmolderDir;
pub use error::{Error, Result};
pub use keyring::{decrypt_private_key, encrypt_private_key};
pub use types::*;