Open tcoratger opened 4 weeks ago
Describe the enhancement request
At the moment, we have a lots of Arc around JsonRpcClient<HttpTransport> like here:
Arc
JsonRpcClient<HttpTransport>
https://github.com/kkrt-labs/kakarot-rpc/blob/443e148bce22d19e7455ffb1edc1faee5037d622/src/test_utils/katana/mod.rs#L89
Thanks to https://github.com/xJonathanLEI/starknet-rs/pull/666 and after the next release of starknet-rs we will be able to remove these Arc and just use a simple clone.
starknet-rs
clone
Hey, I can do this. When is no longer blocked.
Sure @Gerson2102 assigned
Describe the enhancement request
At the moment, we have a lots of
Arc
aroundJsonRpcClient<HttpTransport>
like here:https://github.com/kkrt-labs/kakarot-rpc/blob/443e148bce22d19e7455ffb1edc1faee5037d622/src/test_utils/katana/mod.rs#L89
Thanks to https://github.com/xJonathanLEI/starknet-rs/pull/666 and after the next release of
starknet-rs
we will be able to remove theseArc
and just use a simpleclone
.