{ try { console.log('Running deployWithWeb3 script...') const contractName = 'St_remix js脚">
当前位置:   article > 正文

在Remix中运行合约JS脚本_remix js脚本

remix js脚本

Remix 接受 async/await 脚本来运行 web3.js 或 ethers.js 命令。脚本需要包装在一个自执行函数中。如下:

  1. // Right click on the script name and hit "Run" to execute
  2. (async () => {
  3. try {
  4. console.log('Running deployWithWeb3 script...')
  5. const contractName = 'Storage' // Change this for other contract
  6. const constructorArgs = [] // Put constructor args (if any) here for your contract
  7. // Note that the script needs the ABI which is generated from the compilation artifact.
  8. // Make sure contract is compiled and artifacts are generated
  9. const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
  10. const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
  11. const accounts = await web3.eth.getAccounts()
  12. let contract = new web3.eth.Contract(metadata.abi)
  13. contract = contract.deploy({
  14. data: metadata.data.bytecode.object,
  15. arguments: constructorArgs
  16. })
  17. const newContractInstance = await contract.send({
  18. from: accounts[0],
  19. gas: 1500000,
  20. gasPrice: '30000000000'
  21. })
  22. console.log('Contract deployed at address: ', newContractInstance.options.address)
  23. } catch (e) {
  24. console.log(e.message)
  25. }
  26. })()

为什么在 Remix 中运行 JavaScript 脚本?

  • 使用 web3.js 或 ethers.js库,来整合dapp应用的前端。
  • 在不通过 Remix GUI 的情况下快速部署并与一堆合约实例交互。
  • 在之前部署的合约上运行一些测试以进行安全检查。
  • 对更新后的dapp代码进行测试。

Set up

1、这些脚本需要访问合约的 ABI。ABI 位于合约的元数据文件(metadata)中,通过Settings模块并检查Generate contract metadata选项是否确实已选中,确保将创建此元数据文件。

 

2、编译solidity文件,会在工作空间contracts目录中创建artifacts文件夹,里面包含JSON文件的合约元数据。

注意:编译时,不要担心使用与 Async/await 脚本相关的 Solidity 版本——它们适用于所有 Solidity 版本

 3、进入Deploy & Run 模块设置环境,Async/await 脚本适用于所有环境:JavascriptVM、Injected Web3 (metamask) 和 Web3 Provider。

 4、编写脚本。(参考官方相关示例

 5、执行脚本。这里提供了两种方式:

 (1). 使脚本成为编辑器中的活动文件并在控制台中运行remix.exeCurrent()

 (2). 右键单击文件资源管理器中的脚本以获取弹出菜单(参见下图)并选择run选项。

 默认在工作空间的scripts文件夹中,有 2 个示例文件:一个使用web3.js,另一个使用ethers.js

 但是,控制台执行remix.exeCurrent()后,显示 scriptRunner plugin is already rendered,这渲染到哪儿了呀??打开浏览器控制台得到的result是个undefined又是什么鬼?这部分还没搞明白,希望有了解的伙伴能提供帮助~,,,

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/419529
推荐阅读
相关标签
  

闽ICP备14008679号