UNPKG

gill

Version:

a modern javascript/typescript client library for interacting with the Solana blockchain

18 lines 491 B
import type { SolanaClusterMoniker } from "./rpc"; type ExplorerLinkAccount = { address: string; }; type ExplorerLinkTransaction = { transaction: string; }; type ExplorerLinkBlock = { block: string; }; /** * @param cluster - Default: `mainnet` */ export type GetExplorerLinkArgs = { cluster?: SolanaClusterMoniker | "mainnet-beta" | "localhost"; } & (ExplorerLinkAccount | ExplorerLinkTransaction | ExplorerLinkBlock | {}); export {}; //# sourceMappingURL=explorer.d.ts.map