ChainBounty is a Web3 platform where cybercrime victims post bounties to crowdsource investigations.It uses 'Bounty' tokens for transactions, incentivizing private investigators to resolve cases.
Arbitrum One
eip155:42161
#e28c2f
BOUNTY
18
ChainBounty is a Web3 platform where cybercrime victims post bounties to crowdsource investigations.It uses 'Bounty' tokens for transactions, incentivizing private investigators to resolve cases. This decentralized approach offers a faster, transparent solution for online crimes
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "42161";
const address = "0x6a9896837021ea3ed83f623f655c119c54abe02c";
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],
},
};