diff --git a/CHANGELOG.md b/CHANGELOG.md index 3284d1ea3..37b162eb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,14 @@ - Changed the block iterator from a custom version of [bitcoin-explorer](https://crates.io/crates/bitcoin-explorer) to the homemade [biter](https://crates.io/crates/biter) which allows the parser to run alongside `bitcoind` - Added datasets compression thanks to [zstd](https://crates.io/crates/zstd) to reduce disk usage - Use the Bitcoin RPC server for various calls instead of running cli commands and then parsing the JSON from the output +- Important database changes that will need a full rescan: + - Split txid_to_tx_data database in 4096 chunks (from 256) + - Removed local Multisig database - Updated the config, run with `-h` to see possible args - Moved outputs from `/target/outputs` to `/out` to allow to run commands like `cargo clean` without side effects - Various first run fixes + ### Server - Updated the code to support compressed binaries diff --git a/app/src/app/components/background.tsx b/app/src/app/components/background.tsx index a4c701d4a..82bc3fd1a 100644 --- a/app/src/app/components/background.tsx +++ b/app/src/app/components/background.tsx @@ -7,6 +7,7 @@ const texts = [ "satonomics", "satonomics", "satonomics", + "satonomics", "stay humble, stack sats", "21 million", @@ -44,6 +45,9 @@ const texts = [ "ride or die", "cypherpunk", "we like the coin", + "money for enemies", + "trustless money", + "sustainable money", ]; export function Background({ diff --git a/parser/Cargo.lock b/parser/Cargo.lock index 33a98fde0..f30b0ec99 100644 --- a/parser/Cargo.lock +++ b/parser/Cargo.lock @@ -319,12 +319,13 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cc" -version = "1.1.7" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" +checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" dependencies = [ "jobserver", "libc", + "once_cell", ] [[package]] @@ -2070,9 +2071,9 @@ checksum = "a1a88342087869553c259588a3ec9ca73ce9b2d538b7051ba5789ff236b6c129" [[package]] name = "url" -version = "2.5.2" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" dependencies = [ "form_urlencoded", "idna",