solana/src/bin/client-demo.rs

78 lines
2.5 KiB
Rust
Raw Normal View History

extern crate serde_json;
2018-02-28 09:07:54 -08:00
extern crate silk;
2018-03-04 06:28:51 -08:00
use silk::accountant_stub::AccountantStub;
use silk::signature::{KeyPair, KeyPairUtil};
use silk::transaction::Transaction;
2018-03-04 06:28:51 -08:00
use silk::genesis::Genesis;
use std::time::Instant;
use std::net::UdpSocket;
use std::io::stdin;
2018-02-28 09:07:54 -08:00
fn main() {
2018-02-28 13:16:50 -08:00
let addr = "127.0.0.1:8000";
let send_addr = "127.0.0.1:8001";
let gen: Genesis = serde_json::from_reader(stdin()).unwrap();
let alice_keypair = gen.keypair();
let alice_pubkey = gen.pubkey();
2018-02-28 09:07:54 -08:00
let socket = UdpSocket::bind(send_addr).unwrap();
2018-03-05 10:11:00 -08:00
let mut acc = AccountantStub::new(addr, socket);
let last_id = acc.get_last_id().unwrap();
let txs = acc.get_balance(&alice_pubkey).unwrap().unwrap();
println!("Alice's Initial Balance {}", txs);
println!("Signing transactions...");
let now = Instant::now();
let transactions: Vec<_> = (0..txs)
.map(|_| {
let rando_pubkey = KeyPair::new().pubkey();
Transaction::new(&alice_keypair, rando_pubkey, 1, last_id)
})
.collect();
let duration = now.elapsed();
let ns = duration.as_secs() * 1_000_000_000 + duration.subsec_nanos() as u64;
let bsps = txs as f64 / ns as f64;
let nsps = ns as f64 / txs as f64;
println!(
2018-03-03 10:52:46 -08:00
"Done. {} thousand signatures per second, {}us per signature",
bsps * 1_000_000_f64,
nsps / 1_000_f64
);
println!("Verify signatures...");
let now = Instant::now();
for tr in &transactions {
assert!(tr.verify());
}
let duration = now.elapsed();
let ns = duration.as_secs() * 1_000_000_000 + duration.subsec_nanos() as u64;
let bsvps = txs as f64 / ns as f64;
let nspsv = ns as f64 / txs as f64;
println!(
"Done. {} thousand signature verifications per second, {}us per signature verification",
bsvps * 1_000_000_f64,
nspsv / 1_000_f64
);
println!("Transferring 1 unit {} times...", txs);
let now = Instant::now();
let mut sig = Default::default();
for tr in transactions {
sig = tr.sig;
acc.transfer_signed(tr).unwrap();
}
println!("Waiting for last transaction to be confirmed...",);
acc.wait_on_signature(&sig).unwrap();
2018-02-28 09:07:54 -08:00
let duration = now.elapsed();
let ns = duration.as_secs() * 1_000_000_000 + duration.subsec_nanos() as u64;
let tps = (txs * 1_000_000_000) as f64 / ns as f64;
println!("Done. {} tps!", tps);
let val = acc.get_balance(&alice_pubkey).unwrap().unwrap();
println!("Alice's Final Balance {}", val);
assert_eq!(val, 0);
2018-02-28 09:07:54 -08:00
}