diff --git a/FAQ.md b/FAQ.md new file mode 100644 index 00000000..cea184a1 --- /dev/null +++ b/FAQ.md @@ -0,0 +1,9 @@ +# Frequently Asked Questions + +## Q) My wallet sits on "sending transaction" a lot longer than on other services. + +We send your transactions to multiple private relays to get them mined without exposing them to sandwich attacks. + +We have plans to return after the first successful response, but that won't get your transaction confirmed any faster. + +Soon, you can opt out of this behavior and we will broadcast your transactions publicly. diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 20e4da22..ed668774 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -16,7 +16,7 @@ entities = { path = "../entities" } migration = { path = "../migration" } redis-rate-limit = { path = "../redis-rate-limit" } -anyhow = { version = "1.0.64", features = ["backtrace"] } +anyhow = { version = "1.0.65", features = ["backtrace"] } arc-swap = "1.5.1" argh = "0.1.8" axum = { version = "0.5.16", features = ["headers", "serde_json", "tokio-tungstenite", "ws"] } @@ -54,7 +54,7 @@ serde_json = { version = "1.0.85", default-features = false, features = ["alloc" serde_prometheus = "0.1.6" # TODO: make sure this time version matches siwe. PR to put this in their prelude time = "0.3.14" -tokio = { version = "1.21.0", features = ["full", "tracing"] } +tokio = { version = "1.21.1", features = ["full", "tracing"] } # TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude tokio-stream = { version = "0.1.9", features = ["sync"] } toml = "0.5.9"