Self Chain Docs
WebsiteTwitter
  • Learn
    • About Self Chain
    • Keyless wallet
      • MPC-TSS
      • Secure Signing
      • Account Abstraction
  • Getting Started
    • Glossary
    • Frequently Asked Questions
    • Set up a wallet
      • Adding Self Chain to Keplr Wallet
      • Setting up Keplr with Ledger Wallet
      • Adding Self Chain to Leap Cosmos Wallet
    • How To Stake SLF
    • Self Chain Mainnet
    • How to IBC Transfer
  • Developer Guide
    • Self Chain Networks
    • Frontend dApps
    • Faucet
  • SLF Tokenomics
    • Token Allocation and Utility
      • Bonded Tokens Vs Circulating Supply
      • Address Transparency
    • FRONT Migration
      • How to Bridge FRONT from BNB Chain (BEP20) to Ethereum (ERC20)
      • How to Migrate FRONT to SLF using Binance Convert
    • FRONT Migration FAQs
    • Central Exchanges FRONT to SLF Migration
  • Staking and Delegation
    • Delegating $SLF
    • Redelegating $SLF
    • Undelegating $SLF
    • How to delegate $SLF with Frontier Wallet
    • How to Delegate $SLF with Ledger
    • How to Participate in SLF Binance Simple Earn Product
  • Nodes & Validators
    • Node Setup Guide
    • Node Configuration FAQs
    • Run a Validator Node
    • Validator FAQs
    • Releases
    • Run a Validator Node with NodeOps
    • Setting up Cosmovisor
    • Log Console Troubleshooting
    • Run Selfchain testnet node
  • Governance
    • Draft a Proposal
      • Text Proposal
      • Community Spend Proposal
      • Paramter Change Proposal
      • Software Upgrade Proposal
      • Cancel Software Upgrade
    • Submitting a Proposal
    • Depositing funds
    • Voting on a Proposal
    • FAQs
  • Official Links
  • Branding and Logos
Powered by GitBook
On this page
  1. Governance

Depositing funds

Deposit Phase Overview

The deposit phase is the initial stage in a proposal's lifecycle on Self Chain. During this phase, the proposal is visible on the blockchain but cannot proceed to a vote until the minimum deposit is met. Stakeholders can contribute funds to the proposal's deposit pool if they support moving it to the voting phase.

Key Points

  • Deposit Requirement: A proposal must meet the minimum deposit requirement to progress from the deposit phase to the voting phase.

  • Stakeholder Contributions: Stakeholders can contribute to the deposit pool of a proposal they support, helping it reach the required threshold.

  • Forfeiture Risk: If the deposit requirement is not met within the specified period, the proposal is rejected, and the deposit may be forfeited.

This guide explains how to deposit funds into an active proposal on Self Chain.

selfchaind tx gov deposit <proposal-id> <amount>  \
    --node http://165.232.125.66:26657 \
    --gas="auto" \
    --chain-id="self-test-1" \
    --gas-prices="0.5uslf" \
    --gas-adjustment="1.2" \
    --keyring-backend file \
    --keyring-dir $SELF_CHAIN_HOME/keys \
    --broadcast-mode sync \
    --from=<your-wallet>

<amount>: 1000000uslf ⇒ 1SLF

After submitting the deposit transaction, confirm that the funds were successfully added to the proposal’s deposit pool.

selfchaind query gov proposal <proposal-id>
PreviousSubmitting a ProposalNextVoting on a Proposal

Last updated 5 months ago