-
Notifications
You must be signed in to change notification settings - Fork 16
Merge main -> develop (10/17/2025) #1297
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
base: develop
Are you sure you want to change the base?
Conversation
* new fq * add zksync too * forge fmt * fix test * fix snapshot * update gowrappers for latest * nit * fixed process chain fam sel * update latest wrappers * nit * rens feedback * rebased * fix dependency version * cleanup * cleanup * remove wrapper dependency version.txt * rebased * make wrappers --------- Co-authored-by: FelixFan1992 <[email protected]>
* remove trailing slash * move MockRouter test * add snapshot * refresh pnpm lock * upgrade foundry and refresh snapshot
* [CCIP-7478] Add README covering CCIP tooling design & usage * Bump * Add lanes example * Add more connections
* add bytecode gen warning * bump to 1.6.3 and bump contract not in scope to 1.6.4 * update changelog * Delete dup chains/evm/bytecode/README.MD * use 1.6.x instead of versions to reduce churn * improve genning bytecode * Update CHANGELOG.md * add 1.6.3 feeQuoter to wrapper folder * remove -dev * include ABI extraction from wrappers * fix inclusion in package * Error on error
* gen zk + metadata * add msg hasher
* define MCM deployment api * fix codegen
* wip * working deploy * go mod * connect test * add go.md * go mod * cr comments * cr comments
Bumps [github.com/btcsuite/btcd](https://github.com/btcsuite/btcd) from 0.24.0 to 0.24.2. - [Release notes](https://github.com/btcsuite/btcd/releases) - [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES) - [Commits](btcsuite/btcd@v0.24.0...v0.24.2) --- updated-dependencies: - dependency-name: github.com/btcsuite/btcd dependency-version: 0.24.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rens Rooimans <[email protected]>
* Update .gitignore * Update .gitignore
/// @dev This contract is a variant of BurnMintTokenPool that uses `burn(amount)`. | ||
contract BurnMintTokenPool is BurnMintTokenPoolAbstract, ITypeAndVersion { | ||
string public constant override typeAndVersion = "BurnMintTokenPool 1.6.3-dev"; | ||
string public constant override typeAndVersion = "BurnMintTokenPool 1.7.0-dev"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated all the token pool versions, pools on develop are CCV enabled and versions should reflect that.
+ 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table | ||
+ 32 // per-chain token pool config, not included in the token lookup table | ||
+ 32; // per-chain token billing config, not always included in the token lookup table | ||
uint256 public constant SUI_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool, 4 bytes for length, 32 bytes for address |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Remove all Sui references?
|
||
// According to the Sui docs, a set of non-contiguous addresses below 0xdee9 are reserved for system use. | ||
// https://github.com/MystenLabs/sui/blob/54ae98508569804127bd73d84aa2fb816bdea402/crates/sui-types/src/lib.rs#L141 | ||
uint256 public constant SUI_PRECOMPILE_SPACE = 0xdee9; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Remove all Sui references?
|
No description provided.