Zippie makes storing and sending digital currencies, such as ether, easier than ever.
Ethereum
eip155:1
#262626
ZIPT
18
Zippie makes storing and sending digital currencies, such as ether, easier than ever. Using your Zippie Card, it takes just a single tap to your phone to confirm large payments. NFC technology ensures that only you can move your funds.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xedd7c94fd7b4971b916d15067bc454b9e1bad980";
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],
},
};