# Basics

So basically to do anything on the Blockchain you're processing transactions.\
Whenever you buy, sell, send, or receive... a transaction is created, and one of the biggest advantages of the Blockchain is that every single transaction is saved in the network and anyone can see the details of any transactions, on any chain.\
\
To analyze a transaction you need a transaction id (**TxID**) and a blockchain explorer.\
I like to use Solscan.

{% embed url="<https://solscan.io/>" %}

> "*Knowledge is of no value unless you put it into practice.*" - Anton Chekhov

Let's work with this transaction : \
\
**3SijUr6sMZm2fP5agTq5yEyMnE3igSkkipUVpyQuKH2s1XfxvLsqUFAujohiEpntF61tov5spTXLkrzAMQroiuY7**\
\
If you copy and paste this Signature into **solscan** you should have something like this;

![TXiD Overview using Solscan](https://2472405929-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvQDq78z3JU3VUNq9DIbn%2Fuploads%2FJTfghBo0JIOk1eNVQNDK%2FtxidOverview.png?alt=media\&token=ad2b1e6e-358d-44af-bec6-71a33c61daff)

So what do we have here?\
\ <mark style="color:red;">**1**</mark>. 'Transfer from '***the wallet of the buyer***' to '*<mark style="color:purple;">**MagicEden**</mark>**&#x20;wallet***' (to stay simple) for ***34 SOL***'\
\ <mark style="color:red;">**2**</mark>. 'Transfer from '***the wallet where your NFT is stored when you list it on&#x20;**<mark style="color:purple;">**MagicEden**</mark>*' to '**the wallet of the buyer**' for '**1 Communi3 NFT**' (SPL Token of the NFT)'&#x20;

{% hint style="info" %}
**SPL**: Solana Program Library (SPL) tokens are **assets that live on Solana's network**. These assets benefit from Solana's scalability and network performance.\
\
In Fortnite terms, here is the ID of the NFT.
{% endhint %}

If you click on '[**9girQP...FPSkXb**](https://solscan.io/token/9girQPKBRRMz3d4f8QPB9KAtVDWr89UzYeoogFPSkXb)**'** (the ID of the NFT)\
You will have the blockchain details about this NFT. \
\
You can click on 'Creators' and see Royalties wallet(s);

![NFT Overview using Solscan](https://2472405929-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvQDq78z3JU3VUNq9DIbn%2Fuploads%2F6m3M8UlqBsYOLnjHeMbj%2Fimage.png?alt=media\&token=d938c329-edcd-47d6-9706-adf2ec5969bb)

So let's get back to our numbers from the first picture : \
\ <mark style="color:red;">**3**</mark>. Here come the Royalties! In the NFT Overview we can see that for the Mad Scientist collection, royalties are set to 8% which means that for every sale on this collection, 8% are going back to the team. And when you click on '***Creators (5)***' we can see the shares of the royalties as well as the wallets tied to each share.\
\
\&#xNAN;*We can see that in <mark style="color:red;">**Square 3**</mark> the first 4 lines are royalties transfers towards team wallets.*&#x20;

{% hint style="info" %}
*But what is the last line for you're wondering?*
{% endhint %}

Well, the last line is a fee transfer! <mark style="color:purple;">**MagicEden**</mark> is taking 2% fees for each sale on their platform. \
\ <mark style="color:red;">**4**</mark>. 'Transfer from '*<mark style="color:purple;">**MagicEden**</mark>**&#x20;wallet***' (to stay simple) to '**the wallet of the seller**' for '**34 SOL - (royalties + fees)**'\
\
Royalties = 8%\
Fees = 2% \
Royalties + Fees = 10%\
\
**34 SOL - 10% = 30.6 SOL** \
\
With all of that, we saw where every single dollar is going.\
This is one of the powers of the blockchain you can track everything, use it to your advantage!&#x20;
