Creditcoin Docs
Creditcoin Docs
  • What is Creditcoin
    • CTC Token 101
    • Acquiring Creditcoin Assets
  • SwapCTC Quick Guide
  • Wallets
    • How to Connect Your Wallet to Creditcoin
      • Polkadot-JS Extension
      • Metamask
      • Command-line Interface
        • Subkey
        • Creditcoin CLI
    • Advanced
      • Substrate & EVM accounts
      • Proxy Accounts
        • Setting up a Staking Proxy Account
        • Setting up a Validator
    • Using Testnet Faucet
  • Staking
    • Bonded Tokens
    • Validator Elections
      • Elections Example
    • Eras and Sessions
    • Staking Rewards
    • Slashing
  • Nominator Guides
    • Nominating with Staking Pools
      • Choosing a Pool
      • Joining a Pool
      • Creating a Pool
      • Exiting a Pool
      • Managing a Pool
    • Nominating without Staking Pools
    • Claiming Rewards
  • Validator Guides
    • Minimum requirements
    • Using a Docker container
    • Stake using Creditcoin CLI
  • EVM-compatibility
  • Smart Contract Guides
    • Creditcoin Endpoints
    • Deploying contracts with Remix
    • Hardhat Smart Contract Development
    • Creating Dapps with ethers.js
  • Environments
    • Mainnet
    • Testnet
  • Releases
  • LEGAL
    • Terms of Use
    • Privacy Policy
Powered by GitBook
On this page
  1. Wallets
  2. Advanced
  3. Proxy Accounts

Setting up a Staking Proxy Account

Creditcoin CLI

creditcoin comes bundled with the Creditcoin Docker image and provides the required tools to add, remove and manage Proxy Accounts through its proxy subcommand.

Usage: cli proxy [options] [command]

Commands for managing the proxy system

Options:
  -h, --help        display help for command

Commands:
  add [options]     Add a new proxy
  list [options]    View a list of proxies and their types
  remove [options]  Remove all instances of a proxy
  help [command]    display help for command

Adding proxies

To add a proxy account that can sign extrinsics on behalf of the main account, run the proxy add command with the --proxy option with the address of the account you wish to add and specify the permissions this account will have with the --type flag. Type can be either All, Staking or NonTransfer.

$ creditcoin proxy add --proxy "<proxy account address>" --type Staking

Listing proxies

After adding an account as a proxy, running the proxy list command should return the recently added proxy and any others that have been added in the past.

$ creditcoin proxy list

Removing proxies

Proxies can be removed in a similar way using the proxy remove command.

$ creditcoin proxy remove --proxy "<proxy-account-address>"
PreviousProxy AccountsNextSetting up a Validator

Last updated 1 year ago