2020-05-26 11:00:56 +00:00
|
|
|
use anyhow::Result;
|
2020-05-31 14:50:00 +00:00
|
|
|
use ethers::{
|
2020-05-31 16:20:08 +00:00
|
|
|
prelude::*,
|
2021-03-22 11:09:12 +00:00
|
|
|
utils::{compile_and_launch_ganache, Ganache, Solc},
|
2020-05-31 14:50:00 +00:00
|
|
|
};
|
2020-06-22 08:44:08 +00:00
|
|
|
use std::{convert::TryFrom, sync::Arc, time::Duration};
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2020-06-02 10:58:48 +00:00
|
|
|
// Generate the type-safe contract bindings by providing the ABI
|
2020-10-29 07:48:24 +00:00
|
|
|
// definition in human readable format
|
2020-05-26 18:57:59 +00:00
|
|
|
abigen!(
|
|
|
|
SimpleContract,
|
2021-08-21 12:34:21 +00:00
|
|
|
"./examples/contract_abi.json",
|
2020-05-26 18:57:59 +00:00
|
|
|
event_derives(serde::Deserialize, serde::Serialize)
|
|
|
|
);
|
2020-05-26 14:43:51 +00:00
|
|
|
|
2020-05-25 10:05:00 +00:00
|
|
|
#[tokio::main]
|
2020-05-26 11:00:56 +00:00
|
|
|
async fn main() -> Result<()> {
|
2021-08-21 12:34:21 +00:00
|
|
|
// 1. compile the contract (note this requires that you are inside the `examples` directory) and launch ganache
|
2021-03-22 11:09:12 +00:00
|
|
|
let (compiled, ganache) =
|
|
|
|
compile_and_launch_ganache(Solc::new("**/contract.sol"), Ganache::new()).await?;
|
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
let contract = compiled
|
|
|
|
.get("SimpleStorage")
|
|
|
|
.expect("could not find contract");
|
2021-02-16 17:10:26 +00:00
|
|
|
dbg!("OK");
|
2020-05-31 14:50:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 2. instantiate our wallet
|
2020-10-02 08:41:16 +00:00
|
|
|
let wallet: LocalWallet = ganache.keys()[0].clone().into();
|
2020-05-31 14:50:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 3. connect to the network
|
2020-06-22 13:42:34 +00:00
|
|
|
let provider =
|
|
|
|
Provider::<Http>::try_from(ganache.endpoint())?.interval(Duration::from_millis(10u64));
|
2020-05-31 14:50:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 4. instantiate the client with the wallet
|
2020-10-08 15:56:36 +00:00
|
|
|
let client = SignerMiddleware::new(provider, wallet);
|
2020-06-22 08:44:08 +00:00
|
|
|
let client = Arc::new(client);
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 5. create a factory which will be used to deploy instances of the contract
|
2020-06-22 08:44:08 +00:00
|
|
|
let factory = ContractFactory::new(
|
|
|
|
contract.abi.clone(),
|
|
|
|
contract.bytecode.clone(),
|
|
|
|
client.clone(),
|
|
|
|
);
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 6. deploy it with the constructor arguments
|
2021-08-30 11:00:30 +00:00
|
|
|
let contract = factory
|
|
|
|
.deploy("initial value".to_string())?
|
|
|
|
.legacy()
|
|
|
|
.send()
|
|
|
|
.await?;
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 7. get the contract's address
|
2020-05-31 14:50:00 +00:00
|
|
|
let addr = contract.address();
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 8. instantiate the contract
|
2020-06-22 08:44:08 +00:00
|
|
|
let contract = SimpleContract::new(addr, client.clone());
|
2020-05-25 15:35:38 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 9. call the `setValue` method
|
2020-12-17 11:26:01 +00:00
|
|
|
// (first `await` returns a PendingTransaction, second one waits for it to be mined)
|
2021-08-30 11:00:30 +00:00
|
|
|
let _receipt = contract
|
|
|
|
.set_value("hi".to_owned())
|
|
|
|
.legacy()
|
|
|
|
.send()
|
|
|
|
.await?
|
|
|
|
.await?;
|
2020-05-26 14:43:51 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 10. get all events
|
2020-05-31 21:17:50 +00:00
|
|
|
let logs = contract
|
|
|
|
.value_changed_filter()
|
|
|
|
.from_block(0u64)
|
|
|
|
.query()
|
|
|
|
.await?;
|
2020-05-26 14:43:51 +00:00
|
|
|
|
2021-03-22 11:09:12 +00:00
|
|
|
// 11. get the new value
|
2020-05-26 14:43:51 +00:00
|
|
|
let value = contract.get_value().call().await?;
|
2020-05-25 15:35:38 +00:00
|
|
|
|
2020-05-26 14:43:51 +00:00
|
|
|
println!("Value: {}. Logs: {}", value, serde_json::to_string(&logs)?);
|
2020-05-25 15:35:38 +00:00
|
|
|
|
2020-05-25 10:05:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|