1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/hyperledger-burrow

Имя тега
Описание
Сообщение коммита
Операция
- [JS] build function does not swallow errors without a formattedMessage, chdir into basepath before build so solc imports work as expected
09.07.2021 15:22
- [Build] Add 0.34.1 changes!
09.07.2021 16:02
- [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
19.07.2021 23:24
- [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.
23.07.2021 17:06
- [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)
16.05.2021 02:15
- [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.
24.05.2021 13:57
- [JS] Return bytesNN as Buffer to agree with typings - [JS] Inline sources and source maps
24.05.2021 16:34
- [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
28.05.2021 18:52
- [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
10.03.2021 18:01
- [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)
19.03.2021 21:11
- [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'
25.03.2021 02:15
- [Dump] Make load from dump set tx index so BlockAccumulator continuity conditions are met - [Dump] Improve error messages
25.03.2021 21:17
- [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
14.05.2021 13:28
- [RPC] add mutex to callSim and callCode
13.03.2020 14:02
- [CLI] Made previously internal Solidity Go fixtures compilation available through 'burrow compile' - [TS] Default ts client interface implementation
06.04.2020 00:26
- [Build] Added Helm chart - [State] Account now has OpcodeBitset field to support upcoming EVM fixes - [JS] Github actions release of JS lib
14.04.2020 01:51
- [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
09.07.2020 15:51
- [JS] Partial rewrite of client API in typescript - [State] Blockchain now commits initial AppHash to avoid IAVL panic
06.03.2020 00:31
- [CLI/Tx] Unbond formulation now specifies amount
06.03.2020 20:31
- [Tendermint] Upgraded to v0.32.8, checkTxAsync now includes node ID - [Vent] Sync every block height to DB and send height notification from _vent_chain table so downstream can check DB sync without --blocks - [RPC/Query] GetName now returns GRPC NotFound status (rather than unknown) when a requested key is not set. - [Execution] Simulated calls (e.g. query contracts) now returns the height of the state on which the query was run. Useful for downstream sync. -
09.12.2019 16:53
1
https://api.gitlife.ru/oschina-mirror/hyperledger-burrow.git
git@api.gitlife.ru:oschina-mirror/hyperledger-burrow.git
oschina-mirror
hyperledger-burrow
hyperledger-burrow