You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The src/lib.cairo specified in the tutorial no longer works on the current starknet version (2.9.2 as of writing this issue), and the version specified in the page is no longer available for downgrade.
Adding
use starknet::storage::{
StoragePointerReadAccess, StoragePointerWriteAccess,
};
inside the my_contract module, and changing the decoration #[external(v0)] to #[abi(embed_v0)] fixes the issue for the current starknet version.
The text was updated successfully, but these errors were encountered:
The
src/lib.cairo
specified in the tutorial no longer works on the current starknet version (2.9.2 as of writing this issue), and the version specified in the page is no longer available for downgrade.Adding
inside the
my_contract
module, and changing the decoration#[external(v0)]
to#[abi(embed_v0)]
fixes the issue for the current starknet version.The text was updated successfully, but these errors were encountered: