use algonaut::algod::v2::Algod; use algonaut::core::{LogicSignature, MicroAlgos}; use algonaut::transaction::transaction::TransactionSignature; use algonaut::transaction::{account::Account, TxnBuilder}; use algonaut::transaction::{Pay, SignedTransaction}; use algonaut_transaction::transaction::SignedLogic; use dotenv::dotenv; use std::env; use std::error::Error; #[tokio::main] async fn main() -> Result<(), Box> { // load variables in .env dotenv().ok(); let algod = Algod::new(&env::var("ALGOD_URL")?, &env::var("ALGOD_TOKEN")?)?; let program = algod .compile_teal( r#" #pragma version 3 int 1 "# .as_bytes(), ) .await?; let from = Account::from_mnemonic("fire enlist diesel stamp nuclear chunk student stumble call snow flock brush example slab guide choice option recall south kangaroo hundred matrix school above zero")?; let to = Account::from_mnemonic("since during average anxiety protect cherry club long lawsuit loan expand embark forum theory winter park twenty ball kangaroo cram burst board host ability left")?; let params = algod.suggested_transaction_params().await?; let t = TxnBuilder::with( ¶ms, Pay::new(from.address(), to.address(), MicroAlgos(123_456)).build(), ) .build()?; let signature = from.generate_program_sig(&program); let signed_t = SignedTransaction { transaction: t, transaction_id: "".to_owned(), sig: TransactionSignature::Logic(SignedLogic { logic: program, args: vec![], sig: LogicSignature::DelegatedSig(signature), }), auth_address: None, }; let send_response = algod.broadcast_signed_transaction(&signed_t).await; println!("response {:?}", send_response); Ok(()) }