Base Smart Money Position Updates
Get position updates for tracked Smart Money wallets across any Base Chain token.
The POSITION_UPDATE feed broadcasts every buy/sell transaction enriched with position data: current holdings, bag percentage, supply percentage and ETH tracking.
This feed covers Smart Money wallets on Base Chain only. For other feeds see:
SOL Smart Money:
wss://smartstream.cabalspy.xyzBNB Smart Money:
wss://smartstreambnb.cabalspy.xyzBase KOL:
wss://kolstreambase.cabalspy.xyz
Connection
javascript
const ws = new WebSocket("wss://smartstreambase.cabalspy.xyz?apiKey=YOUR_API_KEY");Alternative — Authorization header:
javascript
const ws = new WebSocket("wss://smartstreambase.cabalspy.xyz");
// Authorization: Bearer YOUR_API_KEYWithout a valid API key the connection is rejected immediately.
Subscriptions
You must subscribe before receiving any events.
Subscribe to a specific token
javascript
Subscribe to all tokens
javascript
Unsubscribe
javascript
List active subscriptions
javascript
Connection Flow
javascript
System Messages
connected
On successful connect
message, docs
subscribed
After subscribe
token, subscriptions, message
unsubscribed
After unsubscribe
token, subscriptions, message
subscriptions
After requesting list
subscriptions, count
error
On invalid message or auth
message
Example Message — position_update
json
Field Reference
Transaction
type
string
Always "position_update"
feed
string
Always "base_smart"
blockchain
string
Always "base"
signature
string
Base Chain transaction hash
slot
number
Base Chain block number
timestamp
string
ISO 8601 timestamp
action
string
"buy" or "sell"
transaction_type
string
Same as action — kept for compatibility
Wallet
wallet
string
EVM address of the trading wallet
wallet_name
string?
Internal label for this wallet
wallet_image
string?
Profile picture URL if available
telegram
string?
Telegram link if available (often null for Smart Money)
twitter
string?
Twitter/X profile URL if available (often null for Smart Money)
wallet_data
object
Full wallet object containing all fields above
ETH Value
eth_value
number
ETH amount of this transaction
eth_value_usd
number
USD value of this transaction
eth_price_usd
number
ETH price in USD at time of broadcast
eth_value_peak
number
Total ETH ever spent buying this token by this wallet
eth_value_current
number
Remaining unrealized ETH value in this position
sol_value
number
Alias for eth_value — for cross-chain compatibility
sol_value_usd
number
Alias for eth_value_usd — for cross-chain compatibility
sol_price_usd
number
Alias for eth_price_usd — for cross-chain compatibility
Fees
fee
number
Transaction fee in Wei (may be 0 if not available)
fee_eth
number
Transaction fee in ETH (may be 0 if not available)
fee_payer
string
Wallet that paid the fee
Token
mint
string
Token contract address
token_symbol
string
Token ticker e.g. "BRETT"
symbol
string
Alias for token_symbol — for cross-chain compatibility
token_name
string?
Full token name
token_decimals
number
Token decimal places
token_supply
number
Total on-chain token supply
token_amount
number
Amount of tokens traded in this specific transaction
Position
held
number
Current token balance of this wallet for this token
peak
number
All-time highest token balance this wallet held
bag_pct
number
How much of the peak position is still held (0–100%)
supply_pct
number
Percentage of total supply currently held
prev_supply_pct
number
Supply % before this transaction
prev_bag_pct
number
Bag % before this transaction
delta_supply_pct
number
Change in supply % from this transaction
delta_bag_pct
number
Change in bag % from this transaction
delta_held
number
Change in token amount from this transaction
used_fallback
boolean
true if supply was estimated (1B fallback) instead of on-chain value
Errors
json
Notes
You must subscribe before receiving any events. Without a subscription nothing is received.
Use
"token": "*"to receive all events across all tracked tokens.Multiple tokens can be subscribed simultaneously — send one subscribe message per token.
token_supplyfalls back to1,000,000,000if the on-chain value is unavailable. Checkused_fallback: trueto detect this.bag_pctis calculated asheld / peak * 100. A value of0%means the position was fully closed.token_amountis the amount traded in this specific transaction.heldis the cumulative position.eth_value_currenttracks unrealized ETH based on buys minus sells — does not reflect real-time price.sol_value,sol_value_usd,sol_price_usdandsymbolare aliases provided for cross-chain compatibility. Code written for the SOL feed works here without changes.Smart Money wallets may have limited social data —
telegramandtwitterare oftennull.Token balance (
held) is fetched live from Base Chain viabalanceOf()on each transaction.Fee data may be
0for Smart Money transactions depending on the source feed.
Last updated