From 58c00ec80d3418750a33013fbb9d502f298912f9 Mon Sep 17 00:00:00 2001 From: Daniel Kronovet Date: Mon, 16 Dec 2024 14:43:00 -0500 Subject: [PATCH] Update testnets to include sepolia only --- docs/guides/reputation-mining-client.md | 6 +++--- packages/reputation-miner/bin/index.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/reputation-mining-client.md b/docs/guides/reputation-mining-client.md index 22572f933a..026986414f 100644 --- a/docs/guides/reputation-mining-client.md +++ b/docs/guides/reputation-mining-client.md @@ -7,7 +7,7 @@ sidebar_position: 3 ## Running the Mining Client -The reputation mining client can be run locally to sync with a local hardhat instance, the `rinkeby`, `ropsten`, or `kovan` testnets, or with `mainnet`. +The reputation mining client can be run locally to sync with a local hardhat instance, the `sepolia` testnet, or with `mainnet`. To participate in the reputation mining process you need to have staked at least the [minimum amount of CLNY Tokens](../interfaces/ireputationminingcycle#getminstake-uint256-minstake), for at least [one full mining cycle duration](../interfaces/ireputationminingcycle#getminingwindowduration-uint256-miningwindowduration) before you can submit a new reputation root hash. @@ -28,7 +28,7 @@ Mandatory arguments: Optional arguments: ``` -[--network <(rinkeby|ropsten|kovan|mainnet)>] +[--network <(sepolia|mainnet)>] [--localPort ] [--dbPath <$PATH>] [--auto <(true|false)>] @@ -51,7 +51,7 @@ Path for the sqlite database storing reputation state. Default is `./reputationS #### `--network` -Used for connecting to a supported Infura node (instead of a local client). Valid options are `rinkeby` `ropsten` `kovan` and `mainnet`. +Used for connecting to a supported Infura node (instead of a local client). Valid options are `sepolia` and `mainnet`. #### `--localPort` diff --git a/packages/reputation-miner/bin/index.js b/packages/reputation-miner/bin/index.js index acb428fe34..7a76f36ae0 100644 --- a/packages/reputation-miner/bin/index.js +++ b/packages/reputation-miner/bin/index.js @@ -11,7 +11,7 @@ const {RetryProvider} = require("../../package-utils"); const { ConsoleAdapter, SlackAdapter, DiscordAdapter, TruffleLoader } = require("../../package-utils"); -const supportedInfuraNetworks = ["rinkeby", "ropsten", "kovan", "mainnet"]; +const supportedInfuraNetworks = ["sepolia", "mainnet"]; const { minerAddress, privateKey,