Skip to content

Commit

Permalink
Merge pull request #502 from fairDataSociety/staging
Browse files Browse the repository at this point in the history
fix: minor text changes
  • Loading branch information
asabya authored May 24, 2023
2 parents 8b6d5f8 + fc77ef0 commit 9f8d2ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Flags:
--network string network to use for authentication (mainnet/testnet/play)
--postageBlockId string the postage block used to store the data in bee
--pprofPort string pprof port (default ":9091")
--rpc string rpc endpoint for ens network. xDai for mainnet | Goerli for testnet | local fdp-play rpc endpoint for play
--rpc string rpc endpoint for ens network. xDai for mainnet | Sepolia for testnet | local fdp-play rpc endpoint for play
--swag should run swagger-ui
Global Flags:
--beeApi string full bee api endpoint (default "localhost:1633")
Expand Down Expand Up @@ -187,7 +187,7 @@ $ dfs server --swag
This should run the dfs server along with swagger-ui, available at `http://localhost:9090/swagger/index.html` assuming
server is running on default `9090` port on your localhost

### Running fairOS on goerli testnet and swarm mainnet
### Running fairOS on sepolia testnet and swarm mainnet

we need to set `network` configuration in the config file as testnet and bee configuration should point to a bee running
on mainnet
Expand Down
2 changes: 1 addition & 1 deletion cmd/dfs/cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func init() {
serverCmd.Flags().String("postageBlockId", "", "the postage block used to store the data in bee")
serverCmd.Flags().StringSlice("cors-origins", defaultCORSAllowedOrigins, "allow CORS headers for the given origins")
serverCmd.Flags().String("ens-network", "testnet", "network to use for authentication [not related to swarm network] (mainnet/testnet/play)")
serverCmd.Flags().String("rpc", "", "rpc endpoint for ens network. xDai for mainnet | Goerli for testnet | local fdp-play rpc endpoint for play")
serverCmd.Flags().String("rpc", "", "rpc endpoint for ens network. xDai for mainnet | Sepolia for testnet | local fdp-play rpc endpoint for play")
rootCmd.AddCommand(serverCmd)
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/contracts/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type SubscriptionConfig struct {
DataHubAddress string
}

// TestnetConfig defines the configuration for goerli testnet
// TestnetConfig defines the configuration for goerli/sepolia testnet
func TestnetConfig(chainId string) (*ENSConfig, *SubscriptionConfig) {
e := &ENSConfig{
ChainID: chainId,
Expand Down

0 comments on commit 9f8d2ec

Please sign in to comment.