SIMPLE WORKFLOW

How EigenKub works

EigenKub provides a straightforward workflow for developers and users, leveraging the power of KUB for gas and staking without the complexity of new tokens.

EigenKub Workflow

Get KUB

Acquire KUB from exchanges or faucet for development and transactions

1
Step 1

Deploy Contract

Use standard Solidity tools to write and deploy your smart contracts

2
Step 2

Pay KUB Gas

Users pay transaction fees in KUB with significantly lower costs

3
Step 3

Network Security

The network is secured by validators staking KUB tokens

4
Step 4

Deploy Your First Contract

Getting started with EigenKub is simple. Here's an example of how to deploy a basic ERC-20 token:

solidity
// Deploy a simple token on EigenKub
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract MyToken is ERC20 {
  constructor(uint256 initialSupply) ERC20("MyToken", "MTK") {
      _mint(msg.sender, initialSupply);
  }
}

// Deploy with Hardhat or Remix
// Gas paid in KUB
// No new token required!