diff --git a/config.md b/config.md index 1cc750d..b480372 100644 --- a/config.md +++ b/config.md @@ -92,7 +92,7 @@ |Key|Description|Type|Default Value| |---|-----------|----|-------------| -|network|Tezos network, by default - mainnet (mainnet | ghostnet | nairobinet)|string|`mainnet` +|network|Tezos network, by default - mainnet (mainnet | ghostnet | parisnet)|string|`mainnet` |rpc|URL of the Tezos RPC node|string|`` |signatory|URL of the signatory service for remote tx signing|string|`` diff --git a/internal/msgs/en_config_descriptions.go b/internal/msgs/en_config_descriptions.go index 4076762..f23be9c 100644 --- a/internal/msgs/en_config_descriptions.go +++ b/internal/msgs/en_config_descriptions.go @@ -23,6 +23,6 @@ var ( ConfigEventsFilterPollingInterval = ffc("config.connector.events.filterPollingInterval", "The interval between polling calls to a filter, when checking for newly arrived events", i18n.TimeDurationType) ConfigTxCacheSize = ffc("config.connector.txCacheSize", "Maximum of transactions to hold in the transaction info cache", i18n.IntType) ConfigTezosRPC = ffc("config.connector.blockchain.rpc", "URL of the Tezos RPC node", "string") - ConfigTezosNetwork = ffc("config.connector.blockchain.network", "Tezos network, by default - mainnet (mainnet | ghostnet | nairobinet)", "string") + ConfigTezosNetwork = ffc("config.connector.blockchain.network", "Tezos network, by default - mainnet (mainnet | ghostnet | parisnet)", "string") ConfigTezosSignatory = ffc("config.connector.blockchain.signatory", "URL of the signatory service for remote tx signing", "string") )