Isaac

Results 9 comments of Isaac

The [i18n](https://www.npmjs.com/package/i18n) package allows for easy configuration and integration of translations.

I would recommend only translating the key interface items (buttons, links, etc). It's probably fine to rely on translators/community members to provide translated word lists that could show up when...

Can you provide me with some example text so I can replicate the issue?

This is an issue with concat. See [this stackoverflow question](http://stackoverflow.com/questions/21514884/browserify-concatenated-browserified-files-error-prelude-js-vs-loading-sep) for some "hotfix" type solutions. I switched to [brunch](https://brunch.io) because it fixed all problems I had with browserify

[committee.json](https://github.com/user-attachments/files/16958473/committee.json) [genesis.block.zip](https://github.com/user-attachments/files/16958488/genesis.block.zip) [genesis.json](https://github.com/user-attachments/files/16958491/genesis.json) [client.json](https://github.com/user-attachments/files/16958496/client.json) Here is a genesis block generated by the `aot` command from the [snarkops](https://github.com/monadicus/snarkops) project that can be used for a simple 4 validator mainnet (`--network 0`)...

In my testing of 4 and 8 validator networks this resulted in consistent block times of 11 seconds

We implemented something called "Checkpoints" which allows for parallelized removal of blocks. We periodically create a [copy of the mappings](https://github.com/monadicus/snarkops/blob/main/crates/checkpoint/src/content.rs#L25-L55) while our nodes are running. When rollback is desired the...

@vicsn It does that too with [this trick](https://github.com/monadicus/snarkops/blob/main/crates/checkpoint/src/checkpoint.rs#L111-L114): ```rust // the act of creating this ledger service with a "max_gc_rounds" set to 0 // should clear all BFT documents let...

I have an undiversified node operational experience so I don't have a good estimate for 1 and personally haven't run into anything needing the feature flag from 2 The main...