Web Interface
Deploy SRC20 tokens from a browser using the SRC20 Factory web interface
Running the web app
bun install
bun run dev:webDeploying a token
Wagmi configuration
import { createConfig, http } from "wagmi";
import { injected } from "wagmi/connectors";
import { seismicTestnet } from "seismic-viem";
export const wagmiConfig = createConfig({
chains: [seismicTestnet],
connectors: [injected({ target: "metaMask" })],
transports: {
[seismicTestnet.id]: http(),
},
});Last updated

