ERC721 mint()返回'无效地址'错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ERC721 mint()返回'无效地址'错误相关的知识,希望对你有一定的参考价值。
我正在尝试使用javascript在私有网络中创建ERC721令牌。
我可以通过松露控制台创建ERC721令牌但是通过JavaScript失败了。
松露(开发)> myToken.mint()
{tx:'0xc1dc87a29fbe200ff180df67c01e454818feee433b13331c4ea9268624db077b',收据:{blockHash:'0xf2ad0c70cda0efca3460ec74866ed61e77647493feb5edf2f81ad2a038c69956',blockNumber:251489,...
错误消息是
'UnhandledPromiseRejectionWarning:未处理的承诺拒绝(拒绝ID:2):错误:无效的地址'
我的代码如下:
var Web3 = require('web3');
var BigNumber = require('bignumber.js');
var contract = require("truffle-contract");
var contractJson = require("./build/contracts/MyToken.json");
var MyToken = contract(contractJson);
Web3.providers.HttpProvider.prototype.sendAsync = Web3.providers.HttpProvider.prototype.send;
var web3 = new Web3();
web3.setProvider(new web3.providers.HttpProvider(web3Provider));
MyToken.setProvider(web3.currentProvider);
MyToken.deployed().then(function(mytoken) {
mytoken.mint();
}
在minting
之前我需要什么吗?
Updated code
这是一个适用于您的代码的更新测试。
const NFToken = artifacts.require('NFTokenMock');
contract('NFTokenMock', (accounts) => {
let nftoken;
const id1 = 1;
const id2 = 2;
const id3 = 3;
const id4 = 40000;
beforeEach(async () => {
nftoken = await NFToken.new();
});
it('returns correct balanceOf after mint', async () => {
await nftoken.mint(accounts[0], id1);
const count = await nftoken.balanceOf(accounts[0]);
assert.equal(count.toNumber(), 1);
});
});
Try it
设置松露需要成堆的样板。我们来试试吧。
mkdir tmp && cd tmp
然后把它放在你的package.json中
{
"dependencies": {
"@0xcert/ethereum-erc721": "^2.0.0-rc1",
"truffle": "^5.0.2",
"web3": "^1.0.0-beta.37"
}
}
并运行npm install
。我们还需要一个特殊的hack来使用我们想要的Solidity编译器版本来获得Truffle(0.5.1):
(cd node_modules/truffle && npm install solc@0.5.1)
现在建立一个松露项目:
mkdir contracts
echo > contracts/Migrations.sol <<EOL
pragma solidity ^0.5.1;
// Boilerplate required, https://github.com/trufflesuite/truffle/issues/1382
contract Migrations {}
EOL
mkdir Migrations
echo > Migrations/1.js <<EOL
// Boilerplate required, https://github.com/trufflesuite/truffle/issues/1382
module.exports = ($)=>{};
EOL
这是你的合同。将它保存到contract / nf-token-mock.sol:
pragma solidity 0.5.1;
import "@0xcert/ethereum-erc721/src/contracts/tokens/nf-token.sol";
import "@0xcert/ethereum-erc721/src/contracts/ownership/ownable.sol";
/**
* @dev This is an example contract implementation of NFToken.
*/
contract NFTokenMock is
NFToken,
Ownable
{
/**
* @dev Mints a new NFT.
* @param _to The address that will own the minted NFT.
* @param _tokenId of the NFT to be minted by the msg.sender.
*/
function mint(
address _to,
uint256 _tokenId
)
external
onlyOwner
{
super._mint(_to, _tokenId);
}
}
并将上述测试文件保存到test / go.js。
如果你很幸运,那么运行:npx truffle test
,你应该看到
Using network 'test'.
Compiling ./contracts/Migrations.sol...
Contract: NFTokenMock
✓ correctly checks all the supported interfaces (55ms)
✓ correctly approves account (156ms)
2 passing (420ms)
以上是关于ERC721 mint()返回'无效地址'错误的主要内容,如果未能解决你的问题,请参考以下文章
如何从以太坊地址获取 ERC20、ERC721 和 ERC827 代币列表