-
https://github.com/uvd/start-sui-move/tree/main 介绍的
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
object::delete(id) 是消费资源的概念,通过这种方式使用掉。drop是出了作用域自动舍弃。在编程上有区别的,譬如在闪电贷的示例代码中,限制了 借贷 是object , 无法被 drop,那就必须会还回去才能消费掉这个资源。 |
Beta Was this translation helpful? Give feedback.
-
具有 key 或 store 的struct 都可以存储在链上,同时具有 key, store 的可以被视为资产,使用 transfer::public_transfer 转移。而只有 key 的 struct 只能在创建该 sui object 的 module 内部被 transfer::transfer 转移。 |
Beta Was this translation helpful? Give feedback.
-
同上,这是一种设计模式 |
Beta Was this translation helpful? Give feedback.
-
event 类型的struct 都有 copy, drop |
Beta Was this translation helpful? Give feedback.
具有 key 或 store 的struct 都可以存储在链上,同时具有 key, store 的可以被视为资产,使用 transfer::public_transfer 转移。而只有 key 的 struct 只能在创建该 sui object 的 module 内部被 transfer::transfer 转移。