Cascadia
  • Welcome to Cascadia
    • Brand Guidelines
    • Official Links
  • Artificial Intelligence
    • Incentives
  • Developers
    • Addresses
    • CosmWasm
      • Smart Contracts
      • Install Requirements
      • Set your Environment
      • Optimization
      • Deployment
      • Multi-Chain Contracts
        • The Actor Model
      • CW1 Subkeys Contract
        • Guide
      • CW20 Base Contract
        • Guide
      • C721 Base Contract
        • Guide
      • Upload Contract
        • Create a WASM File
      • Sign and Verify
        • Guide
    • Solidity
      • Deployment
      • Verification
        • Block Explorer
        • Hardhat
  • Directory
    • Address
    • API
    • Applications
    • Explorer
    • Faucet
    • Genesis
    • Governance
    • GRPC
    • Guide
    • Peers
    • RPC
    • Snapshot
    • State Sync
    • Website
    • Websocket
  • Governance
    • Align
      • Cooldown Period
      • Functions
    • Off-Chain
    • On-Chain
      • Voting
    • Proposals
      • On-Chain Voting via CLI
      • Proposal (Example)
    • VeTokenomics
      • Model
      • Voting Power Calculation
    • Analytics
  • Network
    • ChainID & Address Prefix
    • Configuration
    • Consensus
    • Denomination
    • Distribution
      • Block Rewards
      • Gas Fees
    • ESG
    • Faucet
    • Modules
    • Parameters
    • Peers
  • Security
    • Disclosure Policy
    • Multisignature
  • Staking
    • Claim
    • Delegate
    • Manual
    • Redelegate
    • Undelegate
  • Use Cases
    • Business Development and Marketing
    • Consumer Relationship Management
  • Node
    • Cloud Platforms
      • Amazon Web Services
      • Google Cloud Platform
    • Snapshot
    • State-Sync
    • Upgrade
      • Automated
      • Manual
  • Validators
    • System Requirements
    • Installation
    • Reference
      • Customization
  • Community
    • Discord
    • Telegram
    • Twitter
  • Legal
    • Privacy Policy
    • Terms & Conditions
Powered by GitBook
On this page
Edit on GitHub
  1. Node
  2. Upgrade

Manual

PreviousAutomatedNextValidators

Last updated 1 year ago

The following guide will help you manually upgrade cascadiad.

Step 1: Initiate the upgrade proposal.

On the chain side, the upgrade proposal will be initiated and pass through governance.

Step 2: Stop the cascadiad service.

sudo systemctl stop cascadiad

Step 3: Navigate to the home directory.

cd $HOME

Step 4: Download the latest Cascadia release.

curl -L https://github.com/CascadiaFoundation/cascadia/releases/download/v0.3.0/cascadiad

The latest cascadiad binary release can be found on .

Step 4: Make the downloaded file executable.

chmod +x cascadiad

Step 5: Replace the existing Cascadia binary with the latest version.

sudo mv cascadiad $(which cascadiad)

Alternatively, use the following command to replace the binary:

wget https://github.com/CascadiaFoundation/cascadia/releases/download/v0.3.0/cascadiad -O $(which cascadiad)

Step 6: Restart the cascadiad service.

sudo systemctl restart cascadiad
GitHub