我正在尝试分叉 Safemoon(或真正的 NotSafeMoon),并将其用作学习智能合约开发的工具。(我有大量你可能称之为“Web 2.0”的开发经验)。
所以说我的构造函数中有类似的东西:
constructor () {
_rOwned[_msgSender()] = _rTotal;
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); // binance PANCAKE V2
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
当我运行测试时,npx hardhat test
出现以下故障:
Compilation finished successfully
TestToken contract
Deployment
1) "before each" hook for "Has the right name"
0 passing (807ms)
1 failing
1) TestToken contract
"before each" hook for "Has the right name":
Error: Transaction reverted: function call to a non-contract account
现在,这确实很有意义,毕竟我试图调用 Pancakeswap v2 路由器合约。我如何绕过这个限制?有没有办法将路由器的合同地址作为环境变量注入?我可以使用 UniswapRouter 的模拟构造函数吗?一般来说,这种事情是如何通过智能合约开发以可测试(以及如何测试)的方式完成的?