Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MinterTeam/minter-go-node
🚀 Official Minter Blockchain Implementation in Go
https://github.com/MinterTeam/minter-go-node
blockchain cryptocurrency golang minter
Last synced: about 2 hours ago
JSON representation
🚀 Official Minter Blockchain Implementation in Go
- Host: GitHub
- URL: https://github.com/MinterTeam/minter-go-node
- Owner: MinterTeam
- License: mit
- Created: 2018-05-29T18:06:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T22:33:55.000Z (over 1 year ago)
- Last Synced: 2024-08-02T19:01:50.210Z (3 months ago)
- Topics: blockchain, cryptocurrency, golang, minter
- Language: Go
- Homepage: https://minter.network
- Size: 10.4 MB
- Stars: 354
- Watchers: 45
- Forks: 68
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Minter is a global rewards and loyalty points network powered by a fast blockchain. Any brand, community, or blogger can
create their own coins and launch their reward or loyalty system in minutes._NOTE: This is alpha software. Please contact us if you intend to run it in production._
## Installation
### Docker
1. Grab latest docker-compose,
save
docker-compose.yml and run ```docker-compose up -d```. To run it in production we recommend to use bind host
mount instead of volume.2. To build from source clone this repo, make your changes and run ```docker-compose up --build -d```
### Manual
You can get official installation instructions in our [docs](https://docs.minter.network/#section/Install-Minter).
1. Download Minter Node
Get [latest binary build](https://github.com/MinterTeam/minter-go-node/releases) suitable for your architecture and
unpack it to desired folder.2. Run Minter Node
```bash
./minter node
```## Resources
- [Documentation](https://docs.minter.network)
- [Official site](https://minter.network)
- [About Minter Blockchain](https://about.minter.network)
- [Minter Console](https://console.minter.network)
- [Minter Explorer](https://explorer.minter.network/)
- [Telegram Bot Wallet](https://t.me/BipWallet_Bot)
- [Android Wallet](https://play.google.com/store/apps/details?id=network.minter.bipwallet)### Related repositories
- [minter-go-node-docs](https://github.com/MinterTeam/minter-go-node-docs) - Docs for Minter Node
- [node-grpc-gateway](https://github.com/MinterTeam/node-grpc-gateway) - gRPC interface and Swagger for Node API v2### Community
- [Telegram Channel (English)](https://t.me/MinterTeam)
- [Telegram Channel (Russian)](https://t.me/MinterNetwork)
- [Telegram Chat (English)](http://t.me/joinchat/EafyERJSJZJ-nwH_139jLQ)
- [Telegram Chat (Russian)](https://t.me/joinchat/EafyEVD-HEOxDcv8YyaqNg)## Versioning
### SemVer
Minter uses [SemVer](http://semver.org/) to determine when and how the version changes. According to SemVer, anything in
the public API can change at any time before version 1.0.0To provide some stability to Minter users in these 0.X.X days, the MINOR version is used to signal breaking changes
across a subset of the total public API. This subset includes all interfaces exposed to other processes, but does not
include the in-process Go APIs.### Upgrades
In an effort to avoid accumulating technical debt prior to 1.0.0, we do not guarantee that breaking changes (ie. bumps
in the MINOR version)
will work with existing blockchain. In these cases you will have to start a new blockchain, or write something custom to
get the old data into the new chain.However, any bump in the PATCH version should be compatible with existing histories
(if not please open an [issue](https://github.com/MinterTeam/minter-go-node/issues)).