GrabWay was created to provide drivers, gig workers, and frequent travelers with the opportunity to monetize their daily commutes.
Binance Smart Chain
eip155:56
#8c9cbc
GRAB
18
GrabWay was created to provide drivers, gig workers, and frequent travelers with the opportunity to monetize their daily commutes. By harnessing advanced blockchain technology and GPS tracking, GrabWay transforms ordinary travel into a rewarding experience. Whether youre driving for work or moving around the city, GrabWay allows you to convert your movements into valuable rewards, offering a seamless and innovative way to earn as you go.
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 = "0x6d8058cdaa406ea4924d47b48f2ef5f18d35637c";
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],
},
};