dpc

Results 242 issues of dpc

While working and thinking about better API for downstream consumers I realized that from the PoV of downstream application our two event logs: trimable vs non-trimable are different only in...

https://github.com/fedimint/fedimint/actions/runs/18585883243/job/52989562341 Seems like removing gateway api fails due commit write confic. We should just retry, but we can't due to api handler being passed dbtx (inside a context), and not...

We never actually got to switching our CI to run the test suite with Iroh turned on.

In meta module I naively send the whole value as a consensus item, and @joschisan pointed out the current consensus item size limit is 64kb, and would like to make...

Investigate mismatched hashes we're getting in https://github.com/fedimint/fedimint/pull/7638

Architectually, `fedimint-encoding` can be independent of `fedimint-core` and merged/combined with `fedimint-derive` into a full, standalone crate, helping keep rebuilds lower and crate relatinship clean. After we do it, we could...

There's a neat looking Bittorrent client in Rust, and I asked if it could be used to easily share a file for people to download: https://github.com/ikatson/rqbit/issues/323#event-18173409985 It was recently implemented:...

Client makes a tx where inputs are ecash for the fee, and one output registers `seed_fingerprint, current_federation_session_count`. Federation got paid (to prevent abuse), so it stores these, and clients when...

Id = Genesis Block Hash Probably requires a new api / mechanism. Backend can automatically get it (and display in the UI) from the bitcoind during DKG, save it somewhere,...

If I need to update a record, I think I need to do a `get` + `unwrap_or_default`, modify, and then `insert`? Does it cost me a lookup twice? Would it...