运行一个 Move dApp
本系列将以 Starcoin 为例,讲解 Move 语言以及 Move dApp 的开发,及其背后的计算机原理。
本系列的全文更新中,见:
https://github.com/WeLightProject/Web3-dApp-Camp/tree/main/move-dapp
同步的打卡任务:
https://github.com/WeLightProject/Web3-dApp-Camp/discussions/categories/projects-others
本教程中dApp 采用 react
框架,下载starcoin-test-dapp-react
:
$ git clone git@github.com:starcoinorg/starcoin-test-dapp-react.git
$ yarn
$ yarn start
Starmask 是和 Metamask 一样的浏览器插件。
因此,我们可以使用相同的方式去配置:
$ lsof -i:9851
9851
的本地网络控制台中的导出私钥命令:
starcoin% account export 0x23dc2c167fcd16e28917765848e189ce
然后通过导入账户功能导入:
此时 Starmask、Starcoin Console 与 RPC 接口所查询到同一账户的 STC 余额应该一致。
其中 Starcoin RPC 的 Postman Collection 链接如下:
调整 demo 中的合约。首先我们定位到相关代码处:
src/app.jsx
找到标签{/* Contracts Function */}
:
{/* Contracts Function */}
<div className="mt-4 shadow-2xl rounded-2xl border-2 border-slate-50 p-2">
<div className="font-bold">Contract Function</div>
<div
className="mt-4 rounded-2xl bg-blue-900 flex justify-center text-white p-4 font-bold cursor-pointer hover:bg-blue-700 duration-300"
onClick={() => {
makeModal({
children: ({ onClose }) => {
return (
<>
<Mask onClose={onClose} />
<Account />
</>
);
},
});
}}
>
0x1::TransferScripts::peer_to_peer_v2
</div>
</div>
将0x1::TransferScripts::peer_to_peer_v2
改为Init_counter
。
定位到src/modal.jsx
,修改!! KEY PLACE
为相应的 func:
try {
// !! KEY PLACE
const functionId = "0x2fe27a8d6a04d57583172cdda79df0e9::MyCounter::init_counter";
// !! KEY PLACE
const strTypeArgs = [];
const tyArgs = utils.tx.encodeStructTypeTags(strTypeArgs);
const sendAmount = parseFloat(amount, 10);
if (!(sendAmount > 0)) {
window.alert("Invalid sendAmount: should be a number!");
return false;
}
const BIG_NUMBER_NANO_STC_MULTIPLIER = new BigNumber("1000000000");
const sendAmountSTC = new BigNumber(String(sendAmount), 10);
const sendAmountNanoSTC = sendAmountSTC.times(
BIG_NUMBER_NANO_STC_MULTIPLIER
);
const sendAmountHex = `0x${sendAmountNanoSTC.toString(16)}`; // Multiple BcsSerializers should be used in different closures, otherwise, the latter will be contaminated by the former.
const amountSCSHex = (function () {
const se = new bcs.BcsSerializer();
// eslint-disable-next-line no-undef
se.serializeU128(BigInt(sendAmountNanoSTC.toString(10)));
return hexlify(se.getBytes());
})();
// !! KEY PLACE
const args = [];
// const args = [arrayify(account), arrayify(amountSCSHex)];
const scriptFunction = utils.tx.encodeScriptFunction(
functionId,
tyArgs,
args
);
打开http://localhost:3000
,即可成功调用智能合约的函数。
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!