// Copyright 2023 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 //! In this example we will list all outputs of an account. //! //! Rename `.env.example` to `.env` first, then run the command: //! ```sh //! cargo run --release --all-features --example list_outputs //! ``` use iota_sdk::{wallet::Result, Wallet}; #[tokio::main] async fn main() -> Result<()> { // This example uses secrets in environment variables for simplicity which should not be done in production. dotenvy::dotenv().ok(); for var in ["WALLET_DB_PATH"] { std::env::var(var).expect(&format!(".env variable '{var}' is undefined, see .env.example")); } let wallet = Wallet::builder() .with_storage_path(&std::env::var("WALLET_DB_PATH").unwrap()) .finish() .await?; let account = wallet.get_account("Alice").await?; // Sync account account.sync(None).await?; // Print output ids println!("Output ids:"); for output in account.outputs(None).await? { println!("{}", output.output_id); } // Print unspent output ids println!("Unspent output ids:"); for output in account.unspent_outputs(None).await? { println!("{}", output.output_id); } Ok(()) }