Skip to content

Releases: mobilecoinfoundation/mobilecoin

MobileCoin 1.1.0

10 Jun 20:31
Compare
Choose a tag to compare

Hey all, this is the first incremental release of MobileCoin since launch of mainnet.

What's New and Different

✨ BIP-39 Mnemonics

MobileCoinD now supports BIP-39 mnemonics as its preferred account entropy scheme. The legacy root entropy scheme will continue to be supported, but we feel that AccountKeys derived using the new scheme are superior in every way, and so we're recommending that new users go with the new entropy scheme.

✨ Fog Support in MobileCoinD

Users of mobilecoind are able to properly encode fog hints, which makes desktop-to-mobile transactions a reality. This has been supported in pre-release since the release of Fog, and after several months of operations with no known issues we're integrating this into the primary release.

✨ Encrypted Keys At Rest in MobileCoinD

MobileCoinD now encrypts account private keys at rest in its local database.

✨ Lower, Dynamic Fees

The default transaction fee has been lowered from 10mMOB to 400uMOB, and we've implemented MobileCoin RFC #1, which will allow operators to raise or lower fees as needed.

✨ Sticky Sessions for gRPC Clients

We now support cookie-based load balancing at the gRPC layer when connecting to, e.g. consensus enclaves.

👷 Newer Rust (nightly-2021-03-25)

We've updated our supported rust version to one released after stable-0.51.0.

🔒 ⬆️ SGX 2.13.3

We've updated the version of the SGX SDK we're using to 2.13.3, to address INTEL-SA-00477, which is a timing attack vulnerability in some Intel crypto code.

Release Schedule and Advice

We are pushing out a release today, and will be coordinating with network operators to deploy the new version of Consensus network and Fog servers (enclaves) on or before July 14, 2021 (exact date TBD).

Existing users of MobileCoinD should update their installation to take automatic advantage of the lower fees once the upgrade goes live on the network, and will need to update in order to automatically respond to fees higher than the current hard-coded minimum of 10mMOB.

A more detailed changelog is also available.

Consensus SGX Measurements

The mainnet release of consensus produces the following measurements:

  • MRSIGNER: 0x2c1a561c4ab64cbc04bfa445cdf7bed9b2ad6f6b04d38d3137f3622b29fdb30e
  • MRENCLAVE: 0x653228afd2b02a6c28f1dc3b108b1dfa457d170b32ae8ec2978f941bd1655c83

Independent clients which depend on those values (e.g. those doing MRENCLAVE in particular) should add the values included to their trust story (and accept Intel Attestation Verification Reports [AVRs] with SOFTWARE_HARDENING_NEEDED for INTEL-SA-00334, as those enclaves were built with the relevant hardening).

📦 Downloads

TestNet

Linux

MacOS

MainNet

Linux

MacOS

📝 Release Artifacts Build Instructions

The downloads for this release were build with the following on MacOS and Ubuntu:

TestNet

curl -O https://enclave-distribution.test.mobilecoin.com/$(curl -s https://enclave-distribution.test.mobilecoin.com/production.json | grep consensus-enclave.css | awk '{print $2}' | tr -d \" | tr -d ,)

curl -O https://enclave-distribution.test.mobilecoin.com/$(curl -s https://enclave-distribution.test.mobilecoin.com/production.json | grep ingest-enclave.css | awk '{print $2}' | tr -d \" | tr -d ,)

RUSTFLAGS='-C target-cpu=penryn' SGX_MODE=HW IAS_MODE=PROD CONSENSUS_ENCLAVE_CSS=$(pwd)/consensus-enclave.css INGEST_ENCLAVE_CSS=$(pwd)/ingest-enclave.css  cargo build --release --no-default-features -p mc-mobilecoind -p mc-mobilecoind-json

Example Run Command

./target/release/mobilecoind \
    --mobilecoind-db ~/my-wallet.db \
    --ledger-db ~/ledger-testnet/ \
    --peer mc://node1.test.mobilecoin.com/ \
    --peer mc://node2.test.mobilecoin.com/ \
    --tx-source-url https://s3-us-west-1.amazonaws.com/mobilecoin.chain/node1.test.mobilecoin.com/ \
    --tx-source-url https://s3-us-west-1.amazonaws.com/mobilecoin.chain/node2.test.mobilecoin.com/ \
    --fog-ingest-enclave-css $(pwd)/ingest-enclave.css \
    --listen-uri insecure-mobilecoind://127.0.0.1:4444/ &

./target/release/mobilecoind-json &

MainNet

curl -O https://enclave-distribution.prod.mobilecoin.com/$(curl -s https://enclave-distribution.prod.mobilecoin.com/production.json | grep consensus-enclave.css | awk '{print $2}' | tr -d \" | tr -d ,)

curl -O https://enclave-distribution.prod.mobilecoin.com/$(curl -s https://enclave-distribution.prod.mobilecoin.com/production.json | grep ingest-enclave.css | awk '{print $2}' | tr -d \" | tr -d ,)

RUSTFLAGS='-C target-cpu=penryn' SGX_MODE=HW IAS_MODE=PROD CONSENSUS_ENCLAVE_CSS=$(pwd)/consensus-enclave.css INGEST_ENCLAVE_CSS=$(pwd)/ingest-enclave.css  cargo build --release -p mc-mobilecoind -p mc-mobilecoind-json

Example Run Command

./target/release/mobilecoind \
    --mobilecoind-db ~/my-wallet.db \
    --ledger-db ~/ledger-mainnet/ \
    --peer mc://node1.prod.mobilecoinww.com/ \
    --peer mc://node2.prod.mobilecoinww.com/ \
    --tx-source-url https://ledger.mobilecoinww.com/node1.prod.mobilecoinww.com/ \
    --tx-source-url https://ledger.mobilecoinww.com/node2.prod.mobilecoinww.com/ \
    --fog-ingest-enclave-css $(pwd)/ingest-enclave.css \
    --listen-uri insecure-mobilecoind://127.0.0.1:4444/ &

./target/release/mobilecoind-json &

TestNet 2021-05-13

13 May 07:15
Compare
Choose a tag to compare
TestNet 2021-05-13 Pre-release
Pre-release
v1.1.0-pre4

Version bump

TestNet 2021-05-12

12 May 16:38
Compare
Choose a tag to compare
TestNet 2021-05-12 Pre-release
Pre-release
1.1.0-pre3

Pin to 18:04 latest

Client Update 2021-03-23

24 Mar 05:50
66ce727
Compare
Choose a tag to compare
Pre-release

Adds fog support to clients, built for 1.0.0-pre7 consensus enclaves for both TestNet and MainNet

Clients built with e.g.:

INGEST_SIGSTRUCT_URI=$(curl -s https://enclave-distribution.test.mobilecoin.com/production.json | jq -r '.ingest | .sigstruct')
curl -O https://enclave-distribution.test.mobilecoin.com/${INGEST_SIGSTRUCT_URI}
CONSENSUS_SIGSTRUCT_URI=$(curl -s https://enclave-distribution.test.mobilecoin.com/production.json | jq -r '.consensus | .sigstruct')
curl -O https://enclave-distribution.test.mobilecoin.com/${CONSENSUS_SIGSTRUCT_URI}
RUSTFLAGS='-C target-cpu=penryn' SGX_MODE=HW IAS_MODE=PROD CONSENSUS_ENCLAVE_CSS=$(pwd)/consensus-enclave.css INGEST_ENCLAVE_CSS=$(pwd)/ingest-enclave.css  cargo build --release -p mc-mobilecoind -p mc-mobilecoind-json

TestNet 2021-03-10

11 Mar 05:51
Compare
Choose a tag to compare
TestNet 2021-03-10 Pre-release
Pre-release
  • Add slam tool for load testing
  • Fixes to support Fog and SDKs

TestNet 2021-03-05

05 Mar 21:15
Compare
Choose a tag to compare
  • Crypto-box changes to support Fog
  • Authority key and signature scheme for Fog Report Service
  • Watcher improvements for auditing block signatures in consensus

Client Update 2021-01-09

10 Jan 04:15
0dfb34e
Compare
Choose a tag to compare
  • Includes fix to status check for critical bug in mobilecoind

Client Update 2020-11-24

25 Nov 00:29
568fe17
Compare
Choose a tag to compare
  • Reverts removes pseudo outputs from range proof

Desktop Wallet

If you are looking for the desktop wallet releases, please see https://github.com/mobilecoinofficial/desktop-wallet/releases

Client Update 2020-11-23

24 Nov 02:12
deed8d9
Compare
Choose a tag to compare
  • Adds ip-check
  • Origin block hint field

Client Update 2020-11-08

08 Nov 21:09
933a79f
Compare
Choose a tag to compare
  • Sending transactions can now override the subaddress for the transaction change