2020-05-26 11:00:56 +00:00
|
|
|
use anyhow::Result;
|
2020-06-11 06:45:14 +00:00
|
|
|
use ethers::{prelude::*, utils::Ganache};
|
2020-05-22 18:37:21 +00:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
|
|
|
#[tokio::main]
|
2020-05-26 11:00:56 +00:00
|
|
|
async fn main() -> Result<()> {
|
2020-06-22 13:42:34 +00:00
|
|
|
let ganache = Ganache::new().spawn();
|
2020-05-30 14:11:51 +00:00
|
|
|
|
2020-05-24 16:14:27 +00:00
|
|
|
// connect to the network
|
2020-06-22 13:42:34 +00:00
|
|
|
let provider = Provider::<Http>::try_from(ganache.endpoint())?;
|
2020-05-24 17:26:41 +00:00
|
|
|
let accounts = provider.get_accounts().await?;
|
|
|
|
let from = accounts[0];
|
2020-06-22 13:42:34 +00:00
|
|
|
let to = accounts[1];
|
2020-05-22 18:37:21 +00:00
|
|
|
|
2020-05-24 16:14:27 +00:00
|
|
|
// craft the tx
|
2020-06-22 13:42:34 +00:00
|
|
|
let tx = TransactionRequest::new().to(to).value(1000).from(from); // specify the `from` field so that the client knows which account to use
|
2020-05-24 16:14:27 +00:00
|
|
|
|
2020-05-24 17:26:41 +00:00
|
|
|
let balance_before = provider.get_balance(from, None).await?;
|
|
|
|
|
2020-05-24 16:14:27 +00:00
|
|
|
// broadcast it via the eth_sendTransaction API
|
2020-12-17 11:26:01 +00:00
|
|
|
let tx = provider.send_transaction(tx, None).await?.await?;
|
2020-05-23 00:01:20 +00:00
|
|
|
|
|
|
|
println!("{}", serde_json::to_string(&tx)?);
|
|
|
|
|
|
|
|
let nonce1 = provider
|
2021-03-16 19:46:07 +00:00
|
|
|
.get_transaction_count(from, Some(BlockNumber::Latest.into()))
|
2020-05-23 00:01:20 +00:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
let nonce2 = provider
|
2021-03-16 19:46:07 +00:00
|
|
|
.get_transaction_count(from, Some(BlockNumber::Number(0.into()).into()))
|
2020-05-23 00:01:20 +00:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
assert!(nonce2 < nonce1);
|
|
|
|
|
2020-05-24 17:26:41 +00:00
|
|
|
let balance_after = provider.get_balance(from, None).await?;
|
|
|
|
assert!(balance_after < balance_before);
|
|
|
|
|
|
|
|
println!("Balance before {}", balance_before);
|
|
|
|
println!("Balance after {}", balance_after);
|
|
|
|
|
2020-05-23 00:01:20 +00:00
|
|
|
Ok(())
|
2020-05-22 18:37:21 +00:00
|
|
|
}
|