BluxBlux

Explorer

Configure which Stellar block explorer Blux uses for transaction links.

The explorer option sets which Stellar block explorer is used when a user clicks transaction links — such as "See all in explorer" on the history page, a recent transaction entry, or "See in explorer" after a successful transaction.

The default is stellarchain.

Type

type IExplorer = "steexp" | "stellarchain" | "stellarexpert" | "lumenscan";

Usage

<BluxProvider
  config={{
    explorer: "lumenscan",
  }}
>
  {children}
</BluxProvider>
createConfig({
  explorer: "lumenscan",
});

On this page