Skip to content

v2.10.5

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 04 Dec 18:14
· 2 commits to main since this release
e4d8762

What's Changed

✨ Exciting New Feature

🐛 Bug Fixes

Other Changes

Full Changelog: v2.10.4...v2.10.5

📦Downloads

TestNet

Binaries

Docker Images (amd64, arm64)

MainNet

Binaries

Docker Images (amd64, arm64)

Running full-service

full-service API Documentation

Running with Docker

The full-service docker images are published for testnet and mainnet usage and are pre-configured to connect to MobileCoin peer nodes. See Setting Parameters as Environment Variables to customize the default configuration.

Block and Wallet data are stored in the /data directory. You can mount a volume to persist data across container restarts.

full-service docker image with the following command:

# TestNet Example
docker run -it -p 127.0.0.1:9090:9090 \
  --volume $(pwd)/testnet/fs-data:/data \
  mobilecoin/full-service:v2.10.5-testnet
# MainNet Example
docker run -it -p 127.0.0.1:9090:9090 \
  --volume $(pwd)/testnet/fs-data:/data \
  mobilecoin/full-service:v2.10.5-mainnet

Running with Binaries

Download the appropriate binary for your platform and network from the links above. Extract the tarball and run the binary with the following command:

# TestNet Example
mkdir -p ./testnet-dbs/
RUST_LOG=info,mc_connection=info,mc_ledger_sync=info ./full-service \
  --wallet-db ./testnet-dbs/wallet.db \
  --ledger-db ./testnet-dbs/ledger-db/ \
  --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 \
  --chain-id test
# MainNet Example
mkdir -p ./mainnet-dbs/
RUST_LOG=info,mc_connection=info,mc_ledger_sync=info ./full-service \
  --wallet-db ./mainnet-dbs/wallet.db \
  --ledger-db ./mainnet-dbs/ledger-db/ \
  --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 \
  --chain-id main