IMPT connects users with hundreds of impactful environmental projects around the world with the purpose to reduce carbon emissions and help our planet.
Ethereum
eip155:1
#4cc50b
IMPT
18
IMPT connects users with hundreds of impactful environmental projects around the world with the purpose to reduce carbon emissions and help our planet. IMPT also engages thousands of the largest retail brands that allocate a specific percentage of sale margin for environmental projects. It is accumulated in users’ accounts in the form of IMPT tokens. The users accumulate these tokens till they reach the necessary amount of the carbon credit of their choice. As a result, users can continue with their normal shopping while helping the planet.
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 = "0x04c17b9d3b29a78f7bd062a57cf44fc633e71f85";
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],
},
};