Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions program/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
> ⚠️ DEPRECATED
>
> This crate has been deprecated and is no longer actively maintained.
>
> Please use [spl-token-interface](https://crates.io/crates/spl-token-interface) for
> state and instruction types, and [p-token](https://github.com/solana-program/token/tree/main/pinocchio/program)
> for the program implementation.

# Token program

A token program on the Solana blockchain, usable for fungible and non-fungible tokens.
Expand Down
12 changes: 12 additions & 0 deletions program/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
#![deprecated(
since = "9.0.1",
note = "Please use `spl-token-interface` for state and instruction types, and p-token for the program implementation"
)]
#![allow(clippy::arithmetic_side_effects)]
#![deny(missing_docs)]

//! An ERC20-like Token program for the Solana blockchain
//!
//! `⚠️ DEPRECATED`
//!
//! This crate has been deprecated and is no longer actively maintained.
//!
//! Please use [spl-token-interface](https://crates.io/crates/spl-token-interface) for
//! state and instruction types, and [p-token](https://github.com/solana-program/token/tree/main/pinocchio/program)
//! for the program implementation.

pub mod error;
pub mod instruction;
Expand Down
Loading