#run-time #module #player #on-chain #gomoku #off-chain #nonce

no-std single-gomoku

Single Gomoku 运行时模块

1 个不稳定版本

0.8.3 2020年10月17日

#4#gomoku

MIT 许可证

55KB
1K SLoC

Celer 应用模块

CelerApp 是高度交互、安全和低成本的链上状态通道应用,在 Substrate 上运行,并与 Celer 通用支付通道 一起使用。通用支付通道是独立于特定应用支付通道。此仓库提供开发 dApps 的链上运行时模块部分的示例。当玩家无法在链下达成共识并希望争议时,才需要链上操作。

CelerPay 和 CelerApp 通过简单的条件依赖接口松散连接。CelerApp 模块通过向 CelerPay 暴露两个用于作为支付条件的函数:is_finalized 返回应用程序状态结果是否最终确定;get_outcome 返回布尔值或数值结果。

// Simple interface of CelerApp with boolean outcome
// If app is finalized, return true value
// else, return false value
// dev: `args_query_finalization` is encoded value and you can take any type as argument.
pub fn is_finalized(args_query_finalization: Vec<u8>) -> Result<bool, DispatchError> {}

// If app outcome is true, return encode true value
// else, return encoded false value
// dev: `args_query_outcome` is encoded value and you can take any type as argument.
pub fn get_outcome(args_query_outcome: Vec<u8>) -> Result<Vec<u8>, DispatchError> {}

// Simple interface of CelerApp with numeric outcome 
// If app is finalized, return true value
// else, return false value
// dev: args_query_finalization is encoded value and you can take any type as an argument.
pub fn is_finalized(args_query_finalization: Vec<u8>) -> Result<bool, DispatchError> {}

// return encoded u32 value
// dev: args_query_outcome is encoded value and you can take any type as an argument.
pub fn get_outcome(args_query_outcome: Vec<u8>) -> Result<Vec<u8>, DispatchError> {}

您可以使用 Substrate 运行时模块或智能合约实现 CelerApp。

布尔值和数值结果运行时模块 布尔值和数值结果智能合约
部署选项 无需分叉的运行时升级 最初智能合约部署或虚拟合约
运行时升级或部署的便捷性 困难  简单
开发便捷性 中等 简单
定制化程度  低
  • 无需分叉的运行时升级:区块链的运行时定义了区块链可以持有的状态,也定义了更改该状态的逻辑。Substrate 使得部署增强的运行时功能(包括破坏性更改)成为可能,而无需硬分叉。

  • 最初部署:最初由开发者部署一次,所有玩家都可以重复共享。当玩家想要在链上争议时,无需部署或运行时升级额外的代码。

  • 虚拟合约:智能合约也可以作为虚拟合约存在于链下,由涉及方虚拟实例化。虚拟智能合约仅在有人想要争议时才需要部署在链上,在这种情况下,CelerPay 可以通过计算虚拟智能合约代码、初始状态和非ces的哈希值得到的唯一标识符来找到调用 is_finalizedget_outcome API 的位置。运行时模块条件不会是虚拟合约。

智能合约将支持未来。

依赖项

~7.5MB
~138K SLoC