solana-program-library/token
hanako mumei c426ed9749 Refactor create-token to go through token client
* cli: remove offline args from commands that create accounts
* cli: implement finish_tx, to be a replacement for handle_tx, which branches on the client return
* client: validate a transaction is fully signed before sending over rpc
* client: convert payer from Signer to Arc<dyn Signer> to support cli signers
* client: support nonce mode
* client: change create_mint to be an object method that returns SendTransaction::Output
* client: rename S2 to S everywhere that Token<T, S> is Token<T>
2022-08-18 17:35:55 -07:00
..
cli Refactor create-token to go through token client 2022-08-18 17:35:55 -07:00
client Refactor create-token to go through token client 2022-08-18 17:35:55 -07:00
js Update rust to 1.60, solana to 1.11.6 (#3492) 2022-08-18 12:16:02 -07:00
program Update rust to 1.60, solana to 1.11.6 (#3492) 2022-08-18 12:16:02 -07:00
program-2022 Update rust to 1.60, solana to 1.11.6 (#3492) 2022-08-18 12:16:02 -07:00
program-2022-test Refactor create-token to go through token client 2022-08-18 17:35:55 -07:00
zk-token-protocol-paper Add zktoken paper 2022-02-22 12:22:48 -07:00
.gitignore Add temporary twoxtx feature for ConfidentialTransfer extension unit testing 2022-02-28 09:34:23 -08:00
README.md token: Bump C bindings (#2109) 2021-07-19 23:57:26 +00:00
twoxtx-setup.sh ci: Separate twoxtx build step, match Rust version (#3422) 2022-08-03 19:53:35 +02:00
twoxtx.patch Accommodate upstream web3.js changes in twotx patch (#3140) 2022-05-04 17:32:51 -06:00

README.md

Token program

A token program on the Solana blockchain, usable for fungible and non-fungible tokens.

This program provides an interface and implementation that third parties can utilize to create and use their tokens.

Full documentation is available at https://spl.solana.com/token

JavaScript bindings are available in the ./js directory.