-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ccip-develop' into feature/ccip-2493
- Loading branch information
Showing
37 changed files
with
4,388 additions
and
1,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"ccip": patch | ||
--- | ||
|
||
New function on NetworkSelector to get ChainID #added | ||
Align logs and include chainID #changed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"ccip": patch | ||
--- | ||
|
||
add offchainConfig value to know after what time the offchain code should stop attempting a tx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"ccip": patch | ||
--- | ||
|
||
Increased gas limit for LM transmitter to 5e6 #changed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@chainlink/contracts-ccip': minor | ||
--- | ||
|
||
#changed MultiOffRamp contract size optimizations |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
497 changes: 497 additions & 0 deletions
497
contracts/src/v0.8/ccip/capability/CCIPCapabilityConfiguration.sol
Large diffs are not rendered by default.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
contracts/src/v0.8/ccip/capability/interfaces/ICapabilityRegistry.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.24; | ||
|
||
interface ICapabilityRegistry { | ||
struct NodeInfo { | ||
/// @notice The id of the node operator that manages this node | ||
uint32 nodeOperatorId; | ||
/// @notice The signer address for application-layer message verification. | ||
bytes32 signer; | ||
/// @notice This is an Ed25519 public key that is used to identify a node. | ||
/// This key is guaranteed to be unique in the CapabilityRegistry. It is | ||
/// used to identify a node in the the P2P network. | ||
bytes32 p2pId; | ||
/// @notice The list of hashed capability IDs supported by the node | ||
bytes32[] hashedCapabilityIds; | ||
} | ||
|
||
/// @notice Gets a node's data | ||
/// @param p2pId The P2P ID of the node to query for | ||
/// @return NodeInfo The node data | ||
/// @return configCount The number of times the node has been configured | ||
function getNode(bytes32 p2pId) external view returns (NodeInfo memory, uint32 configCount); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.