You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- feat(tor): add new async client, `AsyncTorClient`, which uses
`arti-client` to establish Tor connections, and `hyper` as HTTP client
over custom Tor anonymized data stream.
- feat(tor): implements the common methods: `get_response`,
`get_response_json`, `get_response_hex` and their `opt` versions too.
let esplora_client = AsyncTorClient::from_builder(builder).await.unwrap();
13
+
14
+
let raw_tx = "01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff4d04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73ffffffff0100f2052a01000000434104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac00000000";
15
+
let tx:Transaction = deserialize_hex(raw_tx).unwrap();
16
+
esplora_client.broadcast(&tx).await.unwrap();
17
+
18
+
print!(
19
+
"successfully broadcasted transaction, with txid: {:?}",
0 commit comments