Difference between revisions of "Blockchain"

From Wasya Wiki
Jump to: navigation, search
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
From: https://docs.alchemy.com/docs/how-to-create-an-nft
+
= Basics =
  
From: https://docs.alchemy.com/docs/how-to-mint-an-nft-from-code
+
* https://solidity-by-example.org/ - pretty basic and clear
 +
* https://docs.alchemy.com/docs/how-to-create-an-nft
 +
* https://docs.alchemy.com/docs/how-to-mint-an-nft-from-code
 +
* https://cryptozombies.io/
 +
* https://ethereum.org/en/developers/tutorials/ - these were useful
 +
* https://ethereum.org/en/developers/tutorials/how-to-implement-an-erc721-market/ - A minimal ERC marketplace
 +
* https://docs.alchemy.com/docs/nft-minter - A minimal minter
 +
* https://dev.to/dabit3/the-complete-guide-to-full-stack-ethereum-development-3j13 - detailed, useful
  
npx hardhat run scripts/deploy.js --network goerli
+
= Resources =
  
Contract deployed to address: 0x3A924Ded7422Be2bb5Af329A3a682dA9B649b020
+
* https://docs.opensea.io/docs/metadata-standards - Metadata standards, a quick read
 +
* https://github.com/scaffold-eth/scaffold-eth - seems useful
 +
* https://web3.storage/docs/#create-the-upload-script - cheap storage
 +
* https://tailwindcss.com/ - modern css, check it out
  
https://ish-gme.s3.amazonaws.com/nft-metadata.json
+
= Recipes =
 
+
* https://docs.alchemy.com/docs/how-to-get-all-nfts-owned-by-an-address - get all NFT's of an owner
NFT Minted! Check it out at: https://goerli.etherscan.io/tx/0x0477053e818c94f94bd2b7f50846b1ce3f5071dd195b1c7cb81f851fd2538237
+
 
+
= A minimal minter =
+
 
+
From: https://docs.alchemy.com/docs/nft-minter
+
 
+
Their implementation didn't work, btw.
+
 
+
= A minimal ERC marketplace =
+
 
+
From: https://ethereum.org/en/developers/tutorials/how-to-implement-an-erc721-market/
+
 
+
= Metadata standards =
+
 
+
From: https://docs.opensea.io/docs/metadata-standards
+

Latest revision as of 10:30, 20 October 2022

Basics

Resources

Recipes