📓
Stake Pool Scripts by APEX Stake Pool
  • Stake pool registration
    • Directory structure
    • Wallet
    • Metadata
    • Configuration file
    • Stake pool scripts
      • Cold key
      • VRF key
      • KES key
      • Operational certificate
      • Registration certificate
      • Stake key registration
      • Stake key delegation
    • Transaction
      • Using a remote node
      • Transaction scripts
    • Retiring the stake pool
  • Hardware wallet for Pledge
    • Stake key
    • Registration certificate
    • Stake key registration
    • Stake key delegation
    • Transactions
      • Registration certificate
      • Delegation certificate
  • Running a cardano node
    • Starting a relay node
    • Starting a block producing node
Powered by GitBook
On this page
  1. Stake pool registration
  2. Stake pool scripts

KES key

Create and execute the following script (kes-keys.sh) to create the KES (Key Evolving Signature) key pair (kes.skey and kes.vkey files):

#!/bin/bash


source ./env

cardano-cli node key-gen-KES \
--verification-key-file ${NODE_HOME}/pool-keys/kes.vkey \
--signing-key-file ${NODE_HOME}/pool-keys/kes.skey
PreviousVRF keyNextOperational certificate

Last updated 1 year ago