39 lines
1.1 KiB
Rust
39 lines
1.1 KiB
Rust
use ethers::{types::UnsignedTransaction, HttpProvider, MainnetWallet};
|
|
use std::convert::TryFrom;
|
|
use std::str::FromStr;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), failure::Error> {
|
|
// connect to the network
|
|
let provider = HttpProvider::try_from("http://localhost:8545")?;
|
|
|
|
// create a wallet and connect it to the provider
|
|
let client = MainnetWallet::from_str(
|
|
"d8ebe1e50cfea1f9961908d9df28e64bb163fee9ee48320361b2eb0a54974269",
|
|
)?
|
|
.connect(&provider);
|
|
|
|
// get the account's nonce (we abuse the Deref to access the provider's functions)
|
|
let nonce = client.get_transaction_count(client.address(), None).await?;
|
|
|
|
// craft the transaction
|
|
let tx = UnsignedTransaction {
|
|
to: Some("986eE0C8B91A58e490Ee59718Cca41056Cf55f24".parse().unwrap()),
|
|
gas: 21000.into(),
|
|
gas_price: 100_000.into(),
|
|
value: 10000.into(),
|
|
input: vec![].into(),
|
|
nonce,
|
|
};
|
|
|
|
// send it!
|
|
let tx = client.sign_and_send_transaction(tx).await?;
|
|
|
|
// get the mined tx
|
|
let tx = client.get_transaction(tx.hash).await?;
|
|
|
|
println!("{}", serde_json::to_string(&tx)?);
|
|
|
|
Ok(())
|
|
}
|