fix(pow): support strict CSP without unsafe-eval - #32
Draft
edgepillar wants to merge 1 commit into
Draft
Conversation
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.
Summary
new Function(...import...)shim and browser inline module script with native dynamic importsScope
This is limited to the existing PoW loader, generated JS/WASM assets, build script, tests, and documentation. It does not change the PoW algorithm, wire format, or public transaction API.
The resulting browser policy can use:
The generated PoW loader no longer requires
'unsafe-eval'. The narrower'wasm-unsafe-eval'permission is still required for WebAssembly compilation in Chromium.Reproducibility
zenon-network/znn-pow-links-cpp@9c63abdcd4e6bd642a81476cbff2f5190efabe956.0.8DYNAMIC_EXECUTION=0,EMBIND_AOT=1pow.jscontainseval()ornew Function()Validation
npm run build:wasmnpm teston Node20.20.2and22.23.2— 650 passing on eachnpm run lint— 0 errorsnpm run buildnpm pack --dry-run --ignore-scripts'wasm-unsafe-eval', which failed only at WebAssembly compilation as expectedOpening as a Draft for maintainer feedback on the CSP approach and reproducible toolchain pin.