Updated for Zig 0.16.0 and 0.17.0 - #1
Open
samooth wants to merge 11 commits into
Open
Conversation
…examples/tests/bench
…-string API, ArrayList empty init, graceful corpus skips, CI matrix
ScriptIterator yields one ScriptChunk at a time without allocation. Tracks cursor position and conditional depth internally. Handles OP_RETURN short-circuit for top-level data scripts. parseAlloc, countChunks, isPushOnly, and hasCodeSeparator all refactored to use ScriptIterator internally.
Beef.bytes() always writes V2. V1 serialization is a Transaction concern. Remove bytesV1() from Beef, write BEEF_V2 directly in writeVersionAndBUMPs.
- Create src/exports.zig with 18 export fn declarations - BIP39: mnemonic generation + seed derivation - BIP32: HD key from seed, derive path, extract privkey bytes - BRC-42/43: Type-42 key derivation, invoice formatting - Key ops: privkey↔pubkey, pubkey→address, WIF encode/decode - BSM: sign/verify (legacy compat) - BRC-77: sign/verify for anyone and targeted recipients - Create include/bsvz.h C header with extern "C" guards - Add bsvz_c static library target in build.zig - All symbols verified in libbsvz_c.a via nm
Implements KeyDeriver struct matching Go wallet.KeyDeriver with DerivePublicKey, DerivePrivateKey, and RevealSpecificSecret methods. Supports self, other, and anyone counterparty types.
Replace .{0} ** 31 ++ .{val} with @Memset for proper 32-byte arrays
Also fix variable name in one test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated for Zig 0.16.0 and 0.17.0