SAFETREES project is creating a free and easy-to-use solution that will help tree growers monitor, authenticate and validate tree growth status through a mobile application.
Binance Smart Chain
eip155:56
#f8ba5a
TREES
9
SAFETREES project is creating a free and easy-to-use solution that will help tree growers monitor, authenticate and validate tree growth status through a mobile application. The growers can tokenize their real growing trees as TREES-NFT and traded them to a crypto Auction platform that we are currently developing. The users of the platform can adopt a TREES-NFT from the tree growers with $TREES token or buy carbon offsets that supports our environment-centre projects.
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 = "0xd3b77ac07c963b8cead47000a5208434d9a8734d";
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],
},
};