// make sure you change the "password" to any password you want to use for yout wallet
narunocli --createwallet password
// print wallet address
narunocli --printwallet
// backup wallet
narunocli --narunoexport
// switch to wallet number 1 (not 0)
narunocli --wallet your_wallet_id_from_printwallet
Import wallet
narunocli --narunoimport your_zip_location
**need to use full path of zip location, example: /root/naruno/.naruno/wallet-00001.zip
Upgrade
pip3 install naruno --upgrade
Connect to baklava network
narunocli --baklavaon
Check Balance
narunocli --getbalance
If your balance is smaller from 0 you should check your other wallets. For viewing other wallets you should use narunocli --printwallet and after you should switch to other wallet via narunocli --wallet your_wallet_id_from_printwallet
Creating Web3_App.py
Please use this code for creating a Web3 application in 4 lines.
If you want to add amount to your transaction you can use integration.send("Your_Action_Name", "Your_Data", "Recipient_Address", amount=100) function. The amount is in Naruno coins. You can check your balance via narunocli --getbalance command.
Running
With this command you will send an data to an recipient and after a while (tx validation proccess) you will get your sent datas and the datas that came to you.