Lesson 1: VPS for our node

Lesson 1: VPS for our node

It is hard to find documentation and understand the meaning of everything, the purpose of this lesson is understanding what is a Cardano Node and how to set up the environment to run one. What is a Cardano Wallet? It is a medium of storage for you ADA, but not just...
Lesson 2: Running a cardano node

Lesson 2: Running a cardano node

First lesson is required to fully understand this video, you can find it here. To install our cardano node we will need to download the executable file (easy way) that we can find on the official repository of Cardano here. Once we find the linux executable link we...
Lesson 3: Send ADA transactions

Lesson 3: Send ADA transactions

To follow the lecture you need a 100% sync node, follow the steps in lesson 2 that you find here Create a wallet with your node let’s create a folder: mkdir excercise01 now we create the wallet with: cardano-cli address key-gen --verification-key-file...
Lesson 4: Minting a CNFT

Lesson 4: Minting a CNFT

To follow the lecture you need a 100% sync node, follow the steps in lesson 3 that you find here Send funds for minting Inside our folder excerise01 we should send some funds to the wallet we built in the last lesson that you can find here. The address can be shown...
Lesson 5: Upgrade your cardano node

Lesson 5: Upgrade your cardano node

Text content will be added soon… Support the project You can support our videos and development you can check one of our NFT project: @jurassikchained 10k onchain dinos@cardano_waifus 1/1 waifus that can change background@fabul_art   Interactive 3D art Fabergè...
Lesson 6: Cardano Vending machines part 1

Lesson 6: Cardano Vending machines part 1

This is the code explained in the video. import jsonimport requestsimport subprocessaddress="ADDRESSVENDING"url = "https://cardano-mainnet.blockfrost.io/api/v0/addresses/"+address+"/utxos"payload={}headers = { 'project_id': 'SECRET'}max=0response =...