-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeploy_and_call_method.rs
58 lines (49 loc) · 1.73 KB
/
deploy_and_call_method.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
55
56
57
58
use near_api::*;
#[tokio::main]
async fn main() {
let network = near_workspaces::sandbox().await.unwrap();
let account = network.dev_create_account().await.unwrap();
let network = NetworkConfig::from(network);
let signer = Signer::new(Signer::from_workspace(&account)).unwrap();
// Let's deploy the contract. The contract is simple counter with `get_num`, `increase`, `decrease` arguments
Contract::deploy(
account.id().clone(),
include_bytes!("../resources/counter.wasm").to_vec(),
)
// You can add init call as well using `with_init_call`
.without_init_call()
.with_signer(signer.clone())
.send_to(&network)
.await
.unwrap();
let contract = Contract(account.id().clone());
// Let's fetch current value on a contract
let current_value: Data<i8> = contract
// Please note that you can add any argument as long as it is deserializable by serde :)
// feel free to use serde_json::json macro as well
.call_function("get_num", ())
.unwrap()
.read_only()
.fetch_from(&network)
.await
.unwrap();
println!("Current value: {}", current_value.data);
// Here is a transaction that require signing compared to view call that was used before.
contract
.call_function("increment", ())
.unwrap()
.transaction()
.with_signer(account.id().clone(), signer.clone())
.send_to(&network)
.await
.unwrap()
.assert_success();
let current_value: Data<i8> = contract
.call_function("get_num", ())
.unwrap()
.read_only()
.fetch_from(&network)
.await
.unwrap();
println!("Current value: {}", current_value.data);
}