Skip to content

Commit

Permalink
adds changelog, updates instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
gcharang committed Jan 16, 2025
1 parent e90d7b4 commit 196ae18
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.3

- Adds `BCZERO`, `RAPH`, `MDX` chains to dPoW

## 0.8.2

- Updates `litecoind` to `v0.21.4` [`beae01d`](https://github.com/litecoin-project/litecoin/commit/beae01d62292a0aab363b7a4d3f606708cea7260)
Expand Down
17 changes: 9 additions & 8 deletions doc/update083.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dPoW 0.8.3 update information

### Launch `BCZERO`, `RAPH`, `MDX` chains, import your private key and start staking
## Launch `BCZERO`, `RAPH`, `MDX` chains, import your Main node private key and start staking

```bash
# Launch chains
Expand All @@ -11,36 +11,39 @@ source ~/dPoW/iguana/pubkey.txt
./komodod -ac_name=MDX -ac_supply=999999999 -ac_end=1 -ac_public=1 -ac_staked=50 -addnode=65.21.52.182 -pubkey=$pubkey &
```

# Import your private key
## Import your Main node private key

```bash
./komodo-cli -ac_name=BCZERO importprivkey $privkey
./komodo-cli -ac_name=RAPH importprivkey $privkey
./komodo-cli -ac_name=MDX importprivkey $privkey
```

# Start Staking
## Start Staking

```bash
./komodo-cli -ac_name=BCZERO setgenerate true 0
./komodo-cli -ac_name=RAPH setgenerate true 0
./komodo-cli -ac_name=MDX setgenerate true 0
```

# Open P2P Port
## Open P2P Port

```bash
sudo ufw allow 45833/tcp comment 'BCZERO p2p port'
sudo ufw allow 30260/tcp comment 'RAPH p2p port'
sudo ufw allow 18481/tcp comment 'MDX p2p port'
```

### Restart Iguana
## Build andRestart Iguana

```bash
# Update dPoW repo
cd ~/dPoW
git checkout master
git pull

# Restart Iguana
# Build and Restart Iguana
pkill -9 iguana
cd iguana
./m_notary_build
Expand All @@ -49,5 +52,3 @@ cd iguana
```

Make sure notarisations are progressing.


0 comments on commit 196ae18

Please sign in to comment.