Skip to content

Commit db7b256

Browse files
Fix ccip-tools-ts tutorial and broken external links in CCIP (#3302)
* Fix ccip-tools-ts tutorial and broken external links in CCIP * Fix eslint formatting
1 parent 2aa0f12 commit db7b256

31 files changed

+378
-389
lines changed

reports/llms-report.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"startedAt": "2025-12-16T17:58:25.738Z",
2+
"startedAt": "2025-12-16T18:01:55.280Z",
33
"siteBase": "https://docs.chain.link",
44
"sections": [
55
{
@@ -30,9 +30,9 @@
3030
"section": "ccip",
3131
"pagesProcessed": 260,
3232
"outputPath": "src/content/ccip/llms-full.txt",
33-
"bytes": 2848574,
33+
"bytes": 2847978,
3434
"prevBytes": 2848574,
35-
"deltaBytes": 0
35+
"deltaBytes": -596
3636
},
3737
{
3838
"section": "data-feeds",
@@ -123,5 +123,5 @@
123123
"deltaBytes": 0
124124
}
125125
],
126-
"finishedAt": "2025-12-16T17:58:29.466Z"
126+
"finishedAt": "2025-12-16T18:01:58.921Z"
127127
}

src/config/sidebar/__tests__/__snapshots__/ccip-dynamic.test.ts.snap

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -381,13 +381,6 @@ exports[`CCIP Sidebar Configuration Snapshot should match the expected sidebar s
381381
"title": "Checking CCIP Message Status",
382382
"url": "ccip/tutorials/evm/offchain/ccip-tools/get-status-offchain",
383383
},
384-
{
385-
"chainTypes": [
386-
"evm",
387-
],
388-
"title": "Get Supported Tokens",
389-
"url": "ccip/tutorials/evm/offchain/ccip-tools/get-supported-tokens",
390-
},
391384
],
392385
"title": "Using CCIP CLI",
393386
"url": "ccip/tutorials/evm/offchain/ccip-tools",

src/config/sidebar/ccip-dynamic.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,11 @@ export const CCIP_SIDEBAR_CONTENT: SectionEntry[] = [
333333
url: "ccip/tutorials/evm/offchain/ccip-tools/get-status-offchain",
334334
chainTypes: ["evm"],
335335
},
336-
{
337-
title: "Get Supported Tokens",
338-
url: "ccip/tutorials/evm/offchain/ccip-tools/get-supported-tokens",
339-
chainTypes: ["evm"],
340-
},
336+
// {
337+
// title: "Get Supported Tokens",
338+
// url: "ccip/tutorials/evm/offchain/ccip-tools/get-supported-tokens",
339+
// chainTypes: ["evm"],
340+
// },
341341
],
342342
},
343343
],

src/content/ccip/api-reference/evm/v1.6.0/burn-mint-erc20.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CcipCommon from "@features/ccip/CcipCommon.astro"
1515

1616
An ERC20-compliant token contract that extends the standard functionality with controlled minting and burning capabilities through role-based access control.
1717

18-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol)
18+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol)
1919

2020
<Aside>
2121

src/content/ccip/api-reference/evm/v1.6.0/i-type-and-version.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CcipCommon from "@features/ccip/CcipCommon.astro"
1515

1616
An interface that provides type and version information for contracts.
1717

18-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/interfaces/ITypeAndVersion.sol)
18+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/interfaces/ITypeAndVersion.sol)
1919

2020
## Functions
2121

src/content/ccip/api-reference/evm/v1.6.0/ownable-2-step-msg-sender.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This prevents accidental transfers to incorrect or inaccessible addresses.
2828

2929
</Aside>
3030

31-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/access/Ownable2StepMsgSender.sol)
31+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/access/Ownable2StepMsgSender.sol)
3232

3333
## Functions
3434

src/content/ccip/api-reference/evm/v1.6.0/ownable-2-step.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CcipCommon from "@features/ccip/CcipCommon.astro"
1515

1616
A minimal contract that implements 2-step ownership transfer and nothing more. It's made to be minimal to reduce the impact of the bytecode size on any contract that inherits from it.
1717

18-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/access/Ownable2Step.sol)
18+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/access/Ownable2Step.sol)
1919

2020
<Aside type="note">
2121
This contract implements a secure two-step ownership transfer process:

src/content/ccip/api-reference/evm/v1.6.1/burn-mint-erc20.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CcipCommon from "@features/ccip/CcipCommon.astro"
1515

1616
An ERC20-compliant token contract that extends the standard functionality with controlled minting and burning capabilities through role-based access control.
1717

18-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol)
18+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/token/ERC20/BurnMintERC20.sol)
1919

2020
<Aside>
2121

src/content/ccip/api-reference/evm/v1.6.1/i-type-and-version.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import CcipCommon from "@features/ccip/CcipCommon.astro"
1515

1616
An interface that provides type and version information for contracts.
1717

18-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/interfaces/ITypeAndVersion.sol)
18+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/interfaces/ITypeAndVersion.sol)
1919

2020
## Functions
2121

src/content/ccip/api-reference/evm/v1.6.1/ownable-2-step-msg-sender.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This prevents accidental transfers to incorrect or inaccessible addresses.
2828

2929
</Aside>
3030

31-
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-release/1.4.0/contracts/src/v0.8/shared/access/Ownable2StepMsgSender.sol)
31+
[Git Source](https://github.com/smartcontractkit/chainlink-evm/blob/contracts-v1.4.0/contracts/src/v0.8/shared/access/Ownable2StepMsgSender.sol)
3232

3333
## Functions
3434

0 commit comments

Comments
 (0)