网站首页 站内搜索

搜索结果

查询Tags标签: ethereum,共有 11条记录
  • 使用Java+Web3j和Ethereum网络交互(二):部署ERC20并调用合约功能

    添加web3j-maven-plugin web3j-maven-plugin是一个maven插件,可以直接将solidity文件编译为文件Java,方便Java开发者直接进行合约的部署,加载,调用。 我们直接将该插件添加到maven的pom.xml文件中即可。 <plugin><groupId>org.web3j</groupId><a…

    2022/6/27 1:21:10 人评论 次浏览
  • 使用Java+Web3j和Ethereum网络交互(一):获取Ethereum信息

    1 简介 web3j是一个高度模块化,响应式的,类型安全的Java和Android库,可以用于和以太坊网络上的节点以及智能合约进行交互。 Web3j使你与以太坊网络进行交互,不需要额外的去写与以太坊平台交互的代码开销。 1.1 特性完整地实现了Ethereum中HTTP和IPC上的JSON-RPC客户端…

    2022/6/25 1:19:49 人评论 次浏览
  • 谈谈自己关于 hyperledger fabric 和 ethereum 区别的理解

    节点组成的不同 ethereum 只有 peer 节点组成,hyperledger fabric 有 order 节点和 peer 节点。 注:其实 ethereum 还有一些不参与记账的节点,但不是必须,这里不写。 打包交易的节点不同,即保持一致性的方式不同。 ethereum 是挖矿记账,即计算出困难问题的 peer 拥有…

    2021/12/26 11:07:30 人评论 次浏览
  • 谈谈自己关于 hyperledger fabric 和 ethereum 区别的理解

    节点组成的不同 ethereum 只有 peer 节点组成,hyperledger fabric 有 order 节点和 peer 节点。 注:其实 ethereum 还有一些不参与记账的节点,但不是必须,这里不写。 打包交易的节点不同,即保持一致性的方式不同。 ethereum 是挖矿记账,即计算出困难问题的 peer 拥有…

    2021/12/26 11:07:30 人评论 次浏览
  • SDKs For BlockChain

    BitcoinJ bitcoinj is a library for working with the Bitcoin protocol. It can maintain a wallet, send/receive transactions without needing a local copy of Bitcoin Core and has many other advanced features. It’s implemented in Java but can be used from…

    2021/10/6 23:11:53 人评论 次浏览
  • SDKs For BlockChain

    BitcoinJ bitcoinj is a library for working with the Bitcoin protocol. It can maintain a wallet, send/receive transactions without needing a local copy of Bitcoin Core and has many other advanced features. It’s implemented in Java but can be used from…

    2021/10/6 23:11:53 人评论 次浏览
  • Hyperledger Besu(1)“系统框架”

    1. 定义 是一个运行在以太坊公网上的java语言的以太坊客户端,旨在对公共和私有许可网络用例进行企业友好。它也可以在 Rinkeby、Ropsten 和 Grli 等测试网络上运行。 1.1 功能 在以太坊区块链中处理交易的执行环境用于持久化与事务执行相关的数据的存储点对点 (P2P) 网络…

    2021/8/1 17:37:35 人评论 次浏览
  • Hyperledger Besu(1)“系统框架”

    1. 定义 是一个运行在以太坊公网上的java语言的以太坊客户端,旨在对公共和私有许可网络用例进行企业友好。它也可以在 Rinkeby、Ropsten 和 Grli 等测试网络上运行。 1.1 功能 在以太坊区块链中处理交易的执行环境用于持久化与事务执行相关的数据的存储点对点 (P2P) 网络…

    2021/8/1 17:37:35 人评论 次浏览
  • 区块链 比特币 以太坊 hyperledger fabric智能合约比较 不同的区块链比较

    1. 执行平台 Ethereum develops its own machine language (bytecode) and a virtual machine (called EVM) for executing the code, which is also adopted by Parity,This enables Ethereum to keep track of gas, the tax on execution. HyperLedger doesn’t have t…

    2021/6/17 12:28:10 人评论 次浏览
  • 以太坊geth客户端源码搭建

    源码安装ethereum //克隆github仓库 $ sudo git clone https://codechina.csdn.net/mirrors/ethereum/go-ethereum.git //从源码构建Geth $ cd go-ethereum $ make geth make geth时出错 解决:换一个国内能访问的代理地址,在重新执行 go env -w GOPROXY=https://goprox…

    2021/5/22 20:29:51 人评论 次浏览
  • Ubuntu18.04环境下 以太坊Geth的安装

    ubuntu18.04系统下安装:sudo apt-get install software-properties-common sudo add-apt-repository -y ppa:ethereum/ethereum sudo apt-get update sudo apt-get install ethereum 参考: https://feelncut.com/2018/03/05/101.html

    2021/5/16 7:27:58 人评论 次浏览
扫一扫关注最新编程教程