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::*,
|
|
|
|
utils::{GanacheBuilder, Solc},
|
2020-05-31 14:50:00 +00:00
|
|
|
};
|
2020-05-25 10:05:00 +00:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// Generate the contract bindings by providing the ABI
|
2020-05-26 18:57:59 +00:00
|
|
|
abigen!(
|
|
|
|
SimpleContract,
|
|
|
|
r#"[{"inputs":[{"internalType":"string","name":"value","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"author","type":"address"},{"indexed":false,"internalType":"string","name":"oldValue","type":"string"},{"indexed":false,"internalType":"string","name":"newValue","type":"string"}],"name":"ValueChanged","type":"event"},{"inputs":[],"name":"getValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","constant": true, "type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setValue","outputs":[],"stateMutability":"nonpayable","type":"function"}]"#,
|
|
|
|
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<()> {
|
2020-05-31 14:50:00 +00:00
|
|
|
// 1. compile the contract (note this requires that you are inside the `ethers/examples` directory)
|
|
|
|
let compiled = Solc::new("./contract.sol").build()?;
|
|
|
|
let contract = compiled
|
|
|
|
.get("SimpleStorage")
|
|
|
|
.expect("could not find contract");
|
|
|
|
|
|
|
|
// 2. launch ganache
|
|
|
|
let port = 8546u64;
|
|
|
|
let url = format!("http://localhost:{}", port).to_string();
|
|
|
|
let _ganache = GanacheBuilder::new().port(port)
|
|
|
|
.mnemonic("abstract vacuum mammal awkward pudding scene penalty purchase dinner depart evoke puzzle")
|
|
|
|
.spawn();
|
|
|
|
|
|
|
|
// 3. instantiate our wallet
|
|
|
|
let wallet = "380eb0f3d505f087e438eca80bc4df9a7faa24f868e69fc0440261a0fc0567dc"
|
|
|
|
.parse::<MainnetWallet>()?;
|
|
|
|
|
|
|
|
// 4. connect to the network
|
|
|
|
let provider = HttpProvider::try_from(url.as_str())?;
|
|
|
|
|
|
|
|
// 5. instantiate the client with the wallet
|
|
|
|
let client = wallet.connect(&provider);
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 6. create a factory which will be used to deploy instances of the contract
|
|
|
|
let factory = ContractFactory::new(&client, &contract.abi, &contract.bytecode);
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 7. deploy it with the constructor arguments
|
|
|
|
let contract = factory.deploy("initial value".to_string())?.send().await?;
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 8. get the contract's address
|
|
|
|
let addr = contract.address();
|
2020-05-25 10:05:00 +00:00
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 9. instantiate the contract
|
2020-05-31 15:31:13 +00:00
|
|
|
let contract = SimpleContract::new(*addr, &client);
|
2020-05-25 15:35:38 +00:00
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 10. call the `setValue` method
|
2020-05-26 18:57:59 +00:00
|
|
|
let _tx_hash = contract.set_value("hi".to_owned()).send().await?;
|
2020-05-26 14:43:51 +00:00
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 11. 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
|
|
|
|
2020-05-31 14:50:00 +00:00
|
|
|
// 12. 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(())
|
|
|
|
}
|