Skip to content

Commit 68a080e

Browse files
committed
ccip family aware sidebar
1 parent 67fb4fd commit 68a080e

File tree

65 files changed

+3871
-1104
lines changed

Some content is hidden

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

65 files changed

+3871
-1104
lines changed
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"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)