NeoByteX

Results 7 issues of NeoByteX

File: test/externalTests/brink_test.sh Before: "Remove this when Brink merges" After: "Remove once Brink merges PR https://github.com/ethereum/solidity/pull/52" Fixed grammar in flaky test comment File: test/externalTests/elementfi_test.sh Before: "one particular cases" → "one particular...

documentation :book:
external contribution :star:

Changes: File: candy-machine/program/README.md Old: https://docs.metaplex.com/programs/candy-machine/ New: https://developers.metaplex.com/core-candy-machine/ Reason: The original documentation link is no longer valid as Metaplex has moved their documentation to a new domain. This PR updates the...

1. Regex Fix in nix_bump_pr_changes.py Old: r"'github:([^\/]+\/[^\/]+)\/([^']+)" New: r"'github:([^/]+/[^/]+)/([^']+)" Why? Removed unnecessary backslashes for cleaner regex. 2. Error Message Improvement in Shell Script Old: echo "Unknown option $1" New: echo...

for _ in 0..(NUM_WORKERS) { → for _ in 0..NUM_WORKERS { Improves readability and follows Rust conventions. Fix loop condition in Spinner (signal_benchmark.rs) if self.count > 3 { → if...

A-benches

Description: This PR includes minor but important fixes to the ERC1155 documentation to improve consistency and professionalism: 1. Changed "multi token standard" to "multi-token standard" to follow proper hyphenation rules...

Typo Fix: "Two achieve this" → "To achieve this" File: docs/contracts/uniswapx/02-v1-vs-v2.md Numbering Fix: Fixed incorrect sequence (6 → 5). File: docs/contracts/uniswapx/02-v1-vs-v2.md Preposition Fix: "channel of our Discord" → "channel on...

Change: Before: $0\not\in \zns{p}$ After: $0\notin \zns{p}$ Reason: Corrected LaTeX notation for "not an element of" to maintain mathematical consistency. Change: Before: localStorage.setItem("menu.scrollTop", menu.scrollTop); After: localStorage.setItem("menu.scrollTop", menu.scrollTop || 0); Reason:...