ລອງຫລິ້ນ Libra blockchain ຂອງ Facebook ໃນ Testnet
Libra Association ຄືອົງກອນບໍ່ສະແຫວງຫາກຳໄລທີ່ເກີດຂຶ້ນຈາກ ການຮ່ວມມືຂອງ Facebook ແລະ ອົງກອນຊັ້ນນຳຫລາຍກວ່າ 30ອົງກອນ ຊັ້ນນຳທົ່ວໂລກ ໂດຍມີຈຸດປະສົງເພື່ອຢາກສ້າງລະບົບໂຄງຮ່າງພື້ນຖານທາງດ້ານການເງິນທີ່ທຸກຄົນສາມາດເຂົ້າເຖິງໄດ້ແລະນຳໃຊ້ງ່າຍ ແລະແນ່ນອນເບື້ອງຫລັງຂອງເຕັກໂນໂລຊີນີ້ກໍຄື Blockchain ເຊິ່ງມີແຜນຈະເປີດໃຊ້ງານພາຍໃນປີ 2020 ນີ້
ແຕ່ມື້ວານນີເວັນທີ່ 18 /06/ 2019 ມາກ ສາກຂະເບືອ ໄດ້ເປີດໂຕເວັບໄຊ້ https://libra.org/ ເຊິ່ງເປັນ ສູນກາງຂໍ້ມູນ ແລະ ມີ White papers ອອກມາໃຫ້ອ່ານ ພ້ອມທັງມີ Libra Blockchain test net ມາໃຫ້ລອງຫລິ້ນກັນນຳ ເຊິ່ງລຸງລອງເບິ່ງແລ້ວມັນກໍງ່າຍຫລາຍໆ ໃນການເຊື່ອມເຂົ້າຫາ network ລຸງໄດ້ອັດເປັນວີດີໂອ ແລະຈະເອົາມາໃສ່ໃນໂພສນີ້ໄວ້ໃຫ້ຫລານເບິ່ງ ແບບບໍ່ຕັດກັນເລີຍ (ລຸງຄ້ານຕັດ) ຫະຫະ
ຫມາຍເຫດ: ເປັນວີດີໂອ ທີ່ລຸງລອງຫລິ້ນໆ ແລ້ວພໍດີອັດໄວ້ ບໍ່ໄດ້ກຽມສະກຣິບ ບໍ່ໄດ້ຕັດຕໍ່ເຫ້ ຫຍັງເລີຍ
ອີກຢ່າງວີດີໂອນີ້ກໍບໍ່ໄດ້ຄາດຫວັງຫຍັງກັບມັນເລີຍນອກຈາກເປັນການທົດລອງ ແລະສຶກສາທາງຕ້ານ ເຕັກໂນໂລຊິແລະການເຮັດວຽກຂອງ ມັນເທົ່ານັ້ນ
ກະລຸນາເບິ່ງເພື່ອຄວາມຄຣຽດເດີ ຫະຫະ
ສຳລັບຄູ່ມືລຸງແມ່ນອີງຕາມນີ້ເດີ
https://developers.libra.org/docs/my-first-transaction
https://medium.com/@katopz/libra-digitalocean-8083326bb266
ສະຫລຸບຄຳສັ່ງ ໃນການຕິດຕັ້ງໃນ DigitalOcean ແບບສັ້ນໆ
Clone the Libra Core Repository
Once you getting in, let’s follow doc step which is…
#
Clone the Libra Core Repository
git clone https://github.com/libra/libra.git
# Setup Libra Core
cd libra
./scripts/dev_setup.sh
# Build Libra CLI Client and Connect to the Testnet
./scripts/cli/start_cli_testnet.sh
ອັນນີ້ແມ່ນສຳລັງຕິດຕັ້ງ protoc-3.8.0 ເດີ້ເພາະວ່າ ບາງ Linux Repo ຈະຕິດຕັ້ງ protoc-3.0 ມາໃຫ້ ເຊິ່ງມັນຈະໃຊ້ບໍ່ໄດ້ກັບ Testnet client
#! /bin/bash # Make sure you grab the latest version https://github.com/protocolbuffers/protobuf/releases/ curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.8.0/protoc-3.8.0-linux-x86_64.zip # Unzip unzip protoc-3.8.0-linux-x86_64.zip -d protoc3 # Move protoc to /usr/local/bin/ sudo mv protoc3/bin/* /usr/local/bin/ # Move protoc3/include to /usr/local/include/ sudo mv protoc3/include/* /usr/local/include/ # Optional: change owner sudo chown $USER /usr/local/bin/protoc sudo chown -R $USER /usr/local/include/google # Reinitialize shell source ~/.bashrc # Ensure version protoc --version
ຖືວ່າຈົບພິທີການ ໃນການຕິດຕັ້ງ
ມາເບິ່ງການ ໃຊ້ງານພໍຄ້າວໆໆໆໆໆໆ
Create Bob’s Account
To create Bob’s account, repeat the account creation command:
libra% account create
List Accounts
To list the accounts you have created, enter this command:
libra% account list
Add 110 Libra to Alice’s Account
To mint Libra and add to Alice’s account, enter this command:
libra% account mint 0 110
Check the Balance To check the balance in Alice’s account, enter this command:libra% query balance 0
Sample output on success:Balance is: 110
Transfer Money
To submit a transaction to transfer 10 Libra from Alice’s account to Bob’s account, enter this command:
libra% transfer 0 1 10
0 is the index of Alice’s account.
1 is the index of Bob’s account.
10 is the number of Libra to transfer from Alice’s account to Bob’s account.