LogoLogo
INLEO
  • Introduction
  • Our Vision
  • Understanding INLEO
  • Frequently Asked Questions
  • Ecosystem
  • The LEO Token Economy
    • Tokenomics
    • Emission Schedule
    • Rewards Pool
    • Token Features
    • Value Capture
      • Ad Platform
      • Premium
      • Subscriptions
      • Promotion
      • Bridging
    • Staking
      • Rewards
      • Curation
      • Influence
      • Unstaking
  • Technology
    • Roadmap
    • INLEO Platform
      • Threads
      • Posts
      • Communities
      • Threadcasts
      • Leaderboard
      • Wallet
      • Lists
    • Our Technology
      • LeoCache
      • LeoInfra
      • Decentralized Polls
    • Hive
      • Digital Identities
      • Immutable Content Storage
      • 3 Second, Fee-less On-Chain Engagement
      • Multi-Layer Rewards
  • KPIs and Goals
    • Key Performance Indicators
      • Monthly Active Users (MAUs)
      • Traffic Analytics
    • 2022 KPI Goals for LeoFinance
  • Opportunities
    • Creators
    • Users
    • Projects
    • Token Holders
      • LEO Liquidity Pools
      • Stake LEO to LEO POWER
      • Utilize LEO for Promoting Content
      • Lend or Lease LEO POWER
  • Tools and Resources
    • How-To Guides
      • INLEO: The Basics
        • How to Join INLEO
          • How to Make Your First Thread
          • How to Edit Your Profile
        • How to Post Content
          • How to Make Your First Blog Post
        • How to Buy LEO
        • How to Stake LEO
        • How Voting (Liking) Content Works
        • How to Share Content
        • How to Gain Traction on INLEO (Earn More Rewards!)
        • How to Get Curated
        • How to Earn $50 Per Referral
      • LeoFinance: Intermediate
      • LeoFinance: Expert
      • LeoMobile
      • LeoPedia
      • LeoFi
      • LeoDex
      • LeoBridge
      • Hivestats
    • Media Kit
  • Open Source Hive Technology
    • Keystore Hive Accounts
    • Ledger, Trustwallet, Trezor Hive Accounts
    • X & Google Lite Accounts
    • Dynamic Resource Credit (RC) Delegation System + Account Creation Tokens
    • HAFSQL API
    • Accounts API
    • Referral System API
    • Creator Subscriptions
    • Cross-UI Bookmarks Framework
Powered by GitBook
On this page

Was this helpful?

  1. Open Source Hive Technology

Keystore Hive Accounts

For the full documentation, visit the GitLab repo.


Signup a User with Keystore

Create a new Hive account using a reCAPTCHA token and keystore keys.

  • URL: https://inleo.io/leoinfra/auth/signup

  • Method: POST

  • Content-Type: application/json

  • Description: Registers a new user with reCAPTCHA verification and saves minimal data.

Request Payload

{
  "username": "yourusername",
  "keys": {
    "active": "STM6md43Ppdtkf1qDGMWtLvznbBfXxyaoRHbuRMyq1Ln7G8gWBMSu",
    "owner": "STM6Kfyb9WSL4BFRnfEDAzNbkMnCccvmzyNKB8xhCMBuq5ADt8aM3",
    "posting": "STM4zWK4DwDuSuTu1GWXd7WHgpiv6nTEHmCrmS5oJybmSmXybZv7a",
    "memo": "STM7q4vYvneQDzsRhvvXyhdA3NCTrq3GJBnBFGhTf2qcyQQSqc4AM"
  },
  "referral": "optional-referral-username",
  "token": "recaptcha-token",
  "addresses": {
    "email": "user@example.com"
  }
}
  • username: Desired Hive username.

  • keys: Public keys for the Hive account.

  • referral: Optional referral username.

  • token: reCAPTCHA token from Google reCAPTCHA.

  • addresses: Optional key-value pairs (e.g., email).

Client Key + Whitelisting

To finish the integration for Keystore, reach out to the INLEO team (info above) to request a client key + domain whitelisting.

Last updated 2 months ago

Was this helpful?