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

Correct OpenZeppelin Spelling and Update Data Type for Rust Compatibility #193

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For information about deploying Rust smart contracts, see the [Cargo Stylus CLI

Comprehensive documentation on the Rust SDK can be found [here](https://docs.arbitrum.io/stylus/rust-sdk-guide).

This SDK has been audited in August 2024 at commit [#62bd831](https://github.com/OffchainLabs/stylus-sdk-rs/tree/62bd8318c7f3ab5be954cbc264f85bf2ba3f4b06) by OpenZepplin which can be viewed [here](https://blog.openzeppelin.com/stylus-rust-sdk-audit).
This SDK has been audited in August 2024 at commit [#62bd831](https://github.com/OffchainLabs/stylus-sdk-rs/tree/62bd8318c7f3ab5be954cbc264f85bf2ba3f4b06) by OpenZeppelin which can be viewed [here](https://blog.openzeppelin.com/stylus-rust-sdk-audit).

## Feature highlights

Expand All @@ -42,7 +42,7 @@ use stylus_sdk::{alloy_primitives::U256, prelude::*};
sol_storage! {
#[entrypoint]
pub struct Counter {
uint256 number;
number: U256;
}
}

Expand Down