登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
Gitee 2025年度个人数据报告已发布,快来看看你的成长👉
代码拉取完成,页面将自动刷新
开源项目
>
区块链
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
2
Star
20
Fork
0
Hyperledger
/
burrow
代码
Issues
0
Pull Requests
0
Wiki
统计
流水线
服务
JavaDoc
PHPDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
我知道了,不再自动展开
标签
标签名
描述
提交信息
操作
v0.34.4
- [JS] Make deploy and deployContract take deps argument consisting of deployment options and library object. The library object makes it easier to pass an identical object with the addresses of commonly used libraries under their canonical names.
7759598
2021-07-23 22:06
下载
v0.34.3
- [JS] Fix spelling of 'contractName' in solts, add contract name to contract object. - [JS] Added option to build.ts code generation to not fail on Solidity compiler warnings, which is now the default. Warnings are still logged to stderr
b74c28f
2021-07-20 04:24
下载
v0.34.2
- [Build] Add 0.34.1 changes!
dc81d35
2021-07-09 21:02
下载
v0.34.1
- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected
137976e
2021-07-09 20:22
下载
v0.34.0
- [JS] Provider interface no longer depends on GRPC types to improve compatibility between versions of Burrow.js and ease of extension - [JS] Use non-unique marker interface to indicate stream cancellation in event reducer (again for compatibility between versions and extensibility) - [Go] Upgrade to Go 1.16 - [JS] Fix codegen silently swallowing collisions of abi files (renamed from .bin to .abi) and use hierarchical directory structure to further reduce chance of collision - [JS] Just depende on @ethersproject/abi rather than entire umbrella project - [JS] Include deployedBycode and optionally submit ABI's to Burrow's contract metadata store on deploy
56cf347
2021-05-28 23:52
下载
v0.33.1
- [JS] Return bytesNN as Buffer to agree with typings - [JS] Inline sources and source maps
5943dc0
2021-05-24 21:34
下载
v0.33.0
- [JS] Changed Burrow interface and renamed Burrow client object to to Client (merging in features needed for solts support) - [JS] Fixed RLP encoding extra leading zeros on uint64 (thanks Matthieu Vachon!) - [JS] Improved compatibility with legacy Solidity bytes types and padding conventions - [Events] Fixed Burrow event stream wrongly switching to streaming mode for block ranges that are available in state (when the latest block is an empty block - so not stored in state) - [JS] Added Solidity-to-Typescript code generation support (merging in solts) - this provides helpers (build.ts, api.ts) to compile Solidity files into corresponding .abi.ts files that include types for functions, events, the ABI, and EVM bytecode, and includes bindings into Burrow JS to deploy and interact with contracts via Typescript/Javascript with strong static types - [JS] Improved interactions with events which can now be queried over any range and with strong types, see the listenerFor, reduceEvents, readEvents, and iterateEvents functions.
fe242ae
2021-05-24 18:57
下载
v0.32.1
- [Execution] CallErrors no longer emit very long rather pointless (since there is no tooling to help interpret them currently) EVM call traces - [JS] Return byte arrays as Buffers from decode (only return fixed-width byteNN types as hex strings)
97c7eda
2021-05-16 07:15
下载
v0.32.0
- [JS] Significant refactor/rewrite of Burrow.js into idiomatic Typescript including some breaking changes to API - [JS] Change to use ethers.js for ABI encoding - [State] Fixed cache-concurrency bug (https://github.com/hyperledger/burrow/commit/314357e0789b0ec7033a2a419b816d2f1025cad0) and ensured consistency snapshot is used when performing simulated call reads - [Web3] Omit empty values from JSONRPC calls - [Tendermint] Added support for passing node options to Tendermint - e.g. custom reactors (thanks @nmanchovski!) - [JS] Historic events can now be requested via API - [JS] Contract deployments will now include ABIs via contract metadata so Burrow's ABI registry can be used
27572db
2021-05-14 18:28
下载
v0.31.3
- [Dump] Make load from dump set tx index so BlockAccumulator continuity conditions are met - [Dump] Improve error messages
b193c90
2021-03-26 02:17
下载
v0.31.2
- [Dump] Stop TxStack EventStream consumer from rejecting events from dump/restored chain because they lack tx Envelopes (as they are intended to to keep dump format minimal) - [Genesis] Fix hash instability introduced by accidentally removing omitempty from AppHash in genesis - [Vent] Implement throttling on Ethereum Vent consumer via --max-request-rate=<requests / time base> flag to 'vent start'
dfbfc22
2021-03-25 07:15
下载
v0.31.1
- [Repo] main branch replaces master as per Hyperledger TSC guidelines - [Docker] Make sure default testnet mode works when running docker images - [Vent] Use appropriately sized database integral types for EVM integer types (i.e. numeric for uint64 and bigger) - [Vent] Ethereum block consumer now correctly reads to an _inclusive_ block batch end height - [Web3] Handle integer ChainID for web3 consistently; return hex-encoded numeric value from web3 RPC, also allow overriding of genesis-hash derived ChainID so Burrow can be connected with from metamask - [Build] Build dev docker and JS releases by force pushing to prerelease branch - [Vent] Expose BlockConsumerConfig to adjust backoff and read characteristics - [Vent] Add vent-side continuity test over blocks (to double-check exactly once delivery of events)
5913fa7
2021-03-20 02:11
下载
v0.31.0
- [Tendermint] Upgraded to Tendermint 0.34.3 - [Docker] Image will now start testnet by default - [Vent] Added support for building Vent SQL tables from Ethereum web3 JSONRPC chains (useful for oracles/state channels with layer 1) - [Vent] Added Status to healthcheck endpoint on Vent - [Natives] Implemented ecrecover using btcec (revised key handling) - [Engine] Implement cross-engine dispatch - [WASM] Implement cross-engine calls and calls to precompiles - [WASM] Significantly extend eWASM support and implement functions - [WASM] Add printing debug functions - [WASM] Implement CREATE, GETTXGASPRICE, GETBLOCKDIFFICULTY, SELFDESTRUCT eWASM functions (thanks Yoongbok Lee!) - [WASM/JS] JS library supports deploying WASM code - [Deploy] Can specify WASM in playbook - [EVM] Implement CHAINID and DIFFICULTY opcodes - [Query] PEG query grammar now supports Not ("NOT") and NotEqual ("!=") operators - [Deploy] Fix flaky parallel tests - [EVM] Use correct opcode for create2 (thanks Vitali Grabovski!) - [ABI] Check length of input before decoding (thanks Tri-stone!) - [WASM] Constructor argument handling - [RLP] Incorrect use of offsets for longer bytes strings - [RLP] Use minimal encoding for length prefixes (no leading zeros) - [Web3] Generate correct encoding hash for RawTx (ChainID in hash digest but not payload) - [Web3] Generate canonical weird Ethereum hex - [State] Fix read concurrency in RWTree (on which state is based) removing need for CallSim lock workaround - Updated elliptic JS dep to 6.5.3 - Updated lodash to 4.17.19
26a5c11
2021-03-10 23:01
下载
v0.30.5
- [Vent] Add BytesToHex flag on projection field mappings that causes bytes fields (e.g. bytes32) solidity fields to be hex-encoded and mapped to varchar(64) rather than bytea/blob columns in postgres/sqlite
441c193
2020-07-09 20:51
下载
v0.30.4
- [Build] Added Helm chart - [State] Account now has OpcodeBitset field to support upcoming EVM fixes - [JS] Github actions release of JS lib
06c8743
2020-04-14 06:51
下载
v0.30.3
- [CLI] Made previously internal Solidity Go fixtures compilation available through 'burrow compile' - [TS] Default ts client interface implementation
ffccfb6
2020-04-06 05:26
下载
v0.30.2
- [RPC] add mutex to callSim and callCode
8a98ad0
2020-03-13 19:02
下载
v0.29.5+hotfix-callSim
- [RPC] add mutex to callSim and callCode
f79c7bc
2020-03-13 18:26
下载
v0.30.1
- [CLI/Tx] Unbond formulation now specifies amount
be90041
2020-03-07 01:31
下载
v0.30.0
- [JS] Partial rewrite of client API in typescript - [State] Blockchain now commits initial AppHash to avoid IAVL panic
e37d4f8
2020-03-06 05:31
下载
下载
请输入验证码,防止盗链导致资源被占用
取消
下载
1
https://gitee.com/hyperledger/burrow.git
git@gitee.com:hyperledger/burrow.git
hyperledger
burrow
burrow
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册