Skip to content

Commit

Permalink
Update testnets to include sepolia only
Browse files Browse the repository at this point in the history
  • Loading branch information
kronosapiens committed Dec 16, 2024
1 parent f7d8f34 commit 58c00ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/guides/reputation-mining-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -28,7 +28,7 @@ Mandatory arguments:
Optional arguments:

```
[--network <(rinkeby|ropsten|kovan|mainnet)>]
[--network <(sepolia|mainnet)>]
[--localPort <number>]
[--dbPath <$PATH>]
[--auto <(true|false)>]
Expand All @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion packages/reputation-miner/bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 58c00ec

Please sign in to comment.