Skip to content

Commit c515dc3

Browse files
authored
regression: fix EVM should change source addresses (zero-pad to 32B) on calculateManualExecProof (#31)
* calculateManualExecProof: fix evm changing source message addresses * chore: bump deps, selectors, prepare v0.2.6 release * fixup! calculateManualExecProof: fix evm changing source message addresses
1 parent b8ca5a5 commit c515dc3

File tree

8 files changed

+161
-90
lines changed

8 files changed

+161
-90
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.6] - 2025-04-29
10+
- regression: change source addresses for EVMv1.6 calculateManualExecProof (#31)
11+
912
## [0.2.5] - 2025-04-28
1013
- fix decoding of solana addresses in EVMv1.6 hasher (#30)
1114

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainlink/ccip-tools-ts",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"description": "CLI and library to interact with CCIP",
55
"author": "Chainlink devs",
66
"license": "MIT",
@@ -39,9 +39,9 @@
3939
"jest": "29.7.0",
4040
"prettier": "3.5.3",
4141
"ts-jest": "29.3.2",
42-
"tsx": "4.19.3",
42+
"tsx": "4.19.4",
4343
"typescript": "5.8.3",
44-
"typescript-eslint": "8.31.0"
44+
"typescript-eslint": "8.31.1"
4545
},
4646
"dependencies": {
4747
"@inquirer/prompts": "7.5.0",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Providers } from './providers.ts'
2222
util.inspect.defaultOptions.depth = 6 // print down to tokenAmounts in requests
2323
// generate:nofail
2424
// `const VERSION = '${require('./package.json').version}-${require('child_process').execSync('git rev-parse --short HEAD').toString().trim()}'`
25-
const VERSION = '0.2.5-e251c95'
25+
const VERSION = '0.2.6-1630b9e'
2626
// generate:end
2727

2828
async function main() {

0 commit comments

Comments
 (0)