Store status messages per account, demonstrating storage for key-value pairs and account-based data isolation.
zig build wasmnear deploy --accountId status.testnet --wasmFile zig-out/lib/contract.wasmset_status()- Set the caller's status messageget_status()- Get an account's status message (view method)
# Set your status
near call status.testnet set_status '{"message": "Hello NEAR!"}' --accountId alice.testnet
# Get someone's status
near view status.testnet get_status '{"account_id": "alice.testnet"}'