Prerequisites

  • An EVM wallet with CTM for gas fees
  • RPC endpoint: https://public-evm-rpc.c8ntinuum.com
  • Chain ID: 2184

Deploy with Foundry

forge create --rpc-url https://public-evm-rpc.c8ntinuum.com \
  --private-key $PRIVATE_KEY \
  src/MyContract.sol:MyContract

Deploy with Hardhat

// hardhat.config.js
module.exports = {
  networks: {
    continuum: {
      url: "https://public-evm-rpc.c8ntinuum.com",
      chainId: 2184,
      accounts: [process.env.PRIVATE_KEY],
    },
  },
};
npx hardhat run scripts/deploy.js --network continuum

Deploy with Remix

  1. Open Remix IDE
  2. Write or import your contract
  3. In the Deploy tab, select Injected Provider (MetaMask)
  4. Ensure MetaMask is connected to c8ntinuum (Chain ID 2184)
  5. Click Deploy

Verify a Contract

See the Verification Guides for step-by-step instructions using Foundry or Hardhat.

What’s Available at Genesis

You don’t need to deploy common infrastructure — c8ntinuum ships with pre-deployed contracts including Multicall3, Permit2, WETH9, Safe Factory, and CreateX at well-known addresses.