-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* RMN init * Scaffolding * Local only * Fix import cycle * Improve readability * Simplifying more * Fixes * More readability * Drop always pull, images working * change to evmNetworks * Fix key extraction * Lint and RMN names * Comments * More comments * Fix test --------- Co-authored-by: AnieeG <[email protected]> Co-authored-by: Anindita Ghosh <[email protected]>
- Loading branch information
1 parent
e9b3397
commit fa1a1e2
Showing
8 changed files
with
717 additions
and
12 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,18 @@ | ||
package ccipdeployment | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/smartcontractkit/chainlink/v2/core/logger" | ||
) | ||
|
||
func TestRMN(t *testing.T) { | ||
t.Skip("Local only") | ||
// TODO: needs to return RMN peerIDs. | ||
_, rmnCluster := NewLocalDevEnvironmentWithRMN(t, logger.TestLogger(t)) | ||
for rmnNode, rmn := range rmnCluster.Nodes { | ||
t.Log(rmnNode, rmn.Proxy.PeerID, rmn.RMN.OffchainPublicKey, rmn.RMN.EVMOnchainPublicKey) | ||
} | ||
// Use peerIDs to set RMN config. | ||
// Add a lane, send a message. | ||
} |
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
Oops, something went wrong.