Izumi Hoshino
Izumi Hoshino
See https://github.com/Chia-Network/chia-blockchain-gui/issues/607 for detail. ## Memo ### @chia/gui (1) Remove `@material-styles` `byte-size` `npm-audit-resolver` `stream-browserify` from `packages/gui/package.json` by hand. (2) `npm run clean -- --scope @chia/gui` (3) `npm run bootstrap` \#...
Because `length: 2` is set in `uniqueNamesGenerator` option, only first two dictionaries are used thus 3rd dictionary `adjectives` is useless. Removing `adjectives` dictionary can reduce about 15KB of final build...
There are several npm dependencies which are not used at all or should be replaced with simpler lines of code. This issue is to manage the tasks required to optimize...
# Do not merge this PR into `main` ... until the software updater is modified to shut down background services before updating. Otherwise many people may try to update the...
Bladebit2 (disk plotting) integration for GUI. This branch works with https://github.com/Chia-Network/chia-blockchain/pull/11187 # Code snippet to test this PR ```bash ### You can skip the lines below if you already have...
Building with VisualStudio 2022 with windows system codepage set to cp932(Japanese/SJIS) which is the default codepage for Japanese locale failed due to a bunch of C4819 warnings: `Warning C4819: The...
```python from clvm import SExp print(SExp.true) # This prints '01' s1 = SExp.to((1, SExp.true)) s1.pair[1].atom = b'\2' print(SExp.true) # This prints '02' ``` Probably should protect property by getter/setter.
Trying to make wasm version of `run_chia_program`.
@richardkiss I've just confirmed that the wasm of clvm_rs can be successfully integrated into clvm_tools-js! [clvm_tools-js#clvm_rs](https://github.com/Chia-Mine/clvm_tools-js/tree/clvm_rs) ```shell # Terminal git clone https://github.com/Chia-Mine/clvm_tools-js cd clvm_tools-js git checkout clvm_rs npm install npm...