Skip to content

Commit

Permalink
Switching repo name to chain-selectors (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-sekara authored Aug 23, 2023
1 parent 8399866 commit 0cd3b62
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# CCIP chain selectors
# Chain Selectors

CCIP uses its own set of chain selectors represented by uint64 to identify blockchains. This repository contains a
mapping between the CCIP chain identifiers (`chainSelectorId`) and the chain identifiers used by the blockchains
mapping between the custom chain identifiers (`chainSelectorId`) and the chain identifiers used by the blockchains
themselves (`chainId`).

Please refer to the [official documentation](https://docs.chain.link/ccip/supported-networks) to learn more about
supported networks and their selectors.

### Installation

`go get github.com/smartcontract/ccip-chain-selectors`
`go get github.com/smartcontractkit/chain-selectors`

### Usage

Expand Down Expand Up @@ -41,4 +41,4 @@ details from this file. This ensures that all client libraries are in sync and u
If you need a support for a new language, please open a PR with the following changes:
- Library codebase is in a separate directory
- Library uses selectors.yml as a source of truth
- Proper Github workflow is present to make sure code compiles and tests pass
- Proper Github workflow is present to make sure code compiles and tests pass
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/smartcontractkit/ccip-chain-selectors
module github.com/smartcontractkit/chain-selectors

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion selectors.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ccip_chain_selectors
package chain_selectors

import (
_ "embed"
Expand Down
2 changes: 1 addition & 1 deletion selectors_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ccip_chain_selectors
package chain_selectors

import "testing"

Expand Down

0 comments on commit 0cd3b62

Please sign in to comment.