forked from tomusdrw/rust-web3
-
Notifications
You must be signed in to change notification settings - Fork 27
/
contract.rs
54 lines (47 loc) · 1.82 KB
/
contract.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
extern crate env_logger;
extern crate rustc_hex;
extern crate web3;
use web3::contract::{Contract, Options};
use web3::futures::Future;
use web3::types::{Address, U256};
fn main() {
env_logger::init();
let (eloop, http) = web3::transports::Http::new("http://localhost:8545").unwrap();
// run the event loop in the background
eloop.into_remote();
let web3 = web3::Web3::new(http);
let my_account: Address = "d028d24f16a8893bd078259d413372ac01580769".parse().unwrap();
// Get the contract bytecode for instance from Solidity compiler
let bytecode = include_str!("./contract_token.code");
// Deploying a contract
let contract = Contract::deploy(web3.eth(), include_bytes!("../src/contract/res/token.json"))
.unwrap()
.confirmations(0)
.options(Options::with(|opt| {
opt.value = Some(5.into());
opt.gas_price = Some(5.into());
opt.gas = Some(1_000_000.into());
}))
.execute(
bytecode,
(U256::from(1_000_000), "My Token".to_owned(), 3u64, "MT".to_owned()),
my_account,
)
.expect("Correct parameters are passed to the constructor.")
.wait()
.unwrap();
let result = contract.query("balanceOf", (my_account,), None, Options::default(), None);
let balance_of: U256 = result.wait().unwrap();
assert_eq!(balance_of, 1_000_000.into());
// Accessing existing contract
let contract_address = contract.address();
let contract = Contract::from_json(
web3.eth(),
contract_address,
include_bytes!("../src/contract/res/token.json"),
)
.unwrap();
let result = contract.query("balanceOf", (my_account,), None, Options::default(), None);
let balance_of: U256 = result.wait().unwrap();
assert_eq!(balance_of, 1_000_000.into());
}