firedancer
firedancer copied to clipboard
Firedancer is Jump Crypto's Solana consensus node implementation.
Once Solana v1.18 activates on mainnet, we won't need a certificate parser any longer.
potential fix for https://github.com/firedancer-io/firedancer/issues/1210
* Perform audit of Solana Labs feature flags, making sure upcoming features are implemented in Firedancer. * Implement mechanism for runtime enablement of features at epoch boundary without rebuild/restart. Likely...
- [x] Prevent writelocking of sysvars - [x] Blockhash-based expiry (or just a conservative time-based version) - [ ] Reject any transaction with duplicate accounts - [ ] Address lookup...
**Problem** Many of our CLI tools use boolean flags, like "verify". Our argument syntax would be either `--verify 0` or `--verify 1`. When passing `--verify true` though, the `true` string...
**Problem** Our tiles largely assume a static tile layout with correctly configured core affinity and process isolation. This is certainly the right architecture for a happy path production configuration. While...
**Problem** Spotting build failures in CI log is currently like finding a needle in the haystack due to high build parallelism. **Suggested Fix** Consider using [problem matchers](https://github.com/actions/toolkit/blob/main/docs/problem-matchers.md) to make errors...