Skip to main content

rialo_s_spl_token_metadata_interface/
lib.rs

1// Copyright (c) Subzero Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3// This file is either (a) original to Subzero Labs, Inc. or (b) derived from the Anza codebase and modified by Subzero Labs, Inc.
4
5//! Crate defining an interface for token-metadata
6
7#![allow(clippy::arithmetic_side_effects)]
8#![deny(missing_docs)]
9#![cfg_attr(not(test), forbid(unsafe_code))]
10
11pub mod error;
12pub mod instruction;
13pub mod state;
14
15// Export current sdk types for downstream users building with a different sdk
16// version Export borsh for downstream users
17pub use borsh;
18pub use rialo_s_borsh;
19pub use rialo_s_instruction;
20pub use rialo_s_program_error;
21
22/// Namespace for all programs implementing token-metadata
23pub const NAMESPACE: &str = "rialo_s_spl_token_metadata_interface";