上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 火币测试网参数 网络名称(可自定义,易于识别就好):HECO测试网 新增RPC URL: https://http-testnet.hecochain.com 链id (ChainID) 256 符号:HT 屏蔽管理器URL :https://scan-testnet.hecochain.com 货 阅读全文
posted @ 2022-06-15 09:13 apeNote 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、安装这个 npm install @truffle/hdwallet-provider 然后发现报错的话试试下面这个 npm i @truffle/hdwallet-provider@next 2、在 truffle-config.js 文件添加火币测试网 hecotest:{ provider 阅读全文
posted @ 2022-06-14 19:46 apeNote 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1、安装truffle 安装 truffle 前,先安装 node npm install truffle --global 2、初始化 truffle init 初始化后的文件目录 3、实现demo pragma solidity ^0.8.4; contract Storage{ uint256 阅读全文
posted @ 2022-06-14 15:52 apeNote 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 父合约 contract fruit{ string public name = 'eat'; } 继承 import "/4_.sol"; contract Apple is fruit { function getType() external view returns(string memor 阅读全文
posted @ 2022-06-09 23:43 apeNote 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 合约创建合约 合约对 contract Pair { address public factory; string public token0; string public token1; constructor(string memory _token0, string memory _token 阅读全文
posted @ 2022-06-09 16:48 apeNote 阅读(255) 评论(0) 推荐(0) 编辑
摘要: A合约调用B合约 合约B contract B { uint public x; uint public value; function setX(uint _x) public returns (uint){ x = _x; return x; } function setXandSendEthe 阅读全文
posted @ 2022-06-08 23:29 apeNote 阅读(383) 评论(0) 推荐(0) 编辑
摘要: delegateCall 用于重定向父合约; A 合约越来调用B1, 将地址改为 B2 就可以调用 B2 合约B1 contract B { uint public num; uint public value; function setVars(uint _num) public payable{ 阅读全文
posted @ 2022-06-08 22:10 apeNote 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 例子 receive contract ReceiveTest { event Received(address caller, uint256 amount, string msg); function getBalance() public view returns(uint256){ retu 阅读全文
posted @ 2022-06-08 11:52 apeNote 阅读(89) 评论(0) 推荐(0) 编辑
摘要: test pragma solidity >=0.7.0 <0.9.0; contract ReceiveTest { string public data; receive() external payable{ data = "receive call"; } fallback() extern 阅读全文
posted @ 2022-06-08 09:55 apeNote 阅读(26) 评论(0) 推荐(0) 编辑
摘要: recieve 接收token函数 pragma solidity >=0.7.0 <0.9.0; contract ReceiveTest { receive() external payable{ } fallback() external payable{ } function getBala 阅读全文
posted @ 2022-06-06 15:21 apeNote 阅读(292) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页