Skip to content

Commit

Permalink
Fix: file extension fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anegg0 committed Aug 2, 2024
1 parent f5ebc00 commit b225364
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions arbitrum-docs/stylus/concepts/stylus-cache-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ the initialization process when entering a contract can be resource-intensive an

This initialization process, if repeated frequently, may lead to inefficiencies. To address this, we have implemented a caching strategy. By storing frequently accessed contracts in memory, we can avoid repeated initializations. This approach saves resources and time, significantly enhancing the speed and efficiency of contract execution.

import PublicPreviewBannerPartial from '../partials/_stylus-public-preview-banner-partial.mdx';
import PublicPreviewBannerPartial from '../partials/\_stylus-public-preview-banner-partial.mdx';
**Note that Stylus smart contracts will need to be re-activated once per year (365 days) or whenever a upgrade to Stylus (which will always involve an ArbOS upgrade), even if they are in the cache. This re-activation can be done using [`cargo-stylus`](https://github.com/OffchainLabs/cargo-stylus), a cargo subcommand for building, verifying, and deploying Arbitrum Stylus WASM contracts in Rust.**



import PublicPreviewBannerPartial from '../partials/_stylus-public-preview-banner-partial.md';
import PublicPreviewBannerPartial from '../partials/\_stylus-public-preview-banner-partial.mdx';

<PublicPreviewBannerPartial />

Expand Down

0 comments on commit b225364

Please sign in to comment.