Welcome to the Flow-Rust-SDK!

basic usage: in your Cargo.toml rs flow-rust-sdk = "1.0.0"

Welcome to the Flow-Rust-SDK! We're glad to have you here. There are a few important items that we should cover real quick before you dive in.

Signing Algorithms

-- Only ECDSA_P256 is supported at this time

Hashing

-- Only SHA3_256 is supported at this time

Documentation

Documentation is currently a work in progress. Please open an issue in the GitHub repository if you find any bugs. For general questions, please join the Flow Discord. There is a flow-rust channel which is an excellent place for discussion!

``` // basic usage

let serviceaccount = std::env::vars().filter(|kv| kv.0 == "SERVICEACCT").map(|kv| kv.1).collect::>(); let privatekey = std::env::vars().filter(|kv| kv.0 == "PRIVK").map(|kv| kv.1).collect::>(); let publickey = std::env::vars().filter(|kv| kv.0 == "PUBK").map(|kv| kv.1).collect::>();

// create the account

let networkaddress = "https://access.devnet.nodes.onflow.org:9000".tostring(); let payer = &serviceaccount[0]; let payerprivatekey = &privatekey[0]; let publickeys = vec![publickey[0].to_owned()];

let acct = createaccount( &networkaddress, publickeys.tovec(), &payer, &payerprivatekey, 0, ) .await .expect("Could not create account"); println!("{:?}", acct); ```