Skip to content
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

scroll #2114

Merged
merged 8 commits into from
Oct 10, 2024
Merged

scroll #2114

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
11 changes: 11 additions & 0 deletions public/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
[
{
"category": "integration",
"changes": [],
"date": "2024-10-10",
"description": "Chainlink CCIP is publicly available on Scroll mainnet and testnet.\n\n- Visit the [Supported Networks](https://docs.chain.link/ccip/supported-networks) page for more information.",
"relatedNetworks": ["scroll"],
"relatedTokens": [],
"title": "CCIP on Scroll",
"topic": "ccip",
"urls": []
},
{
"category": "integration",
"changes": [],
Expand Down
9 changes: 6 additions & 3 deletions src/config/data/ccip/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,18 @@ export type RateLimiterConfig = {
}

export type SupportedTokenConfig = {
rateLimiterConfig: RateLimiterConfig
rateLimiterConfig?: {
in?: RateLimiterConfig
out?: RateLimiterConfig
}
}
export type SupportedTokensConfig = {
[token: string]: SupportedTokenConfig
}

export type LaneConfig = {
supportedTokens?: SupportedTokensConfig
rateLimiterConfig: RateLimiterConfig
rateLimiterConfig?: RateLimiterConfig
onRamp: {
address: string
version: string
Expand All @@ -29,7 +32,7 @@ export type DestinationsLaneConfig = {
[destinationChain: string]: LaneConfig
}

export type PoolType = "lockRelease" | "burnMint" | "usdc"
export type PoolType = "lockRelease" | "burnMint" | "usdc" | "feeTokenOnly"

type PoolInfo = {
tokenAddress: string
Expand Down
Loading