So go to the VM, do the presets:
sudo apt install cmake gcc jq build-essential libprotobuf-dev protobuf-compiler make clang pkg-config libssl-dev -y
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
Next, we use a special script for quick installation Sui from the developers themselves:
curl https://raw.githubusercontent.com/MystenLabs/sui/main/doc/utils/sui-setup.sh -o sui-setup.sh && chmod 755 sui-setup.sh && ./sui-setup.sh
Next, we initialize:
sui genesis --force
Assign the RPC:
wallet switch --gateway https://gateway.devnet.sui.io:443
Next, we find out our main address with the command:
wallet active-address
Save it to your desktop, and go to the Sui Discord. Look for the #devnet-faucet channel, and write there:
!faucet your_wallet_addr
(don’t forget to select the appropriate roles under #pick-a-role)
Check the balance on the site
There you can also see a unique thing, if you click on the coins, we will find that they are not one.
That’s right, there are five piles of 50k coins. And these piles are nothing but objects.
Next we need to make some kind of transaction, and in the developers’ guide they suggest to disassemble one object with 50,000 coins into several.
You can see this in the console by typing a command:
wallet gas
And we need it a lot, because the output contains the IDs of objects with coins.
Next we need to enter a command where we have to substitute the IDs of the objects where 0x0001 is the full address of the first object and 0x0002 the address of the second object.
wallet merge-coin --primary-coin 0x0001 --coin-to-merge 0x0002 --gas-budget 1000
And here you can see that object 1 and 2 have been merged, into one, and the third object has been reduced, because he was charged for Gas. You can check directly in the console command:
wallet gas
This is one example of what transactions can be made at this moment in the Sui blockchain. You can read the rest of the examples on the official website https://docs.sui.io/build/wallet