📁
shine
  • Introduction to the Shine Blockchain platform
  • Shine overview
  • Shine USP
  • About EOSIO
  • Consensus mechanisms
  • Shine Proof of Authority consensus
  • Data privacy
  • Scalability
  • Business details
    • Why Blockchain
    • Why another Blockchain platform
    • Applications of Shine
      • Assumptions
      • Precious metals traceability
      • Food traceability
        • Spices
        • Perishables
        • Seafood
      • Carbon footprint monitoring
  • Tools, Technologies, and Architecture
    • Docker
    • MongoDB
    • Encryption
    • Server Security
    • Server requirements
    • Architecture
    • Transaction flows
  • Protocol
    • Microservices and APIs
    • Account management
  • Shine Blockchain Setup
    • SHINE Software Installation
    • Create Private/Public key pairs
    • Start the Blockchain node
    • Deploying System Smart Contracts
    • Add Producer/Validator Nodes
    • Node Security Setup
    • Deploying Traceability Smart Contracts
  • Backend Setup
    • Installing Prerequisites
    • Starting The Application
  • Front end Setup
    • User Interface
Powered by GitBook
On this page
  • Create Default Wallet
  • Open the Wallet
  • Unlock it
  • Create Key
  • Import key

Was this helpful?

  1. Shine Blockchain Setup

Create Private/Public key pairs

Wallets are repositories of public-private key pairs. Private keys are needed to sign operations performed on the blockchain.

Create Default Wallet

# The first step is to create a wallet. Use cleos wallet create to create a new "default" wallet using the option --to-console for simplicity.
cleos wallet create --file walletpassword.txt

Open the Wallet

Wallets are closed by default. To begin, run the following:

cleos wallet open

Unlock it

Unlock the wallet that was created in the previous point.

cleos wallet unlock

Create Key

Create a new account key and make sure to keep it safe.

cleos create key --to-console

Import key

Import the key generated in last step

cleos wallet import PRIVATE-KEY

PreviousSHINE Software InstallationNextStart the Blockchain node

Last updated 1 year ago

Was this helpful?