Skip to content

Commit

Permalink
Node release 2.17.0 (#2121)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedriftofwords authored Oct 11, 2024
1 parent 70a8b19 commit b2ae5f1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions public/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
[
{
"category": "release",
"changes": [],
"date": "2024-10-10",
"description": "Chainlink Node v2.17.0 is now available. See the [Release Notes](https://github.com/smartcontractkit/chainlink/releases/tag/v2.17.0) for details.",
"relatedNetworks": [],
"relatedTokens": [],
"subTopic": "nodes",
"title": "Chainlink Node v2.17.0",
"topic": "general",
"urls": []
},
{
"category": "integration",
"changes": [],
Expand Down
2 changes: 1 addition & 1 deletion src/content/chainlink-nodes/v1/node-config.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7664,7 +7664,7 @@ Finality for a block is solely defined by the finality related tags provided by
FlagsContractAddress = '0xae4E781a6218A8031764928E88d457937A954fC3' # Example
```

FlagsContractAddress can optionally point to a [Flags contract](https://github.com/smartcontractkit/chainlink/blob/v2.16.0/contracts/src/v0.8/Flags.sol). If set, the node will lookup that contract for each job that supports flags contracts (currently OCR and FM jobs are supported). If the job's contractAddress is set as hibernating in the FlagsContractAddress address, it overrides the standard update parameters (such as heartbeat/threshold).
FlagsContractAddress can optionally point to a [Flags contract](https://github.com/smartcontractkit/chainlink/blob/v2.17.0/contracts/src/v0.8/Flags.sol). If set, the node will lookup that contract for each job that supports flags contracts (currently OCR and FM jobs are supported). If the job's contractAddress is set as hibernating in the FlagsContractAddress address, it overrides the standard update parameters (such as heartbeat/threshold).

### LinkContractAddress

Expand Down
6 changes: 3 additions & 3 deletions src/content/chainlink-nodes/v1/running-a-chainlink-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ should use one of the supported [testnets](/resources/link-token-contracts) for

1. Start the Chainlink Node by running the Docker image.

Change the version number in `smartcontract/chainlink:2.16.0` with the version of the Docker image that you need to run. For most new nodes, use version `2.0.0` or later. Tag versions are available in the [Chainlink Docker hub](https://hub.docker.com/r/smartcontract/chainlink/tags). _The `latest` version does not work._
Change the version number in `smartcontract/chainlink:2.17.0` with the version of the Docker image that you need to run. For most new nodes, use version `2.0.0` or later. Tag versions are available in the [Chainlink Docker hub](https://hub.docker.com/r/smartcontract/chainlink/tags). _The `latest` version does not work._

Chainlink Nodes running `2.0.0` and later require the `-config` and `-secrets` flags after the `node` part of the command.

Expand All @@ -163,7 +163,7 @@ should use one of the supported [testnets](/resources/link-token-contracts) for
<Fragment slot="tab.1">Sepolia</Fragment>
<Fragment slot="panel.1">
```shell Sepolia
cd ~/.chainlink-sepolia && docker run --platform linux/x86_64/v8 --name chainlink -v ~/.chainlink-sepolia:/chainlink -it -p 6688:6688 --add-host=host.docker.internal:host-gateway smartcontract/chainlink:2.16.0 node -config /chainlink/config.toml -secrets /chainlink/secrets.toml start
cd ~/.chainlink-sepolia && docker run --platform linux/x86_64/v8 --name chainlink -v ~/.chainlink-sepolia:/chainlink -it -p 6688:6688 --add-host=host.docker.internal:host-gateway smartcontract/chainlink:2.17.0 node -config /chainlink/config.toml -secrets /chainlink/secrets.toml start
```
</Fragment>
</Tabs>
Expand All @@ -180,7 +180,7 @@ should use one of the supported [testnets](/resources/link-token-contracts) for

```shell
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
867e792d6f78 smartcontract/chainlink:2.16.0 "chainlink node -con…" 2 minutes ago Up 2 minutes (healthy) 0.0.0.0:6688->6688/tcp, :::6688->6688/tcp chainlink
867e792d6f78 smartcontract/chainlink:2.17.0 "chainlink node -con…" 2 minutes ago Up 2 minutes (healthy) 0.0.0.0:6688->6688/tcp, :::6688->6688/tcp chainlink
```

1. You can now connect to your Chainlink node's UI interface by navigating to [http://localhost:6688](http://localhost:6688). Use the API
Expand Down

0 comments on commit b2ae5f1

Please sign in to comment.