Skip to content

Commit 52a925f

Browse files
committed
Update README.md
1 parent 8e14a91 commit 52a925f

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ Clone the project to your local machine:
3434

3535
To create a new blockchain:
3636

37-
3837
+ ```bash
39-
$ go run main.go createblockchain -address <ADDRESS>
38+
$ go run main.go createblockchain -address <ADDRESS>
4039
***
4140
4241
### Checking Balance
@@ -52,15 +51,15 @@ To check the balance for a specific address:
5251
To send a transaction on the blockchain:
5352

5453
+ ```bash
55-
$ go run main.go send -from <FROM_ADDRESS> -to <TO_ADDRESS> -amount <AMOUNT>
54+
$ go run main.go send -from <FROM_ADDRESS> -to <TO_ADDRESS> -amount <AMOUNT> -mine
5655
***
5756
5857
### Viewing the Blockchain
5958
6059
To print all blocks in the blockchain:
6160
6261
+ ```bash
63-
$ go run main.go printchain
62+
$ go run main.go printchain
6463
***
6564

6665
### Creating a New Wallet
@@ -76,7 +75,19 @@ To create a new wallet:
7675
Lists the public keys of the wallets you created on your device:
7776
7877
+ ```bash
79-
$ go run main.go listaddresses
78+
$ go run main.go listaddresses
79+
***
80+
81+
### Reindex UTXO
82+
83+
+ ```bash
84+
$ go run main.go reindexutxo
85+
***
86+
87+
### Start Node
88+
89+
+ ```bash
90+
$ go run main.go startnode -miner <ADDRESS> # NODE_ID ortamında belirtilen kimliğe sahip bir düğüm başlatın. -miner madenciliği mümkün kılar
8091
***
8192

8293
## Contributing

0 commit comments

Comments
 (0)