2025年6月16号!共享免费的V2Ray节点,10个订阅地址,20个免费的高速节点,支持流行的Clash、V2rayN,秒速接入,终生免费 VPN,开启全新的网络体验,更容易获得优质的代理,免费梯子,更快更稳!Shadowsocks,Trojan机场,科技互联网爬墙,免费梯子,免费代理商,永久免费代理商

山猫分享

一、说明介绍与机场推荐

全球节点更新啦!涵盖美国、新加坡、加拿大、香港、欧洲、日本、韩国等地,提供10个全新订阅链接,轻松接入V2Ray/Clash/小火箭等科学上网工具,简单复制、粘贴即畅享全球网络自由!只需复制以下节点数据,导入或粘贴至v2ray/iso小火箭/winxray、2rayNG、BifrostV、Clash、Kitsunebi、V2rayN、V2rayW、Clash、V2rayS、Mellow、Qv2ray等科学上网工具,即可直接使用!

二,自用机场推荐

包月(不限时)最低5元起150GB流量:点我了解详情

同步电报群:https://t.me/xfxssr

永久发布页地址,防丢失https://sulinkcloud.github.io/

三,节点列表和测试速度

https://so.xfxssr.me/api/v1/client/subscribe?token=2fc4cd1265d84ea313f2e211386deaa0

https://so.xfxssr.me/api/v1/client/subscribe?token=18df0291a3e0f5e84c0f71f74c67b896

https://so.xfxssr.me/api/v1/client/subscribe?token=fcb9ec639cebaadd5368ae3308d6f03d

https://so.xfxssr.me/api/v1/client/subscribe?token=76b3a842875e8ff8cd5a3cde174e1ef3

https://so.xfxssr.me/api/v1/client/subscribe?token=cee921e27635bdcb63fa111af6a4e707

https://so.xfxssr.me/api/v1/client/subscribe?token=6509a3da19f1ac46340a6e5d4f69d819

https://so.xfxssr.me/api/v1/client/subscribe?token=6f1715264a2b0009b3bdcf7007d4a947

https://so.xfxssr.me/api/v1/client/subscribe?token=df846e63108948e55326ef5fdba4aa8e

https://so.xfxssr.me/api/v1/client/subscribe?token=c57350892e1f981116b29cb7be86e748

https://so.xfxssr.me/api/v1/client/subscribe?token=293a4f8200d3501f70f9fdc554d9d087

clash verge 测试速度超快,看油管4k无压力

200个免费节点分享

Cloudreve

分割线
如何搭建一个简单的区块链节点(基于 Ethereum)?

解答步骤:

安装 Geth(Go Ethereum):

Windows:从官网下载安装包,添加到环境变量。

Linux:

bash

sudo add-apt-repository -y ppa:ethereum/ethereum

sudo apt-get update

sudo apt-get install geth

创建区块链数据目录:

bash

mkdir myblockchain

cd myblockchain

初始化区块链(创世区块):

创建genesis.json文件,内容:

json

{

“config”: {

“chainId”: 100,

“homesteadBlock”: 0,

“eip150Block”: 0,

“eip155Block”: 0,

“eip158Block”: 0,

“byzantiumBlock”: 0,

“constantinopleBlock”: 0,

“petersburgBlock”: 0,

“istanbulBlock”: 0,

“muirGlacierBlock”: 0

},

“alloc”: {},

“coinbase”: “0x0000000000000000000000000000000000000000”,

“difficulty”: “0x20000”,

“extraData”: “”,

“gasLimit”: “0x2fefd8”,

“nonce”: “0x0000000000000042”,

“mixhash”: “0x0000000000000000000000000000000000000000000000000000000000000000”,

“parentHash”: “0x0000000000000000000000000000000000000000000000000000000000000000”,

“timestamp”: “0x00”

}

初始化:

bash

geth init genesis.json

启动节点(开发模式):

bash

geth –dev –http –http.addr 0.0.0.0 –http.port 8545 –ws –ws.addr 0.0.0.0 –ws.port 8546

连接控制台:

bash

geth attach http://127.0.0.1:8545

创建账户并挖矿:

javascript

// 创建账户

personal.newAccount(“密码”)

// 查看账户

eth.accounts

// 开始挖矿(生成区块)

miner.start()

// 停止挖矿

miner.stop()

评论

标题和URL已复制