Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃摑 Philosophy #175

Open
Vectorized opened this issue Oct 22, 2022 · 0 comments
Open

馃摑 Philosophy #175

Vectorized opened this issue Oct 22, 2022 · 0 comments

Comments

@Vectorized
Copy link
Owner

Vectorized commented Oct 22, 2022

Design

  • Balance between runtime gas and bytecode size.

    • Strong preference for expressions that can be adaptively evaluated on compile time depending on the optimizer runs, which can be tweaked by users.
  • Reduce reverts if possible.

    • Consider returning special values for edge cases. Let users decide on how they want to handle it.

    • Reverts require branching, which makes functions non-inlinable.

  • Best is an elegant API that is safe, intuitive, and saves gas.

  • Do not over modularize.

  • Libraries should be as independent from each other as possible.

  • If you want a new feature, do give a convincing, well-designed use case for the feature.

    • Great low-level library, but bad high level approach = bad code.
  • Suppose we have two standard-conforming implementations:

    A: more gas efficient, but harder to use.

    B: less gas efficient, but easier to use.

    We will prefer A.

  • Optimize for performance and flexibility for experts.

Safety and Testing

  • Mask inputs that are less than 256 in bit width.

  • Brutalize memory in tests if the code allocates memory.

  • Brutalize upper unused bits of inputs if possible.

  • Test with paranoia. The code is only as good as the tests.

  • Prefer a few general concise fuzz tests that cover every possibility, over many verbose small unit tests that each fail only for specific cases. General fuzz tests help catch the unknown unknowns, the blind spots. Safety first.

  • Test until you are absolutely certain of correctness and safety, even in adversarial conditions.

Video

https://www.youtube.com/watch?v=brPHcAJn7ZU

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant