35 stable releases (4 major)

new 5.0.0 Nov 4, 2024
4.1.1 Sep 3, 2024
4.1.0 Aug 28, 2024
4.0.1 Jul 31, 2024
1.0.0 Aug 13, 2020

#2 in #spl-token

Download history 467/week @ 2024-07-15 491/week @ 2024-07-22 1058/week @ 2024-07-29 610/week @ 2024-08-05 486/week @ 2024-08-12 516/week @ 2024-08-19 729/week @ 2024-08-26 792/week @ 2024-09-02 637/week @ 2024-09-09 537/week @ 2024-09-16 735/week @ 2024-09-23 951/week @ 2024-09-30 1107/week @ 2024-10-07 776/week @ 2024-10-14 1104/week @ 2024-10-21 1577/week @ 2024-10-28

4,592 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

To run it locally you can do it like this:

cargo build --manifest-path token/cli/Cargo.toml
target/debug/spl-token <command>

Dependencies

~96MB
~2M SLoC