├── LICENSE ├── cnfts ├── createCollectionNFT.ts ├── createTree.ts ├── mintOneCNFT.ts ├── readAPI.ts ├── transferCNFT.ts ├── utils.ts └── video.txt ├── complexHook ├── Anchor.toml ├── Cargo.toml ├── complexTransfer.ts ├── initTrasury.ts ├── initializeExtraMetas.ts ├── lib.rs ├── updateExtraMetas.ts └── video.txt ├── computeOptimization └── lib.rs ├── debugging └── lib.rs ├── durable-nonces ├── nonceTX.ts ├── onlineTX.ts ├── partialTX.ts ├── sendNoncedTX.ts ├── sendTX.ts └── video.txt ├── errors └── template.ts ├── kit-template └── template.ts ├── ledgerVanity └── grindMnemonics.rs ├── metadataUpdate ├── metadata.json ├── mpl_metadata.ts ├── mpl_token22.ts └── sillydragon.jpg ├── mpl └── mpl_tutorial.ts ├── nftBurn └── nftBurner.ts ├── ottersec_istm └── run.ts ├── quicknodeFns ├── callFunction.ts ├── filter.ts ├── function1.ts └── function2.ts ├── readapi └── read.ts ├── seahorse-intro ├── fizzbuzz.py ├── fizzbuzz.ts └── lib.rs ├── token2022 └── createTransferFeeToken.ts ├── web3jsV2 └── comparison.ts ├── web3v2 ├── .gitignore ├── experimental-iterate-on-this-one.ts ├── experimental.ts ├── package-lock.json └── package.json └── xnft └── AndyScreen.tsx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/LICENSE -------------------------------------------------------------------------------- /cnfts/createCollectionNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/cnfts/createCollectionNFT.ts -------------------------------------------------------------------------------- /cnfts/createTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/cnfts/createTree.ts -------------------------------------------------------------------------------- /cnfts/mintOneCNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/cnfts/mintOneCNFT.ts -------------------------------------------------------------------------------- /cnfts/readAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/cnfts/readAPI.ts -------------------------------------------------------------------------------- /cnfts/transferCNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/cnfts/transferCNFT.ts -------------------------------------------------------------------------------- /cnfts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/cnfts/utils.ts -------------------------------------------------------------------------------- /cnfts/video.txt: -------------------------------------------------------------------------------- 1 | https://youtu.be/83nIhnxtlW8 2 | -------------------------------------------------------------------------------- /complexHook/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/Anchor.toml -------------------------------------------------------------------------------- /complexHook/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/Cargo.toml -------------------------------------------------------------------------------- /complexHook/complexTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/complexTransfer.ts -------------------------------------------------------------------------------- /complexHook/initTrasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/initTrasury.ts -------------------------------------------------------------------------------- /complexHook/initializeExtraMetas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/initializeExtraMetas.ts -------------------------------------------------------------------------------- /complexHook/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/lib.rs -------------------------------------------------------------------------------- /complexHook/updateExtraMetas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/complexHook/updateExtraMetas.ts -------------------------------------------------------------------------------- /complexHook/video.txt: -------------------------------------------------------------------------------- 1 | as seen in https://youtu.be/ibP1bM7Gb-U 2 | -------------------------------------------------------------------------------- /computeOptimization/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/computeOptimization/lib.rs -------------------------------------------------------------------------------- /debugging/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/debugging/lib.rs -------------------------------------------------------------------------------- /durable-nonces/nonceTX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/durable-nonces/nonceTX.ts -------------------------------------------------------------------------------- /durable-nonces/onlineTX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/durable-nonces/onlineTX.ts -------------------------------------------------------------------------------- /durable-nonces/partialTX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/durable-nonces/partialTX.ts -------------------------------------------------------------------------------- /durable-nonces/sendNoncedTX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/durable-nonces/sendNoncedTX.ts -------------------------------------------------------------------------------- /durable-nonces/sendTX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/durable-nonces/sendTX.ts -------------------------------------------------------------------------------- /durable-nonces/video.txt: -------------------------------------------------------------------------------- 1 | https://youtu.be/d25ciK5ScXc 2 | -------------------------------------------------------------------------------- /errors/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/errors/template.ts -------------------------------------------------------------------------------- /kit-template/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/kit-template/template.ts -------------------------------------------------------------------------------- /ledgerVanity/grindMnemonics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/ledgerVanity/grindMnemonics.rs -------------------------------------------------------------------------------- /metadataUpdate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/metadataUpdate/metadata.json -------------------------------------------------------------------------------- /metadataUpdate/mpl_metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/metadataUpdate/mpl_metadata.ts -------------------------------------------------------------------------------- /metadataUpdate/mpl_token22.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/metadataUpdate/mpl_token22.ts -------------------------------------------------------------------------------- /metadataUpdate/sillydragon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/metadataUpdate/sillydragon.jpg -------------------------------------------------------------------------------- /mpl/mpl_tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/mpl/mpl_tutorial.ts -------------------------------------------------------------------------------- /nftBurn/nftBurner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/nftBurn/nftBurner.ts -------------------------------------------------------------------------------- /ottersec_istm/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/ottersec_istm/run.ts -------------------------------------------------------------------------------- /quicknodeFns/callFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/quicknodeFns/callFunction.ts -------------------------------------------------------------------------------- /quicknodeFns/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/quicknodeFns/filter.ts -------------------------------------------------------------------------------- /quicknodeFns/function1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/quicknodeFns/function1.ts -------------------------------------------------------------------------------- /quicknodeFns/function2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/quicknodeFns/function2.ts -------------------------------------------------------------------------------- /readapi/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/readapi/read.ts -------------------------------------------------------------------------------- /seahorse-intro/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/seahorse-intro/fizzbuzz.py -------------------------------------------------------------------------------- /seahorse-intro/fizzbuzz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/seahorse-intro/fizzbuzz.ts -------------------------------------------------------------------------------- /seahorse-intro/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/seahorse-intro/lib.rs -------------------------------------------------------------------------------- /token2022/createTransferFeeToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/token2022/createTransferFeeToken.ts -------------------------------------------------------------------------------- /web3jsV2/comparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/web3jsV2/comparison.ts -------------------------------------------------------------------------------- /web3v2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /web3v2/experimental-iterate-on-this-one.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/web3v2/experimental-iterate-on-this-one.ts -------------------------------------------------------------------------------- /web3v2/experimental.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/web3v2/experimental.ts -------------------------------------------------------------------------------- /web3v2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/web3v2/package-lock.json -------------------------------------------------------------------------------- /web3v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/web3v2/package.json -------------------------------------------------------------------------------- /xnft/AndyScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loopcreativeandy/video-tutorial-resources/HEAD/xnft/AndyScreen.tsx --------------------------------------------------------------------------------