BICO powers Biconomy Protocol, a permissionless network that enables developers to compose transactions, intents, and off-chain data across all blockchain networks.
Optimism
eip155:10
#ff4e17
BICO
18
BICO powers Biconomy Protocol, a permissionless network that enables developers to compose transactions, intents, and off-chain data across all blockchain networks. Lock up BICO tokens to participate in the network as bundlers, solvers, or oracles, providing cryptographically guaranteed execution.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "10";
const address = "0xd6909e9e702024eb93312b989ee46794c0fb1c9d";
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],
},
};