当前位置: 首页 > 软件库 > 手机/移动开发 > >

nimbus-eth1

授权协议 View license
开发语言 Java
所属分类 手机/移动开发
软件类型 开源软件
地区 不详
投 递 者 谢灵均
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Nimbus: ultra-light Ethereum execution layer client

GH action-nimbus-eth1GH action-fluffy

Introduction

This repository contains our development work on our execution-layer client to pair with our consensus-layer client. This client focuses on efficiency and security and strives to be as light-weight as possible in terms of resources used.

This repository is also home to fluffy, aPortal Networklight client.

All consensus-layer client development is happening in parallel in thenimbus-eth2 repository.

Development Updates

Monthly development updates are sharedhere.

Some recent highlights include:

  • Renewed funding from the EF to accelerate development
  • Completed Berlin and London fork compatibility (EIP-1559). It now passes nearly all the EF Hive testsuite, and 100% of contract execution tests (47,951 tests)
  • New GraphQL and WebSocket APIs, complementing JSON-RPC
  • EVMC compatibility, supporting third-party optimised EVM plugins
  • Up to 100x memory saving during contract executions
  • Asynchronous EVM to execute many contracts in parallel, while they wait for data from the network
  • Proof-of-authority validation for the Goerli test network
  • Updated network protocols, to work with the latest eth/65-66 and snap/1 protocols
  • A prototype new mechanism for state sync which combines what have been called Fast sync, Snap sync and Beam sync in a self-tuning way, and allows the user to participate in the network (read accounts, run transactions etc.) while sync is still in progress
  • A significant redesign of the storage database to use less disk space and run faster.

For more detailed write-ups on the development progress, follow theNimbus blog.

Building & Testing

We currently do not guarantee that Nimbus will work on Windows.

Prerequisites

  • RocksDB
  • GNU Make, Bash and the usual POSIX utilities. Git 2.9.4 or newer.

On Windows, a precompiled DLL collection download is available through the fetch-dlls Makefile target: (Windows instructions).

# MacOS with Homebrew
brew install rocksdb

# Fedora
dnf install rocksdb-devel

# Debian and Ubuntu
sudo apt-get install librocksdb-dev

# Arch (AUR)
pakku -S rocksdb

rocksdb can also be installed by following their instructions.

Obtaining the prerequisites through the Nix package manager

Experimental

Users of the Nix package manager can install all prerequisites simply by running:

nix-shell default.nix

Build & Develop

POSIX-compatible OS

# The first `make` invocation will update all Git submodules.
# You'll run `make update` after each `git pull`, in the future, to keep those submodules up to date.
make nimbus

# See available command line options
build/nimbus --help

# Start syncing with mainnet
build/nimbus

# Update to latest version
git pull
make update

# Run tests
make test

To run a command that might use binaries from the Status Nim fork:

./env.sh bash # start a new interactive shell with the right env vars set
which nim
nim --version

# or without starting a new interactive shell:
./env.sh which nim
./env.sh nim --version

Our Wiki provides additional helpful information for debugging individual test casesand for pairing Nimbus with a locally running copy of Geth.

Windows

(Experimental support!)

Install Mingw-w64 for your architecture using the "MinGW-W64 OnlineInstaller" (first linkunder the directory listing). Run it and select your architecture in the setupmenu ("i686" on 32-bit, "x86_64" on 64-bit), set the threads to "win32" andthe exceptions to "dwarf" on 32-bit and "seh" on 64-bit. Change theinstallation directory to "C:\mingw-w64" and add it to your system PATH in "MyComputer"/"This PC" -> Properties -> Advanced system settings -> EnvironmentVariables -> Path -> Edit -> New -> C:\mingw-w64\mingw64\bin (it's "C:\mingw-w64\mingw32\bin" on 32-bit)

Install Git for Windows and use a "Git Bash" shell to clone and build Nimbus.

If you don't want to compile RocksDB and SQLite separately, you can fetch pre-compiled DLLs with:

mingw32-make fetch-dlls # this will place the right DLLs for your architecture in the "build/" directory

You can now follow those instructions in the previous section by replacing make with mingw32-make (regardless of your 32-bit or 64-bit architecture):

mingw32-make nimbus # build the Nimbus binary
mingw32-make test # run the test suite
# etc.

Raspberry PI

Experimental The code can be compiled on a Raspberry PI:

  • Raspberry PI 3b+
  • 64gb SD Card (less might work too, but the default recommended 4-8GB will probably be too small)
  • Rasbian Buster Lite - Lite version is enough to get going and will save some disk space!

Assuming you're working with a freshly written image:

# Start by increasing swap size to 2gb:
sudo vi /etc/dphys-swapfile
# Set CONF_SWAPSIZE=2048
# :wq
sudo reboot

# Install prerequisites
sudo apt-get install git libgflags-dev libsnappy-dev

mkdir status
cd status

# Install rocksdb
git clone https://github.com/facebook/rocksdb.git
cd rocksdb
make shared_lib
sudo make install
cd..

# Raspberry pi doesn't include /usr/local/lib in library search path - need to add
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH

git clone https://github.com/status-im/nimbus.git

cd nimbus

# Follow instructions above!

Android

Experimental Code can be compiled and run on Android devices

Environment setup
  • Install the Termux app from FDroid or the Google Play store
  • Install a PRoot of your choice following the instructions for your preferred distribution.Note, the Ubuntu PRoot is known to contain all Nimbus prerequisites compiled on Arm64 architecture (common architecture for Android devices). Depending on the distribution, it may require effort beyond the scope of this guide to get all prerequisites.

Assuming Ubuntu PRoot is used

# Install prerequisites
apt install librocksdb-dev

# Clone repo and build Nimbus just like above
git clone https://github.com/status-im/nimbus.git

cd nimbus

make

make nimbus

build/nimbus

Experimental make variables

Apart from standard make flags (see link in the next chapter),the following make variables can be set to control which version of a virtualengine is compiled. The variables are listed with decreasing priority (incase of doubt, the lower prioritised variable is ignored when the higher on isavailable.)

  • ENABLE_EVMC=1
    Enable mostly EVMC compliant wrapper around the native nim VM

  • ENABLE_VM2LOWMEM=1
    Enable new re-factored version of the native nim VM. This version is notoptimised and coded in a way so that low memory compilers can handle it(observed on 32 bit windows 7.)

  • ENABLE_VM2=1
    Enable new re-factored version of the native nim VM.

For these variables, using <variable>=0 is ignored and <variable>=2has the same effect as <variable>=1 (ditto for other numbers.)

Development tips

Interesting Make variables and targets are documented in the nimbus-build-system repo.

  • you can switch the DB backend with a Nim compiler define:-d:nimbus_db_backend=... where the (case-insensitive) value is one of"rocksdb" (the default), "sqlite", "lmdb"

  • the Premix debugging tools are documented separately

  • you can control the Makefile's verbosity with the V variable (defaults to 0):

make V=1 # verbose
make V=2 test # even more verbose
make LOG_LEVEL=DEBUG nimbus # this is the default
make LOG_LEVEL=TRACE nimbus # log everything
  • pass arbitrary parameters to the Nim compiler:
make NIMFLAGS="-d:release"
  • if you want to use SSH keys with GitHub (also handles submodules):
make github-ssh
  • force a Nim compiler rebuild:
rm vendor/Nim/bin/nim
make -j8 build-nim

Git submodule workflow

Working on a dependency:

cd vendor/nim-chronicles
git checkout -b mybranch
# make some changes
git status
git commit -a
git push origin mybranch
# create a GitHub PR and wait for it to be approved and merged
git checkout master
git pull
git branch -d mybranch
# realise that the merge was done without "--no-ff"
git branch -D mybranch
# update the submodule's commit in the superproject
cd ../..
git status
git add vendor/nim-chronicles
git commit

It's important that you only update the submodule commit after it's available upstream.

You might want to do this on a new branch of the superproject, so you can makea GitHub PR for it and see the CI test results.

Don't update all Git submodules at once, just because you found the relevantGit command or make target. You risk updating submodules to other people'slatest commits when they are not ready to be used in the superproject.

Adding the submodule "https://github.com/status-im/foo" to "vendor/foo":

vendor/nimbus-build-system/scripts/add_submodule.sh status-im/foo
# or
./env.sh add_submodule status-im/foo
# want to place it in "vendor/bar" instead?
./env.sh add_submodule status-im/foo vendor/bar

Removing the submodule "vendor/bar":

git submodule deinit -f -- vendor/bar
git rm -f vendor/bar

Checking out older commits, either to bisect something or to reproduce an older build:

git checkout <commit hash here>
make clean
make -j8 update

Running a dependency's test suite using nim instead of nimble (which cannot beconvinced not to run a dependency check, thus clashing with our jury-rigged"vendor/.nimble/pkgs"):

cd vendor/nim-rocksdb
../nimbus-build-system/scripts/nimble.sh test
# or
../../env.sh nimble test

Metric visualisation

Install Prometheus and Grafana. On Gentoo, it's emerge prometheus grafana-bin.

# build Nimbus
make nimbus
# the Prometheus daemon will create its data dir in the current dir, so give it its own directory
mkdir ../my_metrics
# copy the basic config file over there
cp -a examples/prometheus.yml ../my_metrics/
# start Prometheus in a separate terminal
cd ../my_metrics
prometheus --config.file=prometheus.yml # loads ./prometheus.yml, writes metric data to ./data
# start a fresh Nimbus sync and export metrics
rm -rf ~/.cache/nimbus/db; ./build/nimbus --prune:archive --metricsServer

Start the Grafana server. On Gentoo it's /etc/init.d/grafana start. Go tohttp://localhost:3000, log in with admin:admin and change the password.

Add Prometheus as a data source. The default address of http://localhost:9090is OK, but Grafana 6.3.5 will not apply that semitransparent default you see inthe form field, unless you click on it.

Create a new dashboard. Click on its default title in the upper left corner("New Dashboard"). In the new page, click "Import dashboard" in the rightcolumn and upload "examples/Nimbus-Grafana-dashboard.json".

In the main panel, there's a hidden button used to assign metrics to the leftor right Y-axis - it's the coloured line on the left of the metric name, in thegraph legend.

To see a single metric, click on its name in the legend. Click it again to go backto the combined view. To edit a panel, click on its title and select "Edit".

Obligatory screenshot.

Troubleshooting

Report any errors you encounter, please, if not already documented!

  • Turn it off and on again:
make clean
make update

License

Licensed and distributed under either of

or

at your option. These files may not be copied, modified, or distributed except according to those terms.

  • 导语:近日,ETH 2.0项目负责人Danny Ryan在以太坊官方博客发文称,以太坊2.0阶段0是要达成共识,而阶段1是要达成更多共识,并以许多分片链的形式出现。用户可以将分片链视为其自己的区块链,其复杂性与今天的以太坊大致相同,但存在于eth2共识之下(即在信标链之下,并由信标链构建和控制)。信标链的验证者将获得随机的短期任务,以构建和验证分片链,对每个链的状态、可用性和有效性做出加密经济承诺

 相关资料
  • Nimbus 是一种以科学计算为中心的 IaaS "Infrastructure-as-a-Service" 解决方案。使用 Nimbus,你可以借用远程资源(比如由 Amazon EC2 提供的远端资源)并能对它们进行本地管理(配置、部署 VM、监视等)。Nimbus 由 Workspace Service project(Globus.org 的一部分)演变而来。由于依赖于 Amazon EC

  • 利用本地CSS文件来对程序界面进行布局。读取本地CSS代码,并进行解析,然后将布局属性反应到界面元素中。 [Code4App.com]

  • 在自己的应用中调用本地其他应用或者服务。比如,在自己的应用中调用浏览器、google地图、电话、短信、邮件、iBook、App Store、Facebook、Instagram等等本机的其他应用或者服务。 [Code4App.com]

  • 问题内容: 有没有办法在OS X上使用Nimbus LAF(外观和感觉),同时仍然可以使用该键进行剪切/复制/粘贴和全选操作? 目前,我的Swing应用程序的main方法中包含以下代码,该代码根据操作系统更改LAF(OS X的默认设置,所有其他操作系统的Nimbus设置): 我这样做是一种变通方法,因为Nimbus会覆盖OS X上用于剪切/复制/粘贴和全选的键盘快捷键(键与键)。如果不改写键盘快捷

  • 问题内容: 有谁知道当您使用Nimbus LookAndFeel时如何更改JProgressBar的颜色吗? 问题答案: 我已经覆盖了整个-Default值,该值更改了所有ProgressBar-Colors和其他任何值。 (InternalFrame-最小化按钮) 这里带有(蓝色) 最好是编写自己的Painter并将其设置为via 如果只想更改单个ProgressBar实例的颜色,则可以使用按组

  • 问题内容: 我正在尝试调整Nimbus外观的颜色,但它只能部分起作用。特别是我在调整菜单栏的颜色时遇到问题。 这是一个正在运行的示例: 如您所见,我能够设置控件的背景并设置JMenuItem的前景色。但是我无法更改JMenuItem的背景,也无法更改MenuBar的颜色。我尝试了http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_