From 3e26304ca32f919fa1c182c6c56687c6c3411413 Mon Sep 17 00:00:00 2001 From: jeremy-consensys Date: Wed, 22 Apr 2026 13:50:21 +0700 Subject: [PATCH] fix(controller-utils): update Sei Mainnet explorer to seiscan.io --- packages/controller-utils/CHANGELOG.md | 5 +++++ packages/controller-utils/src/types.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/controller-utils/CHANGELOG.md b/packages/controller-utils/CHANGELOG.md index 4d211062157..fb7c7f36159 100644 --- a/packages/controller-utils/CHANGELOG.md +++ b/packages/controller-utils/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Update default Sei Mainnet block explorer URL from `seitrace.com` to + `seiscan.io` (`BuiltInNetworkName.SeiMainnet`). + ## [11.20.0] ### Added diff --git a/packages/controller-utils/src/types.ts b/packages/controller-utils/src/types.ts index 42453a22c85..93061e4d768 100644 --- a/packages/controller-utils/src/types.ts +++ b/packages/controller-utils/src/types.ts @@ -179,7 +179,7 @@ export const BlockExplorerUrl = { [BuiltInNetworkName.BscMainnet]: 'https://bscscan.com', [BuiltInNetworkName.OptimismMainnet]: 'https://optimistic.etherscan.io', [BuiltInNetworkName.PolygonMainnet]: 'https://polygonscan.com', - [BuiltInNetworkName.SeiMainnet]: 'https://seitrace.com', + [BuiltInNetworkName.SeiMainnet]: 'https://seiscan.io', } as const satisfies Record; export type BlockExplorerUrl = (typeof BlockExplorerUrl)[keyof typeof BlockExplorerUrl];