web3 调部署上线的合约接口总是失败,本地调就成功
我的合同:
https://kovan.etherscan.io/ad...
我尝试用 web3 调合同里的接口,譬如:
//address and abi 从上面的 URL 里复制过来的
let contractAddr = contract.address
let contractAbi = contract.abi
let web3 = new Web3(new Web3.providers.WebsocketProvider('wss://mainnet.infura.io/ws'))
if (typeof web3 !== 'undefined') {
web3 = new Web3(web3.currentProvider)
} else {
console.log('we need MetaMask')
}
let myContract = new web3.eth.Contract(contractAbi, contractAddr)
myContract.methods.name().call().then(console.log).catch(console.log)
我得到的是:
Error: ERROR: The returned value is not a convertible string:
但是如果我把合同拷到 remix 里
https://remix.ethereum.org/#o...
然后用 ganache
. 调整代码再在本地调,结果:
//address and abi 从上述 URL 里拷过来的
let contractAddr = contract.address
let contractAbi = contract.abi
let url = contract.url //http://127.0.0.1:7545 provided by ganache
let web3
if (typeof web3 !== 'undefined') {
// web3 = new Web3(web3.currentProvider)
} else {
web3 = new Web3(new Web3.providers.HttpProvider(url))
}
let myContract = new web3.eth.Contract(contractAbi, contractAddr)
myContract.methods.name().call().then(console.log).catch(console.log)
这样我就能调成功,拿到 'MOMO'.
所以我的问题是,
我怎么调下面的这个 URL 的接口:
https://kovan.etherscan.io/ad...
就像我调 remix 里的一样
https://remix.ethereum.org/#o...
我尝试过用 infura 的其他节点,也都失败。我用的 chrome 且有 MetaMask 扩展,用的 web3@^1.0.0-beta.33.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论