The Spiking Platform aims to allow its users to mirror the trading activity of any whale and control their own segregated trading accounts directly.
Ethereum
eip155:1
#0962e1
SPIKE
10
The Spiking Platform aims to allow its users to mirror the trading activity of any whale and control their own segregated trading accounts directly. SPIKE will be the token that fuels the Spiking Platform (gas). For new traders, Spiking will offer the assistance of RoboBull, a proprietary AI Robot that is able to create a portfolio of different whales based on the trader’s risk/reward ratio.
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 = "0xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650";
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],
},
};