Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,34 @@ exports[`CCIP Sidebar Configuration Snapshot should match the expected sidebar s
},
{
"contents": [
{
"chainTypes": [
"evm",
],
"title": "Overview",
"url": "ccip/tutorials/evm",
},
{
"chainTypes": [
"solana",
],
"title": "Overview",
"url": "ccip/tutorials/svm",
},
{
"chainTypes": [
"aptos",
],
"title": "Overview",
"url": "ccip/tutorials/aptos",
},
{
"chainTypes": [
"ton",
],
"title": "Overview",
"url": "ccip/tutorials/ton",
},
{
"chainTypes": [
"evm",
Expand Down
20 changes: 20 additions & 0 deletions src/config/sidebar/ccip-dynamic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
import evmCcipV151Contents from "./ccip/api-reference/evm/v1_5_1.json" with { type: "json" }
import evmCcipV160Contents from "./ccip/api-reference/evm/v1_6_0.json" with { type: "json" }
import evmCcipV161Contents from "./ccip/api-reference/evm/v1_6_1.json" with { type: "json" }
import evmCcipV162Contents from "./ccip/api-reference/evm/v1_6_2.json" with { type: "json" }

Check warning on line 20 in src/config/sidebar/ccip-dynamic.ts

View workflow job for this annotation

GitHub Actions / eslint

'evmCcipV162Contents' is defined but never used

Check warning on line 20 in src/config/sidebar/ccip-dynamic.ts

View workflow job for this annotation

GitHub Actions / eslint

'evmCcipV162Contents' is defined but never used
import evmCcipV163Contents from "./ccip/api-reference/evm/v1_6_3.json" with { type: "json" }

Check warning on line 21 in src/config/sidebar/ccip-dynamic.ts

View workflow job for this annotation

GitHub Actions / eslint

'evmCcipV163Contents' is defined but never used

Check warning on line 21 in src/config/sidebar/ccip-dynamic.ts

View workflow job for this annotation

GitHub Actions / eslint

'evmCcipV163Contents' is defined but never used
import aptosCcipV160Contents from "./ccip/api-reference/aptos/v1_6_0.json" with { type: "json" }
import svmCcipV160Contents from "./ccip/api-reference/svm/v1_6_0.json" with { type: "json" }
import tonCcipV160Contents from "./ccip/api-reference/ton/v1_6_0.json" with { type: "json" }
Expand Down Expand Up @@ -374,6 +374,26 @@
{
section: "Tutorials",
contents: [
{
title: "Overview",
url: "ccip/tutorials/evm",
chainTypes: ["evm"],
},
{
title: "Overview",
url: "ccip/tutorials/svm",
chainTypes: ["solana"],
},
{
title: "Overview",
url: "ccip/tutorials/aptos",
chainTypes: ["aptos"],
},
{
title: "Overview",
url: "ccip/tutorials/ton",
chainTypes: ["ton"],
},
{
title: "Acquire Test Tokens",
url: "ccip/test-tokens",
Expand Down
Loading
Loading