Birdchain is base in the era of sharing Economy allowing users to benefit greatly by using blockchain tech.
Binance Smart Chain
eip155:56
#d58497
BIRD
18
Birdchain is base in the era of sharing Economy allowing users to benefit greatly by using blockchain tech. Birdchain has multiple products such as DEFI, NFT, etc. Birdchain has currently built an incentivized App that revolves around an easy-to-use, high-engagement, marketing & content platform where users engage with content and get rewarded. we are working to add more use cases to the token. such as incentivize users for liquidity provision to the Birdchainswap defi platform.
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 = "0xc9c7c6a590e82c576de7553142d47a5fb63f9e90";
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],
},
};