The Offshore Plan is an offshore plan launched by the Bulgarian DSK Bank institution for the offshore financing of South Korea and Bulgaria.
Binance Smart Chain
eip155:56
#dcae57
OPC
18
The Offshore Plan is an offshore plan launched by the Bulgarian DSK Bank institution for the offshore financing of South Korea and Bulgaria. It promotes a more complete regulatory system in the global cryptocurrency market, and has a stronger effect on cross-border remittances and offshore finance. A digital economic alliance with border circulation, value open sharing, and industrial collaborative innovation.
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 = "0xdd3162ad2185928bf3d92bc05174aa442e7382ef";
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],
},
};