https://github.com/genaronetwork/genarocore
Decentralized Storage Network
https://github.com/genaronetwork/genarocore
blockchain decentralized decentralized-storage proof-of-retreivalbility proof-of-stake
Last synced: 6 months ago
JSON representation
Decentralized Storage Network
- Host: GitHub
- URL: https://github.com/genaronetwork/genarocore
- Owner: GenaroNetwork
- License: lgpl-3.0
- Created: 2018-12-24T11:35:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T17:13:36.000Z (almost 3 years ago)
- Last Synced: 2025-03-27T13:51:21.864Z (7 months ago)
- Topics: blockchain, decentralized, decentralized-storage, proof-of-retreivalbility, proof-of-stake
- Language: Go
- Homepage: https://genaro.network
- Size: 25.2 MB
- Stars: 33
- Watchers: 15
- Forks: 17
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: COPYING
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## Go Genaro
Fork from [go-ethereum](https://github.com/ethereum/go-ethereum/tree/v1.8.3).
## Building the source
Building go-genaro requires both a Go (version 1.10 or later) and a C compiler.
You can install them using your favourite package manager.
Once the dependencies are installed, runmake go-genaro
or, to build the full suite of utilities:
make all
## Executables
The go-genaro project comes with several wrappers/executables found in the `cmd` directory.
| Command | Description |
|:----------:|-------------|
| **`go-genaro`** | Our main Genaro CLI client. It is the entry point into the Genaro network. |
| `GenGenaroGenesis` | Generate a genesis json. |
| `SendSynState` | Send synchronization transaction. |
| `others` | To see go-ethereum. |## Running a go-genaro privete blockchain
### Generate genesis json
GenGenaroGenesis -f account.json
### Init blockchain
go-genaro --datadir datadir init genesis.json
### Start miner
go-genaro --identity "test" --mine --etherbase "myaccount" --unlock "myaccount" --rpc --rpcaddr "127.0.0.1" --rpcport 8545 --rpccorsdomain "*" --datadir datadir --port "30303" --rpcapi "db,eth,net,web3,personal,admin,miner" console
...> input your password### Send synchronization transaction
SendSynState -u "http://127.0.0.1:8545" -t 1 -a "myaccount"
## Develop Dapp
Genaro blockchain support for Ethernet contract.You can directly transplant your Ethernet contract to Genaro network without any changes.
If you need to use the new features of Genaro network, you need to compile the contract with the new [Solc](https://github.com/GenaroNetwork/genaro-solidity).
You can get more development information from the [yellow book](https://github.com/GenaroNetwork/genaro-document).## Useful links
Our [official network](https://genaro.network/).## Join our network
### Main Network
To see [mainnet](./mainnet).### Test Network
To see [testnet](./testnet).## License
The go-genaro 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-genaro 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.