← Back to Home
No documentation found matching your query.
How to start

Getting started with Bitcord is designed to be completely straightforward. Because the application uses a cloud-based structure combined with local device rendering, setup takes less than a minute:

  • Download the official package file using the Download APK button on our home page.
  • Open the file on your smartphone. If prompted, allow your browser or file manager to install applications from external sources.
  • Launch the app. A secure cryptographic token wallet will automatically generate in the background. You are now ready to send text payloads, share high-resolution media, or initiate high-quality voice calls.
Register new user

Bitcord strictly prioritizes anonymity. We do not process private mobile phone numbers or personal email assets during profile deployment:

  • Upon the initialization view, the application securely requests profile parameters from your operating system's native account layer.
  • On Android systems, choose any registered active Google Account from the provided prompt list.
  • Your account identity links securely to that configuration token. You can switch profiles at any time or deploy an unlimited number of accounts on a single physical smartphone without data loss.
Create own channel

Public interaction spaces and broadcast channels can be configured natively inside the application layout for zero cost. To structure your own channel:

  • Navigate to the navigation side menu and select the Create Channel operational command.
  • Assign a public title, structural description, and select the layout properties (Public Directory or Private Invite Only).
  • Publish your content instantly, including long-form text blocks, rich images, or streaming video loops.
  • Monetization Setup: If you want to monetize your content, check the "Paid Access" switch in the channel dashboard. Set a fixed fee, and readers will pay the rate directly to your automated application wallet using native cryptocurrency tokens.
Secret chats

Secret chats offer maximum privacy for your private conversations. To activate this encrypted messaging method, simply click the Secret Chat button in the top menu.

This feature uses End-to-End Encryption (E2EE) to secure your data. Here is how it works:

  • Direct Encryption: Messages are scrambled on your device before they are sent.
  • No Intermediaries: Only you and the recipient hold the digital keys to unlock and read the text.
  • Zero Server Storage: No one else can access the content, not even our servers or any third parties.
Round video messages

Round video messages (video selfies) allow you to share quick, personal moments in a stylish circular format. These short clips capture both your camera and audio instantly to make your chats more lively.

You can start recording your round video in two easy ways:

  • Top Menu: Click the dedicated button in the top menu of your active chat.
  • Quick Shortcut: Long-press the emoji button located in the bottom-right corner of the app window.
Filtering the contact list

Quickly find any person in your main contact list using the built-in search filter. It helps you navigate your network instantly without scrolling through the entire list.

To find a contact, follow these simple steps:

  • Open Search: Click the magnifying glass button to open the text input field.
  • Type a Name: Start typing the letters of the contact's name.
  • Instant Results: The list filters automatically in real-time, showing only the matching names as you type.
Global search

Use the global search feature to find new people, bots, or channels outside your current contact list. To access this feature, open the left side menu and click "Find anything" to open the input panel.

Before you type a name, you must select the correct search format to filter your results:

  • People: Regular users of the application.
  • Bots: Automated services that provide specific information. For example, a weather bot shows local forecasts, while a chatbot lets you converse with ChatGPT.
  • Channels: Public spaces where other users publish content.

Adding to Contacts: To add any found item to your main list, tap and hold your finger on the contact. It will instantly move from the search results to your permanent contact list.

Note: If a user or bot is already saved in your contact list, they will not appear in the search results to prevent duplicates.

Internal Cryptocurrency and Wallet

The app uses its own cryptocurrency token, "Quantum (QTM)," based on the ERC-20 smart contract standard. The token is used to pay for additional services, donations, earn money on paid channels, and more. You can transfer tokens to your personal cryptocurrency wallet or purchase more by transferring them directly to your messenger wallet. Additional smart contracts are used for this purpose, ensuring the security and integrity of your transactions.

All internal payments and transfers in the app are processed with a zero fee. However, to transfer funds or make donations, you will need gas to cover network validation. You can easily obtain gas using the built-in Gas Exchanger bot. This bot automatically deducts a small amount of tokens from your balance and converts them into gas.

External Wallet Integration: In the left-hand menu, you'll find the "Metamask Wallet" option. Use this section to open and fund your external wallet with the personal information needed to purchase the internal currency.

Withdrawal Policy: To ensure maximum security of your digital assets and prevent fraudulent activities, all withdrawal and exchange requests are subject to mandatory manual validation by the administration. The processing time for withdrawal requests takes from 3 to 7 business days.

Editing profile data

You can manage your personal identity and account details directly within the profile settings screen. This section allows you to customize your public information and view your blockchain credentials.

In this dialog, you can configure the following information:

  • Personal Details: Set your display name, unique username (login), location data, and bio.
  • Crypto Wallet Info: View your personal wallet address, the smart contract address, and your current token balance.

Changing your Avatar: To update your profile picture, tap on the current image to activate your camera, aim it at yourself, and tap the screen again to take the photo.

Saving Changes: After editing your profile details, you must tap the Save button in the upper-right corner of the dialog to apply your updates.

Switching accounts

You can easily switch between different user accounts on your device. To change your active profile, follow these quick steps:

  • Log Out: Open the left side menu and select the "Switch user" option.
  • Select Account: The application will automatically close your session and display a list of Google accounts available on your smartphone.
  • Sign In: Choose the desired account, and the app will instantly log you in and be ready for use.
Contact management

You can easily modify or clean up your network list using the built-in management options. To manage any item, tap and hold the selected contact until a settings panel appears at the bottom of the app window.

Depending on the contact type, the panel will display the following options:

  • Accept Request: If an unknown user sends you a message, you can add them to your friends. Tap and hold their contact, then select the "Accept" button in the bottom panel.
  • Delete: This action removes the selected item from your list. You can delete any person, bot, or channel from your contacts instantly.
  • Edit: This action is available only for your own channels. You can change your channel's title, update its description, or switch its privacy settings between Public and Private.

Contact Status Colors: The relationship status with a contact is indicated by the color of their name in the list:

  • Blue: The user is successfully accepted as a friend.
  • Brown: The request is pending (the user is not added yet).
  • Red: The contact is banned.

Channel Deletion Rule: You can only fully delete your own channel if it is completely empty. If it contains any posts, you must manually delete all publications first before the system allows you to delete the channel itself.

Creating a Server Bot

To create a server bot, open your profile settings from the main application menu and check the "Server Bot" flag.

  • Specify the address: Enter your server URL (endpoint) in the appropriate field.
  • Generate a key: Generate a security token by clicking the "Get token" button.

Now you need to add the PHP code using this template:

<?php
session_start();
header('Content-Type: text/html; charset=utf-8');

//AUTHENTICATION BEGIN
$allowedToken = 'secret_bearer_token';
$providedToken = '';

if (isset($_SERVER['HTTP_AUTHORIZATION'])) { 
if (preg_match('/Bearer\s+(.+)/i', $_SERVER['HTTP_AUTHORIZATION'], $m)) { 
$providedToken = trim($m[1]); 
}
}

if (empty($providedToken) || $providedToken !== $allowedToken) { 
echo json_encode(['success' => false, 'error' => 'error token']); 
exit;
}
//AUTHENTICATION END

$rawInput = file_get_contents('php://input');
$userData = json_decode($rawInput, true);

echo json_encode(['success' => true, 'data' => 'Bot answer: ' . ($userData['command'] ?? null)]);
?>

Test your new bot by sending it a test message in chat.