27 stable releases

3.4.0 Mar 28, 2024
3.3.0 Dec 12, 2023
3.2.0 Oct 13, 2023
2.4.0 Apr 14, 2023
1.0.0 Aug 13, 2020

#1570 in Magic Beans

Download history 816/week @ 2023-12-23 699/week @ 2023-12-30 606/week @ 2024-01-06 603/week @ 2024-01-13 636/week @ 2024-01-20 655/week @ 2024-01-27 708/week @ 2024-02-03 535/week @ 2024-02-10 721/week @ 2024-02-17 792/week @ 2024-02-24 1287/week @ 2024-03-02 1534/week @ 2024-03-09 1599/week @ 2024-03-16 1513/week @ 2024-03-23 1818/week @ 2024-03-30 1366/week @ 2024-04-06

6,552 downloads per month

Apache-2.0

2MB
44K SLoC

SPL Token program command-line utility

A basic command-line for creating and using SPL Tokens. See https://spl.solana.com/token for more details

Build

To build the CLI locally, simply run:

cargo build

Testing

The tests require locally built programs for Token, Token-2022, and Associated Token Account. To build these, you can run:

BUILD_DEPENDENT_PROGRAMS=1 cargo build

This method uses the local build.rs file, which can be error-prone, so alternatively, you can build the programs by running the following commands from this directory:

cargo build-sbf --manifest-path ../program/Cargo.toml
cargo build-sbf --manifest-path ../program-2022/Cargo.toml
cargo build-sbf --manifest-path ../../associated-token-account/program/Cargo.toml

After that, you can run the tests as any other Rust project:

cargo test

Dependencies

~90MB
~1.5M SLoC