The APF DIGITAL AGRIFUND CR in cooperation with MIA INVESTMENTS GROUP aims to combine the benefits of digital assets with the benefits of real investments in agricultural land.
Ethereum
eip155:1
#2c2c2b
APFC
18
The APF DIGITAL AGRIFUND CR in cooperation with MIA INVESTMENTS GROUP aims to combine the benefits of digital assets with the benefits of real investments in agricultural land. Given the stable development of farmland prices in the country and market conditions, we offer clients a more conservative form of investment in crypto-assets.
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 = "0x8ed955a2b7d2c3a17a9d05daca95e01818f8c11e";
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],
},
};