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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reducing gas fees #2102

Open
Stebalien opened this issue Feb 12, 2025 · 0 comments
Open

Reducing gas fees #2102

Stebalien opened this issue Feb 12, 2025 · 0 comments

Comments

@Stebalien
Copy link
Member

We have a few places where we can potentially reduce gas fees:

  1. When opening blocks, we can charge the first time the block was read during the current transaction and charge only a small fee per subsequent access. This will help if we repeatedly call the same actor.
  2. We can avoid charging to read blocks we've written.
  3. We can likely reduce the cost of invoking actors (see Re-Price Method Invocation #2057).
  4. We may be able to cache "pre-instantiated" wasm module instances, charging only the first time the module is instantiated.
  5. We may be able to reduce the cost of system calls, but that will require some tricky benchmarking.

Unfortunately, most of these changes won't affect sector onboarding methods. But they will reduce the cost on-chain operations that interact with multiple actors, making it easier to make complex markets.

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

No branches or pull requests

1 participant