Skip to content
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

VRF-1135: Update super scripts for BHS backward mode to include Nexon… #13792

Merged
merged 3 commits into from
Jul 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions core/scripts/common/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -590,10 +590,11 @@ func IsAvaxNetwork(chainID int64) bool {
func IsAvaxSubnet(chainID int64) bool {
return chainID == 335 || // DFK testnet
chainID == 53935 || // DFK mainnet
chainID == 955081 || // Nexon Dev
chainID == 5668 || // Nexon Dev
chainID == 595581 || // Nexon Test
chainID == 807424 || // Nexon QA
chainID == 847799 // Nexon Stage
chainID == 847799 || // Nexon Stage
chainID == 60118 // Nexon Mainnet
}

func UpkeepLink(chainID int64, upkeepID *big.Int) string {
Expand Down
Loading