Skip to content

Add clarifications on tokens #1673

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 @@ -16,6 +16,7 @@ type ConfigProps = {
}

const contactUrl = "https://chainlinkcommunity.typeform.com/ccip-form?typeform-source=docs.chain.link#ref_id=ccip_docs"
const arbMsgDocUrl = "/ccip/tutorials/send-arbitrary-data"
const { laneConfig, sourceChain, environment, sourceChainRefId } = Astro.props as ConfigProps
const { rateLimiterConfig, supportedTokens } = laneConfig

Expand Down Expand Up @@ -167,6 +168,11 @@ if (supportedTokens) {
<>
<p>
<strong>Supported tokens</strong>
<Aside>
Only these listed CCIP test tokens are currently supported. Custom testnet tokens are not supported. You can
mint CCIP test tokens <a href="/ccip/test-tokens#mint-test-tokens">in the documentation</a> or on a block
explorer.
</Aside>
</p>
<table>
<thead>
Expand Down Expand Up @@ -236,8 +242,9 @@ if (supportedTokens) {
</>
) : (
<Aside>
No tokens have currently been listed on this lane. Token issuers may <a href={contactUrl}>contact us</a> to have
their token listed.
No tokens are currently listed on this lane. Token issuers may <a href={contactUrl}>contact us</a> to have their
token listed. Custom tokens are not supported. You can send data on this lane by using
<a href={arbMsgDocUrl}>arbitrary messaging</a>.
</Aside>
)
}