near_contract_standards_icebear/lib.rs
1/// Fungible tokens as described in [by the spec](https://nomicon.io/Standards/FungibleToken/README.html).
2pub mod fungible_token;
3/// Non-fungible tokens as described in [by the spec](https://nomicon.io/Standards/NonFungibleToken/README.html).
4pub mod non_fungible_token;
5/// Storage management deals with handling [state storage](https://docs.near.org/docs/concepts/storage-staking) on NEAR. This follows the [storage management standard](https://nomicon.io/Standards/StorageManagement.html).
6pub mod storage_management;
7/// This upgrade standard is a use case where a staging area exists for a WASM
8/// blob, allowing it to be stored for a period of time before deployed.
9#[deprecated(
10 since = "4.1.0",
11 note = "This was removed because there is no standard (NEP) for upgradable contracts."
12)]
13pub mod upgrade;
14
15pub(crate) mod event;