* 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> |
||
---|---|---|
.. | ||
cli | ||
client | ||
js | ||
program | ||
program-2022 | ||
program-2022-test | ||
zk-token-protocol-paper | ||
.gitignore | ||
README.md | ||
twoxtx-setup.sh | ||
twoxtx.patch |
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.