etchira

Results 30 comments of etchira

We should also limit the max number of addresses to pass, what's a good number for you? As I wrote in the PR: 1000 addresses take around 0.1s, 4000 address...

or as cheng proposed: >maybe 4 * 20 since the gas limit of address discovery is 20 by default? so 80 it could also automatically scale when we increase group...

Egal for me, what's the ideal number for you that would require the less call? based on group number?

nice explanation thx! Then let's do `groupNum * 20` as 20 is the number given by the BIP, at least it will make sense in few months when we see...

new endpoint is available here: ``` curl -X POST 'https://mainnet-explorer-v18-0-backend.alephium.org/addresses-active' -d '["arst","1DKWCEc9HjhchKoMCMA4J1nbNGNjrAoPFnkcgA1w6h7jh"]' [false,true] ```

You can secure the node's API with an API-Key, but then if a desktop wallet is pointing to that node, it won't be able to make transfer as we can't...

We didn't see any need over the pas two years, I think we could close this issue and re-open a new one later if needed

Sure * VertxFutureServerInterpreter * Using the brand new `VertxStreams` introduce [here](https://github.com/softwaremill/tapir/pull/2552) What I mean by cancelling the download is when I call my `GET` endpoint that fetch/stream some data from...

Hello, as a small starting point, In [Pipe](https://github.com/softwaremill/tapir/blob/836f98f2415bd7c2865db5bb9968a4fcdc3c5f23/server/vertx-server/src/main/scala/sttp/tapir/server/vertx/streams/Pipe.scala#L117) if we add a: ``` writeStream.exceptionHandler ``` When `ctrl-c` the request we get a : `io.vertx.core.http.HttpClosedException: Connection was closed` Not sure yet...

also wanted to know why `Pipe` is re-defined here? why not using [vertx Pipe](https://vertx.io/docs/apidocs/io/vertx/core/streams/Pipe.html) directly? Edit: Doing ``` --- a/server/vertx-server/src/main/scala/sttp/tapir/server/vertx/encoders/VertxToResponseBody.scala +++ b/server/vertx-server/src/main/scala/sttp/tapir/server/vertx/encoders/VertxToResponseBody.scala @@ -45,7 +45,7 @@ class VertxToResponseBody[F[_], S Future[Void]...