If you have a key.txt file with your address private key, you can load it.
Call LoadAccount with the chosen password as a parameter (you must have the key.txt in the root folder of the app)
Define receiver of the transaction.
Call SendNeblioPayment with: receiver, amount of Neblio and optional message as parameters.
Check the result and display new transaction ID.
Create NFT
If you have key.txt file with your address private key, you can load it.
Call LoadAccount with the password as parameter (you must have key.txt in the root folder of the app)
Add “using VEDriversLite.NFT;” to top of your Program.cs.
Create empty instance of some NFT carrier class (ImageNFT, PostNFT, MessageNFT, etc.)
Fill the parameters that you need to fill – most of them are optional (details in class descriptions).
Call MintNFT with: NFT carrier as parameter.
Check the result and display new transaction ID of this NFT.
Load NFT
To display the NFT you don’t need to initialize the account.
Call the NFTFactory‘s fucntion GetNFT with transaction ID of the NFT you want to load.
These parameters load the NFT data and wait for the entire load, even if the origin of the NFT must be found (you can explore other load parameters later).
Display the data of the loaded NFT.
Explore More functions
VEFramework is a big environment. You can find more functions on the Project Wiki.