From 4239134ddd40b0a3ef950121c41fe579fde6cbc0 Mon Sep 17 00:00:00 2001 From: CocDap Date: Mon, 25 Nov 2024 17:36:59 +0700 Subject: [PATCH] chore: fix content --- pages/hello_move/hello_world_move.mdx | 2 +- pages/introduction_to_sui/key_innovation_sui.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/hello_move/hello_world_move.mdx b/pages/hello_move/hello_world_move.mdx index 45ee55f..387987c 100644 --- a/pages/hello_move/hello_world_move.mdx +++ b/pages/hello_move/hello_world_move.mdx @@ -87,7 +87,7 @@ BUILDING hello_world ## Deploy smart contract Move ```bash -sui move publish --gas-budget 100000000 +sui client publish --gas-budget 100000000 ``` Lưu ý: Nếu môi trường active của bạn là `devnet` thì bạn phải config `devnet` ở Move.toml diff --git a/pages/introduction_to_sui/key_innovation_sui.mdx b/pages/introduction_to_sui/key_innovation_sui.mdx index 8a87e41..9aaeca0 100644 --- a/pages/introduction_to_sui/key_innovation_sui.mdx +++ b/pages/introduction_to_sui/key_innovation_sui.mdx @@ -3,7 +3,7 @@ ## Object-centric model -Khác với Move truyền thống, dữ liệu được lưu trữ toàn cục bằng địa chỉ (address) hoặc tên kiểu ( type name) thì Move trên Sui sẽ lưu trữ dữ liệu bằng ID của đối tượng(object). +Khác với ngôn ngữ smart contract truyền thống, dữ liệu được lưu trữ toàn cục bằng địa chỉ (address) hoặc tên kiểu ( type name) thì Move trên Sui sẽ lưu trữ dữ liệu bằng ID của đối tượng(object). Sui sử dụng Object là đơn vị cơ bản để lưu trữ dữ liệu thay vì tài khoản( account ), như thường thấy trên hầu hết các blockchain khác. Trong Move on sui, mỗi object sẽ gắn liền với unique ID, hoàn toàn độc lập với địa chỉ blockchain. Ví dụ: chúng ta có một object "CoolAsset" sẽ có ID là "AssetID1234" và ID này sẽ được lưu trữ trên global storage được tham chiếu( Reference) đến object đó. Các developer có thể define, create và manage các object này mà không cần phải viết các logic phức tạp. Một đối tượng sẽ có các thuộc tính riêng biệt, bao gồm cả tính ownership. Và các giá trị có thể được cập nhập dựa trên logic của smart contract.