Non-Fungible Tokens and Their Special Taxation

4 min read

Non-fungible tokens (NFTs) have exploded in use and popularity in recent months. NFTs have some special tax considerations to be aware of that can be different than fungible tokens, but before we get into that, let’s look at exactly what NFTs are.

What are NFTs 

Economically speaking, fungible assets are those that can be broken down into units and readily interchanged, like cash. For example, you can take a $100 bill and exchange it for five $20 bills nearly anywhere without an issue. Non-fungible assets cannot be exchanged in such as way because they have unique properties that prevent this. Non-fungible assets are things such as houses, a sculpture like Michelangelo’s David or an Andy Warhol painting. There is only one real original.

 NFTs are “one-of-a-kind” digital assets that can be thought of as certificates of ownership for virtual assets. They can be bought or sold like any other piece of property, but do not have a tangible form themselves. Similar to cryptocurrencies, a blockchain ledger keeps track of ownership; these records can’t be forged because the ledger is maintained by thousands of computers around the world. They are most often used to prove ownership of an “original” digital art piece. 

NFT Tax Basics

Similar to cryptocurrencies like Ethereum or Bitcoin, NFTs are taxable property. The big difference in taxation depends on if you are the creator or an investor.

Creators are taxed when they sell an NFT. If an artist created NFT art and sold it for 4 Ethereum coins worth $3,000 (they are typically traded in cryptocurrencies), then the artist would claim the $3,000 as ordinary income for tax purposes.

Investors are those who buy and sell NFTs. Similar to other trading activities profits, they are subject to capital gains tax rules.

Investor Example

Let’s look at an example of how taxes work for an NFT investor. Assume Jane bought an NFT valued at $3,500 in February 2021 by exchanging 2 Ethereum coins (ETH) she bought a few years ago when they cost $350. At the time of the acquisition of the NFT, Jane would have a long-term capital gain on the exchange of her ETH of $2,800 ($3,500 value of the NFT less her cost basis in the ETH exchanged of $700). Essentially, the exchange of the cryptocurrency triggers taxation of that asset and a new basis is established in the NFT as it’s not really an exchange but a disposal for tax purposes.

Half a year later in July, Jane sells the NFT for $8,500. Here she realizes a short-term capital gain of $5,000 (sale price of the NFT of $8,500 less her basis of $3,500). As with other short-term capital gains, this would be taxed as ordinary income.

Special Circumstances for High-Income Earners

Certain NFTs can be considered “collectibles,” leading to unfavorable tax treatment for high-income earners and subjecting them to a 28 percent tax rate on collectibles versus a 20 percent tax rate on regular long-term capital gains.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

Non-Fungible Tokens and Their Special Taxation

April 1, 2021  ·  Blog, Guest Post of the Month, Uncategorized

4 min read

Non-fungible tokens (NFTs) have exploded in use and popularity in recent months. NFTs have some special tax considerations to be aware of that can be different than fungible tokens, but before we get into that, let’s look at exactly what NFTs are.

What are NFTs 

Economically speaking, fungible assets are those that can be broken down into units and readily interchanged, like cash. For example, you can take a $100 bill and exchange it for five $20 bills nearly anywhere without an issue. Non-fungible assets cannot be exchanged in such as way because they have unique properties that prevent this. Non-fungible assets are things such as houses, a sculpture like Michelangelo’s David or an Andy Warhol painting. There is only one real original.

 NFTs are “one-of-a-kind” digital assets that can be thought of as certificates of ownership for virtual assets. They can be bought or sold like any other piece of property, but do not have a tangible form themselves. Similar to cryptocurrencies, a blockchain ledger keeps track of ownership; these records can’t be forged because the ledger is maintained by thousands of computers around the world. They are most often used to prove ownership of an “original” digital art piece. 

NFT Tax Basics

Similar to cryptocurrencies like Ethereum or Bitcoin, NFTs are taxable property. The big difference in taxation depends on if you are the creator or an investor.

Creators are taxed when they sell an NFT. If an artist created NFT art and sold it for 4 Ethereum coins worth $3,000 (they are typically traded in cryptocurrencies), then the artist would claim the $3,000 as ordinary income for tax purposes.

Investors are those who buy and sell NFTs. Similar to other trading activities profits, they are subject to capital gains tax rules.

Investor Example

Let’s look at an example of how taxes work for an NFT investor. Assume Jane bought an NFT valued at $3,500 in February 2021 by exchanging 2 Ethereum coins (ETH) she bought a few years ago when they cost $350. At the time of the acquisition of the NFT, Jane would have a long-term capital gain on the exchange of her ETH of $2,800 ($3,500 value of the NFT less her cost basis in the ETH exchanged of $700). Essentially, the exchange of the cryptocurrency triggers taxation of that asset and a new basis is established in the NFT as it’s not really an exchange but a disposal for tax purposes.

Half a year later in July, Jane sells the NFT for $8,500. Here she realizes a short-term capital gain of $5,000 (sale price of the NFT of $8,500 less her basis of $3,500). As with other short-term capital gains, this would be taxed as ordinary income.

Special Circumstances for High-Income Earners

Certain NFTs can be considered “collectibles,” leading to unfavorable tax treatment for high-income earners and subjecting them to a 28 percent tax rate on collectibles versus a 20 percent tax rate on regular long-term capital gains.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

Service2Client

Share
Published by
Service2Client