web3 调部署上线的合约接口总是失败,本地调就成功

发布于 2022-09-07 21:41:38 字数 1973 浏览 25 评论 0

我的合同:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文