Skip to content

Commit

Permalink
scroll (#2114)
Browse files Browse the repository at this point in the history
* update

* update

* update

* remove kroma testnet

* put kroma

* update

* update

* empty
  • Loading branch information
aelmanaa authored Oct 10, 2024
1 parent 89fbf2d commit a624c1b
Show file tree
Hide file tree
Showing 15 changed files with 10,636 additions and 7,616 deletions.
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

0 comments on commit a624c1b

Please sign in to comment.