向运行时添加可收藏物品
Please read Substrate to Polkadot SDK page first.
您现在拥有一个具有交易数字可收藏物品的基本功能的自定义模块。 下一步是将此模块添加到运行时,以在其区块链上公开其功能。 但是,在执行此操作之前,请花一点时间验证您是否按照将模块添加到工作区中的说明在节点的清单中包含了 Collectibles 模块。
要检查工作区的清单:
- 根据需要打开新的终端。
- 更改到工作区中包含
workshop-solo-template-node
目录的目录。 -
查看节点工作区的
Cargo.toml
文件的内容。more Cargo.toml
您应该会看到 Collectibles 模块被列为工作区的成员。 例如:
[workspace] members = [ "node", "pallets/collectibles", "pallets/template", "runtime", ] [profile.release] panic = "unwind"
如果包含 Collectibles 模块,则您可以准备更新运行时。
更新运行时文件
要将 collectibles 模块添加到运行时:
-
在代码编辑器中打开
runtime/Cargo.toml
文件,并将 Collectibles 模块添加到运行时的本地依赖项和标准功能中。例如:
# Local Dependencies pallet-template = { version = "4.0.0-dev", default-features = false, path = "../pallets/template" } collectibles = { default-features = false, path = "../pallets/collectibles" } [features] default = ["std"] std = [ ... "collectibles/std", ...
- 保存更改。
- 打开
runtime/src/lib.rs
。 -
将 Collectibles 模块导入到运行时中。
/// Import the Collectibles pallet. pub use collectibles;
-
为 collectibles 模块实现配置特征。
impl collectibles::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Currency = Balances; type CollectionRandomness = RandomnessCollectiveFlip; type MaximumOwned = frame_support::pallet_prelude::ConstU32<100>; }
-
将模块添加到
construct_runtime!
宏中。construct_runtime!( pub struct Runtime where Block = Block, NodeBlock = opaque::Block, UncheckedExtrinsic = UncheckedExtrinsic, { System: frame_system, RandomnessCollectiveFlip: pallet_randomness_collective_flip, Timestamp: pallet_timestamp, Aura: pallet_aura, Grandpa: pallet_grandpa, Balances: pallet_balances, TransactionPayment: pallet_transaction_payment, Sudo: pallet_sudo, TemplateModule: pallet_template, Collectibles: collectibles, } );
-
通过运行以下命令使用更新的运行时编译区块链节点:
cargo build --release
节点编译完成后,您的自定义模块就可以使用了。
访问 Collectibles 模块
现在您已经拥有了一个新编译的节点,您可以重新启动区块链并使用您的新模块。
-
通过运行以下命令启动区块链节点:
./target/release/solo-template-node --dev
-
打开Polkadot/Substrate 门户并连接到您的本地开发节点。
- 点击开发者并选择外部函数。
-
选择Collectibles模块并查看可调用函数列表。
- 选择createCollectible函数,点击提交事务,然后点击签名并提交。
-
点击网络并选择资源管理器以查看为创建新的可收藏物品而发出的事件。
您可以使用 Polkadot/Substrate 门户来测试函数、事件和错误是否按预期工作。 但是,为了让您的应用程序吸引用户,您需要开发一个自定义界面,让用户能够浏览和竞标其他用户创建并出售的可收藏物品。 构建引人入胜的界面本身就是一门艺术,因此在本研讨会中,我们将保持简单,不深入探讨应用程序的外观或应提供的用户体验。 在大多数情况下,您需要使用 TypeScript 和 Web 开发框架(例如 React、Vue 或 Angular)来构建在区块链上运行的应用程序的前端。