Skip to content

Commit 3f6c5f0

Browse files
committed
fix: bump selectors
Signed-off-by: Pablo <[email protected]>
1 parent bc2c4e9 commit 3f6c5f0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/joho/godotenv v1.5.1
1717
github.com/karalabe/hid v1.0.1-0.20240306101548-573246063e52
1818
github.com/samber/lo v1.52.0
19-
github.com/smartcontractkit/chain-selectors v1.0.93
19+
github.com/smartcontractkit/chain-selectors v1.0.96
2020
github.com/smartcontractkit/chainlink-aptos v0.0.0-20251024142440-51f2ad2652a2
2121
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260121163256-85accaf3d28d
2222
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,8 @@ github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMB
634634
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
635635
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
636636
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
637-
github.com/smartcontractkit/chain-selectors v1.0.93 h1:nJy9PAj9oShZW/zR21LvqNApJXlZ8TLXVWtJx4rbIio=
638-
github.com/smartcontractkit/chain-selectors v1.0.93/go.mod h1:qy7whtgG5g+7z0jt0nRyii9bLND9m15NZTzuQPkMZ5w=
637+
github.com/smartcontractkit/chain-selectors v1.0.96 h1:K3hK9kdPWiRFPXH5r5d1sSVBRPjlP6dwaTHXasa8UMY=
638+
github.com/smartcontractkit/chain-selectors v1.0.96/go.mod h1:qy7whtgG5g+7z0jt0nRyii9bLND9m15NZTzuQPkMZ5w=
639639
github.com/smartcontractkit/chainlink-aptos v0.0.0-20251024142440-51f2ad2652a2 h1:vGdeMwHO3ow88HvxfhA4DDPYNY0X9jmdux7L83UF/W8=
640640
github.com/smartcontractkit/chainlink-aptos v0.0.0-20251024142440-51f2ad2652a2/go.mod h1:iteU0WORHkArACVh/HoY/1bipV4TcNcJdTmom9uIT0E=
641641
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260121163256-85accaf3d28d h1:xdFpzbApEMz4Rojg2Y2OjFlrh0wu7eB10V2tSZGW5y8=

sdk/evm/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func getEVMChainID(ctx context.Context, sel types.ChainSelector, isSim bool) (ui
7171
return SimulatedEVMChainID, nil
7272
}
7373

74-
evmChain, exists, err := chainselremote.EvmChainBySelector(ctx, uint64(sel), chainselremote.WithFallbackToLocal(true))
74+
evmChain, exists, err := chainselremote.EvmChainBySelector(ctx, uint64(sel))
7575
if err != nil || !exists {
7676
return 0, &sdkerrors.InvalidChainIDError{
7777
ReceivedChainID: sel,

types/chain_selector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func GetChainSelectorFamily(sel ChainSelector) (string, error) {
3939
// this function is used in a lot of places, and passing the context through all of them would be a big breaking change
4040
// so a bigger refactor may be needed to properly pass context through all the layers that use this function
4141
ctx := context.Background()
42-
details, err := chainselremote.GetChainDetailsBySelector(ctx, uint64(sel), chainselremote.WithFallbackToLocal(true))
42+
details, err := chainselremote.GetChainDetailsBySelector(ctx, uint64(sel))
4343
if err != nil {
4444
// Remote selectors may not include dev/test selectors; fall back to local map.
4545
family, localErr := chainsel.GetSelectorFamily(uint64(sel))

0 commit comments

Comments
 (0)