https://github.com/coindev1029/blockchain-in-go
A basic blockchain implementation in Golang
https://github.com/coindev1029/blockchain-in-go
bitcoin blockchain blockchain-api blockchain-network go go-blockchain
Last synced: about 1 year ago
JSON representation
A basic blockchain implementation in Golang
- Host: GitHub
- URL: https://github.com/coindev1029/blockchain-in-go
- Owner: Coindev1029
- License: mit
- Created: 2024-02-14T00:41:30.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-25T14:29:40.000Z (about 2 years ago)
- Last Synced: 2024-11-08T10:51:09.584Z (over 1 year ago)
- Topics: bitcoin, blockchain, blockchain-api, blockchain-network, go, go-blockchain
- Language: Go
- Homepage:
- Size: 39.1 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blockchain in Go
[](https://goreportcard.com/report/github.com/ibrahimsn98/blockchain-in-go)
[](https://badge.fury.io/gh/ibrahimsn98%2Fblockchain-in-go)
A basic blockchain implementation in Golang
## Usage
Get the balance for an address
```
$ go run main.go getbalance -address ADDRESS
```
Create a blockchain and send genesis reward to address
```
$ go run main.go createblockchain -address ADDRESS
```
Print the blocks in the chain
```
$ go run main.go printchain
```
Send amount of coins
```
$ go run main.go send -from FROM -to TO -amount AMOUNT
```
Create a new Wallet
```
$ go run main.go createwallet
```
List the addresses in wallet file
```
$ go run main.go listaddresses
```
Rebuild the UTXO set
```
$ go run main.go reindexutxo
```
Start a node with ID specified in NODE_ID env. var. -miner enables mining
```
$ go run main.go startnode -miner ADDRESS
```
## Wiki
- [Basic Terminology](https://github.com/ibrahimsn98/blockchain-in-go/wiki/Basic-Terminology)
- [How is the wallet address created?](https://github.com/ibrahimsn98/blockchain-in-go/wiki/How-is-the-wallet-address-created%3F)
## Requirements
- github.com/dgraph-io/badger
- github.com/mr-tron/base58
- golang.org/x/crypto
- gopkg.in/vrecan/death.v3
### Video Tutorials
[Tensor Programming](https://www.youtube.com/channel/UCYqCZOwHbnPwyjawKfE21wg)
## License
[MIT](https://choosealicense.com/licenses/mit/)