Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

chainbench

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chainbench - npm Package Compare versions

Comparing version
0.8.7
to
0.8.8
+19
-0
chainbench/test_data/evm.py

@@ -400,2 +400,21 @@ import logging

},
999: {
"name": "hyperliquid-mainnet",
"start_block": 1,
"contract_addresses": [
"0x7f5aB8f7974FCcd857163E5DA649Eb2588201dF1",
"0x5555555555555555555555555555555555555555",
"0xfFaa4a3D97fE9107Cef8a3F48c069F577Ff76cC1",
"0x5748ae796AE46A4F1348a1693de4b50560485562",
"0x47bb061C0204Af921F43DC73C7D7768d2672DdEE",
],
},
998: {
"name": "hyperliquid-testnet",
"start_block": 1,
"contract_addresses": [
"0x72B0e1c7251511c076c6c7De4864DF06Ec24AC7B",
"0x928e4e3dFb1c39a6deE26506Cde76875E3a25ea4",
],
},
}

@@ -402,0 +421,0 @@

@@ -107,2 +107,10 @@ import logging

earliest_available_block_number += int((parsed_options.run_time / self.BLOCK_TIME) * 1.1)
if parsed_options.start_block is not None:
self.start_block_number = parsed_options.start_block
else:
self.start_block_number = earliest_available_block_number
if parsed_options.end_block is not None:
self.end_block_number = parsed_options.end_block
else:
self.end_block_number = latest_block_number
if parsed_options.use_latest_blocks:

@@ -109,0 +117,0 @@ self.end_block_number = latest_block_number

+11
-1
Metadata-Version: 2.1
Name: chainbench
Version: 0.8.7
Version: 0.8.8
Summary:

@@ -196,2 +196,9 @@ Author: Egor Molodik

Use the following command to list all shapes in chainbench/shapes
```shell
chainbench list shapes
```
You may add your own custom shapes by copying one of the existing shapes in chainbench/shapes and modifying them to fit your requirements.
### Test Data Size

@@ -279,1 +286,4 @@ You may specify the test data size using the `--size` flag. This will determine how much data is used in the test.

## Development
- [Contributing](CONTRIBUTING.md)
- [Agents](AGENTS.md)
+1
-1
[tool.poetry]
name = "chainbench"
version = "0.8.7"
version = "0.8.8"
description = ""

@@ -5,0 +5,0 @@ authors = [

@@ -173,2 +173,9 @@ <img width="1200" alt="Labs" src="https://user-images.githubusercontent.com/99700157/213291931-5a822628-5b8a-4768-980d-65f324985d32.png">

Use the following command to list all shapes in chainbench/shapes
```shell
chainbench list shapes
```
You may add your own custom shapes by copying one of the existing shapes in chainbench/shapes and modifying them to fit your requirements.
### Test Data Size

@@ -255,1 +262,5 @@ You may specify the test data size using the `--size` flag. This will determine how much data is used in the test.

This project is licensed under the [Apache 2.0 License](LICENSE).
## Development
- [Contributing](CONTRIBUTING.md)
- [Agents](AGENTS.md)