# Tutorials

### Tutorials <a href="#tutorials" id="tutorials"></a>

If you are new to the Endless blockchain, begin with these tutorials before you get into in-depth development. These tutorials will help you become familiar with how to develop for the Endless blockchain using the Endless SDK.

### Your First Transaction <a href="#your-first-transaction" id="your-first-transaction"></a>

How to generate, submit and verify a transaction to the Endless blockchain.

### Your First NFT <a href="#your-first-nft" id="your-first-nft"></a>

Learn the Endless `token` interface and how to use it to generate your first NFT. This interface is defined in the [`token.move`](https://github.com/endless-labs/endless-move-framework/blob/main/endless-token/sources/token.move) Move module.

### Your First Coin <a href="#your-first-coin" id="your-first-coin"></a>

Learn how to deploy and manage a coin. The `coin` interface is defined in the [`coin.move`](https://github.com/endless-labs/endless-move-framework/blob/main/endless-framework/sources/coin.move) Move module.

### Your First Fungible Asset <a href="#your-first-fungible-asset" id="your-first-fungible-asset"></a>

Learn how to deploy and manage a fungible asset. The `fungible asset` interface is defined in the [`fungible_asset.move`](https://github.com/endless-labs/endless-move-framework/blob/main/endless-framework/sources/fungible_asset.move) Move module.

### Your First Move Module <a href="#your-first-move-module" id="your-first-move-module"></a>

Write your first Move module for the Endless blockchain.

### Your First Multisig <a href="#your-first-multisig" id="your-first-multisig"></a>

Learn how to perform operations using Off-Chain K-of-N multi-signer authentication.
