mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-31 00:53:46 +00:00
* fix: resolve conflict * chg: use bor url for import * Fix regressions from merge Co-authored-by: Jaynti Kanani <jdkanani@gmail.com>
36 lines
1.6 KiB
Markdown
36 lines
1.6 KiB
Markdown
## Go Ethereum
|
|
|
|
Official Golang implementation of the Ethereum protocol.
|
|
|
|
[](https://godoc.org/github.com/maticnetwork/bor)
|
|
[](https://goreportcard.com/report/github.com/maticnetwork/bor)
|
|
[](https://circleci.com/gh/maticnetwork/bor/tree/master)
|
|
[](https://discord.gg/nthXNEv)
|
|
|
|
Automated builds are available for stable releases and the unstable master branch. Binary
|
|
archives are published at https://geth.ethereum.org/downloads/.
|
|
|
|
## Building the source
|
|
|
|
Building `bor` requires both a Go (version 1.13 or later) and a C compiler. You can install
|
|
them using your favourite package manager. Once the dependencies are installed, run
|
|
|
|
```shell
|
|
make bor
|
|
```
|
|
|
|
or, to build the full suite of utilities:
|
|
|
|
```shell
|
|
make all
|
|
```
|
|
|
|
## License
|
|
|
|
The go-ethereum library (i.e. all code outside of the `cmd` directory) is licensed under the
|
|
[GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html),
|
|
also included in our repository in the `COPYING.LESSER` file.
|
|
|
|
The go-ethereum binaries (i.e. all code inside of the `cmd` directory) is licensed under the
|
|
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also
|
|
included in our repository in the `COPYING` file.
|