Skip to content

Commit 809e497

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/linting-tools-2e51da7400
2 parents 5c8509b + 6ad8b3c commit 809e497

File tree

4 files changed

+26
-11
lines changed

4 files changed

+26
-11
lines changed

public/changelog.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,21 @@
298298
}
299299
},
300300
"data": [
301+
{
302+
"category": "integration",
303+
"date": "2025-07-06",
304+
"description": "Newly supported tokens: MEW",
305+
"relatedTokens": [
306+
{
307+
"assetName": "cat in a dogs world",
308+
"baseAsset": "MEW",
309+
"url": "https://docs.chain.link/ccip/directory/mainnet/token/MEW",
310+
"iconUrl": "https://d2f70xi62kby8n.cloudfront.net/tokens/mew.webp?auto=compress%2Cformat"
311+
}
312+
],
313+
"title": "Cross-chain token (CCT) standard: Added support for new tokens",
314+
"topic": "CCIP"
315+
},
301316
{
302317
"category": "integration",
303318
"date": "2025-07-02",

src/config/web3Providers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const chainToProvider: Record<SupportedChain, () => Provider> = {
139139
OPBNB_MAINNET: () => new JsonRpcProvider("https://opbnb-mainnet-rpc.bnbchain.org"),
140140
OPBNB_TESTNET: () => new JsonRpcProvider("https://opbnb-testnet-rpc.bnbchain.org"),
141141
JANCTION_MAINNET: () => new JsonRpcProvider("https://rpc.janction.io"),
142-
JANCTION_TESTNET: () => new JsonRpcProvider("hhttps://rpc_testnet.janction.io"),
142+
JANCTION_TESTNET: () => new JsonRpcProvider("https://rpc_testnet.janction.io"),
143143
NEO_X_MAINNET: () => new JsonRpcProvider("https://mainnet-1.rpc.banelabs.org"),
144144
NEO_X_TESTNET: () => new JsonRpcProvider("https://testnet.rpc.banelabs.org"),
145145
KATANA_TATARA: () => new JsonRpcProvider("https://rpc.tatara.katanarpc.com"),

src/content/chainlink-nodes/v1/node-config.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ PeerID = '12D3KooWMoejJznyDuEk5aX6GvbjaG12UzeornPCBNzMRqdwrFJw' # Example
14181418
TraceLogging = false # Default
14191419
```
14201420

1421-
P2P has a versioned networking stack. Currenly only `[P2P.V2]` is supported.
1421+
P2P has a versioned networking stack. Currently only `[P2P.V2]` is supported.
14221422
All nodes in the OCR network should share the same networking stack.
14231423

14241424
### IncomingMessageBufferSize
@@ -17158,7 +17158,7 @@ Ensure the value is greater than the number of blocks that would be produced bet
1715817158
ComputeUnitLimitDefault = 200_000 # Default
1715917159
```
1716017160

17161-
ComputeUnitLimitDefault is the compute units limit applied to transactions unless overriden during the txm enqueue
17161+
ComputeUnitLimitDefault is the compute units limit applied to transactions unless overridden during the txm enqueue
1716217162

1716317163
### EstimateComputeUnitLimit
1716417164

src/scripts/ccip/detect-new-tokens.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1614,17 +1614,17 @@ async function generateChangelogEntry(
16141614
}
16151615

16161616
// Format the JSON with prettier using project config
1617-
const prettierConfig = (await prettier.resolveConfig(process.cwd())) || {}
1617+
const prettierConfig = await prettier.resolveConfig(process.cwd())
16181618

1619-
// Write the changelog json to the file first
1620-
fs.writeFileSync(FILE_PATHS.CHANGELOG, JSON.stringify(changelog))
1621-
1622-
// Then format the file directly using prettier API
1623-
const formatted = await prettier.format(fs.readFileSync(FILE_PATHS.CHANGELOG, "utf8"), {
1619+
// Format the JSON content directly before writing (like detect-new-data.ts)
1620+
const formattedJson = await prettier.format(JSON.stringify(changelog), {
16241621
...prettierConfig,
1625-
filepath: FILE_PATHS.CHANGELOG, // This ensures the correct parser based on file extension
1622+
parser: "json", // Explicitly specify JSON parser
16261623
})
1627-
fs.writeFileSync(FILE_PATHS.CHANGELOG, formatted)
1624+
1625+
// Write the formatted content directly
1626+
fs.writeFileSync(FILE_PATHS.CHANGELOG, formattedJson, "utf8")
1627+
16281628
const changelogSize = fs.statSync(FILE_PATHS.CHANGELOG).size
16291629

16301630
logger.debug(

0 commit comments

Comments
 (0)