Skip to content

Commit 9a63731

Browse files
DOC-1304 : Promote CCIP new solidity NPM release (1.6.1) (#115)
1 parent 23bd1ad commit 9a63731

File tree

18 files changed

+263
-193
lines changed

18 files changed

+263
-193
lines changed

ccip/ccip-cla-rate-limits/package-lock.json

Lines changed: 61 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ccip/ccip-cla-rate-limits/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"devDependencies": {
55
"@chainlink/contracts": "^1.4.0",
6-
"@chainlink/contracts-ccip": "^1.6.0",
6+
"@chainlink/contracts-ccip": "^1.6.1",
77
"@chainlink/local": "^0.2.5-beta.0",
88
"@openzeppelin/contracts": "^5.0.2"
99
}

ccip/cct/foundry/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ The script pulls the token address from a previously deployed token in a JSON fi
338338

339339
- **Config-based Deployment**: The script automatically retrieves the token address from the JSON file generated during token deployment. Ensure the token is deployed before running this script.
340340
- **Chain Name**: The script automatically determines the current chain based on the `block.chainid` and saves the deployed token pool address in a file located in `script/output/`.
341-
- **Accept Liquidity**: In the script, `acceptLiquidity` is set to `false`. If you want the pool to accept liquidity, you may need to modify this parameter in the script.
342341

343342
## DeployToken
344343

ccip/cct/foundry/package-lock.json

Lines changed: 58 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ccip/cct/foundry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
33
"@chainlink/contracts": "^1.4.0",
4-
"@chainlink/contracts-ccip": "^1.6.0"
4+
"@chainlink/contracts-ccip": "^1.6.1"
55
}
66
}

ccip/cct/foundry/script/DeployLockReleaseTokenPool.s.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ contract DeployLockReleaseTokenPool is Script {
3737
18, // The number of decimals of the token
3838
new address[](0), // Empty array for initial operators
3939
rmnProxy,
40-
false, // Set acceptLiquidity to false
4140
router
4241
);
4342

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"deployedTokenPool_ethereumSepolia": "0x316AC00a6126f967322220b1f58944965A341709"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"deployedToken_ethereumSepolia": "0xd5a7123c1Ce4269B839356E1d63f547981bc2a24"
3+
}

ccip/cct/hardhat/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,6 @@ npx hardhat deployTokenPool [parameters]
237237
- `"lockRelease"`: A pool that supports locking and releasing tokens.
238238
- `--localtokendecimals`: **integer** (default: `18`)
239239
- The number of decimals for the token on this chain.
240-
- `--acceptliquidity`: **boolean** (default: `false`)
241-
- Indicates if liquidity should be accepted in the pool. This option only applies to the `"lockRelease"` pool type.
242240
- `--verifycontract`: **boolean** (default: `false`)
243241
- If set to `true`, the contract will be verified on a blockchain explorer like Etherscan.
244242

@@ -255,7 +253,6 @@ npx hardhat deployTokenPool \
255253
npx hardhat deployTokenPool \
256254
--tokenaddress 0xYourTokenAddress \
257255
--pooltype lockRelease \
258-
--acceptliquidity true \
259256
--network avalancheFuji
260257
```
261258

0 commit comments

Comments
 (0)