Cointacted Social Terminal organizes its commands into groups, making it easy to discover, search, and understand available functionality.
Each group contains commands related to a specific purpose (core utilities, user info, wallet data, etc.).
To view all command groups inside the terminal, type:
help
You will see:
CORE - 9 commands
USER - 2 commands
SITE - 2 commands
WALLET - 6 commands
NETWORK - 1 command
CLIENT - 2 commands
FUN - 3 commands
ADMIN - 1 command
Below is an overview of every built-in command group included in the core plugin.
1. CORE Group (9 commands) #
General terminal utilities and essential functionality.
| Command | Alias | Description |
|---|---|---|
!! | — | Repeat the last command (session history). |
!N | — | Re-run command number N from history (e.g., !3). |
help | — | Show help, groups, or search results. |
welcome | — | Show a personalized welcome message. |
clear | cls | Clear terminal output. |
about | info | Display information about Cointacted Social Terminal. |
date | now | Show current date and time (browser-based). |
echo x | — | Print the value of x. |
history | — | Show all commands used during this session. |
Examples:
echo Hello World
!3
history
2. USER Group (2 commands) #
Commands related to the logged-in user.
| Command | Alias | Description |
|---|---|---|
whoami | me | Show basic information about your WordPress account. |
lastlogin | — | Show your last login time (if available). |
Examples:
whoami
lastlogin
3. SITE Group (2 commands) #
Commands showing information about the current WordPress site.
| Command | Alias | Description |
|---|---|---|
hostname | site | Show site information (title, URL, environment). |
dns | domain | Show site domain details. |
Examples:
hostname
dns
4. WALLET Group (6 commands) #
Commands related to browser wallets (MetaMask, etc.).
These depend on whether the user’s wallet is unlocked and compatible.
| Command | Description |
|---|---|
wallet | Show connected wallet address. |
chain | Show connected chain information. |
gas | Show current gas price. |
block | Show latest block number. |
txcount | Show transaction count (nonce) for the account. |
metamask | Connect/disconnect MetaMask (same as the MetaMask button). |
Example:
wallet
chain
gas
block
txcount
metamask
5. NETWORK Group (1 command) #
| Command | Description |
|---|---|
ping | Simulate a network ping response. |
Example:
ping
6. CLIENT Group (2 commands) #
Browser/device-side information.
| Command | Alias | Description |
|---|---|---|
ua | browser | Show browser information. |
ip | — | Show your IP address. |
Examples:
ua
ip
7. FUN Group (3 commands) #
Utility and entertainment commands.
| Command | Description |
|---|---|
hi | Say hello. |
random min max | Generates a random integer between min and max. (If no args → 1–100.) |
dice | Roll dice. Examples: dice, dice d20, dice 3d6. |
Examples:
hi
random 10 50
dice 2d12
8. ADMIN Group (1 command) #
Admin-only tools (only visible to users with admin capabilities).
| Command | Description |
|---|---|
admin | Show admin/debug information: user, roles, caps, guest mode, wallet state. |
Example:
admin
How to Explore Commands #
Show all groups #
help
Show commands inside a group #
help wallet
help user
help fun
Search commands by keyword #
help search gas
help search site
This will search across all groups.