📓
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

Operational certificate

Create and execute the following script (node-cert.sh) to create the stake pool operational certificate (node.cert):

#!/bin/bash


source ./env

cardano-cli node issue-op-cert \
--kes-verification-key-file ${NODE_HOME}/pool-keys/kes.vkey \
--cold-signing-key-file ${NODE_HOME}/pool-keys/cold.skey \
--operational-certificate-issue-counter ${NODE_HOME}/pool-keys/cold.counter \
--kes-period ${KES_PERIOD} \
--out-file ${NODE_HOME}/pool-certificates/node.cert
PreviousKES keyNextRegistration certificate

Last updated 1 year ago