Matthias Debernardini
Matthias Debernardini
I was having this issue as well and was able to set cluster with; ``` let pusher = pusher::PusherBuilder::from_url(&format!( "http://{pusher_key}:{pusher_secret}@api-{cluster}.pusher.com/apps/{pusher_app_id}" )) .finalize(); ```
Hey I'm actually using this code to summarize my wallet to the user, I am syncing with electrum (on signet) and it seems that the example code doesn't sync certain...
I'll just add this here in case anyone else needs to use it, this is what I am using. ```rust pub fn get_tx_details(wallet: &Wallet) -> anyhow::Result { wallet .transactions() .map(|tx|...
Current API: ```rust let external_descriptor ="wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)"; let internal_descriptor = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)"; let mut wallet = Wallet::new_or_load(external_descriptor, Some(internal_descriptor), (), Signet).unwrap(); ``` My ideal API: ```rust let external_descriptor = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)"; let mut wallet...
I have an webserver on fargate and I wanted to use this for it, but looks like I wont be able to. Should I just use aws-sdk-s3 to replicate this...
I ran into an issue while working on our wallet integration that I think is related to this thread. When I try to create a PSBT on testnet or signet,...
Maybe this belongs here better, basically, can this be disabled in anything but Network::Bitcoin? https://github.com/bitcoindevkit/bdk/issues/1440#issuecomment-2108275322
That's a good point, @oleonardolima maybe the juice is not worth the squeeze on making this change.
I got it working! super easy to use
This also worked for me I am on macOS Thanks @futurepaul