Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 ethPandaOps
Copyright (c) 2025 Bloctopus

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This project is a fork of the ethpandaops [Ethereum Package](https://github.com/
It is fully synced with the original ethereum package and provides the same capabilities. Additionally, this package adds additional features. Specifically, it enables:

- Fork any public EVM-based network (using a custom Reth client)
- A faucet for ETH and USDC (refer to the [docs](https://github.com/LZeroAnalytics/ethereum-faucet))
- A faucet for ETH and USDC (refer to the [docs](https://github.com/0xBloctopus/ethereum-faucet))
- A fully functional Uniswap interface (requires forking, only available in cloud environments)
- Blockscout explorer (only available in cloud environments)

Expand All @@ -16,15 +16,15 @@ It is fully synced with the original ethereum package and provides the same capa
3. Run the package with default configurations from the command line:

```bash
kurtosis run --enclave my-testnet github.com/LZeroAnalytics/ethereum-package
kurtosis run --enclave my-testnet github.com/0xBloctopus/ethereum-package
```

#### Run with your own configuration

Kurtosis packages are parameterizable, meaning you can customize your network and its behavior to suit your needs by storing parameters in a file that you can pass in at runtime like so:

```bash
kurtosis run --enclave my-testnet github.com/LZeroAnalytics/ethereum-package --args-file network_params.yaml
kurtosis run --enclave my-testnet github.com/0xBloctopus/ethereum-package --args-file network_params.yaml
```

Where `network_params.yaml` contains the parameters for your network in your home directory.
Expand Down Expand Up @@ -727,12 +727,12 @@ assertoor_params:
# someCustomTestConfig: "some value"
tests: []

# Faucet params for https://github.com/LZeroAnalytics/ethereum-faucet
# Faucet params for https://github.com/0xBloctopus/ethereum-faucet
faucet_params:
# Private key for faucet account - needs to be prefunded
private_key: bcdf20249abf0ed6d944c0288fad489e33f66b3960d9e6229c1cd214ed3bbe31

# Uniswap params for https://github.com/LZeroAnalytics/uniswap-package
# Uniswap params for https://github.com/0xBloctopus/uniswap-package
uniswap_params:
# URL at which the backend service will be available
backend_url: <UNISWAP BACKEND URL>
Expand Down
5 changes: 5 additions & 0 deletions funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"opRetro": {
"projectId": "0x66818708d041152b7f9b45ee48e56ab6507ad493955fd256b62d7c9d8a27724f"
}
}
2 changes: 1 addition & 1 deletion kurtosis.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
name: "github.com/LZeroAnalytics/ethereum-package"
name: "github.com/0xBloctopus/ethereum-package"
3 changes: 1 addition & 2 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,8 @@ PATH_TO_PARSED_BEACON_STATE = "/genesis/output/parsedBeaconState.json"


def run(plan, args={}):
plan.print(args)
env = args["env"]
blockscout = import_module("github.com/LZeroAnalytics/blockscout-package@{}/main.star".format(env))
blockscout = import_module("github.com/0xBloctopus/blockscout-package@{}/main.star".format(env))
"""Launches an arbitrarily complex ethereum testnet based on the arguments provided

Args:
Expand Down
Loading