TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What happens when someone copies an NFT onto another blockhain?

51 pointsby capikiabout 4 years ago
Let's say I'm the owner of the nyan cat NFT (I'm not). Is there anything that prevents someone from duplicating the nyan cat and putting it on another blockchain? If not, does the uniqueness of my nyan cat (which is on Ethereum, I believe), rest on the assumption that one blockchain will be the defacto NFT implementation, and the rest won't be taken seriously?

34 comments

mattnewtonabout 4 years ago
I could be missing something big but to me the principle of nft seems to be to find a greater fool who will buy it, and the crypto part helps sell it to the greater fool.<p>For an ownership right to be meaningful, it needs to have some legally recognized meaning by your centralized authority. If I have a peice of paper that says I own a house or a car or whatever, it’s only useful because I can show that in a court and the people with guns working for the state will give it to me instead of someone else with a fraudulent claim. And if you have that, then the distributed crypto part is redundant... It gets more complicated with art; especially like the jpeg that was just sold at an auction. What does it mean to own that digital image? What value&#x2F; rights does ownership give me? But, fundamentally the ownership being tabulated in a blockchain doesn’t do much a piece of official looking paper doesn’t do, except sound more exciting. I think of it is as notarizing a title to something, but in a new cool way associated with getting rich off Bitcoin.
评论 #26444799 未加载
评论 #26444818 未加载
评论 #26444762 未加载
评论 #26463280 未加载
评论 #26444770 未加载
runakoabout 4 years ago
To the best of my understanding, there is a lot of confusion around what is being sold when an NFT like the Beeple JPG NFT changes hands.<p>What people think was sold is the JPG. What was actually sold is the right to say you purchased an NFT that represents the JPG. In the case of the NFT sale, ownership of the JPG was not a part of the transaction.<p>Clarification may be required, and an example will help. If you see a JPG of The Mandalorian on the Web, you can be sure that Disney, Inc. owns that image. Which means that Disney, Inc. can stop others from using it; can charge license fees for including it in other works; can sell the rights to do so to others as it pleases. You cannot download an official Disney Mandalorian image, change a few pixels, and resell it. Disney owns the work. If Disney sells it, the buyer can then charge license fees, etc.<p>By contrast, the entity that purchased the NFT for the Beeple JPG does not have any rights whatsoever over the JPG or its intellectual property. That entity owns the right to say they are the sole owner of a slot on a blockchain known to be the entity that purchased a given slot on a blockchain (there may be many equivalent slots on that blockchain). They can sell the right to ownership to that slot on the blockchain, but they do not have any claim on future use of the Beeple JPG. If the buyer makes derivative works (&quot;change a pixel or two&quot;) for resale, Beeple could sue for damages. In any common understanding of &quot;ownership,&quot; the NFT buyer does not own the Beeple JPG.<p>Going back to the Mandalorian example, Disney could sell an infinite quantity of NFTs around all the images and video clips they currently publish for free on the Internet. (The NBA is currently doing likewise.) Like the Beeple NFT, those wouldn&#x27;t convey ownership in any real sense, but could pad Disney&#x27;s margins in a very real fashion.
评论 #26444834 未加载
评论 #26444802 未加载
评论 #26444866 未加载
iamwilabout 4 years ago
It largely depends on the party doing the recognition of ownership.<p>Other chains like Tron or Binance are pseudo-decentralized. They do have multiple miners&#x2F;nodes, but Tron&#x2F;Binance controls them all. So if they want to roll back a transaction, they can if they want. In Ethereum, that&#x27;s not the case anymore. Eth did rollback and do a hard fork a long time ago, when the network was much smaller, but they had to get the buy-in for multiple parties in order to do it. It was be largely inconceivable nowadays.<p>So if I&#x27;m the counter-party that&#x27;s to recognize your ownership in an NFT, I&#x27;m probably going to downgrade in my mind an NFT claim on a Tron or Binance chain, as opposed to Ethereum--because I care a lot that transactions can&#x27;t be rolled back.<p>But if I&#x27;m a counter-party that doesn&#x27;t care, because I think the risk of that happening on those chains is low, then maybe I would honor an NFT claim on those chains.<p>Like money, ownership is largely a social contract. The power of an NFT derives from its power bestowed by those honoring it. And the party honors it because of certain properties of the Ethereum chain, such as immutability--but it depends largely on why they&#x27;re going to honor an NFT and for what purpose.
评论 #26445033 未加载
ashfameabout 4 years ago
NFTs are representing ownership of physical or digital objects.<p>As far as physical ownership goes, it comes from what ownership record keeping system are you going to trust? For land, we have trusted state provided system so far. This can change with NFT like technology, provided people including the state trust it to manage those records.<p>For digital items ownership, there is literally nothing that prevents others from getting a copy of your item. You just get to claim the ownership rights to it, which doesn&#x27;t mean much when everyone can get a copy of it, like you do. It&#x27;s essentially reduced to bragging rights, claiming you own it, on a record keeping system which people trust. But would people even care to trust a system for ownership when literally anyone can hold a copy of that digital item in their possession? If someone else copies it over to another record keeping system, what difference does it make? Not much. There isn&#x27;t much value in bragging rights to ownership, as much as it is in possession, which in digital items isn&#x27;t securely feasible in this manner.
machinelaboabout 4 years ago
NFT&#x27;s are a weird thing, it is half scammy (practicality) and half useful (ownership, non-fungibility of the token itself). I am reading up on the NFT standards (ERC721 is the simplest one) [1] and this is the core contract API:<p><pre><code> contract ERC721 { &#x2F;&#x2F; ERC20 compatible functions function name() constant returns (string name); function symbol() constant returns (string symbol); function totalSupply() constant returns (uint256 totalSupply); function balanceOf(address _owner) constant returns (uint balance); &#x2F;&#x2F; Functions that define ownership function ownerOf(uint256 _tokenId) constant returns (address owner); function approve(address _to, uint256 _tokenId); function takeOwnership(uint256 _tokenId); function transfer(address _to, uint256 _tokenId); function tokenOfOwnerByIndex(address _owner, uint256 _index) constant returns (uint tokenId); &#x2F;&#x2F; Token metadata function tokenMetadata(uint256 _tokenId) constant returns (string infoUrl); &#x2F;&#x2F; Events event Transfer(address indexed _from, address indexed _to, uint256 _tokenId); event Approval(address indexed _owner, address indexed _approved, uint256 _tokenId); } </code></pre> It&#x27;s not hard to understand. This ERC721 NFT token can verify is its owner (ownerOf()), and the actual item of interest (tokenMetaData()). Item of interest is secured either on the blockchain itself or offline using URL reference in the metadata.<p>All good. But that&#x27;s all she wrote. Banksy can list his digital artwork on the internet and many people can bid on it. That is actually valuable if you think about it in isolation. The problem is on the auction side, with decentralized bidding - you have no idea if this artwork was pumped up by fake buyers. There is no Sotheby&#x27;s or Christie&#x27;s auction house to mediate this.<p>URL metadata is also weird - now you&#x27;re passing on the value of the token to whoever owns the Domain Name and the servers responding to the GET request. If the artist decides to sell or forgets to renew the domain name, your NFT is useless unless the data was backed up somewhere. Even then, the next buyer of the NFT would want to access the URL and get their goodies instead of getting it from anywhere else since that&#x27;s not on the tokenMetadata.<p>[1] Source: <a href="https:&#x2F;&#x2F;medium.com&#x2F;crypto-currently&#x2F;the-anatomy-of-erc721-e9db77abfc24" rel="nofollow">https:&#x2F;&#x2F;medium.com&#x2F;crypto-currently&#x2F;the-anatomy-of-erc721-e9...</a>
评论 #26448348 未加载
lukebuehlerabout 4 years ago
If I may piggyback on your question: isn’t it only the hash of the digital asset that is unique and that you own as a NFT (e.g. an ERC-721 token wrapping the hash)? So if I change a single pixel or compress the picture with a slightly different setting, I get a new hash and can upload it as a different NFT. At that point you need to compare the NFTs and decide whose claim of true progeny to trust with things like original owner address and timestamps. Or am I missing something?
评论 #26445023 未加载
antogniniabout 4 years ago
I suppose one could make the same argument about bitcoin. Why not just make your own cryptocurrency with its separate blockchain? You certainly can and many people have.<p>But in order for your forked bitcoin to have any value you need to give people some reason to prefer it over the existing bitcoin blockchain. If it really is just a clone of something that already exists, no one will value it very highly.<p>The same is true of NFTs. If an existing NFT is tied to an established blockchain like Ethereum and you fork it, then you would need to come up with a compelling reason for someone to prefer your forked blockchain over Ethereum.
mersad1255about 4 years ago
§§§§§§<p>Basically many mentioned everyone will know the Monalisa in Louvre is the original one or the starwars characters are owned by Disney.. Well the reason everyone knows that is because all those names built an outstanding brand and that&#x27;s why everyone know the name &quot;DISNEY who was the first creator of this NFT is a real deal. Same goes for watch market (Rolex, AP, RM &amp;...)<p>So in the case that I save an image of unknown artist and put it in the blockchain and create a new NFT, considering that the artist behind the art is MR.NOBODY. Then who the hell can find out the real work was NOT done by Me until MR.NOBODY BECOME MR.SOMOBODY and find out about the fraud.<p>Keep in mind the date the NFT was created can&#x27;t necessarily be a validation point alone since the date is only obvious when people got to know MR.NOBODY. (in other word, MR.NOBODY built a successful brand and became MR.SOMEBODY).<p>Any counter arguments which can help me and others to understand the scenario better ?
downandoutabout 4 years ago
The whole point of NFTs is that the provenance is 100% traceable. The value is derived from a market created by the artist, not the fact that it exists on the chain. The blockchain simply provides a way to prove that it is authentic and trace its ownership history. So if you copy one to another chain, you&#x27;ve created a new piece of art that will only have value if you can create a market for it. It might be a bit-for-bit copy of the original, but it won&#x27;t have come from the original artist, and therefore won&#x27;t have the same value.
评论 #26444883 未加载
评论 #26445192 未加载
mwidellabout 4 years ago
Nothing stops you from minting any &quot;art&quot; as an NFT. What it comes down to is whether it is an officially sanctioned NFT by the artist or not, as that is what will give it &quot;value&quot;.
faserxabout 4 years ago
NFT only exists inside a specific smart contract operated by someone within some specific rules implemented in the contract. If the smart contract is seriously built, in order to &quot;control&quot; the NFT cloned as an &quot;exact&quot; copy of it, the copier has to control an exact &quot;copy&quot; of the smart contract where the NFT resides. The only way I see to achieve this is to know the private key of the owner of the original smartcontract or of someone who has the power to operate it. It follows that if they control the &quot;exact&quot; copy of the smart contract in an &quot;cloned&quot; blockchain (forked or crafted) they also control the smart contract in the original one. At that point the problem wouldn&#x27;t be the &quot;copies&quot; but the &quot;original&quot; NFT. If they instead craft a copy without crafting the original smart contract, that would be easily spotted. Your nyan cat besides being unique, has also an &quot;origin&quot;, the smart contract, and that can be easily being verified. The same applies if someone creates &quot;another&quot; nyan cat inside the same blockchain. That would reside on some other smart contract and easily spotted as a copy.
评论 #26445075 未加载
tylersmithabout 4 years ago
NFTs for art are a bet on new titling systems. Duplicating an NFT to different chains, or just different NFT frameworks&#x2F;systems on the same chain, is akin to filing a Chinese copyright for something already filed in the US. Which one is valid or &quot;real&quot; depends on which system you subscribe to.<p>The existence of the tokens on a chain means nothing without the social acceptance of their meaning.
3npabout 4 years ago
Let’s say the Ethereum main chain forks into two over contention over an EIP.<p>You are now effectively holding two copies on it on different blockchains and can transfer them independently.<p>Which one is “the real one”? That’s purely subjective. Just like with fungible tokens (“Bitcoin cash is the real bitcoin”)<p>The same principles apply when just making a copy on the other chain.<p>It’s data and signatures, the rest is just interpretation.
Jarwainabout 4 years ago
The entire point of an NFT is to act as a sort of proof&#x2F;certificate that this is the Real Version of a given piece of media. Someone could create a new NFT on a different blockchain for the nyan cat, but it wouldn&#x27;t be Your NFT. As a result, it could be said it&#x27;s not the Real NFT, and thus doesn&#x27;t have the same value.<p>An artist selling their art as an NFT would probably say &quot;hey This NFT on this chain is the real NFT for my art, anything else is a fake&quot;. A fake would never have this announcement, and there wouldn&#x27;t be a record of the original artist owning&#x2F;creating the NFT on the new chain.<p>So it&#x27;s not so much that one blockchain is the defacto NFT implementation, but it&#x27;s up to the creator to specify the blockchain that has the defacto NFT for that piece of media. They could even announce their own signature, and point out the transaction by their signature that created the NFT. Or something along those lines
chewsabout 4 years ago
so, the principle of non-fungability is now rendered invalid. The whole point to a unique token is the trait of uniqueness. Moving it to another chain is just a derivative.
评论 #26444740 未加载
评论 #26444715 未加载
sumr1nabout 4 years ago
Atm there&#x27;s little that can be done about it :( If you&#x27;re interested in learning more about NFTs, highly recommend you check out this tutorial: <a href="https:&#x2F;&#x2F;docs.alchemyapi.io&#x2F;alchemy&#x2F;tutorials&#x2F;how-to-write-and-deploy-an-nft" rel="nofollow">https:&#x2F;&#x2F;docs.alchemyapi.io&#x2F;alchemy&#x2F;tutorials&#x2F;how-to-write-an...</a>
shussonabout 4 years ago
I can only see &quot;value&quot; for NFTs in context of some digital application which can constrain supply of the thing the NFT represents. e.g A chat application might decide that only the owner of the nyan cat NFT can use the nyan cat emoji. So if there&#x27;s a different blockchain with another nyan cat, it doesn&#x27;t really matter, as long as the chat application doesn&#x27;t use that other blockchain.
vsliraabout 4 years ago
I&#x27;m sorry if this has been answered elsewhere in this thread, but honest technical question:<p>Couldn&#x27;t someone own an NFT within a smart contract, which can itself be fungible and transferrable without paying the author fees? Much like an artwork can be held as property of a shell corporation (well, an actual corporation with a single asset) and the corporation itself traded between collectors.
jobigoudabout 4 years ago
It is also my understanding that NFT need a central authority defining which chain is the true one to work. This is true for all NFT use-case I think, event tickets, membership, game assets...<p>This can be fine and still interesting for these use-cases, for example several independent organizations can agree about the validity of a token independently. Personally I don&#x27;t think NFT for art make sense though.
charcircuitabout 4 years ago
&gt;rest on the assumption that one blockchain will be the defacto NFT implementation, and the rest won&#x27;t be taken seriously?<p>An alternative is that cross chain transfers are respected. For example on one chain your NFT gets deleted and on another chain a duplicate is given to you. The same can happen in reverse to swap back. This does rely on whatever security guarantees the other chain has.
sagarsodahabout 4 years ago
Let me try rephrasing the question into a scenario. Would be great if someone who understands NFT better than me can take a stab at it:<p>What if a more well known artist copies the art of a barely known artist and puts it back into the chain again? There’s a good chance this “replica” of the original art would sell for greater value until the original one is found?
chanfest22about 4 years ago
What happens when someone prints a replica of a Picasso?<p>Nothing.
评论 #26444901 未加载
评论 #26444773 未加载
评论 #26444794 未加载
jyapabout 4 years ago
In the art world they use the term provenance.<p>Random web definition: Provenance is the chronology of the ownership, custody or location of a historical object<p>Even in the blockchain world anyone can deploy a token with ticker USDT. There is the established understanding that there is one USDT contract that people use and transfer and store value in.
account-5about 4 years ago
Can someone explain the point of these NFTs to someone who has no real knowledge of them but what they do know makes them seem pretty pointless.<p>If I have a copy of a digital piece of art I don&#x27;t care if someone has an NFT, I still have an exact copy right? I don&#x27;t get it.
评论 #26459913 未加载
maxericksonabout 4 years ago
If it is on a different blockchain it isn&#x27;t a copy.<p>If a given claim means anything, then similar claims that are illegitimate probably won&#x27;t mean anything.<p>Given that NFTs so far appear to be pretty much meaningless, attempts to duplicate them will also be meaningless.
deftabout 4 years ago
NFTs have a signature, that&#x27;s it. What happens is that the author address changes. No one wants a mona lisa that says &quot;deft&quot; on the bottom corner.
gnopgnipabout 4 years ago
By copying the NFT onto another blockchain you have created a different, new NFT. The original NFT owner still owns it, and can transfer it to a new owner
rjknightabout 4 years ago
I spent a long time doing reasonably deep dives into the legal nature of tokens, blockchain-based ownership and so on. Nevertheless, I&#x27;m not a lawyer, this is not legal advice.<p>Most &quot;digital art&quot; NFTs do not confer any particular rights in relation to the artwork in question. Unless you have a written agreement which states otherwise, you do not have any rights at all, except for rights over the NFT. The NFT does <i>not</i> give you the right to make copies of the artwork, to claim royalties from others who make copies, or to issue DMCA takedowns or similar. This is for the simple reason that the copyright in the artwork is retained by the original artist unless agreed otherwise. This is, of course, true of physical art too: I can buy a physical Banksy, but Banksy keeps the copyright and can decide to deny or permit the making of copies.<p>When I buy the physical artwork, what I&#x27;m buying is the fact that the artist personally created it. I could buy a print, but even if it is a perfect reproduction it lacks the direct connection to the artist&#x27;s physical involvement. Because people value authenticity, my authentic artist-created copy is worth more than a print.<p>NFTs work by creating a connection to the artist, albeit a fairly minimal one: the artist&#x27;s digital key was used to sign a record on the blockchain, and now I own that record (loosely speaking). It is, I suppose, more like owning an autographed copy of a print. However, since this is the most authentic connection we _can_ achieve with respect to digital art, it is deemed (in some cases) to have significant value.<p>In more concise terms: NFTs are not artworks, they are not copies of artworks, they are signed digital records which refer to an artwork, which are valuable because they are (believed to be) signed by the artist.<p>To the original question, then: what happens when someone copies an NFT on to another blockchain? It&#x27;s not obvious to me how someone would do this. Of course, anyone can create a &quot;fake&quot; NFT just like anyone can create a fake autograph. But &quot;copying&quot; here is very difficult, because you can&#x27;t create a duplicate of a transaction that was signed by a particular private key unless you have a copy of the private key yourself. So, either the artist is minting multiple NFTs for the same artwork, or someone has stolen their private key.<p>If the artist is minting multiple NFTs, a question we need to ask is whether they ever committed to _not_ doing this. If they did not, then it&#x27;s hard to see what reason anyone has to complain. If they did commit to this, then the owner of the NFT may have some claim against them (again, this is not legal advice). If there is a social norm against minting multiple NFTs, then the artist&#x27;s reputation may suffer and the value of all of their current and future artworks will decline. Since some NFTs give the artist a cut of all future re-sales, they do have some economic incentive to avoid doing this. If someone has stolen the private key then we have a very interesting conundrum!
评论 #26444902 未加载
评论 #26444856 未加载
keyleabout 4 years ago
The value of that NFT is directionally proportional to people&#x27;s recognition and trust in that block chain.<p>For example for someone who has not heard of the chain, the contract is meaningless and worthless.<p>I hope these two sentences highlights my feeling about this. That said I&#x27;ve been following some of those artists for years and I&#x27;m glad they&#x27;re getting paid. I just feel bad for the other talented 98% who are missing the bus with their jaw on the floor drooling.
gregjorabout 4 years ago
2 x 0 = 0
camjohnson26about 4 years ago
Short answer: no.
fignewsabout 4 years ago
Op
评论 #26451293 未加载
itnwgabout 4 years ago
a
chrisco255about 4 years ago
NFTs, that are based on the ERC-721 standard, are not really transferrable to another blockchain. This is because NFTs have internal state variables that are managed in the Ethereum VM and you cannot trust the execution environment of external blockchains. This makes them stickier to the native chain they are minted on than even ERC-20 tokens.<p>Of course, in an open source world, there&#x27;s nothing stopping anyone from forking your work at any time. How many Bitcoin forks have been spawned off? You can copy the BTC source code but you can&#x27;t make a community follow you. Likewise, if someone were to mint a Nyan cat on another chain, nothing is stopping them, but the Ethereum chain will be given more weight by the community at large because it&#x27;s the community that spawned the concept in the first place. And the Nyan cat creator publicly announced his NFT sale on Ethereum, so there is provenance.
评论 #26445051 未加载