Skip to content

Commit 9985894

Browse files
committed
update
1 parent a09ff14 commit 9985894

File tree

22 files changed

+178
-178
lines changed

22 files changed

+178
-178
lines changed

src/config/sidebar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { SIDEBAR_SECTIONS } from "./sidebarSections.ts"
88
import evmCcipV150Contents from "./sidebar/ccip/api-reference/evm/v1_5_0.json" with { type: "json" }
99
import evmCcipV151Contents from "./sidebar/ccip/api-reference/evm/v1_5_1.json" with { type: "json" }
1010
import evmCcipV160Contents from "./sidebar/ccip/api-reference/evm/v1_6_0.json" with { type: "json" }
11-
import svmCcipV160Contents from "./sidebar/ccip/api-reference/svm/v1_6_0.json" with { type: "json" }
11+
import svmCcipV011Contents from "./sidebar/ccip/api-reference/svm/v0_1_1.json" with { type: "json" }
1212
import chainlinkLocalV021Contents from "./sidebar/chainlink-local/api-reference/v0_2_1.json" with { type: "json" }
1313
import chainlinkLocalV022Contents from "./sidebar/chainlink-local/api-reference/v0_2_2.json" with { type: "json" }
1414
import chainlinkLocalV023Contents from "./sidebar/chainlink-local/api-reference/v0_2_3.json" with { type: "json" }
@@ -1509,7 +1509,7 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
15091509
title: "v1.6.0 (Latest)",
15101510
url: "ccip/api-reference/svm/v1.6.0",
15111511
isCollapsible: true,
1512-
children: svmCcipV160Contents,
1512+
children: svmCcipV011Contents,
15131513
},
15141514
],
15151515
},
File renamed without changes.

src/config/versions/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ export const VERSIONS = {
3131
},
3232
},
3333
svm: {
34-
LATEST: "v1.6.0",
35-
ALL: ["v1.6.0"] as const,
34+
LATEST: "v0.1.1",
35+
ALL: ["v0.1.1"] as const,
3636
RELEASE_DATES: {
37-
"v1.6.0": "2025-05-19T00:00:00Z", // 19 May 2025
37+
"v0.1.1": "2023-10-04T00:00:00Z", // Placeholder release date – update when known
3838
},
3939
},
4040
// Default for backward compatibility

src/content/ccip/api-reference/svm/v1.6.0/base-token-pool.mdx renamed to src/content/ccip/api-reference/svm/v0.1.1/base-token-pool.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM Base Token Pool Library Reference"
4+
title: "CCIP v0.1.1 SVM Base Token Pool Library Reference"
55
metadata:
66
description: "Complete API documentation for the Base Token Pool library that provides shared functionality and common components for CCIP token pool implementations on SVM-based blockchains like Solana. Covers data structures, rate limiting, validation functions, and core utilities for token pool development."
77
excerpt: "Base Token Pool, SVM token pool library, Solana token pools, shared token pool functionality, rate limiting, token pool validation, cross-chain token transfers, token pool development, anchor library"
@@ -397,7 +397,7 @@ pub enum CcipTokenPoolError {
397397

398398
### Events
399399

400-
The library defines events that are emitted by pool implementations. See the [Events API Reference](/ccip/api-reference/svm/v1.6.0/events) for detailed documentation of all events including:
400+
The library defines events that are emitted by pool implementations. See the [Events API Reference](/ccip/api-reference/svm/v0.1.1/events) for detailed documentation of all events including:
401401

402402
- Configuration events (`GlobalConfigUpdated`, `RemoteChainConfigured`, etc.)
403403
- Token operation events (`Burned`, `Minted`, `Locked`, `Released`)

src/content/ccip/api-reference/svm/v1.6.0/burn-mint-token-pool.mdx renamed to src/content/ccip/api-reference/svm/v0.1.1/burn-mint-token-pool.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM BurnMint Token Pool API Reference"
4+
title: "CCIP v0.1.1 SVM BurnMint Token Pool API Reference"
55
metadata:
66
description: "Comprehensive API documentation for the CCIP BurnMint Token Pool program on SVM-based blockchains like Solana. Complete guide covering burn and mint operations, token pool configuration, cross-chain token transfers, multisig management, and access control for seamless interoperability."
77
excerpt: "BurnMint Token Pool, SVM burn mint pool, Solana token pool, cross-chain token transfers, burn and mint operations, token pool configuration, multisig management, access control, CCIP token pools"

src/content/ccip/api-reference/svm/v1.6.0/errors.mdx renamed to src/content/ccip/api-reference/svm/v0.1.1/errors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM Errors API Reference"
4+
title: "CCIP v0.1.1 SVM Errors API Reference"
55
metadata:
66
description: "Complete API documentation for CCIP error codes and handling on SVM-based blockchains like Solana. Comprehensive reference covering router errors, token pool errors, shared errors, error resolution strategies, and debugging guidance for cross-chain development."
77
excerpt: "CCIP errors, SVM error codes, Solana errors, cross-chain errors, router errors, token pool errors, error handling, debugging, error resolution, blockchain troubleshooting"

src/content/ccip/api-reference/svm/v1.6.0/events.mdx renamed to src/content/ccip/api-reference/svm/v0.1.1/events.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM Events API Reference"
4+
title: "CCIP v0.1.1 SVM Events API Reference"
55
metadata:
66
description: "Comprehensive API documentation for CCIP events on SVM-based blockchains like Solana. Complete reference covering router events, token pool events, message events, configuration events, and execution events for cross-chain monitoring and debugging."
77
excerpt: "CCIP events, SVM events, Solana events, cross-chain events, router events, token pool events, message events, execution events, event monitoring, blockchain logging"
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM API Reference"
4+
title: "CCIP v0.1.1 SVM API Reference"
55
metadata:
6-
description: "Complete API reference documentation for Chainlink CCIP v1.6.0 on SVM-based blockchains including Solana. Comprehensive guide covering message structures, router functionality, token pools, receiver implementation, events, and error handling for cross-chain interoperability and token transfers."
6+
description: "Complete API reference documentation for Chainlink CCIP v0.1.1 on SVM-based blockchains including Solana. Comprehensive guide covering message structures, router functionality, token pools, receiver implementation, events, and error handling for cross-chain interoperability and token transfers."
77
excerpt: "CCIP SVM API, Solana cross-chain, blockchain interoperability, token transfers, message routing, onchain programs, anchor framework, token pools, burn mint, lock release, receiver implementation"
88
isIndex: true
99
---
@@ -12,25 +12,25 @@ import { Aside } from "@components"
1212
import CcipCommon from "@features/ccip/CcipCommon.astro"
1313

1414
<Aside type="note">
15-
You are viewing API documentation for CCIP v1.6.0 on SVM-based blockchains, which is the latest version for Solana
15+
You are viewing API documentation for CCIP v0.1.1 on SVM-based blockchains, which is the latest version for Solana
1616
integration.
1717
</Aside>
1818

1919
## API References
2020

2121
### Core Components
2222

23-
- [Messages](/ccip/api-reference/svm/v1.6.0/messages) - Message structures and extra args for cross-chain messaging
24-
- [Router](/ccip/api-reference/svm/v1.6.0/router) - Instructions for sending messages and managing CCIP routing on Solana
25-
- [Receiver](/ccip/api-reference/svm/v1.6.0/receiver) - Implementation guide for CCIP message receivers on SVM blockchains
23+
- [Messages](/ccip/api-reference/svm/v0.1.1/messages) - Message structures and extra args for cross-chain messaging
24+
- [Router](/ccip/api-reference/svm/v0.1.1/router) - Instructions for sending messages and managing CCIP routing on Solana
25+
- [Receiver](/ccip/api-reference/svm/v0.1.1/receiver) - Implementation guide for CCIP message receivers on SVM blockchains
2626

2727
### Token Pool Components
2828

29-
- [Base Token Pool Library](/ccip/api-reference/svm/v1.6.0/base-token-pool) - Shared library providing common functionality for all token pool implementations
30-
- [BurnMint Token Pool](/ccip/api-reference/svm/v1.6.0/burn-mint-token-pool) - Token pool implementation using burn and mint strategy for cross-chain transfers
31-
- [Lock-Release Token Pool](/ccip/api-reference/svm/v1.6.0/lock-release-token-pool) - Token pool implementation using lock and release strategy with liquidity management
29+
- [Base Token Pool Library](/ccip/api-reference/svm/v0.1.1/base-token-pool) - Shared library providing common functionality for all token pool implementations
30+
- [BurnMint Token Pool](/ccip/api-reference/svm/v0.1.1/burn-mint-token-pool) - Token pool implementation using burn and mint strategy for cross-chain transfers
31+
- [Lock-Release Token Pool](/ccip/api-reference/svm/v0.1.1/lock-release-token-pool) - Token pool implementation using lock and release strategy with liquidity management
3232

3333
### Reference Materials
3434

35-
- [Events](/ccip/api-reference/svm/v1.6.0/events) - Event emissions for tracking cross-chain messages and token operations
36-
- [Errors](/ccip/api-reference/svm/v1.6.0/errors) - Comprehensive list of CCIP error codes and troubleshooting guidance
35+
- [Events](/ccip/api-reference/svm/v0.1.1/events) - Event emissions for tracking cross-chain messages and token operations
36+
- [Errors](/ccip/api-reference/svm/v0.1.1/errors) - Comprehensive list of CCIP error codes and troubleshooting guidance

src/content/ccip/api-reference/svm/v1.6.0/lock-release-token-pool.mdx renamed to src/content/ccip/api-reference/svm/v0.1.1/lock-release-token-pool.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM Lock-Release Token Pool API Reference"
4+
title: "CCIP v0.1.1 SVM Lock-Release Token Pool API Reference"
55
metadata:
66
description: "Comprehensive API documentation for the Lock-Release Token Pool program on SVM-based blockchains like Solana. Complete guide covering lock and release operations, liquidity management, token pool configuration, cross-chain token transfers, and rebalancer functionality for seamless interoperability."
77
excerpt: "Lock-Release Token Pool, SVM lock release pool, Solana token pool, cross-chain token transfers, lock and release operations, liquidity management, token pool configuration, rebalancer, CCIP token pools"

src/content/ccip/api-reference/svm/v1.6.0/messages.mdx renamed to src/content/ccip/api-reference/svm/v0.1.1/messages.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
section: ccip
33
date: Last Modified
4-
title: "CCIP v1.6.0 SVM Messages API Reference"
4+
title: "CCIP v0.1.1 SVM Messages API Reference"
55
metadata:
66
description: "Complete API documentation for CCIP message structures and extra arguments on SVM-based blockchains like Solana. Includes detailed specifications for cross-chain message formatting, token transfer data, receiver arguments, and message construction for seamless blockchain interoperability."
77
excerpt: "CCIP messages, SVM message structure, cross-chain messaging, Solana messages, token transfer data, receiver arguments, message formatting, blockchain interoperability, extra args"

0 commit comments

Comments
 (0)