Consider you want to raise some capital for your fledgling start-up. Since NFTs can point to physical assets, not just digital assets, why not allow a group to finance your project right on your very own website with no 3rd party. Say we want to raise 100 ETHER from 10 investors. Each Investor will gain 1% of the company shares. Just follow the pseudo code below:
Create a web page in your website for investors
- Create a web page with 10 tiled unique images with 10 ETHER
- Add the JavaScript to interact with the smart contract
- A tile click and verify dialog will open the buyer’s wallet to collect payment
Smart Contract
- Buyer sends the validated 10 ETHER
- Contract mints the NFT with the unique image on the blockchain
- Contract sends the NFT to the buyer’s wallet
- Contract sends the ETHER to the sellers/website owner’s wallet
- Contract marks the NFT asset as not for sale
- Assign the 1% shares to the buyer
Again, a smooth automated transaction. The website could add the ability for the NFT owner or rather investor to put the investment up for resale at an increased price. Your website becomes your own marketplace for finance with investors able to trade. You can take royalties or commissions from these resales via your smart contract logic. No 3rd party, delay or fuss. Just code. We’ve omitted the gas fees for simplicity, these are small amounts of ETHER needed to drive the transaction to be processed and passed onto the miners or those with a stake as interest payments depending on the consensus model.