Skip to content

Releases: scrtlabs/SecretNetwork

Test

14 Sep 01:53
Compare
Choose a tag to compare
Test Pre-release
Pre-release
0.0.0

And one with enabled floating point checks, for fun

secretcli v1.0.2

22 Sep 16:19
741217a
Compare
Choose a tag to compare
  • #567: Fix --code-hash in secretcli tx compute --generate-only

secretcli v1.0.1

17 Sep 11:04
4387b56
Compare
Choose a tag to compare
  • #550: Fix tx output decoding in secretcli q compute tx [hash].

Mainnet secret-2 v1.0.0 (Vulcan)

14 Sep 17:06
490fba9
Compare
Choose a tag to compare
  • Instructions for upgrading a validator from secret-1 to secret-2: link.
  • How to run a full node: link.
  • See proposal 21 on secret-1 [1][2] for more details.

v0.8.1 - Release Candidate Testnet

06 Sep 11:21
d4e3654
Compare
Choose a tag to compare
Pre-release

Explorer: https://explorer.pub.testnet3.enigma.co
Faucet: https://faucet.pub.testnet3.enigma.co
chain-id: enigma-pub-testnet-4

Bootstrap nodes:
115aa0a629f5d70dd1d464bc7e42799e00f4edae@bootstrap.pub.testnet3.enigma.co:26656
c30aad0fc368a0c05901659de575f3592930e002@bootstrap2.pub.testnet3.enigma.co:26656
e54be21138aa15cc98a6cf60da60005a4a156893@bootstrap3.pub.testnet3.enigma.co:26656

Docker image name:
enigmampc/secret-network-node:v0.8.1-mainnet
Registeration service (for docker image):
register.pub.testnet.enigma.co:26667

v0.8.0: Merge pull request #511 from enigmampc/develop

31 Aug 12:26
e7f698a
Compare
Choose a tag to compare

Mainnet secret-1 v0.2.2

30 Aug 20:01
a245976
Compare
Choose a tag to compare
Pre-release

⚠️ This update will help the secret-2 bootstrap validator to export genesis.json from the state of secret-1 at 2020-09-15 14:00:00 UTC.

Changelog

PT1

08 Aug 17:35
b3c77fa
Compare
Choose a tag to compare
PT1 Pre-release
Pre-release

WARNING: THESE FILES MAY BE CHANGED/UPDATED AND ARE NOT GUARANTEED TO BE FINAL

v0.5.0-rc1 - Incentivized Testnet

15 Jul 16:32
c0bb36c
Compare
Choose a tag to compare
Pre-release

WARNING: THESE FILES MAY BE CHANGED/UPDATED AND ARE NOT GUARANTEED TO BE FINAL

Mainnet secret-1 v0.2.1

05 Jul 10:09
f1deca3
Compare
Choose a tag to compare

Changelog

Upgraded Tendermint from v0.33.3 to v0.33.6 (Anti DDoS fixes). See https://github.com/tendermint/tendermint/blob/v0.33.6/CHANGELOG.md#v0336 for more.

How to upgrade

⚠️ Make sure to back up your validator node before you make any changes.
⚠️ Make sure to back up your delegator wallet keys with secretcli keys export <key-alias> before you make any changes.

  1. Tell your node to gracefully shut down:

    perl -i -pe 's/^halt-time =.*$/halt-time = 1593940000/' ~/.secretd/config/app.toml

Note: This tells the node to gracefully shut down if the current time is past Sunday, 05-Jul-20 09:06:40 UTC (which it is, so it's going to shut down now). If you wish you can also manually edit ~/.secretd/config/app.toml and set halt-height to a future block. halt-time = 1593940000 is chosen here for simplicity.

  1. Load the new configuration:

    sudo systemctl restart secret-node
  2. Make sure the node isn't running:

    journalctl -u secret-node -f
  3. Only if systemd keeps restarting it - Manually stop your node:

    sudo systemctl stop secret-node
  4. Download v0.2.1:

    wget https://github.com/enigmampc/SecretNetwork/releases/download/v0.2.1/secretnetwork_0.2.1_amd64.deb
  5. Install v0.2.1:

    sudo dpkg -i secretnetwork_0.2.1_amd64.deb
  6. Tell your node to stop shutting down:

    perl -i -pe 's/^halt-time =.*$/halt-time = 0/' ~/.secretd/config/app.toml
  7. Start your node with the new version:

    sudo systemctl start secret-node
  8. Make sure your node is running properly:

    journalctl -u secret-node -f