remix Web3 provider连接不上探究
Posted chen_hui.778
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了remix Web3 provider连接不上探究相关的知识,希望对你有一定的参考价值。
以太坊这东西太奇怪,remix Web3 provider连接不上探究
欢迎使用Markdown编辑器
首先给一张,连接成功的图
注意两个地址,第一个http://… 没有s
注意两个地址,第二个https://… 有s
https://remix.ethereum.org/#optimize=false&runs=200&evmVersion=null&version=soljson-v0.8.7+commit.e28d00a7.js
连不上
连上了
给出开启geth的命令行:
这里我把执行命令写成了 shell 脚本
#!/bin/bash
nohup geth --datadir data --networkid 666 --http --http.corsdomain="*" --http.port 8545 --http.addr "0.0.0.0" --http.api db,web3,eth,debug,personal,net,miner,admin --allow-insecure-unlock --rpc.allow-unprotected-txs --port 30303 2>./console.log &
如果不用shell脚本,只需要关注
geth --datadir data --networkid 666 --http --http.corsdomain="*" --http.port 8545 --http.addr "0.0.0.0" --http.api db,web3,eth,debug,personal,net,miner,admin --allow-insecure-unlock --rpc.allow-unprotected-txs --port 30303 2>./console.log
好了,就到这把,欢迎有学习以太坊的小伙伴有问题的留言。
注意:有时候
http://remix.ethereum.org/ 打不开可能是服务器的原因。
以上是关于remix Web3 provider连接不上探究的主要内容,如果未能解决你的问题,请参考以下文章