Stargazer is comprised of many modules which will be based on tiers.
Binance Smart Chain
eip155:56
#606ba2
STARDUST
9
Stargazer is comprised of many modules which will be based on tiers. Rugcheck - Ability to rug check a coin and get a rug score. Whale Watch - Watch a wallets movements in real time. Get alerts when buy/sells happen. Adjust the alerts to show only buys, or only sells, or both. Harpoon - With a simple list of coins and a very recent list of holders of one of those coins you can identify a person of interest's wallet address with the harpoon technology.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xf647d6b49ea7bb880ecbcff9913df0d634875d33";
const frontmatter = await xmatter.getFrontmatter(chainId, address);
return (
<div>
<XmatterIcon
client={xmatter}
chainId={chainId}
address={address}
width={64} height={64}
alt={`${frontmatter.name} Icon`}
fallback={<div className="size-[64px] rounded-full bg-[#aaa]" />}
/>
<h1>{frontmatter.name}</h1>
<p>{frontmatter.symbol}: {frontmatter.decimals} decimals</p>
</div>
);
}import { RemotePattern } from "xmatter/next";
const nextConfig = {
images: {
remotePatterns: [RemotePattern],
},
};