-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev #80
Conversation
onmax
commented
Dec 10, 2024
- Update to the documentation
- New package for static policy
- clarification of the purpose of the validators-api - improvement on the JSON schema specifications
Deploying validators-api-testnet with Cloudflare Pages
|
Deploying validators-api-mainnet with Cloudflare Pages
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When running in local I get this error:
ERROR [worker reload] [worker init] Unexpected number 2:33:45 PM
at compileSourceTextModule (node:internal/modules/esm/utils:340:16)
at ModuleLoader.moduleStrategy (node:internal/modules/esm/translators:102:18)
at #translate (node:internal/modules/esm/loader:433:12)
at ModuleLoader.loadAndTranslate (node:internal/modules/esm/loader:480:27)
Skill issues |
commit: |
There was an issue with the following statement: export const PROOF_OF_WORK_EMISSION_SPEED = powi(2, 22) Somehow, the bundler decided to convert Since it is a constant, it didn't make sense to have a function call everytime so I have replace it with: export const PROOF_OF_WORK_EMISSION_SPEED = 4_194_304 // same as powi(2, 22) With that, The problem now is I will keep checking |
ok found it: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM