Răsfoiți Sursa

multiple active keysets and return active keyset with lowest fee (#448)

Mubarak Muhammad Aminu 4 luni în urmă
părinte
comite
e5c81d3848
1 a modificat fișierele cu 17 adăugiri și 2 ștergeri
  1. 17 2
      crates/cdk/src/wallet/keysets.rs

+ 17 - 2
crates/cdk/src/wallet/keysets.rs

@@ -50,7 +50,7 @@ impl Wallet {
     /// Queries mint for current keysets then gets [`Keys`] for any unknown
     /// keysets
     #[instrument(skip(self))]
-    pub async fn get_active_mint_keyset(&self) -> Result<KeySetInfo, Error> {
+    pub async fn get_active_mint_keysets(&self) -> Result<Vec<KeySetInfo>, Error> {
         let keysets = self.client.get_mint_keysets(self.mint_url.clone()).await?;
         let keysets = keysets.keysets;
 
@@ -86,6 +86,21 @@ impl Wallet {
             }
         }
 
-        active_keysets.first().ok_or(Error::NoActiveKeyset).cloned()
+        Ok(active_keysets)
+    }
+
+    /// Get active keyset for mint with the lowest fees
+    ///
+    /// Queries mint for current keysets then gets [`Keys`] for any unknown
+    /// keysets
+    #[instrument(skip(self))]
+    pub async fn get_active_mint_keyset(&self) -> Result<KeySetInfo, Error> {
+        let active_keysets = self.get_active_mint_keysets().await?;
+
+        let keyset_with_lowest_fee = active_keysets
+            .into_iter()
+            .min_by_key(|key| key.input_fee_ppk)
+            .ok_or(Error::NoActiveKeyset)?;
+        Ok(keyset_with_lowest_fee)
     }
 }