Skip to content

Commit c62bce8

Browse files
committed
Merge branch 'datastreams-supported-networks-update' of github.com:smartcontractkit/documentation into datastreams-supported-networks-update
2 parents 9abb1d8 + 8f40df4 commit c62bce8

File tree

134 files changed

+11271
-1310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+11271
-1310
lines changed

package-lock.json

Lines changed: 35 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@chainlink/cl-search-frontend": "^0.12.0",
6363
"@chainlink/components": "^0.4.18",
6464
"@chainlink/contracts": "1.5.0",
65-
"@chainlink/contracts-ccip": "1.6.2",
65+
"@chainlink/contracts-ccip": "1.6.3",
6666
"@chainlink/design-system": "^0.2.8",
6767
"@chainlink/local": "0.2.7-beta",
6868
"@chainlink/solana-sdk": "^0.2.2",
@@ -109,7 +109,6 @@
109109
},
110110
"devDependencies": {
111111
"@apidevtools/swagger-parser": "^10.1.1",
112-
"solhint-plugin-chainlink-solidity": "github:smartcontractkit/chainlink-solhint-rules#v1.3.0",
113112
"@jest/globals": "^29.7.0",
114113
"@project-serum/anchor": "^0.26.0",
115114
"@rollup/plugin-yaml": "^4.1.2",
@@ -139,16 +138,17 @@
139138
"pino-pretty": "^13.1.2",
140139
"prettier": "^3.5.3",
141140
"prettier-plugin-astro": "^0.14.1",
141+
"remark-gfm": "^4.0.0",
142+
"remark-mdx": "^3.1.0",
143+
"remark-parse": "^11.0.0",
144+
"remark-stringify": "^11.0.0",
142145
"solhint": "^6.0.1",
146+
"solhint-plugin-chainlink-solidity": "github:smartcontractkit/chainlink-solhint-rules#v1.3.0",
143147
"ts-jest": "^29.4.5",
144148
"tsconfig-paths": "^4.2.0",
145149
"tsx": "^4.20.6",
146150
"typescript": "^5.9.3",
147151
"unified": "^11.0.4",
148-
"remark-parse": "^11.0.0",
149-
"remark-mdx": "^3.1.0",
150-
"remark-gfm": "^4.0.0",
151-
"remark-stringify": "^11.0.0",
152152
"unist-util-visit": "^5.0.0",
153153
"vite": "^6.4.1"
154154
},
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/** @jsxImportSource react */
2+
import { useStore } from "@nanostores/react"
3+
import { selectedChainType } from "~/stores/chainType.js"
4+
import { Callout } from "@components/Callout/Callout.tsx"
5+
6+
export function AptosCCTCallout() {
7+
const chainType = useStore(selectedChainType)
8+
9+
if (chainType !== "aptos") {
10+
return null
11+
}
12+
13+
return (
14+
<Callout type="caution" title="Aptos CCT Documentation Coming Soon">
15+
Cross-Chain Token (CCT) implementation documentation for Aptos is currently in development. If you are a token
16+
developer and wish to enable your token on Aptos, please submit your project details via this{" "}
17+
<a href="https://chain.link/ccip-contact">contact form</a>. When filling out the form, select{" "}
18+
<strong>Token admin registration</strong> as the support request type.
19+
</Callout>
20+
)
21+
}

src/components/CCIP/TutorialBlockchainSelector/AdminSetupStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { TutorialStep } from "../TutorialSetup/TutorialStep.tsx"
66
import { NetworkAddress } from "./NetworkAddress.tsx"
77
import { StepCheckbox } from "../TutorialProgress/StepCheckbox.tsx"
88
import { SolidityParam } from "../TutorialSetup/SolidityParam.tsx"
9-
import { Callout } from "../TutorialSetup/Callout.tsx"
9+
import { Callout } from "@components/Callout/Callout.tsx"
1010
import styles from "./AdminSetupStep.module.css"
1111

1212
interface AdminSetupStepProps {

src/components/CCIP/TutorialBlockchainSelector/ChainUpdateBuilder.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { laneStore, type RateLimiterConfig, updateRateLimits } from "~/stores/la
44
import { useStore } from "@nanostores/react"
55
import styles from "./ChainUpdateBuilder.module.css"
66
import { ErrorBoundary } from "~/components/ErrorBoundary.tsx"
7-
import { Callout } from "../TutorialSetup/Callout.tsx"
7+
import { Callout } from "@components/Callout/Callout.tsx"
88

99
interface ChainUpdateBuilderProps {
1010
chain: "source" | "destination"

src/components/CCIP/TutorialBlockchainSelector/ContractVerificationStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { TutorialStep } from "../TutorialSetup/TutorialStep.tsx"
2-
import { Callout } from "../TutorialSetup/Callout.tsx"
2+
import { Callout } from "@components/Callout/Callout.tsx"
33
import type { Network } from "~/config/data/ccip/types.ts"
44
import styles from "./ContractVerificationStep.module.css"
55
import { getExplorerAddressUrl } from "~/features/utils/index.ts"

src/components/CCIP/TutorialBlockchainSelector/DeployPoolStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { SolidityParam } from "../TutorialSetup/SolidityParam.tsx"
99
import { StoredContractAddress } from "./StoredContractAddress.tsx"
1010
import { NetworkAddress } from "./NetworkAddress.tsx"
1111
import { ContractVerificationStep } from "./ContractVerificationStep.tsx"
12-
import { Callout } from "../TutorialSetup/Callout.tsx"
12+
import { Callout } from "@components/Callout/Callout.tsx"
1313
import type { LaneState, DeployedContracts } from "~/stores/lanes/index.ts"
1414
import styles from "./DeployPoolStep.module.css"
1515
import { isAddress } from "ethers"

src/components/CCIP/TutorialBlockchainSelector/DeployTokenStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { TutorialCard } from "../TutorialSetup/TutorialCard.tsx"
55
import { TutorialStep } from "../TutorialSetup/TutorialStep.tsx"
66
import { NetworkCheck } from "../TutorialSetup/NetworkCheck.tsx"
77
import { SolidityParam } from "../TutorialSetup/SolidityParam.tsx"
8-
import { Callout } from "../TutorialSetup/Callout.tsx"
8+
import { Callout } from "@components/Callout/Callout.tsx"
99
import { ContractVerificationStep } from "./ContractVerificationStep.tsx"
1010
import type { LaneState, DeployedContracts } from "~/stores/lanes/index.ts"
1111
import styles from "./DeployTokenStep.module.css"

src/components/CCIP/TutorialBlockchainSelector/GrantPrivilegesStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { NetworkCheck } from "../TutorialSetup/NetworkCheck.tsx"
55
import { StepCheckbox } from "../TutorialProgress/StepCheckbox.tsx"
66
import { SolidityParam } from "../TutorialSetup/SolidityParam.tsx"
77
import { StoredContractAddress } from "./StoredContractAddress.tsx"
8-
import { Callout } from "../TutorialSetup/Callout.tsx"
8+
import { Callout } from "@components/Callout/Callout.tsx"
99
import { TutorialCard } from "../TutorialSetup/TutorialCard.tsx"
1010
import styles from "./GrantPrivilegesStep.module.css"
1111

src/components/CCIP/TutorialBlockchainSelector/PoolConfigVerification.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import styles from "./PoolConfigVerification.module.css"
66
import { TutorialCard, TutorialStep } from "../TutorialSetup/index.ts"
77
import { NetworkCheck } from "../TutorialSetup/NetworkCheck.tsx"
88
import { SolidityParam } from "../TutorialSetup/SolidityParam.tsx"
9-
import { Callout } from "../TutorialSetup/Callout.tsx"
9+
import { Callout } from "@components/Callout/Callout.tsx"
1010
import { StepCheckbox } from "../TutorialProgress/StepCheckbox.tsx"
1111

1212
type ChainType = "source" | "destination"

0 commit comments

Comments
 (0)