Simulacrum is a platform that enables users to execute on-chain actions directly from social media platforms like X (formerly Twitter), utilizing their social media accounts as secure wallets.
Base
eip155:8453
#2f2f2f
SIMMI
18
Simulacrum is a platform that enables users to execute on-chain actions directly from social media platforms like X (formerly Twitter), utilizing their social media accounts as secure wallets. By leveraging Existential Attestations of External Media, Simulacrum creates a Synthetic Blockchain that allows users to broadcast transactions through social media posts.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0x161e113b8e9bbaefb846f73f31624f6f9607bd44";
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],
},
};