ishi
ishi
This regex can prevent using quotes of all kinds and slashes which might also be toublesome? ``` [^ " ' ` # % $ \/ \\ ] ``` As for...
This can be tested using: > docker exec -it dist_bitcoin_1 bitcoin-cli getnetworkinfo | jq -r ".localservicesnames" ``` [ "NETWORK", "WITNESS", "COMPACT_FILTERS", "NETWORK_LIMITED" ] ```
Hey @Kexkey! So sorry about the delay. Just saw your response to this! There is quite a bit of networking overhead - I haven't tested it but some devs at...
Cheers for the response! Makes sense to offload persistence to the user so the focus is on order matching. Will give the implementation a shot and submit a PR. Just...
I am giving this issue a try and have a few thoughts: Transaction size can be useful since you can calculate the fee_rate with it. When using create_tx does it...
> > When using create_tx does it make sense to have Some(Transaction) always returned so its easy to calculate size? > > Even if you did that tx doesn't have...
Standard SQLite does not support authentication OR encryption. There is a SQLiteCipher in C. I've only been able to find this crate which supports it in Rust https://docs.rs/sqlcrypto/latest/sqlcrypto/ Would it...
I was thinking about encrypting the actual .db file (that bdk creates) at the application level and decrypting it when the app starts - for bdk to use. However, even...
I've been looking into Android File System...still a bit new to it. From what I understand, apps get a dedicated directory which other apps cannot access without specific permissions -...
> Maybe this can exist as an external library, that only needs to implement the `Database` trait, and can handle encryption decryption on its own?? I feel that could be...