Initiating a Customizable Staking Pool

Before Initiation:

32 Ether

Creating a Pool is permissionless, anyone can claim any pool name.

To prevent sybil attacks, initiation requires exactly 1 validator worth of funds. However, you can deposit more Ether later.

However, this amount will be used to create your first validator.

Pool ID

Every Pool will have a unique ID.

It will be used for your Pool operations, and you can find your ID from both our frontend or Portal.

const pool_ID = Portal.generateId(pool_name, 5);

Maintainers

Maintainers are useful to automate pool owners' daily tasks, such as choosing your Node Operators.

⛏️Maintainers

Initiate Your Pool!

Geode uses an initiator function to set some parameters for your staking pool and derivative.

  1. NAME: Unique name of your Pool. Can not be changed later.

  2. FEE: Maintenance fee that will be charged for your services as the pool owner. 10^10 represents 100%, can be set to up to 10% (10^9). Can be changed later.

  3. Interface Version: Can be empty, or can be any interfaces from the list below. Can not be changed later.

🎭Current Interfaces
  1. Maintainer: Any other address that will manage your pool's Node Operators. Can be a community owned Maintainer, or the address of an automation script, etc. Can be changed later.

  2. Interface Data: some interfaces require data to be present along with a gETH address and Pool id.

  3. Config: initial configuration of your Pool as:

    1. True if a private pool - Can be changed later.

    2. True if uses an interface. Can not be changed later.

    3. True if uses a liquidity Pool - Can be changed later.

Note that, if you create private pool, you will need to create a Whitelisting Contract and register it.

However, Pool CONTROLLERs are allowed to use the pool even without creating and registering a contract.

Private Pools and Whitelisting

Example of Pool Creation Transaction

Basic Pool Initiation

The below transaction creates a Private Staking Pool with no maintenance fee, no interface, and no Liquidity Pool:

Complex Initiation

The below transaction creates a Public Staking Pool with a 5% maintenance fee, and ERC20InterfacePermitUpgradable interface, which also has a bound Liquidity Pool:

Last updated